@supernova-studio/client 1.87.7 → 1.87.8

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
@@ -338249,7 +338249,9 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
338249
338249
  createdAt: z$1.ZodString;
338250
338250
  finishedAt: z$1.ZodOptional<z$1.ZodString>;
338251
338251
  createdByUserId: z$1.ZodString;
338252
- dockerImagePath: z$1.ZodString;
338252
+ /** @deprecated use `dockerImageUri` instead */
338253
+ dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
338254
+ dockerImageUri: z$1.ZodString;
338253
338255
  error: z$1.ZodOptional<z$1.ZodString>;
338254
338256
  state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
338255
338257
  }, "strip", z$1.ZodTypeAny, {
@@ -338261,9 +338263,10 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
338261
338263
  workspaceId: string;
338262
338264
  designSystemId: string;
338263
338265
  createdByUserId: string;
338264
- dockerImagePath: string;
338266
+ dockerImageUri: string;
338265
338267
  error?: string | undefined;
338266
338268
  finishedAt?: string | undefined;
338269
+ dockerImagePath?: string | undefined;
338267
338270
  }, {
338268
338271
  id: string;
338269
338272
  name: string;
@@ -338273,9 +338276,10 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
338273
338276
  workspaceId: string;
338274
338277
  designSystemId: string;
338275
338278
  createdByUserId: string;
338276
- dockerImagePath: string;
338279
+ dockerImageUri: string;
338277
338280
  error?: string | undefined;
338278
338281
  finishedAt?: string | undefined;
338282
+ dockerImagePath?: string | undefined;
338279
338283
  }>;
338280
338284
  type DTOSandboxTemplateBuild = z$1.infer<typeof DTOSandboxTemplateBuild>;
338281
338285
  declare const DTOSandboxTemplateFile: z$1.ZodObject<{
@@ -338721,7 +338725,9 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338721
338725
  createdAt: z$1.ZodString;
338722
338726
  finishedAt: z$1.ZodOptional<z$1.ZodString>;
338723
338727
  createdByUserId: z$1.ZodString;
338724
- dockerImagePath: z$1.ZodString;
338728
+ /** @deprecated use `dockerImageUri` instead */
338729
+ dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
338730
+ dockerImageUri: z$1.ZodString;
338725
338731
  error: z$1.ZodOptional<z$1.ZodString>;
338726
338732
  state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
338727
338733
  }, "strip", z$1.ZodTypeAny, {
@@ -338733,9 +338739,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338733
338739
  workspaceId: string;
338734
338740
  designSystemId: string;
338735
338741
  createdByUserId: string;
338736
- dockerImagePath: string;
338742
+ dockerImageUri: string;
338737
338743
  error?: string | undefined;
338738
338744
  finishedAt?: string | undefined;
338745
+ dockerImagePath?: string | undefined;
338739
338746
  }, {
338740
338747
  id: string;
338741
338748
  name: string;
@@ -338745,9 +338752,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338745
338752
  workspaceId: string;
338746
338753
  designSystemId: string;
338747
338754
  createdByUserId: string;
338748
- dockerImagePath: string;
338755
+ dockerImageUri: string;
338749
338756
  error?: string | undefined;
338750
338757
  finishedAt?: string | undefined;
338758
+ dockerImagePath?: string | undefined;
338751
338759
  }>;
338752
338760
  }, "strip", z$1.ZodTypeAny, {
338753
338761
  build: {
@@ -338759,9 +338767,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338759
338767
  workspaceId: string;
338760
338768
  designSystemId: string;
338761
338769
  createdByUserId: string;
338762
- dockerImagePath: string;
338770
+ dockerImageUri: string;
338763
338771
  error?: string | undefined;
338764
338772
  finishedAt?: string | undefined;
338773
+ dockerImagePath?: string | undefined;
338765
338774
  };
338766
338775
  }, {
338767
338776
  build: {
@@ -338773,9 +338782,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338773
338782
  workspaceId: string;
338774
338783
  designSystemId: string;
338775
338784
  createdByUserId: string;
338776
- dockerImagePath: string;
338785
+ dockerImageUri: string;
338777
338786
  error?: string | undefined;
338778
338787
  finishedAt?: string | undefined;
338788
+ dockerImagePath?: string | undefined;
338779
338789
  };
338780
338790
  }>;
