@supernova-studio/client 1.10.9 → 1.10.10
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 +3479 -7647
- package/dist/index.d.ts +3479 -7647
- package/dist/index.js +22 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -4
- 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()),
|
|
@@ -6854,7 +6863,8 @@ var DTODesignSystemVersionStats = z227.object({
|
|
|
6854
6863
|
designSystemComponents: z227.number(),
|
|
6855
6864
|
assets: z227.number(),
|
|
6856
6865
|
documentationPages: z227.number(),
|
|
6857
|
-
figmaComponents: z227.number()
|
|
6866
|
+
figmaComponents: z227.number(),
|
|
6867
|
+
stories: z227.number()
|
|
6858
6868
|
});
|
|
6859
6869
|
var DTODesignSystemVersionStatsQuery = z227.object({
|
|
6860
6870
|
/**
|
|
@@ -6905,6 +6915,12 @@ var DTOStorybookEntry = z228.object({
|
|
|
6905
6915
|
var DTOStorybookEntryReplaceAction = z228.object({
|
|
6906
6916
|
newStoryId: z228.string()
|
|
6907
6917
|
});
|
|
6918
|
+
var DTOStorybookEntryQuery = z228.object({
|
|
6919
|
+
/**
|
|
6920
|
+
* Unique ID across versions (non-persistent ID)
|
|
6921
|
+
*/
|
|
6922
|
+
brandId: z228.string().optional()
|
|
6923
|
+
});
|
|
6908
6924
|
var DTOStorybookEntryListResponse = z228.object({ entries: z228.array(DTOStorybookEntry) });
|
|
6909
6925
|
var DTOStorybookEntryResponse = z228.object({ entry: DTOStorybookEntry });
|
|
6910
6926
|
|
|
@@ -16923,6 +16939,7 @@ export {
|
|
|
16923
16939
|
DTOStorybookEntry,
|
|
16924
16940
|
DTOStorybookEntryListResponse,
|
|
16925
16941
|
DTOStorybookEntryOrigin,
|
|
16942
|
+
DTOStorybookEntryQuery,
|
|
16926
16943
|
DTOStorybookEntryReplaceAction,
|
|
16927
16944
|
DTOStorybookEntryResponse,
|
|
16928
16945
|
DTOStorybookImportPayload,
|