@supernova-studio/client 1.77.0 → 1.77.2

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 CHANGED
@@ -318513,18 +318513,46 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
318513
318513
  name: z$1.ZodString;
318514
318514
  version: z$1.ZodString;
318515
318515
  isExistingVersionUpdateAllowed: z$1.ZodBoolean;
318516
+ templates: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
318517
+ id: z$1.ZodString;
318518
+ name: z$1.ZodString;
318519
+ description: z$1.ZodString;
318520
+ thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
318521
+ }, "strip", z$1.ZodTypeAny, {
318522
+ id: string;
318523
+ name: string;
318524
+ description: string;
318525
+ thumbnailUrl?: string | undefined;
318526
+ }, {
318527
+ id: string;
318528
+ name: string;
318529
+ description: string;
318530
+ thumbnailUrl?: string | undefined;
318531
+ }>, "many">>;
318516
318532
  }, "strip", z$1.ZodTypeAny, {
318517
318533
  name: string;
318518
318534
  designSystemId: string;
318519
318535
  workspaceId: string;
318520
318536
  version: string;
318521
318537
  isExistingVersionUpdateAllowed: boolean;
318538
+ templates?: {
318539
+ id: string;
318540
+ name: string;
318541
+ description: string;
318542
+ thumbnailUrl?: string | undefined;
318543
+ }[] | undefined;
318522
318544
  }, {
318523
318545
  name: string;
318524
318546
  designSystemId: string;
318525
318547
  workspaceId: string;
318526
318548
  version: string;
318527
318549
  isExistingVersionUpdateAllowed: boolean;
318550
+ templates?: {
318551
+ id: string;
318552
+ name: string;
318553
+ description: string;
318554
+ thumbnailUrl?: string | undefined;
318555
+ }[] | undefined;
318528
318556
  }>;
318529
318557
  type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
318530
318558
  declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
package/dist/index.d.ts CHANGED
@@ -318513,18 +318513,46 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
318513
318513
  name: z$1.ZodString;
318514
318514
  version: z$1.ZodString;
318515
318515
  isExistingVersionUpdateAllowed: z$1.ZodBoolean;
318516
+ templates: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
318517
+ id: z$1.ZodString;
318518
+ name: z$1.ZodString;
318519
+ description: z$1.ZodString;
318520
+ thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
318521
+ }, "strip", z$1.ZodTypeAny, {
318522
+ id: string;
318523
+ name: string;
318524
+ description: string;
318525
+ thumbnailUrl?: string | undefined;
318526
+ }, {
318527
+ id: string;
318528
+ name: string;
318529
+ description: string;
318530
+ thumbnailUrl?: string | undefined;
318531
+ }>, "many">>;
318516
318532
  }, "strip", z$1.ZodTypeAny, {
318517
318533
  name: string;
318518
318534
  designSystemId: string;
318519
318535
  workspaceId: string;
318520
318536
  version: string;
318521
318537
  isExistingVersionUpdateAllowed: boolean;
318538
+ templates?: {
318539
+ id: string;
318540
+ name: string;
318541
+ description: string;
318542
+ thumbnailUrl?: string | undefined;
318543
+ }[] | undefined;
318522
318544
  }, {
318523
318545
  name: string;
318524
318546
  designSystemId: string;
318525
318547
  workspaceId: string;
318526
318548
  version: string;
318527
318549
  isExistingVersionUpdateAllowed: boolean;
318550
+ templates?: {
318551
+ id: string;
318552
+ name: string;
318553
+ description: string;
318554
+ thumbnailUrl?: string | undefined;
318555
+ }[] | undefined;
318528
318556
  }>;
318529
318557
  type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
318530
318558
  declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
package/dist/index.js CHANGED
@@ -5721,7 +5721,8 @@ var ExporterFunctionPayload = _zod.z.object({
5721
5721
  exportContextId: _zod.z.string(),
5722
5722
  designSystemId: _zod.z.string(),
5723
5723
  workspaceId: _zod.z.string(),
5724
- exporterId: _zod.z.string()
5724
+ exporterId: _zod.z.string(),
5725
+ runnerType: _zod.z.enum(["High", "Low"])
5725
5726
  });
5726
5727
  var ExportJobDestinationType = _zod.z.enum([
5727
5728
  "s3",
@@ -11456,7 +11457,13 @@ var DTOSandboxTemplateBuildCreateInput = _zod2.default.object({
11456
11457
  designSystemId: _zod2.default.string(),
11457
11458
  name: _zod2.default.string(),
11458
11459
  version: _zod2.default.string(),
11459
- isExistingVersionUpdateAllowed: _zod2.default.boolean()
11460
+ isExistingVersionUpdateAllowed: _zod2.default.boolean(),
11461
+ templates: _zod2.default.object({
11462
+ id: _zod2.default.string(),
11463
+ name: _zod2.default.string(),
11464
+ description: _zod2.default.string(),
11465
+ thumbnailUrl: _zod2.default.string().optional()
11466
+ }).array().optional()
11460
11467
  });
11461
11468
  var DTOSandboxTemplateBuildCreateResponse = _zod2.default.object({
11462
11469
  /** @deprecated use domain + build.dockerImagePath */