@supernova-studio/client 1.10.9 → 1.10.11
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 +3771 -7647
- package/dist/index.d.ts +3771 -7647
- package/dist/index.js +26 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -447,10 +447,19 @@ var Subscription = z13.object({
|
|
|
447
447
|
billingType: BillingTypeSchema.optional(),
|
|
448
448
|
daysUntilDue: z13.number().optional()
|
|
449
449
|
});
|
|
450
|
-
var ForgeChatMessageSenderType = z14.enum([
|
|
450
|
+
var ForgeChatMessageSenderType = z14.enum([
|
|
451
|
+
"User",
|
|
452
|
+
"Agent",
|
|
453
|
+
"Developer",
|
|
454
|
+
"FunctionCallInput",
|
|
455
|
+
"FunctionCallOutput"
|
|
456
|
+
]);
|
|
451
457
|
var ForgeChatMessageSender = z14.discriminatedUnion("type", [
|
|
452
458
|
z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.User), userId: z14.string() }),
|
|
453
|
-
z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.Agent), persona: z14.literal("Amy") })
|
|
459
|
+
z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.Agent), persona: z14.literal("Amy") }),
|
|
460
|
+
z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.Developer) }),
|
|
461
|
+
z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.FunctionCallInput) }),
|
|
462
|
+
z14.object({ type: z14.literal(ForgeChatMessageSenderType.Values.FunctionCallOutput) })
|
|
454
463
|
]);
|
|
455
464
|
var ForgeChatMessage = z14.object({
|
|
456
465
|
id: z14.string(),
|
|
@@ -2078,8 +2087,8 @@ var PageBlockTextSpanAttribute = z47.object({
|
|
|
2078
2087
|
// Link attributes
|
|
2079
2088
|
link: nullishToOptional(z47.string()),
|
|
2080
2089
|
documentationItemId: nullishToOptional(z47.string()),
|
|
2090
|
+
/** @deprecated use openInNewTab */
|
|
2081
2091
|
openInNewWindow: nullishToOptional(z47.boolean()),
|
|
2082
|
-
// deprecated. use openInNewTab
|
|
2083
2092
|
openInNewTab: nullishToOptional(z47.boolean()),
|
|
2084
2093
|
// Comment attributes
|
|
2085
2094
|
commentHighlightId: nullishToOptional(z47.string()),
|
|
@@ -5325,7 +5334,8 @@ var ExportJobLogEntry = z184.object({
|
|
|
5325
5334
|
message: z184.string()
|
|
5326
5335
|
});
|
|
5327
5336
|
var ExportJobPullRequestDestinationResult = z184.object({
|
|
5328
|
-
pullRequestUrl: z184.string()
|
|
5337
|
+
pullRequestUrl: z184.string(),
|
|
5338
|
+
sparseCheckoutUsed: nullishToOptional(z184.boolean())
|
|
5329
5339
|
});
|
|
5330
5340
|
var ExportJobS3DestinationResult = z184.object({
|
|
5331
5341
|
bucket: z184.string(),
|
|
@@ -5407,6 +5417,8 @@ var FlaggedFeature = z188.enum([
|
|
|
5407
5417
|
"NonCompatibleTypeChanges",
|
|
5408
5418
|
"TypographyUseFontStyle",
|
|
5409
5419
|
"FigmaImporterV3",
|
|
5420
|
+
"SparseCheckoutEnabled",
|
|
5421
|
+
"NoTagsNoBlobsCheckoutEnabled",
|
|
5410
5422
|
"PulsarDebugMode",
|
|
5411
5423
|
"PulsarLogSdkNetwork",
|
|
5412
5424
|
"PulsarCacheSdk",
|
|
@@ -6854,7 +6866,8 @@ var DTODesignSystemVersionStats = z227.object({
|
|
|
6854
6866
|
designSystemComponents: z227.number(),
|
|
6855
6867
|
assets: z227.number(),
|
|
6856
6868
|
documentationPages: z227.number(),
|
|
6857
|
-
figmaComponents: z227.number()
|
|
6869
|
+
figmaComponents: z227.number(),
|
|
6870
|
+
stories: z227.number()
|
|
6858
6871
|
});
|
|
6859
6872
|
var DTODesignSystemVersionStatsQuery = z227.object({
|
|
6860
6873
|
/**
|
|
@@ -6905,6 +6918,12 @@ var DTOStorybookEntry = z228.object({
|
|
|
6905
6918
|
var DTOStorybookEntryReplaceAction = z228.object({
|
|
6906
6919
|
newStoryId: z228.string()
|
|
6907
6920
|
});
|
|
6921
|
+
var DTOStorybookEntryQuery = z228.object({
|
|
6922
|
+
/**
|
|
6923
|
+
* Unique ID across versions (non-persistent ID)
|
|
6924
|
+
*/
|
|
6925
|
+
brandId: z228.string().optional()
|
|
6926
|
+
});
|
|
6908
6927
|
var DTOStorybookEntryListResponse = z228.object({ entries: z228.array(DTOStorybookEntry) });
|
|
6909
6928
|
var DTOStorybookEntryResponse = z228.object({ entry: DTOStorybookEntry });
|
|
6910
6929
|
|
|
@@ -16923,6 +16942,7 @@ export {
|
|
|
16923
16942
|
DTOStorybookEntry,
|
|
16924
16943
|
DTOStorybookEntryListResponse,
|
|
16925
16944
|
DTOStorybookEntryOrigin,
|
|
16945
|
+
DTOStorybookEntryQuery,
|
|
16926
16946
|
DTOStorybookEntryReplaceAction,
|
|
16927
16947
|
DTOStorybookEntryResponse,
|
|
16928
16948
|
DTOStorybookImportPayload,
|