@supernova-studio/client 1.87.7 → 1.87.9

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.mjs CHANGED
@@ -7902,6 +7902,8 @@ var DTOBillingSupportedModels = z245.enum([
7902
7902
  "GPT_5",
7903
7903
  "GPT_5_MINI",
7904
7904
  "GPT_5_NANO",
7905
+ "GPT_5_2_CODEX",
7906
+ "GPT_5_3_CODEX",
7905
7907
  // Claude models
7906
7908
  "CLAUDE_OPUS_4_0",
7907
7909
  "CLAUDE_OPUS_4_1",
@@ -12168,7 +12170,9 @@ var DTOSandboxTemplateBuild = z351.object({
12168
12170
  createdAt: z351.string(),
12169
12171
  finishedAt: z351.string().optional(),
12170
12172
  createdByUserId: z351.string(),
12171
- dockerImagePath: z351.string(),
12173
+ /** @deprecated use `dockerImageUri` instead */
12174
+ dockerImagePath: z351.string().optional(),
12175
+ dockerImageUri: z351.string(),
12172
12176
  error: z351.string().optional(),
12173
12177
  state: z351.enum(["PendingUpload", "Building", "Success", "Failure", "Timeout"])
12174
12178
  });
@@ -12202,6 +12206,8 @@ var DTOSandboxTemplateBuildCreateInput = z351.object({
12202
12206
  version: z351.string(),
12203
12207
  isExistingVersionUpdateAllowed: z351.boolean(),
12204
12208
  hasDesignModePlugin: z351.boolean().optional(),
12209
+ dockerImageUri: z351.string().optional(),
12210
+ customAuth: z351.object({ username: z351.string(), password: z351.string() }).optional(),
12205
12211
  templates: z351.object({
12206
12212
  id: z351.string(),
12207
12213
  name: z351.string(),
@@ -12211,9 +12217,10 @@ var DTOSandboxTemplateBuildCreateInput = z351.object({
12211
12217
  }).array().optional()
12212
12218
  });
12213
12219
  var DTOSandboxTemplateBuildCreateResponse = z351.object({
12214
- /** @deprecated use domain + build.dockerImagePath */
12220
+ /** @deprecated use build.dockerImageUri */
12215
12221
  dockerUrl: z351.string().optional(),
12216
- dockerRegistryDomain: z351.string(),
12222
+ /** @deprecated use build.dockerImageUri */
12223
+ dockerRegistryDomain: z351.string().optional(),
12217
12224
  /** @deprecated use docker-login endpoint */
12218
12225
  dockerAccessToken: z351.string().optional(),
12219
12226
  build: DTOSandboxTemplateBuild