@supernova-studio/client 0.58.13 → 0.58.15
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/stats.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -9900,19 +9900,25 @@ declare const DTODesignSystemVersionStats: z.ZodObject<{
|
|
|
9900
9900
|
designSystemComponents: z.ZodNumber;
|
|
9901
9901
|
assets: z.ZodNumber;
|
|
9902
9902
|
documentationPages: z.ZodNumber;
|
|
9903
|
+
figmaComponents: z.ZodNumber;
|
|
9903
9904
|
}, "strip", z.ZodTypeAny, {
|
|
9904
9905
|
designSystemComponents: number;
|
|
9905
9906
|
tokens: number;
|
|
9906
9907
|
assets: number;
|
|
9907
9908
|
documentationPages: number;
|
|
9909
|
+
figmaComponents: number;
|
|
9908
9910
|
}, {
|
|
9909
9911
|
designSystemComponents: number;
|
|
9910
9912
|
tokens: number;
|
|
9911
9913
|
assets: number;
|
|
9912
9914
|
documentationPages: number;
|
|
9915
|
+
figmaComponents: number;
|
|
9913
9916
|
}>;
|
|
9914
9917
|
type DTODesignSystemVersionStats = z.infer<typeof DTODesignSystemVersionStats>;
|
|
9915
9918
|
declare const DTODesignSystemVersionStatsQuery: z.ZodObject<{
|
|
9919
|
+
/**
|
|
9920
|
+
* Unique ID across versions (non-persistent ID)
|
|
9921
|
+
*/
|
|
9916
9922
|
brandId: z.ZodOptional<z.ZodString>;
|
|
9917
9923
|
}, "strip", z.ZodTypeAny, {
|
|
9918
9924
|
brandId?: string | undefined;
|
|
@@ -87966,6 +87972,7 @@ declare class VersionStatsEndpoint {
|
|
|
87966
87972
|
tokens: number;
|
|
87967
87973
|
assets: number;
|
|
87968
87974
|
documentationPages: number;
|
|
87975
|
+
figmaComponents: number;
|
|
87969
87976
|
}>;
|
|
87970
87977
|
}
|
|
87971
87978
|
|
package/dist/index.d.ts
CHANGED
|
@@ -9900,19 +9900,25 @@ declare const DTODesignSystemVersionStats: z.ZodObject<{
|
|
|
9900
9900
|
designSystemComponents: z.ZodNumber;
|
|
9901
9901
|
assets: z.ZodNumber;
|
|
9902
9902
|
documentationPages: z.ZodNumber;
|
|
9903
|
+
figmaComponents: z.ZodNumber;
|
|
9903
9904
|
}, "strip", z.ZodTypeAny, {
|
|
9904
9905
|
designSystemComponents: number;
|
|
9905
9906
|
tokens: number;
|
|
9906
9907
|
assets: number;
|
|
9907
9908
|
documentationPages: number;
|
|
9909
|
+
figmaComponents: number;
|
|
9908
9910
|
}, {
|
|
9909
9911
|
designSystemComponents: number;
|
|
9910
9912
|
tokens: number;
|
|
9911
9913
|
assets: number;
|
|
9912
9914
|
documentationPages: number;
|
|
9915
|
+
figmaComponents: number;
|
|
9913
9916
|
}>;
|
|
9914
9917
|
type DTODesignSystemVersionStats = z.infer<typeof DTODesignSystemVersionStats>;
|
|
9915
9918
|
declare const DTODesignSystemVersionStatsQuery: z.ZodObject<{
|
|
9919
|
+
/**
|
|
9920
|
+
* Unique ID across versions (non-persistent ID)
|
|
9921
|
+
*/
|
|
9916
9922
|
brandId: z.ZodOptional<z.ZodString>;
|
|
9917
9923
|
}, "strip", z.ZodTypeAny, {
|
|
9918
9924
|
brandId?: string | undefined;
|
|
@@ -87966,6 +87972,7 @@ declare class VersionStatsEndpoint {
|
|
|
87966
87972
|
tokens: number;
|
|
87967
87973
|
assets: number;
|
|
87968
87974
|
documentationPages: number;
|
|
87975
|
+
figmaComponents: number;
|
|
87969
87976
|
}>;
|
|
87970
87977
|
}
|
|
87971
87978
|
|
package/dist/index.js
CHANGED
|
@@ -4042,7 +4042,7 @@ var ExporterPropertyValuesCollection = _zod.z.object({
|
|
|
4042
4042
|
var PublishedDocPageVisitsEntry = _zod.z.object({
|
|
4043
4043
|
id: _zod.z.string(),
|
|
4044
4044
|
versionId: _zod.z.string(),
|
|
4045
|
-
|
|
4045
|
+
pagePersistentId: _zod.z.string(),
|
|
4046
4046
|
locale: _zod.z.string().optional(),
|
|
4047
4047
|
timestamp: _zod.z.coerce.date(),
|
|
4048
4048
|
visits: _zod.z.number()
|
|
@@ -4051,6 +4051,7 @@ var PublishedDocPage = _zod.z.object({
|
|
|
4051
4051
|
id: _zod.z.string(),
|
|
4052
4052
|
publishedDocId: _zod.z.string(),
|
|
4053
4053
|
pageShortPersistentId: _zod.z.string(),
|
|
4054
|
+
pagePersistentId: _zod.z.string().optional(),
|
|
4054
4055
|
pathV1: _zod.z.string(),
|
|
4055
4056
|
pathV2: _zod.z.string(),
|
|
4056
4057
|
storagePath: _zod.z.string(),
|
|
@@ -5595,9 +5596,13 @@ var DTODesignSystemVersionStats = _zod.z.object({
|
|
|
5595
5596
|
tokens: _zod.z.number(),
|
|
5596
5597
|
designSystemComponents: _zod.z.number(),
|
|
5597
5598
|
assets: _zod.z.number(),
|
|
5598
|
-
documentationPages: _zod.z.number()
|
|
5599
|
+
documentationPages: _zod.z.number(),
|
|
5600
|
+
figmaComponents: _zod.z.number()
|
|
5599
5601
|
});
|
|
5600
5602
|
var DTODesignSystemVersionStatsQuery = _zod.z.object({
|
|
5603
|
+
/**
|
|
5604
|
+
* Unique ID across versions (non-persistent ID)
|
|
5605
|
+
*/
|
|
5601
5606
|
brandId: _zod.z.string().optional()
|
|
5602
5607
|
});
|
|
5603
5608
|
|