@supernova-studio/client 1.52.0 → 1.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +12 -8
- package/dist/index.d.ts +12 -8
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -314365,23 +314365,27 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
|
|
|
314365
314365
|
designSystemId: z$1.ZodString;
|
|
314366
314366
|
name: z$1.ZodString;
|
|
314367
314367
|
version: z$1.ZodString;
|
|
314368
|
+
isExistingVersionUpdateAllowed: z$1.ZodBoolean;
|
|
314368
314369
|
}, "strip", z$1.ZodTypeAny, {
|
|
314369
314370
|
name: string;
|
|
314370
314371
|
designSystemId: string;
|
|
314371
314372
|
workspaceId: string;
|
|
314372
314373
|
version: string;
|
|
314374
|
+
isExistingVersionUpdateAllowed: boolean;
|
|
314373
314375
|
}, {
|
|
314374
314376
|
name: string;
|
|
314375
314377
|
designSystemId: string;
|
|
314376
314378
|
workspaceId: string;
|
|
314377
314379
|
version: string;
|
|
314380
|
+
isExistingVersionUpdateAllowed: boolean;
|
|
314378
314381
|
}>;
|
|
314379
314382
|
type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
|
|
314380
314383
|
declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
314381
314384
|
/** @deprecated use domain + build.dockerImagePath */
|
|
314382
|
-
dockerUrl: z$1.ZodString
|
|
314385
|
+
dockerUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
314383
314386
|
dockerRegistryDomain: z$1.ZodString;
|
|
314384
|
-
|
|
314387
|
+
/** @deprecated use docker-login endpoint */
|
|
314388
|
+
dockerAccessToken: z$1.ZodOptional<z$1.ZodString>;
|
|
314385
314389
|
build: z$1.ZodObject<{
|
|
314386
314390
|
id: z$1.ZodString;
|
|
314387
314391
|
workspaceId: z$1.ZodString;
|
|
@@ -314433,9 +314437,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
314433
314437
|
error?: string | undefined;
|
|
314434
314438
|
finishedAt?: string | undefined;
|
|
314435
314439
|
};
|
|
314436
|
-
dockerUrl: string;
|
|
314437
314440
|
dockerRegistryDomain: string;
|
|
314438
|
-
|
|
314441
|
+
dockerUrl?: string | undefined;
|
|
314442
|
+
dockerAccessToken?: string | undefined;
|
|
314439
314443
|
}, {
|
|
314440
314444
|
build: {
|
|
314441
314445
|
id: string;
|
|
@@ -314450,9 +314454,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
314450
314454
|
error?: string | undefined;
|
|
314451
314455
|
finishedAt?: string | undefined;
|
|
314452
314456
|
};
|
|
314453
|
-
dockerUrl: string;
|
|
314454
314457
|
dockerRegistryDomain: string;
|
|
314455
|
-
|
|
314458
|
+
dockerUrl?: string | undefined;
|
|
314459
|
+
dockerAccessToken?: string | undefined;
|
|
314456
314460
|
}>;
|
|
314457
314461
|
type DTOSandboxTemplateBuildCreateResponse = z$1.infer<typeof DTOSandboxTemplateBuildCreateResponse>;
|
|
314458
314462
|
declare const DTOSandboxTemplateBuildFinalizeResponse: z$1.ZodObject<{
|
|
@@ -368678,9 +368682,9 @@ declare class SandboxTemplateBuildsEndpoint {
|
|
|
368678
368682
|
error?: string | undefined;
|
|
368679
368683
|
finishedAt?: string | undefined;
|
|
368680
368684
|
};
|
|
368681
|
-
dockerUrl: string;
|
|
368682
368685
|
dockerRegistryDomain: string;
|
|
368683
|
-
|
|
368686
|
+
dockerUrl?: string | undefined;
|
|
368687
|
+
dockerAccessToken?: string | undefined;
|
|
368684
368688
|
}>;
|
|
368685
368689
|
get(buildId: string): Promise<{
|
|
368686
368690
|
build: {
|
package/dist/index.d.ts
CHANGED
|
@@ -314365,23 +314365,27 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
|
|
|
314365
314365
|
designSystemId: z$1.ZodString;
|
|
314366
314366
|
name: z$1.ZodString;
|
|
314367
314367
|
version: z$1.ZodString;
|
|
314368
|
+
isExistingVersionUpdateAllowed: z$1.ZodBoolean;
|
|
314368
314369
|
}, "strip", z$1.ZodTypeAny, {
|
|
314369
314370
|
name: string;
|
|
314370
314371
|
designSystemId: string;
|
|
314371
314372
|
workspaceId: string;
|
|
314372
314373
|
version: string;
|
|
314374
|
+
isExistingVersionUpdateAllowed: boolean;
|
|
314373
314375
|
}, {
|
|
314374
314376
|
name: string;
|
|
314375
314377
|
designSystemId: string;
|
|
314376
314378
|
workspaceId: string;
|
|
314377
314379
|
version: string;
|
|
314380
|
+
isExistingVersionUpdateAllowed: boolean;
|
|
314378
314381
|
}>;
|
|
314379
314382
|
type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
|
|
314380
314383
|
declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
314381
314384
|
/** @deprecated use domain + build.dockerImagePath */
|
|
314382
|
-
dockerUrl: z$1.ZodString
|
|
314385
|
+
dockerUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
314383
314386
|
dockerRegistryDomain: z$1.ZodString;
|
|
314384
|
-
|
|
314387
|
+
/** @deprecated use docker-login endpoint */
|
|
314388
|
+
dockerAccessToken: z$1.ZodOptional<z$1.ZodString>;
|
|
314385
314389
|
build: z$1.ZodObject<{
|
|
314386
314390
|
id: z$1.ZodString;
|
|
314387
314391
|
workspaceId: z$1.ZodString;
|
|
@@ -314433,9 +314437,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
314433
314437
|
error?: string | undefined;
|
|
314434
314438
|
finishedAt?: string | undefined;
|
|
314435
314439
|
};
|
|
314436
|
-
dockerUrl: string;
|
|
314437
314440
|
dockerRegistryDomain: string;
|
|
314438
|
-
|
|
314441
|
+
dockerUrl?: string | undefined;
|
|
314442
|
+
dockerAccessToken?: string | undefined;
|
|
314439
314443
|
}, {
|
|
314440
314444
|
build: {
|
|
314441
314445
|
id: string;
|
|
@@ -314450,9 +314454,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
|
|
|
314450
314454
|
error?: string | undefined;
|
|
314451
314455
|
finishedAt?: string | undefined;
|
|
314452
314456
|
};
|
|
314453
|
-
dockerUrl: string;
|
|
314454
314457
|
dockerRegistryDomain: string;
|
|
314455
|
-
|
|
314458
|
+
dockerUrl?: string | undefined;
|
|
314459
|
+
dockerAccessToken?: string | undefined;
|
|
314456
314460
|
}>;
|
|
314457
314461
|
type DTOSandboxTemplateBuildCreateResponse = z$1.infer<typeof DTOSandboxTemplateBuildCreateResponse>;
|
|
314458
314462
|
declare const DTOSandboxTemplateBuildFinalizeResponse: z$1.ZodObject<{
|
|
@@ -368678,9 +368682,9 @@ declare class SandboxTemplateBuildsEndpoint {
|
|
|
368678
368682
|
error?: string | undefined;
|
|
368679
368683
|
finishedAt?: string | undefined;
|
|
368680
368684
|
};
|
|
368681
|
-
dockerUrl: string;
|
|
368682
368685
|
dockerRegistryDomain: string;
|
|
368683
|
-
|
|
368686
|
+
dockerUrl?: string | undefined;
|
|
368687
|
+
dockerAccessToken?: string | undefined;
|
|
368684
368688
|
}>;
|
|
368685
368689
|
get(buildId: string): Promise<{
|
|
368686
368690
|
build: {
|
package/dist/index.js
CHANGED
|
@@ -10962,13 +10962,15 @@ var DTOSandboxTemplateBuildCreateInput = _zod2.default.object({
|
|
|
10962
10962
|
workspaceId: _zod2.default.string(),
|
|
10963
10963
|
designSystemId: _zod2.default.string(),
|
|
10964
10964
|
name: _zod2.default.string(),
|
|
10965
|
-
version: _zod2.default.string()
|
|
10965
|
+
version: _zod2.default.string(),
|
|
10966
|
+
isExistingVersionUpdateAllowed: _zod2.default.boolean()
|
|
10966
10967
|
});
|
|
10967
10968
|
var DTOSandboxTemplateBuildCreateResponse = _zod2.default.object({
|
|
10968
10969
|
/** @deprecated use domain + build.dockerImagePath */
|
|
10969
|
-
dockerUrl: _zod2.default.string(),
|
|
10970
|
+
dockerUrl: _zod2.default.string().optional(),
|
|
10970
10971
|
dockerRegistryDomain: _zod2.default.string(),
|
|
10971
|
-
|
|
10972
|
+
/** @deprecated use docker-login endpoint */
|
|
10973
|
+
dockerAccessToken: _zod2.default.string().optional(),
|
|
10972
10974
|
build: DTOSandboxTemplateBuild
|
|
10973
10975
|
});
|
|
10974
10976
|
var DTOSandboxTemplateBuildFinalizeResponse = _zod2.default.object({
|