@supernova-studio/client 1.55.3 → 1.56.0
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 +21 -10
- package/dist/index.d.ts +21 -10
- package/dist/index.js +26 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7256,7 +7256,26 @@ var DTOBillingSupportedModels = z243.enum([
|
|
|
7256
7256
|
"O1",
|
|
7257
7257
|
"GPT_5",
|
|
7258
7258
|
"GPT_5_MINI",
|
|
7259
|
-
"GPT_5_NANO"
|
|
7259
|
+
"GPT_5_NANO",
|
|
7260
|
+
// Claude models
|
|
7261
|
+
"CLAUDE_OPUS_4_0",
|
|
7262
|
+
"CLAUDE_OPUS_4_1",
|
|
7263
|
+
"CLAUDE_OPUS_4_5",
|
|
7264
|
+
"CLAUDE_SONNET_4_0",
|
|
7265
|
+
"CLAUDE_SONNET_4_5",
|
|
7266
|
+
"CLAUDE_HAIKU_4_5",
|
|
7267
|
+
// Claude dated models
|
|
7268
|
+
"CLAUDE_OPUS_4_20250514",
|
|
7269
|
+
"CLAUDE_OPUS_4_1_20250805",
|
|
7270
|
+
"CLAUDE_OPUS_4_5_20251101",
|
|
7271
|
+
"CLAUDE_3_7_SONNET_20250219",
|
|
7272
|
+
"CLAUDE_3_7_SONNET_LATEST",
|
|
7273
|
+
"CLAUDE_SONNET_4_20250514",
|
|
7274
|
+
"CLAUDE_SONNET_4_5_20250929",
|
|
7275
|
+
"CLAUDE_3_HAIKU_20240307",
|
|
7276
|
+
"CLAUDE_3_5_HAIKU_20241022",
|
|
7277
|
+
"CLAUDE_3_5_HAIKU_LATEST",
|
|
7278
|
+
"CLAUDE_HAIKU_4_5_20251001"
|
|
7260
7279
|
]);
|
|
7261
7280
|
var DTOBillingCheckoutMode = z243.enum(["SubscriptionChange", "CreditsTopUp"]);
|
|
7262
7281
|
var DTOBillingCreditsSpendAction = z243.enum(["Ask", "Build", "DocumentUpdate"]);
|
|
@@ -10697,6 +10716,10 @@ var DTOForgeProjectFeatureDeleteInput = z329.object({
|
|
|
10697
10716
|
var DTOForgeProjectFeatureGetByIdParam = z329.object({
|
|
10698
10717
|
id: Id
|
|
10699
10718
|
});
|
|
10719
|
+
var DTOFeatureArtifactListQuery = z329.object({
|
|
10720
|
+
messageId: z329.string().optional(),
|
|
10721
|
+
iterationId: z329.string().optional()
|
|
10722
|
+
});
|
|
10700
10723
|
var DTOForgeProjectFeatureMoveInput = DTOForgeSectionItemMoveInput;
|
|
10701
10724
|
|
|
10702
10725
|
// src/api/dto/forge/project-action.ts
|
|
@@ -20202,6 +20225,7 @@ export {
|
|
|
20202
20225
|
DTOFeatureArtifactCreateInput,
|
|
20203
20226
|
DTOFeatureArtifactDeleteInput,
|
|
20204
20227
|
DTOFeatureArtifactGetByIdParam,
|
|
20228
|
+
DTOFeatureArtifactListQuery,
|
|
20205
20229
|
DTOFeatureArtifactListResponse,
|
|
20206
20230
|
DTOFeatureArtifactResponse,
|
|
20207
20231
|
DTOFeatureArtifactWithContentResponse,
|