@supernova-studio/client 1.4.13 → 1.4.14
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 +53 -359
- package/dist/index.d.ts +53 -359
- package/dist/index.js +11 -59
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -60
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -23094,370 +23094,64 @@ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
|
|
|
23094
23094
|
}>;
|
|
23095
23095
|
type DTODesignTokenGroupCreatePayload = z.infer<typeof DTODesignTokenGroupCreatePayload>;
|
|
23096
23096
|
|
|
23097
|
-
declare const
|
|
23098
|
-
|
|
23099
|
-
|
|
23100
|
-
|
|
23097
|
+
declare const DTOPublishedDocPageVisitData: z.ZodObject<{
|
|
23098
|
+
id: z.ZodString;
|
|
23099
|
+
versionId: z.ZodString;
|
|
23100
|
+
pagePersistentId: z.ZodString;
|
|
23101
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
23102
|
+
timestamp: z.ZodDate;
|
|
23103
|
+
visits: z.ZodNumber;
|
|
23104
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
23105
|
+
anonymousId: z.ZodOptional<z.ZodString>;
|
|
23101
23106
|
}, "strip", z.ZodTypeAny, {
|
|
23102
|
-
|
|
23103
|
-
|
|
23104
|
-
|
|
23107
|
+
id: string;
|
|
23108
|
+
pagePersistentId: string;
|
|
23109
|
+
versionId: string;
|
|
23110
|
+
timestamp: Date;
|
|
23111
|
+
visits: number;
|
|
23112
|
+
userId?: string | undefined;
|
|
23113
|
+
locale?: string | undefined;
|
|
23114
|
+
anonymousId?: string | undefined;
|
|
23105
23115
|
}, {
|
|
23106
|
-
|
|
23107
|
-
|
|
23108
|
-
|
|
23116
|
+
id: string;
|
|
23117
|
+
pagePersistentId: string;
|
|
23118
|
+
versionId: string;
|
|
23119
|
+
timestamp: Date;
|
|
23120
|
+
visits: number;
|
|
23121
|
+
userId?: string | undefined;
|
|
23122
|
+
locale?: string | undefined;
|
|
23123
|
+
anonymousId?: string | undefined;
|
|
23109
23124
|
}>;
|
|
23110
|
-
type
|
|
23111
|
-
declare const
|
|
23112
|
-
|
|
23113
|
-
|
|
23114
|
-
|
|
23125
|
+
type DTOPublishedDocPageVisitData = z.infer<typeof DTOPublishedDocPageVisitData>;
|
|
23126
|
+
declare const DTOAnalyticsDataResponse: z.ZodArray<z.ZodObject<{
|
|
23127
|
+
id: z.ZodString;
|
|
23128
|
+
versionId: z.ZodString;
|
|
23129
|
+
pagePersistentId: z.ZodString;
|
|
23130
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
23131
|
+
timestamp: z.ZodDate;
|
|
23132
|
+
visits: z.ZodNumber;
|
|
23133
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
23134
|
+
anonymousId: z.ZodOptional<z.ZodString>;
|
|
23115
23135
|
}, "strip", z.ZodTypeAny, {
|
|
23116
|
-
|
|
23117
|
-
|
|
23118
|
-
|
|
23136
|
+
id: string;
|
|
23137
|
+
pagePersistentId: string;
|
|
23138
|
+
versionId: string;
|
|
23139
|
+
timestamp: Date;
|
|
23140
|
+
visits: number;
|
|
23141
|
+
userId?: string | undefined;
|
|
23142
|
+
locale?: string | undefined;
|
|
23143
|
+
anonymousId?: string | undefined;
|
|
23119
23144
|
}, {
|
|
23120
|
-
|
|
23121
|
-
|
|
23122
|
-
|
|
23145
|
+
id: string;
|
|
23146
|
+
pagePersistentId: string;
|
|
23147
|
+
versionId: string;
|
|
23148
|
+
timestamp: Date;
|
|
23149
|
+
visits: number;
|
|
23150
|
+
userId?: string | undefined;
|
|
23151
|
+
locale?: string | undefined;
|
|
23152
|
+
anonymousId?: string | undefined;
|
|
23123
23153
|
}>, "many">;
|
|
23124
|
-
type
|
|
23125
|
-
declare const DTOHour: z.ZodEnum<["12 am", "1 am", "2 am", "3 am", "4 am", "5 am", "6 am", "7 am", "8 am", "9 am", "10 am", "11 am", "12 pm", "1 pm", "2 pm", "3 pm", "4 pm", "5 pm", "6 pm", "7 pm", "8 pm", "9 pm", "10 pm", "11 pm"]>;
|
|
23126
|
-
type DTOHour = z.infer<typeof DTOHour>;
|
|
23127
|
-
declare const DTODay: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23128
|
-
type DTODay = z.infer<typeof DTODay>;
|
|
23129
|
-
declare const DTOAnalyticsHeatmapDataEntry: z.ZodObject<{
|
|
23130
|
-
x: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23131
|
-
y: z.ZodNumber;
|
|
23132
|
-
}, "strip", z.ZodTypeAny, {
|
|
23133
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23134
|
-
y: number;
|
|
23135
|
-
}, {
|
|
23136
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23137
|
-
y: number;
|
|
23138
|
-
}>;
|
|
23139
|
-
type DTOAnalyticsHeatmapDataEntry = z.infer<typeof DTOAnalyticsHeatmapDataEntry>;
|
|
23140
|
-
declare const DTOAnalyticsHeatmapData: z.ZodObject<{
|
|
23141
|
-
id: z.ZodEnum<["12 am", "1 am", "2 am", "3 am", "4 am", "5 am", "6 am", "7 am", "8 am", "9 am", "10 am", "11 am", "12 pm", "1 pm", "2 pm", "3 pm", "4 pm", "5 pm", "6 pm", "7 pm", "8 pm", "9 pm", "10 pm", "11 pm"]>;
|
|
23142
|
-
data: z.ZodArray<z.ZodObject<{
|
|
23143
|
-
x: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23144
|
-
y: z.ZodNumber;
|
|
23145
|
-
}, "strip", z.ZodTypeAny, {
|
|
23146
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23147
|
-
y: number;
|
|
23148
|
-
}, {
|
|
23149
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23150
|
-
y: number;
|
|
23151
|
-
}>, "many">;
|
|
23152
|
-
}, "strip", z.ZodTypeAny, {
|
|
23153
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23154
|
-
data: {
|
|
23155
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23156
|
-
y: number;
|
|
23157
|
-
}[];
|
|
23158
|
-
}, {
|
|
23159
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23160
|
-
data: {
|
|
23161
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23162
|
-
y: number;
|
|
23163
|
-
}[];
|
|
23164
|
-
}>;
|
|
23165
|
-
type DTOAnalyticsHeatmapData = z.infer<typeof DTOAnalyticsHeatmapData>;
|
|
23166
|
-
declare const DTOAnalyticsData: z.ZodObject<{
|
|
23167
|
-
views: z.ZodArray<z.ZodObject<{
|
|
23168
|
-
date: z.ZodString;
|
|
23169
|
-
views: z.ZodNumber;
|
|
23170
|
-
sessions: z.ZodNumber;
|
|
23171
|
-
}, "strip", z.ZodTypeAny, {
|
|
23172
|
-
date: string;
|
|
23173
|
-
views: number;
|
|
23174
|
-
sessions: number;
|
|
23175
|
-
}, {
|
|
23176
|
-
date: string;
|
|
23177
|
-
views: number;
|
|
23178
|
-
sessions: number;
|
|
23179
|
-
}>, "many">;
|
|
23180
|
-
heatmap: z.ZodArray<z.ZodObject<{
|
|
23181
|
-
id: z.ZodEnum<["12 am", "1 am", "2 am", "3 am", "4 am", "5 am", "6 am", "7 am", "8 am", "9 am", "10 am", "11 am", "12 pm", "1 pm", "2 pm", "3 pm", "4 pm", "5 pm", "6 pm", "7 pm", "8 pm", "9 pm", "10 pm", "11 pm"]>;
|
|
23182
|
-
data: z.ZodArray<z.ZodObject<{
|
|
23183
|
-
x: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23184
|
-
y: z.ZodNumber;
|
|
23185
|
-
}, "strip", z.ZodTypeAny, {
|
|
23186
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23187
|
-
y: number;
|
|
23188
|
-
}, {
|
|
23189
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23190
|
-
y: number;
|
|
23191
|
-
}>, "many">;
|
|
23192
|
-
}, "strip", z.ZodTypeAny, {
|
|
23193
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23194
|
-
data: {
|
|
23195
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23196
|
-
y: number;
|
|
23197
|
-
}[];
|
|
23198
|
-
}, {
|
|
23199
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23200
|
-
data: {
|
|
23201
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23202
|
-
y: number;
|
|
23203
|
-
}[];
|
|
23204
|
-
}>, "many">;
|
|
23205
|
-
}, "strip", z.ZodTypeAny, {
|
|
23206
|
-
views: {
|
|
23207
|
-
date: string;
|
|
23208
|
-
views: number;
|
|
23209
|
-
sessions: number;
|
|
23210
|
-
}[];
|
|
23211
|
-
heatmap: {
|
|
23212
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23213
|
-
data: {
|
|
23214
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23215
|
-
y: number;
|
|
23216
|
-
}[];
|
|
23217
|
-
}[];
|
|
23218
|
-
}, {
|
|
23219
|
-
views: {
|
|
23220
|
-
date: string;
|
|
23221
|
-
views: number;
|
|
23222
|
-
sessions: number;
|
|
23223
|
-
}[];
|
|
23224
|
-
heatmap: {
|
|
23225
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23226
|
-
data: {
|
|
23227
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23228
|
-
y: number;
|
|
23229
|
-
}[];
|
|
23230
|
-
}[];
|
|
23231
|
-
}>;
|
|
23232
|
-
type DTOAnalyticsData = z.infer<typeof DTOAnalyticsData>;
|
|
23233
|
-
declare const DTOAnalyticsPerPageData: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23234
|
-
views: z.ZodArray<z.ZodObject<{
|
|
23235
|
-
date: z.ZodString;
|
|
23236
|
-
views: z.ZodNumber;
|
|
23237
|
-
sessions: z.ZodNumber;
|
|
23238
|
-
}, "strip", z.ZodTypeAny, {
|
|
23239
|
-
date: string;
|
|
23240
|
-
views: number;
|
|
23241
|
-
sessions: number;
|
|
23242
|
-
}, {
|
|
23243
|
-
date: string;
|
|
23244
|
-
views: number;
|
|
23245
|
-
sessions: number;
|
|
23246
|
-
}>, "many">;
|
|
23247
|
-
heatmap: z.ZodArray<z.ZodObject<{
|
|
23248
|
-
id: z.ZodEnum<["12 am", "1 am", "2 am", "3 am", "4 am", "5 am", "6 am", "7 am", "8 am", "9 am", "10 am", "11 am", "12 pm", "1 pm", "2 pm", "3 pm", "4 pm", "5 pm", "6 pm", "7 pm", "8 pm", "9 pm", "10 pm", "11 pm"]>;
|
|
23249
|
-
data: z.ZodArray<z.ZodObject<{
|
|
23250
|
-
x: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23251
|
-
y: z.ZodNumber;
|
|
23252
|
-
}, "strip", z.ZodTypeAny, {
|
|
23253
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23254
|
-
y: number;
|
|
23255
|
-
}, {
|
|
23256
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23257
|
-
y: number;
|
|
23258
|
-
}>, "many">;
|
|
23259
|
-
}, "strip", z.ZodTypeAny, {
|
|
23260
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23261
|
-
data: {
|
|
23262
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23263
|
-
y: number;
|
|
23264
|
-
}[];
|
|
23265
|
-
}, {
|
|
23266
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23267
|
-
data: {
|
|
23268
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23269
|
-
y: number;
|
|
23270
|
-
}[];
|
|
23271
|
-
}>, "many">;
|
|
23272
|
-
}, "strip", z.ZodTypeAny, {
|
|
23273
|
-
views: {
|
|
23274
|
-
date: string;
|
|
23275
|
-
views: number;
|
|
23276
|
-
sessions: number;
|
|
23277
|
-
}[];
|
|
23278
|
-
heatmap: {
|
|
23279
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23280
|
-
data: {
|
|
23281
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23282
|
-
y: number;
|
|
23283
|
-
}[];
|
|
23284
|
-
}[];
|
|
23285
|
-
}, {
|
|
23286
|
-
views: {
|
|
23287
|
-
date: string;
|
|
23288
|
-
views: number;
|
|
23289
|
-
sessions: number;
|
|
23290
|
-
}[];
|
|
23291
|
-
heatmap: {
|
|
23292
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23293
|
-
data: {
|
|
23294
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23295
|
-
y: number;
|
|
23296
|
-
}[];
|
|
23297
|
-
}[];
|
|
23298
|
-
}>>;
|
|
23299
|
-
type DTOAnalyticsPerPageData = z.infer<typeof DTOAnalyticsPerPageData>;
|
|
23300
|
-
declare const DTOAnalyticsDataResponse: z.ZodObject<{
|
|
23301
|
-
versionViews: z.ZodArray<z.ZodObject<{
|
|
23302
|
-
date: z.ZodString;
|
|
23303
|
-
views: z.ZodNumber;
|
|
23304
|
-
sessions: z.ZodNumber;
|
|
23305
|
-
}, "strip", z.ZodTypeAny, {
|
|
23306
|
-
date: string;
|
|
23307
|
-
views: number;
|
|
23308
|
-
sessions: number;
|
|
23309
|
-
}, {
|
|
23310
|
-
date: string;
|
|
23311
|
-
views: number;
|
|
23312
|
-
sessions: number;
|
|
23313
|
-
}>, "many">;
|
|
23314
|
-
heatmap: z.ZodArray<z.ZodObject<{
|
|
23315
|
-
id: z.ZodEnum<["12 am", "1 am", "2 am", "3 am", "4 am", "5 am", "6 am", "7 am", "8 am", "9 am", "10 am", "11 am", "12 pm", "1 pm", "2 pm", "3 pm", "4 pm", "5 pm", "6 pm", "7 pm", "8 pm", "9 pm", "10 pm", "11 pm"]>;
|
|
23316
|
-
data: z.ZodArray<z.ZodObject<{
|
|
23317
|
-
x: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23318
|
-
y: z.ZodNumber;
|
|
23319
|
-
}, "strip", z.ZodTypeAny, {
|
|
23320
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23321
|
-
y: number;
|
|
23322
|
-
}, {
|
|
23323
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23324
|
-
y: number;
|
|
23325
|
-
}>, "many">;
|
|
23326
|
-
}, "strip", z.ZodTypeAny, {
|
|
23327
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23328
|
-
data: {
|
|
23329
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23330
|
-
y: number;
|
|
23331
|
-
}[];
|
|
23332
|
-
}, {
|
|
23333
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23334
|
-
data: {
|
|
23335
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23336
|
-
y: number;
|
|
23337
|
-
}[];
|
|
23338
|
-
}>, "many">;
|
|
23339
|
-
pages: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23340
|
-
views: z.ZodArray<z.ZodObject<{
|
|
23341
|
-
date: z.ZodString;
|
|
23342
|
-
views: z.ZodNumber;
|
|
23343
|
-
sessions: z.ZodNumber;
|
|
23344
|
-
}, "strip", z.ZodTypeAny, {
|
|
23345
|
-
date: string;
|
|
23346
|
-
views: number;
|
|
23347
|
-
sessions: number;
|
|
23348
|
-
}, {
|
|
23349
|
-
date: string;
|
|
23350
|
-
views: number;
|
|
23351
|
-
sessions: number;
|
|
23352
|
-
}>, "many">;
|
|
23353
|
-
heatmap: z.ZodArray<z.ZodObject<{
|
|
23354
|
-
id: z.ZodEnum<["12 am", "1 am", "2 am", "3 am", "4 am", "5 am", "6 am", "7 am", "8 am", "9 am", "10 am", "11 am", "12 pm", "1 pm", "2 pm", "3 pm", "4 pm", "5 pm", "6 pm", "7 pm", "8 pm", "9 pm", "10 pm", "11 pm"]>;
|
|
23355
|
-
data: z.ZodArray<z.ZodObject<{
|
|
23356
|
-
x: z.ZodEnum<["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]>;
|
|
23357
|
-
y: z.ZodNumber;
|
|
23358
|
-
}, "strip", z.ZodTypeAny, {
|
|
23359
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23360
|
-
y: number;
|
|
23361
|
-
}, {
|
|
23362
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23363
|
-
y: number;
|
|
23364
|
-
}>, "many">;
|
|
23365
|
-
}, "strip", z.ZodTypeAny, {
|
|
23366
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23367
|
-
data: {
|
|
23368
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23369
|
-
y: number;
|
|
23370
|
-
}[];
|
|
23371
|
-
}, {
|
|
23372
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23373
|
-
data: {
|
|
23374
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23375
|
-
y: number;
|
|
23376
|
-
}[];
|
|
23377
|
-
}>, "many">;
|
|
23378
|
-
}, "strip", z.ZodTypeAny, {
|
|
23379
|
-
views: {
|
|
23380
|
-
date: string;
|
|
23381
|
-
views: number;
|
|
23382
|
-
sessions: number;
|
|
23383
|
-
}[];
|
|
23384
|
-
heatmap: {
|
|
23385
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23386
|
-
data: {
|
|
23387
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23388
|
-
y: number;
|
|
23389
|
-
}[];
|
|
23390
|
-
}[];
|
|
23391
|
-
}, {
|
|
23392
|
-
views: {
|
|
23393
|
-
date: string;
|
|
23394
|
-
views: number;
|
|
23395
|
-
sessions: number;
|
|
23396
|
-
}[];
|
|
23397
|
-
heatmap: {
|
|
23398
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23399
|
-
data: {
|
|
23400
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23401
|
-
y: number;
|
|
23402
|
-
}[];
|
|
23403
|
-
}[];
|
|
23404
|
-
}>>;
|
|
23405
|
-
}, "strip", z.ZodTypeAny, {
|
|
23406
|
-
heatmap: {
|
|
23407
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23408
|
-
data: {
|
|
23409
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23410
|
-
y: number;
|
|
23411
|
-
}[];
|
|
23412
|
-
}[];
|
|
23413
|
-
versionViews: {
|
|
23414
|
-
date: string;
|
|
23415
|
-
views: number;
|
|
23416
|
-
sessions: number;
|
|
23417
|
-
}[];
|
|
23418
|
-
pages: Record<string, {
|
|
23419
|
-
views: {
|
|
23420
|
-
date: string;
|
|
23421
|
-
views: number;
|
|
23422
|
-
sessions: number;
|
|
23423
|
-
}[];
|
|
23424
|
-
heatmap: {
|
|
23425
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23426
|
-
data: {
|
|
23427
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23428
|
-
y: number;
|
|
23429
|
-
}[];
|
|
23430
|
-
}[];
|
|
23431
|
-
}>;
|
|
23432
|
-
}, {
|
|
23433
|
-
heatmap: {
|
|
23434
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23435
|
-
data: {
|
|
23436
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23437
|
-
y: number;
|
|
23438
|
-
}[];
|
|
23439
|
-
}[];
|
|
23440
|
-
versionViews: {
|
|
23441
|
-
date: string;
|
|
23442
|
-
views: number;
|
|
23443
|
-
sessions: number;
|
|
23444
|
-
}[];
|
|
23445
|
-
pages: Record<string, {
|
|
23446
|
-
views: {
|
|
23447
|
-
date: string;
|
|
23448
|
-
views: number;
|
|
23449
|
-
sessions: number;
|
|
23450
|
-
}[];
|
|
23451
|
-
heatmap: {
|
|
23452
|
-
id: "12 am" | "1 am" | "2 am" | "3 am" | "4 am" | "5 am" | "6 am" | "7 am" | "8 am" | "9 am" | "10 am" | "11 am" | "12 pm" | "1 pm" | "2 pm" | "3 pm" | "4 pm" | "5 pm" | "6 pm" | "7 pm" | "8 pm" | "9 pm" | "10 pm" | "11 pm";
|
|
23453
|
-
data: {
|
|
23454
|
-
x: "Mon" | "Tue" | "Wed" | "Thu" | "Fri" | "Sat" | "Sun";
|
|
23455
|
-
y: number;
|
|
23456
|
-
}[];
|
|
23457
|
-
}[];
|
|
23458
|
-
}>;
|
|
23459
|
-
}>;
|
|
23460
|
-
type DTOAnalyticsDataResponse = z.infer<typeof DTOAnalyticsDataResponse>;
|
|
23154
|
+
type DTODocumentationPageAnalyticsResponse = z.infer<typeof DTOAnalyticsDataResponse>;
|
|
23461
23155
|
|
|
23462
23156
|
declare const DTODocumentationPageAnchor: z.ZodObject<{
|
|
23463
23157
|
blockId: z.ZodString;
|
|
@@ -107519,4 +107213,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
107519
107213
|
reason: ValidationErrorReason | undefined;
|
|
107520
107214
|
};
|
|
107521
107215
|
|
|
107522
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAnalyticsData, DTOAnalyticsDataResponse, DTOAnalyticsHeatmapData, DTOAnalyticsHeatmapDataEntry, DTOAnalyticsPerPageData, DTOAnalyticsViewsData, DTOAnalyticsViewsDataPoint, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODay, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOHour, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
107216
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAnalyticsDataResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, type DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocPageVisitData, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|