@supernova-studio/client 1.77.0 → 1.77.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 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
@@ -11456,7 +11456,13 @@ var DTOSandboxTemplateBuildCreateInput = _zod2.default.object({
11456
11456
  designSystemId: _zod2.default.string(),
11457
11457
  name: _zod2.default.string(),
11458
11458
  version: _zod2.default.string(),
11459
- isExistingVersionUpdateAllowed: _zod2.default.boolean()
11459
+ isExistingVersionUpdateAllowed: _zod2.default.boolean(),
11460
+ templates: _zod2.default.object({
11461
+ id: _zod2.default.string(),
11462
+ name: _zod2.default.string(),
11463
+ description: _zod2.default.string(),
11464
+ thumbnailUrl: _zod2.default.string().optional()
11465
+ }).array().optional()
11460
11466
  });
11461
11467
  var DTOSandboxTemplateBuildCreateResponse = _zod2.default.object({
11462
11468
  /** @deprecated use domain + build.dockerImagePath */