338781
338791
  type DTOSandboxTemplateBuildResponse = z$1.infer<typeof DTOSandboxTemplateBuildResponse>;
@@ -338786,6 +338796,17 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
338786
338796
  version: z$1.ZodString;
338787
338797
  isExistingVersionUpdateAllowed: z$1.ZodBoolean;
338788
338798
  hasDesignModePlugin: z$1.ZodOptional<z$1.ZodBoolean>;
338799
+ dockerImageUri: z$1.ZodOptional<z$1.ZodString>;
338800
+ customAuth: z$1.ZodOptional<z$1.ZodObject<{
338801
+ username: z$1.ZodString;
338802
+ password: z$1.ZodString;
338803
+ }, "strip", z$1.ZodTypeAny, {
338804
+ password: string;
338805
+ username: string;
338806
+ }, {
338807
+ password: string;
338808
+ username: string;
338809
+ }>>;
338789
338810
  templates: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
338790
338811
  id: z$1.ZodString;
338791
338812
  name: z$1.ZodString;
@@ -338819,6 +338840,11 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
338819
338840
  thumbnailUrl?: string | undefined;
338820
338841
  }[] | undefined;
338821
338842
  hasDesignModePlugin?: boolean | undefined;
338843
+ dockerImageUri?: string | undefined;
338844
+ customAuth?: {
338845
+ password: string;
338846
+ username: string;
338847
+ } | undefined;
338822
338848
  }, {
338823
338849
  name: string;
338824
338850
  version: string;
@@ -338833,12 +338859,18 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
338833
338859
  thumbnailUrl?: string | undefined;
338834
338860
  }[] | undefined;
338835
338861
  hasDesignModePlugin?: boolean | undefined;
338862
+ dockerImageUri?: string | undefined;
338863
+ customAuth?: {
338864
+ password: string;
338865
+ username: string;
338866
+ } | undefined;
338836
338867
  }>;
338837
338868
  type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
338838
338869
  declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338839
- /** @deprecated use domain + build.dockerImagePath */
338870
+ /** @deprecated use build.dockerImageUri */
338840
338871
  dockerUrl: z$1.ZodOptional<z$1.ZodString>;
338841
- dockerRegistryDomain: z$1.ZodString;
338872
+ /** @deprecated use build.dockerImageUri */
338873
+ dockerRegistryDomain: z$1.ZodOptional<z$1.ZodString>;
338842
338874
  /** @deprecated use docker-login endpoint */
338843
338875
  dockerAccessToken: z$1.ZodOptional<z$1.ZodString>;
338844
338876
  build: z$1.ZodObject<{
@@ -338850,7 +338882,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338850
338882
  createdAt: z$1.ZodString;
338851
338883
  finishedAt: z$1.ZodOptional<z$1.ZodString>;
338852
338884
  createdByUserId: z$1.ZodString;
338853
- dockerImagePath: z$1.ZodString;
338885
+ /** @deprecated use `dockerImageUri` instead */
338886
+ dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
338887
+ dockerImageUri: z$1.ZodString;
338854
338888
  error: z$1.ZodOptional<z$1.ZodString>;
338855
338889
  state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
338856
338890
  }, "strip", z$1.ZodTypeAny, {
@@ -338862,9 +338896,10 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338862
338896
  workspaceId: string;
338863
338897
  designSystemId: string;
338864
338898
  createdByUserId: string;
338865
- dockerImagePath: string;
338899
+ dockerImageUri: string;
338866
338900
  error?: string | undefined;
338867
338901
  finishedAt?: string | undefined;
338902
+ dockerImagePath?: string | undefined;
338868
338903
  }, {
338869
338904
  id: string;
338870
338905
  name: string;
@@ -338874,9 +338909,10 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338874
338909
  workspaceId: string;
338875
338910
  designSystemId: string;
338876
338911
  createdByUserId: string;
338877
- dockerImagePath: string;
338912
+ dockerImageUri: string;
338878
338913
  error?: string | undefined;
338879
338914
  finishedAt?: string | undefined;
338915
+ dockerImagePath?: string | undefined;
338880
338916
  }>;
