Skip to content

Commit 72bc764

Browse files
Release 120240617.1.6 (#106)
* Codegen, version update * Update version
1 parent 6042726 commit 72bc764

9 files changed

+87
-78
lines changed

bin/update-version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { execSync } from "node:child_process";
55

66
// NOTE: Merged with API version to produce the full SDK version string
77
// https://docs.substrate.run/versioning
8-
const SDK_VERSION = "1.1.5";
8+
const SDK_VERSION = "1.1.6";
99

1010
const ok = (message: string) => console.log("\x1b[32m✓\x1b[0m", message);
1111

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "substrate",
3-
"version": "120240617.1.5",
3+
"version": "120240617.1.6",
44
"description": "The official SDK for the Substrate API",
55
"repository": {
66
"type": "git",

src/GEN_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20240617.20240718
1+
20240617.20240724

src/Nodes.ts

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* 𐃏 Substrate
33
* @generated file
4-
* 20240617.20240718
4+
* 20240617.20240724
55
*/
66

77
import * as OpenAPI from "substrate/OpenAPI";
@@ -1381,7 +1381,7 @@ export class GenerateImageIn extends FutureObject {
13811381
get prompt() {
13821382
return new FutureString(this._directive.next("prompt"));
13831383
}
1384-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1384+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
13851385
get store() {
13861386
return new FutureString(this._directive.next("store"));
13871387
}
@@ -1411,7 +1411,7 @@ export class MultiGenerateImageIn extends FutureObject {
14111411
get num_images() {
14121412
return new FutureNumber(this._directive.next("num_images"));
14131413
}
1414-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1414+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
14151415
get store() {
14161416
return new FutureString(this._directive.next("store"));
14171417
}
@@ -1449,7 +1449,7 @@ export class StableDiffusionXLIn extends FutureObject {
14491449
get num_images() {
14501450
return new FutureNumber(this._directive.next("num_images"));
14511451
}
1452-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1452+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
14531453
get store() {
14541454
return new FutureString(this._directive.next("store"));
14551455
}
@@ -1515,7 +1515,7 @@ export class StableDiffusionXLLightningIn extends FutureObject {
15151515
get num_images() {
15161516
return new FutureNumber(this._directive.next("num_images"));
15171517
}
1518-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1518+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
15191519
get store() {
15201520
return new FutureString(this._directive.next("store"));
15211521
}
@@ -1572,7 +1572,7 @@ export class StableDiffusionXLIPAdapterIn extends FutureObject {
15721572
get negative_prompt() {
15731573
return new FutureString(this._directive.next("negative_prompt"));
15741574
}
1575-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1575+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
15761576
get store() {
15771577
return new FutureString(this._directive.next("store"));
15781578
}
@@ -1633,7 +1633,7 @@ export class StableDiffusionXLControlNetIn extends FutureObject {
16331633
get negative_prompt() {
16341634
return new FutureString(this._directive.next("negative_prompt"));
16351635
}
1636-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1636+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
16371637
get store() {
16381638
return new FutureString(this._directive.next("store"));
16391639
}
@@ -1684,7 +1684,7 @@ export class InpaintImageIn extends FutureObject {
16841684
get mask_image_uri() {
16851685
return new FutureString(this._directive.next("mask_image_uri"));
16861686
}
1687-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1687+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
16881688
get store() {
16891689
return new FutureString(this._directive.next("store"));
16901690
}
@@ -1722,7 +1722,7 @@ export class MultiInpaintImageIn extends FutureObject {
17221722
get num_images() {
17231723
return new FutureNumber(this._directive.next("num_images"));
17241724
}
1725-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1725+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
17261726
get store() {
17271727
return new FutureString(this._directive.next("store"));
17281728
}
@@ -1768,7 +1768,7 @@ export class StableDiffusionXLInpaintIn extends FutureObject {
17681768
get negative_prompt() {
17691769
return new FutureString(this._directive.next("negative_prompt"));
17701770
}
1771-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1771+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
17721772
get store() {
17731773
return new FutureString(this._directive.next("store"));
17741774
}
@@ -1847,7 +1847,7 @@ export class EraseImageIn extends FutureObject {
18471847
get mask_image_uri() {
18481848
return new FutureString(this._directive.next("mask_image_uri"));
18491849
}
1850-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1850+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
18511851
get store() {
18521852
return new FutureString(this._directive.next("store"));
18531853
}
@@ -1877,7 +1877,7 @@ export class BigLaMaIn extends FutureObject {
18771877
get mask_image_uri() {
18781878
return new FutureString(this._directive.next("mask_image_uri"));
18791879
}
1880-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1880+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
18811881
get store() {
18821882
return new FutureString(this._directive.next("store"));
18831883
}
@@ -1915,7 +1915,7 @@ export class RemoveBackgroundIn extends FutureObject {
19151915
get background_color() {
19161916
return new FutureString(this._directive.next("background_color"));
19171917
}
1918-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1918+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
19191919
get store() {
19201920
return new FutureString(this._directive.next("store"));
19211921
}
@@ -1941,7 +1941,7 @@ export class DISISNetIn extends FutureObject {
19411941
get image_uri() {
19421942
return new FutureString(this._directive.next("image_uri"));
19431943
}
1944-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1944+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
19451945
get store() {
19461946
return new FutureString(this._directive.next("store"));
19471947
}
@@ -1975,7 +1975,7 @@ export class UpscaleImageIn extends FutureObject {
19751975
get output_resolution() {
19761976
return new FutureNumber(this._directive.next("output_resolution"));
19771977
}
1978-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
1978+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
19791979
get store() {
19801980
return new FutureString(this._directive.next("store"));
19811981
}
@@ -2005,7 +2005,7 @@ export class SegmentUnderPointIn extends FutureObject {
20052005
get point() {
20062006
return new Point(this._directive.next("point"));
20072007
}
2008-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
2008+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
20092009
get store() {
20102010
return new FutureString(this._directive.next("store"));
20112011
}
@@ -2043,7 +2043,7 @@ export class SegmentAnythingIn extends FutureObject {
20432043
get box_prompts() {
20442044
return new SegmentAnythingInBoxPrompts(this._directive.next("box_prompts"));
20452045
}
2046-
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the image data will be returned as a base64-encoded string. */
2046+
/** (Optional) Use "hosted" to return an image URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the image data will be returned as a base64-encoded string. */
20472047
get store() {
20482048
return new FutureString(this._directive.next("store"));
20492049
}
@@ -2191,7 +2191,7 @@ export class GenerateSpeechIn extends FutureObject {
21912191
get text() {
21922192
return new FutureString(this._directive.next("text"));
21932193
}
2194-
/** (Optional) Use "hosted" to return an audio URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the audio data will be returned as a base64-encoded string. */
2194+
/** (Optional) Use "hosted" to return an audio URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the audio data will be returned as a base64-encoded string. */
21952195
get store() {
21962196
return new FutureString(this._directive.next("store"));
21972197
}
@@ -2225,7 +2225,7 @@ export class XTTSV2In extends FutureObject {
22252225
get language() {
22262226
return new FutureString(this._directive.next("language"));
22272227
}
2228-
/** (Optional) Use "hosted" to return an audio URL hosted on Substrate. You can also provide a URL to a registered [file store](https://guides.substrate.run/guides/external-file-storage). If unset, the audio data will be returned as a base64-encoded string. */
2228+
/** (Optional) Use "hosted" to return an audio URL hosted on Substrate. You can also provide a URL to a registered [file store](https://docs.substrate.run/reference/external-files). If unset, the audio data will be returned as a base64-encoded string. */
22292229
get store() {
22302230
return new FutureString(this._directive.next("store"));
22312231
}

0 commit comments

Comments
 (0)