@supernova-studio/model 0.48.6 → 0.48.8
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 +256 -1
- package/dist/index.d.ts +256 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/element-snapshots/base.ts +1 -0
- package/src/export/export-destinations.ts +7 -0
package/dist/index.d.mts
CHANGED
|
@@ -2165,10 +2165,31 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2165
2165
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
2166
2166
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
2167
2167
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
2168
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2169
|
+
pagePersistentIds: string[];
|
|
2170
|
+
groupPersistentIds: string[];
|
|
2171
|
+
}, z.ZodTypeDef, {
|
|
2172
|
+
pagePersistentIds: string[];
|
|
2173
|
+
groupPersistentIds: string[];
|
|
2174
|
+
}>>>, {
|
|
2175
|
+
pagePersistentIds: string[];
|
|
2176
|
+
groupPersistentIds: string[];
|
|
2177
|
+
} | undefined, {
|
|
2178
|
+
pagePersistentIds: string[];
|
|
2179
|
+
groupPersistentIds: string[];
|
|
2180
|
+
} | null | undefined>;
|
|
2168
2181
|
}, "strip", z.ZodTypeAny, {
|
|
2169
2182
|
environment: "Live" | "Preview";
|
|
2183
|
+
changes?: {
|
|
2184
|
+
pagePersistentIds: string[];
|
|
2185
|
+
groupPersistentIds: string[];
|
|
2186
|
+
} | undefined;
|
|
2170
2187
|
}, {
|
|
2171
2188
|
environment: "Live" | "Preview";
|
|
2189
|
+
changes?: {
|
|
2190
|
+
pagePersistentIds: string[];
|
|
2191
|
+
groupPersistentIds: string[];
|
|
2192
|
+
} | null | undefined;
|
|
2172
2193
|
}>>;
|
|
2173
2194
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
2174
2195
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
@@ -2299,6 +2320,10 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2299
2320
|
webhookUrl?: string | undefined;
|
|
2300
2321
|
destinationSnDocs?: {
|
|
2301
2322
|
environment: "Live" | "Preview";
|
|
2323
|
+
changes?: {
|
|
2324
|
+
pagePersistentIds: string[];
|
|
2325
|
+
groupPersistentIds: string[];
|
|
2326
|
+
} | undefined;
|
|
2302
2327
|
} | undefined;
|
|
2303
2328
|
destinationS3?: {} | undefined;
|
|
2304
2329
|
destinationGithub?: {
|
|
@@ -2352,6 +2377,10 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2352
2377
|
webhookUrl?: string | undefined;
|
|
2353
2378
|
destinationSnDocs?: {
|
|
2354
2379
|
environment: "Live" | "Preview";
|
|
2380
|
+
changes?: {
|
|
2381
|
+
pagePersistentIds: string[];
|
|
2382
|
+
groupPersistentIds: string[];
|
|
2383
|
+
} | null | undefined;
|
|
2355
2384
|
} | undefined;
|
|
2356
2385
|
destinationS3?: {} | undefined;
|
|
2357
2386
|
destinationGithub?: {
|
|
@@ -2486,6 +2515,10 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2486
2515
|
webhookUrl?: string | undefined;
|
|
2487
2516
|
destinationSnDocs?: {
|
|
2488
2517
|
environment: "Live" | "Preview";
|
|
2518
|
+
changes?: {
|
|
2519
|
+
pagePersistentIds: string[];
|
|
2520
|
+
groupPersistentIds: string[];
|
|
2521
|
+
} | undefined;
|
|
2489
2522
|
} | undefined;
|
|
2490
2523
|
destinationS3?: {} | undefined;
|
|
2491
2524
|
destinationGithub?: {
|
|
@@ -2610,6 +2643,10 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2610
2643
|
webhookUrl?: string | undefined;
|
|
2611
2644
|
destinationSnDocs?: {
|
|
2612
2645
|
environment: "Live" | "Preview";
|
|
2646
|
+
changes?: {
|
|
2647
|
+
pagePersistentIds: string[];
|
|
2648
|
+
groupPersistentIds: string[];
|
|
2649
|
+
} | null | undefined;
|
|
2613
2650
|
} | undefined;
|
|
2614
2651
|
destinationS3?: {} | undefined;
|
|
2615
2652
|
destinationGithub?: {
|
|
@@ -15903,10 +15940,31 @@ declare const UserDump: z.ZodObject<{
|
|
|
15903
15940
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
15904
15941
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
15905
15942
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
15943
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15944
|
+
pagePersistentIds: string[];
|
|
15945
|
+
groupPersistentIds: string[];
|
|
15946
|
+
}, z.ZodTypeDef, {
|
|
15947
|
+
pagePersistentIds: string[];
|
|
15948
|
+
groupPersistentIds: string[];
|
|
15949
|
+
}>>>, {
|
|
15950
|
+
pagePersistentIds: string[];
|
|
15951
|
+
groupPersistentIds: string[];
|
|
15952
|
+
} | undefined, {
|
|
15953
|
+
pagePersistentIds: string[];
|
|
15954
|
+
groupPersistentIds: string[];
|
|
15955
|
+
} | null | undefined>;
|
|
15906
15956
|
}, "strip", z.ZodTypeAny, {
|
|
15907
15957
|
environment: "Live" | "Preview";
|
|
15958
|
+
changes?: {
|
|
15959
|
+
pagePersistentIds: string[];
|
|
15960
|
+
groupPersistentIds: string[];
|
|
15961
|
+
} | undefined;
|
|
15908
15962
|
}, {
|
|
15909
15963
|
environment: "Live" | "Preview";
|
|
15964
|
+
changes?: {
|
|
15965
|
+
pagePersistentIds: string[];
|
|
15966
|
+
groupPersistentIds: string[];
|
|
15967
|
+
} | null | undefined;
|
|
15910
15968
|
}>>;
|
|
15911
15969
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
15912
15970
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
@@ -16037,6 +16095,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
16037
16095
|
webhookUrl?: string | undefined;
|
|
16038
16096
|
destinationSnDocs?: {
|
|
16039
16097
|
environment: "Live" | "Preview";
|
|
16098
|
+
changes?: {
|
|
16099
|
+
pagePersistentIds: string[];
|
|
16100
|
+
groupPersistentIds: string[];
|
|
16101
|
+
} | undefined;
|
|
16040
16102
|
} | undefined;
|
|
16041
16103
|
destinationS3?: {} | undefined;
|
|
16042
16104
|
destinationGithub?: {
|
|
@@ -16090,6 +16152,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
16090
16152
|
webhookUrl?: string | undefined;
|
|
16091
16153
|
destinationSnDocs?: {
|
|
16092
16154
|
environment: "Live" | "Preview";
|
|
16155
|
+
changes?: {
|
|
16156
|
+
pagePersistentIds: string[];
|
|
16157
|
+
groupPersistentIds: string[];
|
|
16158
|
+
} | null | undefined;
|
|
16093
16159
|
} | undefined;
|
|
16094
16160
|
destinationS3?: {} | undefined;
|
|
16095
16161
|
destinationGithub?: {
|
|
@@ -16224,6 +16290,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
16224
16290
|
webhookUrl?: string | undefined;
|
|
16225
16291
|
destinationSnDocs?: {
|
|
16226
16292
|
environment: "Live" | "Preview";
|
|
16293
|
+
changes?: {
|
|
16294
|
+
pagePersistentIds: string[];
|
|
16295
|
+
groupPersistentIds: string[];
|
|
16296
|
+
} | undefined;
|
|
16227
16297
|
} | undefined;
|
|
16228
16298
|
destinationS3?: {} | undefined;
|
|
16229
16299
|
destinationGithub?: {
|
|
@@ -16348,6 +16418,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
16348
16418
|
webhookUrl?: string | undefined;
|
|
16349
16419
|
destinationSnDocs?: {
|
|
16350
16420
|
environment: "Live" | "Preview";
|
|
16421
|
+
changes?: {
|
|
16422
|
+
pagePersistentIds: string[];
|
|
16423
|
+
groupPersistentIds: string[];
|
|
16424
|
+
} | null | undefined;
|
|
16351
16425
|
} | undefined;
|
|
16352
16426
|
destinationS3?: {} | undefined;
|
|
16353
16427
|
destinationGithub?: {
|
|
@@ -17290,6 +17364,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
17290
17364
|
webhookUrl?: string | undefined;
|
|
17291
17365
|
destinationSnDocs?: {
|
|
17292
17366
|
environment: "Live" | "Preview";
|
|
17367
|
+
changes?: {
|
|
17368
|
+
pagePersistentIds: string[];
|
|
17369
|
+
groupPersistentIds: string[];
|
|
17370
|
+
} | undefined;
|
|
17293
17371
|
} | undefined;
|
|
17294
17372
|
destinationS3?: {} | undefined;
|
|
17295
17373
|
destinationGithub?: {
|
|
@@ -18074,6 +18152,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
18074
18152
|
webhookUrl?: string | undefined;
|
|
18075
18153
|
destinationSnDocs?: {
|
|
18076
18154
|
environment: "Live" | "Preview";
|
|
18155
|
+
changes?: {
|
|
18156
|
+
pagePersistentIds: string[];
|
|
18157
|
+
groupPersistentIds: string[];
|
|
18158
|
+
} | null | undefined;
|
|
18077
18159
|
} | undefined;
|
|
18078
18160
|
destinationS3?: {} | undefined;
|
|
18079
18161
|
destinationGithub?: {
|
|
@@ -18860,6 +18942,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
18860
18942
|
webhookUrl?: string | undefined;
|
|
18861
18943
|
destinationSnDocs?: {
|
|
18862
18944
|
environment: "Live" | "Preview";
|
|
18945
|
+
changes?: {
|
|
18946
|
+
pagePersistentIds: string[];
|
|
18947
|
+
groupPersistentIds: string[];
|
|
18948
|
+
} | undefined;
|
|
18863
18949
|
} | undefined;
|
|
18864
18950
|
destinationS3?: {} | undefined;
|
|
18865
18951
|
destinationGithub?: {
|
|
@@ -19714,6 +19800,10 @@ declare const UserDump: z.ZodObject<{
|
|
|
19714
19800
|
webhookUrl?: string | undefined;
|
|
19715
19801
|
destinationSnDocs?: {
|
|
19716
19802
|
environment: "Live" | "Preview";
|
|
19803
|
+
changes?: {
|
|
19804
|
+
pagePersistentIds: string[];
|
|
19805
|
+
groupPersistentIds: string[];
|
|
19806
|
+
} | null | undefined;
|
|
19717
19807
|
} | undefined;
|
|
19718
19808
|
destinationS3?: {} | undefined;
|
|
19719
19809
|
destinationGithub?: {
|
|
@@ -25611,10 +25701,31 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25611
25701
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
25612
25702
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
25613
25703
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
25704
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
25705
|
+
pagePersistentIds: string[];
|
|
25706
|
+
groupPersistentIds: string[];
|
|
25707
|
+
}, z.ZodTypeDef, {
|
|
25708
|
+
pagePersistentIds: string[];
|
|
25709
|
+
groupPersistentIds: string[];
|
|
25710
|
+
}>>>, {
|
|
25711
|
+
pagePersistentIds: string[];
|
|
25712
|
+
groupPersistentIds: string[];
|
|
25713
|
+
} | undefined, {
|
|
25714
|
+
pagePersistentIds: string[];
|
|
25715
|
+
groupPersistentIds: string[];
|
|
25716
|
+
} | null | undefined>;
|
|
25614
25717
|
}, "strip", z.ZodTypeAny, {
|
|
25615
25718
|
environment: "Live" | "Preview";
|
|
25719
|
+
changes?: {
|
|
25720
|
+
pagePersistentIds: string[];
|
|
25721
|
+
groupPersistentIds: string[];
|
|
25722
|
+
} | undefined;
|
|
25616
25723
|
}, {
|
|
25617
25724
|
environment: "Live" | "Preview";
|
|
25725
|
+
changes?: {
|
|
25726
|
+
pagePersistentIds: string[];
|
|
25727
|
+
groupPersistentIds: string[];
|
|
25728
|
+
} | null | undefined;
|
|
25618
25729
|
}>>;
|
|
25619
25730
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
25620
25731
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
@@ -25745,6 +25856,10 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25745
25856
|
webhookUrl?: string | undefined;
|
|
25746
25857
|
destinationSnDocs?: {
|
|
25747
25858
|
environment: "Live" | "Preview";
|
|
25859
|
+
changes?: {
|
|
25860
|
+
pagePersistentIds: string[];
|
|
25861
|
+
groupPersistentIds: string[];
|
|
25862
|
+
} | undefined;
|
|
25748
25863
|
} | undefined;
|
|
25749
25864
|
destinationS3?: {} | undefined;
|
|
25750
25865
|
destinationGithub?: {
|
|
@@ -25798,6 +25913,10 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25798
25913
|
webhookUrl?: string | undefined;
|
|
25799
25914
|
destinationSnDocs?: {
|
|
25800
25915
|
environment: "Live" | "Preview";
|
|
25916
|
+
changes?: {
|
|
25917
|
+
pagePersistentIds: string[];
|
|
25918
|
+
groupPersistentIds: string[];
|
|
25919
|
+
} | null | undefined;
|
|
25801
25920
|
} | undefined;
|
|
25802
25921
|
destinationS3?: {} | undefined;
|
|
25803
25922
|
destinationGithub?: {
|
|
@@ -25932,6 +26051,10 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25932
26051
|
webhookUrl?: string | undefined;
|
|
25933
26052
|
destinationSnDocs?: {
|
|
25934
26053
|
environment: "Live" | "Preview";
|
|
26054
|
+
changes?: {
|
|
26055
|
+
pagePersistentIds: string[];
|
|
26056
|
+
groupPersistentIds: string[];
|
|
26057
|
+
} | undefined;
|
|
25935
26058
|
} | undefined;
|
|
25936
26059
|
destinationS3?: {} | undefined;
|
|
25937
26060
|
destinationGithub?: {
|
|
@@ -26056,6 +26179,10 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26056
26179
|
webhookUrl?: string | undefined;
|
|
26057
26180
|
destinationSnDocs?: {
|
|
26058
26181
|
environment: "Live" | "Preview";
|
|
26182
|
+
changes?: {
|
|
26183
|
+
pagePersistentIds: string[];
|
|
26184
|
+
groupPersistentIds: string[];
|
|
26185
|
+
} | null | undefined;
|
|
26059
26186
|
} | undefined;
|
|
26060
26187
|
destinationS3?: {} | undefined;
|
|
26061
26188
|
destinationGithub?: {
|
|
@@ -26998,6 +27125,10 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26998
27125
|
webhookUrl?: string | undefined;
|
|
26999
27126
|
destinationSnDocs?: {
|
|
27000
27127
|
environment: "Live" | "Preview";
|
|
27128
|
+
changes?: {
|
|
27129
|
+
pagePersistentIds: string[];
|
|
27130
|
+
groupPersistentIds: string[];
|
|
27131
|
+
} | undefined;
|
|
27001
27132
|
} | undefined;
|
|
27002
27133
|
destinationS3?: {} | undefined;
|
|
27003
27134
|
destinationGithub?: {
|
|
@@ -27782,6 +27913,10 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27782
27913
|
webhookUrl?: string | undefined;
|
|
27783
27914
|
destinationSnDocs?: {
|
|
27784
27915
|
environment: "Live" | "Preview";
|
|
27916
|
+
changes?: {
|
|
27917
|
+
pagePersistentIds: string[];
|
|
27918
|
+
groupPersistentIds: string[];
|
|
27919
|
+
} | null | undefined;
|
|
27785
27920
|
} | undefined;
|
|
27786
27921
|
destinationS3?: {} | undefined;
|
|
27787
27922
|
destinationGithub?: {
|
|
@@ -34547,6 +34682,7 @@ declare const DesignElementSnapshotBase: z.ZodObject<{
|
|
|
34547
34682
|
designSystemVersionId: string;
|
|
34548
34683
|
reason: "Publish" | "Deletion";
|
|
34549
34684
|
}>;
|
|
34685
|
+
type DesignElementSnapshotBase = z.infer<typeof DesignElementSnapshotBase>;
|
|
34550
34686
|
declare const DesignElementSnapshotReason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
34551
34687
|
type DesignElementSnapshotReason = z.infer<typeof DesignElementSnapshotReason>;
|
|
34552
34688
|
|
|
@@ -129228,12 +129364,44 @@ declare const ExporterFunctionPayload: z.ZodObject<{
|
|
|
129228
129364
|
}>;
|
|
129229
129365
|
type ExporterFunctionPayload = z.infer<typeof ExporterFunctionPayload>;
|
|
129230
129366
|
|
|
129367
|
+
declare const ExportJobDocumentationChanges: z.ZodObject<{
|
|
129368
|
+
pagePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
129369
|
+
groupPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
129370
|
+
}, "strip", z.ZodTypeAny, {
|
|
129371
|
+
pagePersistentIds: string[];
|
|
129372
|
+
groupPersistentIds: string[];
|
|
129373
|
+
}, {
|
|
129374
|
+
pagePersistentIds: string[];
|
|
129375
|
+
groupPersistentIds: string[];
|
|
129376
|
+
}>;
|
|
129377
|
+
type ExportJobDocumentationChanges = z.infer<typeof ExportJobDocumentationChanges>;
|
|
129231
129378
|
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
129232
129379
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
129380
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
129381
|
+
pagePersistentIds: string[];
|
|
129382
|
+
groupPersistentIds: string[];
|
|
129383
|
+
}, z.ZodTypeDef, {
|
|
129384
|
+
pagePersistentIds: string[];
|
|
129385
|
+
groupPersistentIds: string[];
|
|
129386
|
+
}>>>, {
|
|
129387
|
+
pagePersistentIds: string[];
|
|
129388
|
+
groupPersistentIds: string[];
|
|
129389
|
+
} | undefined, {
|
|
129390
|
+
pagePersistentIds: string[];
|
|
129391
|
+
groupPersistentIds: string[];
|
|
129392
|
+
} | null | undefined>;
|
|
129233
129393
|
}, "strip", z.ZodTypeAny, {
|
|
129234
129394
|
environment: "Live" | "Preview";
|
|
129395
|
+
changes?: {
|
|
129396
|
+
pagePersistentIds: string[];
|
|
129397
|
+
groupPersistentIds: string[];
|
|
129398
|
+
} | undefined;
|
|
129235
129399
|
}, {
|
|
129236
129400
|
environment: "Live" | "Preview";
|
|
129401
|
+
changes?: {
|
|
129402
|
+
pagePersistentIds: string[];
|
|
129403
|
+
groupPersistentIds: string[];
|
|
129404
|
+
} | null | undefined;
|
|
129237
129405
|
}>;
|
|
129238
129406
|
type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
|
|
129239
129407
|
declare const ExporterDestinationS3: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
@@ -129352,10 +129520,31 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
129352
129520
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
129353
129521
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
129354
129522
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
129523
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
129524
|
+
pagePersistentIds: string[];
|
|
129525
|
+
groupPersistentIds: string[];
|
|
129526
|
+
}, z.ZodTypeDef, {
|
|
129527
|
+
pagePersistentIds: string[];
|
|
129528
|
+
groupPersistentIds: string[];
|
|
129529
|
+
}>>>, {
|
|
129530
|
+
pagePersistentIds: string[];
|
|
129531
|
+
groupPersistentIds: string[];
|
|
129532
|
+
} | undefined, {
|
|
129533
|
+
pagePersistentIds: string[];
|
|
129534
|
+
groupPersistentIds: string[];
|
|
129535
|
+
} | null | undefined>;
|
|
129355
129536
|
}, "strip", z.ZodTypeAny, {
|
|
129356
129537
|
environment: "Live" | "Preview";
|
|
129538
|
+
changes?: {
|
|
129539
|
+
pagePersistentIds: string[];
|
|
129540
|
+
groupPersistentIds: string[];
|
|
129541
|
+
} | undefined;
|
|
129357
129542
|
}, {
|
|
129358
129543
|
environment: "Live" | "Preview";
|
|
129544
|
+
changes?: {
|
|
129545
|
+
pagePersistentIds: string[];
|
|
129546
|
+
groupPersistentIds: string[];
|
|
129547
|
+
} | null | undefined;
|
|
129359
129548
|
}>>;
|
|
129360
129549
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
129361
129550
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
@@ -129468,6 +129657,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
129468
129657
|
webhookUrl?: string | undefined;
|
|
129469
129658
|
destinationSnDocs?: {
|
|
129470
129659
|
environment: "Live" | "Preview";
|
|
129660
|
+
changes?: {
|
|
129661
|
+
pagePersistentIds: string[];
|
|
129662
|
+
groupPersistentIds: string[];
|
|
129663
|
+
} | undefined;
|
|
129471
129664
|
} | undefined;
|
|
129472
129665
|
destinationS3?: {} | undefined;
|
|
129473
129666
|
destinationGithub?: {
|
|
@@ -129512,6 +129705,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
129512
129705
|
webhookUrl?: string | undefined;
|
|
129513
129706
|
destinationSnDocs?: {
|
|
129514
129707
|
environment: "Live" | "Preview";
|
|
129708
|
+
changes?: {
|
|
129709
|
+
pagePersistentIds: string[];
|
|
129710
|
+
groupPersistentIds: string[];
|
|
129711
|
+
} | null | undefined;
|
|
129515
129712
|
} | undefined;
|
|
129516
129713
|
destinationS3?: {} | undefined;
|
|
129517
129714
|
destinationGithub?: {
|
|
@@ -129782,10 +129979,31 @@ declare const ExportJob: z.ZodObject<{
|
|
|
129782
129979
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
129783
129980
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
129784
129981
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
129982
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
129983
|
+
pagePersistentIds: string[];
|
|
129984
|
+
groupPersistentIds: string[];
|
|
129985
|
+
}, z.ZodTypeDef, {
|
|
129986
|
+
pagePersistentIds: string[];
|
|
129987
|
+
groupPersistentIds: string[];
|
|
129988
|
+
}>>>, {
|
|
129989
|
+
pagePersistentIds: string[];
|
|
129990
|
+
groupPersistentIds: string[];
|
|
129991
|
+
} | undefined, {
|
|
129992
|
+
pagePersistentIds: string[];
|
|
129993
|
+
groupPersistentIds: string[];
|
|
129994
|
+
} | null | undefined>;
|
|
129785
129995
|
}, "strip", z.ZodTypeAny, {
|
|
129786
129996
|
environment: "Live" | "Preview";
|
|
129997
|
+
changes?: {
|
|
129998
|
+
pagePersistentIds: string[];
|
|
129999
|
+
groupPersistentIds: string[];
|
|
130000
|
+
} | undefined;
|
|
129787
130001
|
}, {
|
|
129788
130002
|
environment: "Live" | "Preview";
|
|
130003
|
+
changes?: {
|
|
130004
|
+
pagePersistentIds: string[];
|
|
130005
|
+
groupPersistentIds: string[];
|
|
130006
|
+
} | null | undefined;
|
|
129789
130007
|
}>>;
|
|
129790
130008
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
129791
130009
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
@@ -130081,6 +130299,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
130081
130299
|
webhookUrl?: string | undefined;
|
|
130082
130300
|
destinationSnDocs?: {
|
|
130083
130301
|
environment: "Live" | "Preview";
|
|
130302
|
+
changes?: {
|
|
130303
|
+
pagePersistentIds: string[];
|
|
130304
|
+
groupPersistentIds: string[];
|
|
130305
|
+
} | undefined;
|
|
130084
130306
|
} | undefined;
|
|
130085
130307
|
destinationS3?: {} | undefined;
|
|
130086
130308
|
destinationGithub?: {
|
|
@@ -130170,6 +130392,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
130170
130392
|
webhookUrl?: string | undefined;
|
|
130171
130393
|
destinationSnDocs?: {
|
|
130172
130394
|
environment: "Live" | "Preview";
|
|
130395
|
+
changes?: {
|
|
130396
|
+
pagePersistentIds: string[];
|
|
130397
|
+
groupPersistentIds: string[];
|
|
130398
|
+
} | null | undefined;
|
|
130173
130399
|
} | undefined;
|
|
130174
130400
|
destinationS3?: {} | undefined;
|
|
130175
130401
|
destinationGithub?: {
|
|
@@ -131243,10 +131469,31 @@ declare const Pipeline: z.ZodObject<{
|
|
|
131243
131469
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
131244
131470
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
131245
131471
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
131472
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
131473
|
+
pagePersistentIds: string[];
|
|
131474
|
+
groupPersistentIds: string[];
|
|
131475
|
+
}, z.ZodTypeDef, {
|
|
131476
|
+
pagePersistentIds: string[];
|
|
131477
|
+
groupPersistentIds: string[];
|
|
131478
|
+
}>>>, {
|
|
131479
|
+
pagePersistentIds: string[];
|
|
131480
|
+
groupPersistentIds: string[];
|
|
131481
|
+
} | undefined, {
|
|
131482
|
+
pagePersistentIds: string[];
|
|
131483
|
+
groupPersistentIds: string[];
|
|
131484
|
+
} | null | undefined>;
|
|
131246
131485
|
}, "strip", z.ZodTypeAny, {
|
|
131247
131486
|
environment: "Live" | "Preview";
|
|
131487
|
+
changes?: {
|
|
131488
|
+
pagePersistentIds: string[];
|
|
131489
|
+
groupPersistentIds: string[];
|
|
131490
|
+
} | undefined;
|
|
131248
131491
|
}, {
|
|
131249
131492
|
environment: "Live" | "Preview";
|
|
131493
|
+
changes?: {
|
|
131494
|
+
pagePersistentIds: string[];
|
|
131495
|
+
groupPersistentIds: string[];
|
|
131496
|
+
} | null | undefined;
|
|
131250
131497
|
}>>;
|
|
131251
131498
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
131252
131499
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
@@ -131377,6 +131624,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
131377
131624
|
webhookUrl?: string | undefined;
|
|
131378
131625
|
destinationSnDocs?: {
|
|
131379
131626
|
environment: "Live" | "Preview";
|
|
131627
|
+
changes?: {
|
|
131628
|
+
pagePersistentIds: string[];
|
|
131629
|
+
groupPersistentIds: string[];
|
|
131630
|
+
} | undefined;
|
|
131380
131631
|
} | undefined;
|
|
131381
131632
|
destinationS3?: {} | undefined;
|
|
131382
131633
|
destinationGithub?: {
|
|
@@ -131430,6 +131681,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
131430
131681
|
webhookUrl?: string | undefined;
|
|
131431
131682
|
destinationSnDocs?: {
|
|
131432
131683
|
environment: "Live" | "Preview";
|
|
131684
|
+
changes?: {
|
|
131685
|
+
pagePersistentIds: string[];
|
|
131686
|
+
groupPersistentIds: string[];
|
|
131687
|
+
} | null | undefined;
|
|
131433
131688
|
} | undefined;
|
|
131434
131689
|
destinationS3?: {} | undefined;
|
|
131435
131690
|
destinationGithub?: {
|
|
@@ -162079,4 +162334,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
162079
162334
|
}>;
|
|
162080
162335
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
162081
162336
|
|
|
162082
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
162337
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|