338881
338917
  }, "strip", z$1.ZodTypeAny, {
338882
338918
  build: {
@@ -338888,12 +338924,13 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338888
338924
  workspaceId: string;
338889
338925
  designSystemId: string;
338890
338926
  createdByUserId: string;
338891
- dockerImagePath: string;
338927
+ dockerImageUri: string;
338892
338928
  error?: string | undefined;
338893
338929
  finishedAt?: string | undefined;
338930
+ dockerImagePath?: string | undefined;
338894
338931
  };
338895
- dockerRegistryDomain: string;
338896
338932
  dockerUrl?: string | undefined;
338933
+ dockerRegistryDomain?: string | undefined;
338897
338934
  dockerAccessToken?: string | undefined;
338898
338935
  }, {
338899
338936
  build: {
@@ -338905,12 +338942,13 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338905
338942
  workspaceId: string;
338906
338943
  designSystemId: string;
338907
338944
  createdByUserId: string;
338908
- dockerImagePath: string;
338945
+ dockerImageUri: string;
338909
338946
  error?: string | undefined;
338910
338947
  finishedAt?: string | undefined;
338948
+ dockerImagePath?: string | undefined;
338911
338949
  };
338912
- dockerRegistryDomain: string;
338913
338950
  dockerUrl?: string | undefined;
338951
+ dockerRegistryDomain?: string | undefined;
338914
338952
  dockerAccessToken?: string | undefined;
338915
338953
  }>;
338916
338954
  type DTOSandboxTemplateBuildCreateResponse = z$1.infer<typeof DTOSandboxTemplateBuildCreateResponse>;
@@ -404323,12 +404361,13 @@ declare class SandboxTemplateBuildsEndpoint {
404323
404361
  workspaceId: string;
404324
404362
  designSystemId: string;
404325
404363
  createdByUserId: string;
404326
- dockerImagePath: string;
404364
+ dockerImageUri: string;
404327
404365
  error?: string | undefined;
404328
404366
  finishedAt?: string | undefined;
404367
+ dockerImagePath?: string | undefined;
404329
404368
  };
404330
- dockerRegistryDomain: string;
404331
404369
  dockerUrl?: string | undefined;
404370
+ dockerRegistryDomain?: string | undefined;
404332
404371
  dockerAccessToken?: string | undefined;
404333
404372
  }>;
404334
404373
  get(buildId: string): Promise<{
@@ -404341,9 +404380,10 @@ declare class SandboxTemplateBuildsEndpoint {
404341
404380
  workspaceId: string;
404342
404381
  designSystemId: string;
404343
404382
  createdByUserId: string;
404344
- dockerImagePath: string;
404383
+ dockerImageUri: string;
404345
404384
  error?: string | undefined;
404346
404385
  finishedAt?: string | undefined;
404386
+ dockerImagePath?: string | undefined;
404347
404387
  };
404348
404388
  }>;
404349
404389
  finalize(buildId: string): Promise<{
package/dist/index.d.ts CHANGED
@@ -338249,7 +338249,9 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
338249
338249
  createdAt: z$1.ZodString;
338250
338250
  finishedAt: z$1.ZodOptional<z$1.ZodString>;
338251
338251
  createdByUserId: z$1.ZodString;
338252
- dockerImagePath: z$1.ZodString;
338252
+ /** @deprecated use `dockerImageUri` instead */
338253
+ dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
338254
+ dockerImageUri: z$1.ZodString;
338253
338255
  error: z$1.ZodOptional<z$1.ZodString>;
338254
338256
  state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
338255
338257
  }, "strip", z$1.ZodTypeAny, {
@@ -338261,9 +338263,10 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
338261
338263
  workspaceId: string;
338262
338264
  designSystemId: string;
338263
338265
  createdByUserId: string;
338264
- dockerImagePath: string;
338266
+ dockerImageUri: string;
338265
338267
  error?: string | undefined;
338266
338268
  finishedAt?: string | undefined;
338269
+ dockerImagePath?: string | undefined;
338267
338270
  }, {
338268
338271
  id: string;
338269
338272
  name: string;
@@ -338273,9 +338276,10 @@ declare const DTOSandboxTemplateBuild: z$1.ZodObject<{
338273
338276
  workspaceId: string;
338274
338277
  designSystemId: string;
338275
338278
  createdByUserId: string;
338276
- dockerImagePath: string;
338279
+ dockerImageUri: string;
338277
338280
  error?: string | undefined;
338278
338281
  finishedAt?: string | undefined;
338282
+ dockerImagePath?: string | undefined;
338279
338283
  }>;
338280
338284
  type DTOSandboxTemplateBuild = z$1.infer<typeof DTOSandboxTemplateBuild>;
338281
338285
  declare const DTOSandboxTemplateFile: z$1.ZodObject<{
@@ -338721,7 +338725,9 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338721
338725
  createdAt: z$1.ZodString;
338722
338726
  finishedAt: z$1.ZodOptional<z$1.ZodString>;
338723
338727
  createdByUserId: z$1.ZodString;
338724
- dockerImagePath: z$1.ZodString;
338728
+ /** @deprecated use `dockerImageUri` instead */
338729
+ dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
338730
+ dockerImageUri: z$1.ZodString;
338725
338731
  error: z$1.ZodOptional<z$1.ZodString>;
338726
338732
  state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
338727
338733
  }, "strip", z$1.ZodTypeAny, {
@@ -338733,9 +338739,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338733
338739
  workspaceId: string;
338734
338740
  designSystemId: string;
338735
338741
  createdByUserId: string;
338736
- dockerImagePath: string;
338742
+ dockerImageUri: string;
338737
338743
  error?: string | undefined;
338738
338744
  finishedAt?: string | undefined;
338745
+ dockerImagePath?: string | undefined;
338739
338746
  }, {
338740
338747
  id: string;
338741
338748
  name: string;
@@ -338745,9 +338752,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338745
338752
  workspaceId: string;
338746
338753
  designSystemId: string;
338747
338754
  createdByUserId: string;
338748
- dockerImagePath: string;
338755
+ dockerImageUri: string;
338749
338756
  error?: string | undefined;
338750
338757
  finishedAt?: string | undefined;
338758
+ dockerImagePath?: string | undefined;
338751
338759
  }>;
338752
338760
  }, "strip", z$1.ZodTypeAny, {
338753
338761
  build: {
@@ -338759,9 +338767,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338759
338767
  workspaceId: string;
338760
338768
  designSystemId: string;
338761
338769
  createdByUserId: string;
338762
- dockerImagePath: string;
338770
+ dockerImageUri: string;
338763
338771
  error?: string | undefined;
338764
338772
  finishedAt?: string | undefined;
338773
+ dockerImagePath?: string | undefined;
338765
338774
  };
338766
338775
  }, {
338767
338776
  build: {
@@ -338773,9 +338782,10 @@ declare const DTOSandboxTemplateBuildResponse: z$1.ZodObject<{
338773
338782
  workspaceId: string;
338774
338783
  designSystemId: string;
338775
338784
  createdByUserId: string;
338776
- dockerImagePath: string;
338785
+ dockerImageUri: string;
338777
338786
  error?: string | undefined;
338778
338787
  finishedAt?: string | undefined;
338788
+ dockerImagePath?: string | undefined;
338779
338789
  };
338780
338790
  }>;
338781
338791
  type DTOSandboxTemplateBuildResponse = z$1.infer<typeof DTOSandboxTemplateBuildResponse>;
@@ -338786,6 +338796,17 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
338786
338796
  version: z$1.ZodString;
338787
338797
  isExistingVersionUpdateAllowed: z$1.ZodBoolean;
338788
338798
  hasDesignModePlugin: z$1.ZodOptional<z$1.ZodBoolean>;
338799
+ dockerImageUri: z$1.ZodOptional<z$1.ZodString>;
338800
+ customAuth: z$1.ZodOptional<z$1.ZodObject<{
338801
+ username: z$1.ZodString;
338802
+ password: z$1.ZodString;
338803
+ }, "strip", z$1.ZodTypeAny, {
338804
+ password: string;
338805
+ username: string;
338806
+ }, {
338807
+ password: string;
338808
+ username: string;
338809
+ }>>;
338789
338810
  templates: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
338790
338811
  id: z$1.ZodString;
338791
338812
  name: z$1.ZodString;
@@ -338819,6 +338840,11 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
338819
338840
  thumbnailUrl?: string | undefined;
338820
338841
  }[] | undefined;
338821
338842
  hasDesignModePlugin?: boolean | undefined;
338843
+ dockerImageUri?: string | undefined;
338844
+ customAuth?: {
338845
+ password: string;
338846
+ username: string;
338847
+ } | undefined;
338822
338848
  }, {
338823
338849
  name: string;
338824
338850
  version: string;
@@ -338833,12 +338859,18 @@ declare const DTOSandboxTemplateBuildCreateInput: z$1.ZodObject<{
338833
338859
  thumbnailUrl?: string | undefined;
338834
338860
  }[] | undefined;
338835
338861
  hasDesignModePlugin?: boolean | undefined;
338862
+ dockerImageUri?: string | undefined;
338863
+ customAuth?: {
338864
+ password: string;
338865
+ username: string;
338866
+ } | undefined;
338836
338867
  }>;
338837
338868
  type DTOSandboxTemplateBuildCreateInput = z$1.infer<typeof DTOSandboxTemplateBuildCreateInput>;
338838
338869
  declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338839
- /** @deprecated use domain + build.dockerImagePath */
338870
+ /** @deprecated use build.dockerImageUri */
338840
338871
  dockerUrl: z$1.ZodOptional<z$1.ZodString>;
338841
- dockerRegistryDomain: z$1.ZodString;
338872
+ /** @deprecated use build.dockerImageUri */
338873
+ dockerRegistryDomain: z$1.ZodOptional<z$1.ZodString>;
338842
338874
  /** @deprecated use docker-login endpoint */
338843
338875
  dockerAccessToken: z$1.ZodOptional<z$1.ZodString>;
338844
338876
  build: z$1.ZodObject<{
@@ -338850,7 +338882,9 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338850
338882
  createdAt: z$1.ZodString;
338851
338883
  finishedAt: z$1.ZodOptional<z$1.ZodString>;
338852
338884
  createdByUserId: z$1.ZodString;
338853
- dockerImagePath: z$1.ZodString;
338885
+ /** @deprecated use `dockerImageUri` instead */
338886
+ dockerImagePath: z$1.ZodOptional<z$1.ZodString>;
338887
+ dockerImageUri: z$1.ZodString;
338854
338888
  error: z$1.ZodOptional<z$1.ZodString>;
338855
338889
  state: z$1.ZodEnum<["PendingUpload", "Building", "Success", "Failure", "Timeout"]>;
338856
338890
  }, "strip", z$1.ZodTypeAny, {
@@ -338862,9 +338896,10 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338862
338896
  workspaceId: string;
338863
338897
  designSystemId: string;
338864
338898
  createdByUserId: string;
338865
- dockerImagePath: string;
338899
+ dockerImageUri: string;
338866
338900
  error?: string | undefined;
338867
338901
  finishedAt?: string | undefined;
338902
+ dockerImagePath?: string | undefined;
338868
338903
  }, {
338869
338904
  id: string;
338870
338905
  name: string;
@@ -338874,9 +338909,10 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338874
338909
  workspaceId: string;
338875
338910
  designSystemId: string;
338876
338911
  createdByUserId: string;
338877
- dockerImagePath: string;
338912
+ dockerImageUri: string;
338878
338913
  error?: string | undefined;
338879
338914
  finishedAt?: string | undefined;
338915
+ dockerImagePath?: string | undefined;
338880
338916
  }>;
338881
338917
  }, "strip", z$1.ZodTypeAny, {
338882
338918
  build: {
@@ -338888,12 +338924,13 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338888
338924
  workspaceId: string;
338889
338925
  designSystemId: string;
338890
338926
  createdByUserId: string;
338891
- dockerImagePath: string;
338927
+ dockerImageUri: string;
338892
338928
  error?: string | undefined;
338893
338929
  finishedAt?: string | undefined;
338930
+ dockerImagePath?: string | undefined;
338894
338931
  };
338895
- dockerRegistryDomain: string;
338896
338932
  dockerUrl?: string | undefined;
338933
+ dockerRegistryDomain?: string | undefined;
338897
338934
  dockerAccessToken?: string | undefined;
338898
338935
  }, {
338899
338936
  build: {
@@ -338905,12 +338942,13 @@ declare const DTOSandboxTemplateBuildCreateResponse: z$1.ZodObject<{
338905
338942
  workspaceId: string;
338906
338943
  designSystemId: string;
338907
338944
  createdByUserId: string;
338908
- dockerImagePath: string;
338945
+ dockerImageUri: string;
338909
338946
  error?: string | undefined;
338910
338947
  finishedAt?: string | undefined;
338948
+ dockerImagePath?: string | undefined;
338911
338949
  };
338912
- dockerRegistryDomain: string;
338913
338950
  dockerUrl?: string | undefined;
338951
+ dockerRegistryDomain?: string | undefined;
338914
338952
  dockerAccessToken?: string | undefined;
338915
338953
  }>;
338916
338954
  type DTOSandboxTemplateBuildCreateResponse = z$1.infer<typeof DTOSandboxTemplateBuildCreateResponse>;
@@ -404323,12 +404361,13 @@ declare class SandboxTemplateBuildsEndpoint {
404323
404361
  workspaceId: string;
404324
404362
  designSystemId: string;
404325
404363
  createdByUserId: string;
404326
- dockerImagePath: string;
404364
+ dockerImageUri: string;
404327
404365
  error?: string | undefined;
404328
404366
  finishedAt?: string | undefined;
404367
+ dockerImagePath?: string | undefined;
404329
404368
  };
404330
- dockerRegistryDomain: string;
404331
404369
  dockerUrl?: string | undefined;
404370
+ dockerRegistryDomain?: string | undefined;
404332
404371
  dockerAccessToken?: string | undefined;
404333
404372
  }>;
404334
404373
  get(buildId: string): Promise<{
@@ -404341,9 +404380,10 @@ declare class SandboxTemplateBuildsEndpoint {
404341
404380
  workspaceId: string;
404342
404381
  designSystemId: string;
404343
404382
  createdByUserId: string;
404344
- dockerImagePath: string;
404383
+ dockerImageUri: string;
404345
404384
  error?: string | undefined;
404346
404385
  finishedAt?: string | undefined;
404386
+ dockerImagePath?: string | undefined;
404347
404387
  };
404348
404388
  }>;
404349
404389
  finalize(buildId: string): Promise<{
package/dist/index.js CHANGED
@@ -12168,7 +12168,9 @@ var DTOSandboxTemplateBuild = _zod2.default.object({
12168
12168
  createdAt: _zod2.default.string(),
12169
12169
  finishedAt: _zod2.default.string().optional(),
12170
12170
  createdByUserId: _zod2.default.string(),
12171
- dockerImagePath: _zod2.default.string(),
12171
+ /** @deprecated use `dockerImageUri` instead */
12172
+ dockerImagePath: _zod2.default.string().optional(),
12173
+ dockerImageUri: _zod2.default.string(),
12172
12174
  error: _zod2.default.string().optional(),
12173
12175
  state: _zod2.default.enum(["PendingUpload", "Building", "Success", "Failure", "Timeout"])
12174
12176
  });
@@ -12202,6 +12204,8 @@ var DTOSandboxTemplateBuildCreateInput = _zod2.default.object({
12202
12204
  version: _zod2.default.string(),
12203
12205
  isExistingVersionUpdateAllowed: _zod2.default.boolean(),
12204
12206
  hasDesignModePlugin: _zod2.default.boolean().optional(),
12207
+ dockerImageUri: _zod2.default.string().optional(),
12208
+ customAuth: _zod2.default.object({ username: _zod2.default.string(), password: _zod2.default.string() }).optional(),
12205
12209
  templates: _zod2.default.object({
12206
12210
  id: _zod2.default.string(),
12207
12211
  name: _zod2.default.string(),
@@ -12211,9 +12215,10 @@ var DTOSandboxTemplateBuildCreateInput = _zod2.default.object({
12211
12215
  }).array().optional()
12212
12216
  });
12213
12217
  var DTOSandboxTemplateBuildCreateResponse = _zod2.default.object({
12214
- /** @deprecated use domain + build.dockerImagePath */
12218
+ /** @deprecated use build.dockerImageUri */
12215
12219
  dockerUrl: _zod2.default.string().optional(),
12216
- dockerRegistryDomain: _zod2.default.string(),
12220
+ /** @deprecated use build.dockerImageUri */
12221
+ dockerRegistryDomain: _zod2.default.string().optional(),
12217
12222
  /** @deprecated use docker-login endpoint */
12218
12223
  dockerAccessToken: _zod2.default.string().optional(),
12219
12224
  build: DTOSandboxTemplateBuild