@supernova-studio/model 0.58.14 → 0.58.16
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 +98 -47
- package/dist/index.d.ts +98 -47
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/published-doc-page-visits.ts +1 -1
- package/src/dsm/published-doc-page.ts +5 -1
- package/src/utils/common.ts +8 -0
package/dist/index.d.mts
CHANGED
|
@@ -5358,6 +5358,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5358
5358
|
id: z.ZodString;
|
|
5359
5359
|
publishedDocId: z.ZodString;
|
|
5360
5360
|
pageShortPersistentId: z.ZodString;
|
|
5361
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
5361
5362
|
pathV1: z.ZodString;
|
|
5362
5363
|
pathV2: z.ZodString;
|
|
5363
5364
|
storagePath: z.ZodString;
|
|
@@ -5373,10 +5374,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5373
5374
|
isHidden: boolean;
|
|
5374
5375
|
isPrivate: boolean;
|
|
5375
5376
|
storagePath: string;
|
|
5376
|
-
pageShortPersistentId: string;
|
|
5377
5377
|
publishedDocId: string;
|
|
5378
|
+
pageShortPersistentId: string;
|
|
5378
5379
|
pathV1: string;
|
|
5379
5380
|
pathV2: string;
|
|
5381
|
+
pagePersistentId?: string | undefined;
|
|
5380
5382
|
locale?: string | undefined;
|
|
5381
5383
|
}, {
|
|
5382
5384
|
id: string;
|
|
@@ -5385,10 +5387,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5385
5387
|
isHidden: boolean;
|
|
5386
5388
|
isPrivate: boolean;
|
|
5387
5389
|
storagePath: string;
|
|
5388
|
-
pageShortPersistentId: string;
|
|
5389
5390
|
publishedDocId: string;
|
|
5391
|
+
pageShortPersistentId: string;
|
|
5390
5392
|
pathV1: string;
|
|
5391
5393
|
pathV2: string;
|
|
5394
|
+
pagePersistentId?: string | undefined;
|
|
5392
5395
|
locale?: string | undefined;
|
|
5393
5396
|
}>, "many">;
|
|
5394
5397
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5417,10 +5420,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5417
5420
|
isHidden: boolean;
|
|
5418
5421
|
isPrivate: boolean;
|
|
5419
5422
|
storagePath: string;
|
|
5420
|
-
pageShortPersistentId: string;
|
|
5421
5423
|
publishedDocId: string;
|
|
5424
|
+
pageShortPersistentId: string;
|
|
5422
5425
|
pathV1: string;
|
|
5423
5426
|
pathV2: string;
|
|
5427
|
+
pagePersistentId?: string | undefined;
|
|
5424
5428
|
locale?: string | undefined;
|
|
5425
5429
|
}[];
|
|
5426
5430
|
}, {
|
|
@@ -5449,10 +5453,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5449
5453
|
isHidden: boolean;
|
|
5450
5454
|
isPrivate: boolean;
|
|
5451
5455
|
storagePath: string;
|
|
5452
|
-
pageShortPersistentId: string;
|
|
5453
5456
|
publishedDocId: string;
|
|
5457
|
+
pageShortPersistentId: string;
|
|
5454
5458
|
pathV1: string;
|
|
5455
5459
|
pathV2: string;
|
|
5460
|
+
pagePersistentId?: string | undefined;
|
|
5456
5461
|
locale?: string | undefined;
|
|
5457
5462
|
}[];
|
|
5458
5463
|
}>, "many">;
|
|
@@ -5739,10 +5744,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5739
5744
|
isHidden: boolean;
|
|
5740
5745
|
isPrivate: boolean;
|
|
5741
5746
|
storagePath: string;
|
|
5742
|
-
pageShortPersistentId: string;
|
|
5743
5747
|
publishedDocId: string;
|
|
5748
|
+
pageShortPersistentId: string;
|
|
5744
5749
|
pathV1: string;
|
|
5745
5750
|
pathV2: string;
|
|
5751
|
+
pagePersistentId?: string | undefined;
|
|
5746
5752
|
locale?: string | undefined;
|
|
5747
5753
|
}[];
|
|
5748
5754
|
}[];
|
|
@@ -6019,10 +6025,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6019
6025
|
isHidden: boolean;
|
|
6020
6026
|
isPrivate: boolean;
|
|
6021
6027
|
storagePath: string;
|
|
6022
|
-
pageShortPersistentId: string;
|
|
6023
6028
|
publishedDocId: string;
|
|
6029
|
+
pageShortPersistentId: string;
|
|
6024
6030
|
pathV1: string;
|
|
6025
6031
|
pathV2: string;
|
|
6032
|
+
pagePersistentId?: string | undefined;
|
|
6026
6033
|
locale?: string | undefined;
|
|
6027
6034
|
}[];
|
|
6028
6035
|
}[];
|
|
@@ -6562,10 +6569,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6562
6569
|
isHidden: boolean;
|
|
6563
6570
|
isPrivate: boolean;
|
|
6564
6571
|
storagePath: string;
|
|
6565
|
-
pageShortPersistentId: string;
|
|
6566
6572
|
publishedDocId: string;
|
|
6573
|
+
pageShortPersistentId: string;
|
|
6567
6574
|
pathV1: string;
|
|
6568
6575
|
pathV2: string;
|
|
6576
|
+
pagePersistentId?: string | undefined;
|
|
6569
6577
|
locale?: string | undefined;
|
|
6570
6578
|
}[];
|
|
6571
6579
|
}[];
|
|
@@ -6996,10 +7004,11 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6996
7004
|
isHidden: boolean;
|
|
6997
7005
|
isPrivate: boolean;
|
|
6998
7006
|
storagePath: string;
|
|
6999
|
-
pageShortPersistentId: string;
|
|
7000
7007
|
publishedDocId: string;
|
|
7008
|
+
pageShortPersistentId: string;
|
|
7001
7009
|
pathV1: string;
|
|
7002
7010
|
pathV2: string;
|
|
7011
|
+
pagePersistentId?: string | undefined;
|
|
7003
7012
|
locale?: string | undefined;
|
|
7004
7013
|
}[];
|
|
7005
7014
|
}[];
|
|
@@ -9324,6 +9333,7 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9324
9333
|
id: z.ZodString;
|
|
9325
9334
|
publishedDocId: z.ZodString;
|
|
9326
9335
|
pageShortPersistentId: z.ZodString;
|
|
9336
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
9327
9337
|
pathV1: z.ZodString;
|
|
9328
9338
|
pathV2: z.ZodString;
|
|
9329
9339
|
storagePath: z.ZodString;
|
|
@@ -9339,10 +9349,11 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9339
9349
|
isHidden: boolean;
|
|
9340
9350
|
isPrivate: boolean;
|
|
9341
9351
|
storagePath: string;
|
|
9342
|
-
pageShortPersistentId: string;
|
|
9343
9352
|
publishedDocId: string;
|
|
9353
|
+
pageShortPersistentId: string;
|
|
9344
9354
|
pathV1: string;
|
|
9345
9355
|
pathV2: string;
|
|
9356
|
+
pagePersistentId?: string | undefined;
|
|
9346
9357
|
locale?: string | undefined;
|
|
9347
9358
|
}, {
|
|
9348
9359
|
id: string;
|
|
@@ -9351,10 +9362,11 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9351
9362
|
isHidden: boolean;
|
|
9352
9363
|
isPrivate: boolean;
|
|
9353
9364
|
storagePath: string;
|
|
9354
|
-
pageShortPersistentId: string;
|
|
9355
9365
|
publishedDocId: string;
|
|
9366
|
+
pageShortPersistentId: string;
|
|
9356
9367
|
pathV1: string;
|
|
9357
9368
|
pathV2: string;
|
|
9369
|
+
pagePersistentId?: string | undefined;
|
|
9358
9370
|
locale?: string | undefined;
|
|
9359
9371
|
}>, "many">;
|
|
9360
9372
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9383,10 +9395,11 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9383
9395
|
isHidden: boolean;
|
|
9384
9396
|
isPrivate: boolean;
|
|
9385
9397
|
storagePath: string;
|
|
9386
|
-
pageShortPersistentId: string;
|
|
9387
9398
|
publishedDocId: string;
|
|
9399
|
+
pageShortPersistentId: string;
|
|
9388
9400
|
pathV1: string;
|
|
9389
9401
|
pathV2: string;
|
|
9402
|
+
pagePersistentId?: string | undefined;
|
|
9390
9403
|
locale?: string | undefined;
|
|
9391
9404
|
}[];
|
|
9392
9405
|
}, {
|
|
@@ -9415,10 +9428,11 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9415
9428
|
isHidden: boolean;
|
|
9416
9429
|
isPrivate: boolean;
|
|
9417
9430
|
storagePath: string;
|
|
9418
|
-
pageShortPersistentId: string;
|
|
9419
9431
|
publishedDocId: string;
|
|
9432
|
+
pageShortPersistentId: string;
|
|
9420
9433
|
pathV1: string;
|
|
9421
9434
|
pathV2: string;
|
|
9435
|
+
pagePersistentId?: string | undefined;
|
|
9422
9436
|
locale?: string | undefined;
|
|
9423
9437
|
}[];
|
|
9424
9438
|
}>, "many">;
|
|
@@ -9705,10 +9719,11 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9705
9719
|
isHidden: boolean;
|
|
9706
9720
|
isPrivate: boolean;
|
|
9707
9721
|
storagePath: string;
|
|
9708
|
-
pageShortPersistentId: string;
|
|
9709
9722
|
publishedDocId: string;
|
|
9723
|
+
pageShortPersistentId: string;
|
|
9710
9724
|
pathV1: string;
|
|
9711
9725
|
pathV2: string;
|
|
9726
|
+
pagePersistentId?: string | undefined;
|
|
9712
9727
|
locale?: string | undefined;
|
|
9713
9728
|
}[];
|
|
9714
9729
|
}[];
|
|
@@ -9985,10 +10000,11 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9985
10000
|
isHidden: boolean;
|
|
9986
10001
|
isPrivate: boolean;
|
|
9987
10002
|
storagePath: string;
|
|
9988
|
-
pageShortPersistentId: string;
|
|
9989
10003
|
publishedDocId: string;
|
|
10004
|
+
pageShortPersistentId: string;
|
|
9990
10005
|
pathV1: string;
|
|
9991
10006
|
pathV2: string;
|
|
10007
|
+
pagePersistentId?: string | undefined;
|
|
9992
10008
|
locale?: string | undefined;
|
|
9993
10009
|
}[];
|
|
9994
10010
|
}[];
|
|
@@ -10058,6 +10074,7 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
10058
10074
|
id: z.ZodString;
|
|
10059
10075
|
publishedDocId: z.ZodString;
|
|
10060
10076
|
pageShortPersistentId: z.ZodString;
|
|
10077
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
10061
10078
|
pathV1: z.ZodString;
|
|
10062
10079
|
pathV2: z.ZodString;
|
|
10063
10080
|
storagePath: z.ZodString;
|
|
@@ -10073,10 +10090,11 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
10073
10090
|
isHidden: boolean;
|
|
10074
10091
|
isPrivate: boolean;
|
|
10075
10092
|
storagePath: string;
|
|
10076
|
-
pageShortPersistentId: string;
|
|
10077
10093
|
publishedDocId: string;
|
|
10094
|
+
pageShortPersistentId: string;
|
|
10078
10095
|
pathV1: string;
|
|
10079
10096
|
pathV2: string;
|
|
10097
|
+
pagePersistentId?: string | undefined;
|
|
10080
10098
|
locale?: string | undefined;
|
|
10081
10099
|
}, {
|
|
10082
10100
|
id: string;
|
|
@@ -10085,10 +10103,11 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
10085
10103
|
isHidden: boolean;
|
|
10086
10104
|
isPrivate: boolean;
|
|
10087
10105
|
storagePath: string;
|
|
10088
|
-
pageShortPersistentId: string;
|
|
10089
10106
|
publishedDocId: string;
|
|
10107
|
+
pageShortPersistentId: string;
|
|
10090
10108
|
pathV1: string;
|
|
10091
10109
|
pathV2: string;
|
|
10110
|
+
pagePersistentId?: string | undefined;
|
|
10092
10111
|
locale?: string | undefined;
|
|
10093
10112
|
}>, "many">;
|
|
10094
10113
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10117,10 +10136,11 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
10117
10136
|
isHidden: boolean;
|
|
10118
10137
|
isPrivate: boolean;
|
|
10119
10138
|
storagePath: string;
|
|
10120
|
-
pageShortPersistentId: string;
|
|
10121
10139
|
publishedDocId: string;
|
|
10140
|
+
pageShortPersistentId: string;
|
|
10122
10141
|
pathV1: string;
|
|
10123
10142
|
pathV2: string;
|
|
10143
|
+
pagePersistentId?: string | undefined;
|
|
10124
10144
|
locale?: string | undefined;
|
|
10125
10145
|
}[];
|
|
10126
10146
|
}, {
|
|
@@ -10149,10 +10169,11 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
10149
10169
|
isHidden: boolean;
|
|
10150
10170
|
isPrivate: boolean;
|
|
10151
10171
|
storagePath: string;
|
|
10152
|
-
pageShortPersistentId: string;
|
|
10153
10172
|
publishedDocId: string;
|
|
10173
|
+
pageShortPersistentId: string;
|
|
10154
10174
|
pathV1: string;
|
|
10155
10175
|
pathV2: string;
|
|
10176
|
+
pagePersistentId?: string | undefined;
|
|
10156
10177
|
locale?: string | undefined;
|
|
10157
10178
|
}[];
|
|
10158
10179
|
}>;
|
|
@@ -14475,6 +14496,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
14475
14496
|
id: z.ZodString;
|
|
14476
14497
|
publishedDocId: z.ZodString;
|
|
14477
14498
|
pageShortPersistentId: z.ZodString;
|
|
14499
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
14478
14500
|
pathV1: z.ZodString;
|
|
14479
14501
|
pathV2: z.ZodString;
|
|
14480
14502
|
storagePath: z.ZodString;
|
|
@@ -14490,10 +14512,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
14490
14512
|
isHidden: boolean;
|
|
14491
14513
|
isPrivate: boolean;
|
|
14492
14514
|
storagePath: string;
|
|
14493
|
-
pageShortPersistentId: string;
|
|
14494
14515
|
publishedDocId: string;
|
|
14516
|
+
pageShortPersistentId: string;
|
|
14495
14517
|
pathV1: string;
|
|
14496
14518
|
pathV2: string;
|
|
14519
|
+
pagePersistentId?: string | undefined;
|
|
14497
14520
|
locale?: string | undefined;
|
|
14498
14521
|
}, {
|
|
14499
14522
|
id: string;
|
|
@@ -14502,10 +14525,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
14502
14525
|
isHidden: boolean;
|
|
14503
14526
|
isPrivate: boolean;
|
|
14504
14527
|
storagePath: string;
|
|
14505
|
-
pageShortPersistentId: string;
|
|
14506
14528
|
publishedDocId: string;
|
|
14529
|
+
pageShortPersistentId: string;
|
|
14507
14530
|
pathV1: string;
|
|
14508
14531
|
pathV2: string;
|
|
14532
|
+
pagePersistentId?: string | undefined;
|
|
14509
14533
|
locale?: string | undefined;
|
|
14510
14534
|
}>, "many">;
|
|
14511
14535
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14534,10 +14558,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
14534
14558
|
isHidden: boolean;
|
|
14535
14559
|
isPrivate: boolean;
|
|
14536
14560
|
storagePath: string;
|
|
14537
|
-
pageShortPersistentId: string;
|
|
14538
14561
|
publishedDocId: string;
|
|
14562
|
+
pageShortPersistentId: string;
|
|
14539
14563
|
pathV1: string;
|
|
14540
14564
|
pathV2: string;
|
|
14565
|
+
pagePersistentId?: string | undefined;
|
|
14541
14566
|
locale?: string | undefined;
|
|
14542
14567
|
}[];
|
|
14543
14568
|
}, {
|
|
@@ -14566,10 +14591,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
14566
14591
|
isHidden: boolean;
|
|
14567
14592
|
isPrivate: boolean;
|
|
14568
14593
|
storagePath: string;
|
|
14569
|
-
pageShortPersistentId: string;
|
|
14570
14594
|
publishedDocId: string;
|
|
14595
|
+
pageShortPersistentId: string;
|
|
14571
14596
|
pathV1: string;
|
|
14572
14597
|
pathV2: string;
|
|
14598
|
+
pagePersistentId?: string | undefined;
|
|
14573
14599
|
locale?: string | undefined;
|
|
14574
14600
|
}[];
|
|
14575
14601
|
}>, "many">;
|
|
@@ -14856,10 +14882,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
14856
14882
|
isHidden: boolean;
|
|
14857
14883
|
isPrivate: boolean;
|
|
14858
14884
|
storagePath: string;
|
|
14859
|
-
pageShortPersistentId: string;
|
|
14860
14885
|
publishedDocId: string;
|
|
14886
|
+
pageShortPersistentId: string;
|
|
14861
14887
|
pathV1: string;
|
|
14862
14888
|
pathV2: string;
|
|
14889
|
+
pagePersistentId?: string | undefined;
|
|
14863
14890
|
locale?: string | undefined;
|
|
14864
14891
|
}[];
|
|
14865
14892
|
}[];
|
|
@@ -15136,10 +15163,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
15136
15163
|
isHidden: boolean;
|
|
15137
15164
|
isPrivate: boolean;
|
|
15138
15165
|
storagePath: string;
|
|
15139
|
-
pageShortPersistentId: string;
|
|
15140
15166
|
publishedDocId: string;
|
|
15167
|
+
pageShortPersistentId: string;
|
|
15141
15168
|
pathV1: string;
|
|
15142
15169
|
pathV2: string;
|
|
15170
|
+
pagePersistentId?: string | undefined;
|
|
15143
15171
|
locale?: string | undefined;
|
|
15144
15172
|
}[];
|
|
15145
15173
|
}[];
|
|
@@ -15679,10 +15707,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
15679
15707
|
isHidden: boolean;
|
|
15680
15708
|
isPrivate: boolean;
|
|
15681
15709
|
storagePath: string;
|
|
15682
|
-
pageShortPersistentId: string;
|
|
15683
15710
|
publishedDocId: string;
|
|
15711
|
+
pageShortPersistentId: string;
|
|
15684
15712
|
pathV1: string;
|
|
15685
15713
|
pathV2: string;
|
|
15714
|
+
pagePersistentId?: string | undefined;
|
|
15686
15715
|
locale?: string | undefined;
|
|
15687
15716
|
}[];
|
|
15688
15717
|
}[];
|
|
@@ -16113,10 +16142,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
16113
16142
|
isHidden: boolean;
|
|
16114
16143
|
isPrivate: boolean;
|
|
16115
16144
|
storagePath: string;
|
|
16116
|
-
pageShortPersistentId: string;
|
|
16117
16145
|
publishedDocId: string;
|
|
16146
|
+
pageShortPersistentId: string;
|
|
16118
16147
|
pathV1: string;
|
|
16119
16148
|
pathV2: string;
|
|
16149
|
+
pagePersistentId?: string | undefined;
|
|
16120
16150
|
locale?: string | undefined;
|
|
16121
16151
|
}[];
|
|
16122
16152
|
}[];
|
|
@@ -17770,10 +17800,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
17770
17800
|
isHidden: boolean;
|
|
17771
17801
|
isPrivate: boolean;
|
|
17772
17802
|
storagePath: string;
|
|
17773
|
-
pageShortPersistentId: string;
|
|
17774
17803
|
publishedDocId: string;
|
|
17804
|
+
pageShortPersistentId: string;
|
|
17775
17805
|
pathV1: string;
|
|
17776
17806
|
pathV2: string;
|
|
17807
|
+
pagePersistentId?: string | undefined;
|
|
17777
17808
|
locale?: string | undefined;
|
|
17778
17809
|
}[];
|
|
17779
17810
|
}[];
|
|
@@ -18599,10 +18630,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
18599
18630
|
isHidden: boolean;
|
|
18600
18631
|
isPrivate: boolean;
|
|
18601
18632
|
storagePath: string;
|
|
18602
|
-
pageShortPersistentId: string;
|
|
18603
18633
|
publishedDocId: string;
|
|
18634
|
+
pageShortPersistentId: string;
|
|
18604
18635
|
pathV1: string;
|
|
18605
18636
|
pathV2: string;
|
|
18637
|
+
pagePersistentId?: string | undefined;
|
|
18606
18638
|
locale?: string | undefined;
|
|
18607
18639
|
}[];
|
|
18608
18640
|
}[];
|
|
@@ -19430,10 +19462,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
19430
19462
|
isHidden: boolean;
|
|
19431
19463
|
isPrivate: boolean;
|
|
19432
19464
|
storagePath: string;
|
|
19433
|
-
pageShortPersistentId: string;
|
|
19434
19465
|
publishedDocId: string;
|
|
19466
|
+
pageShortPersistentId: string;
|
|
19435
19467
|
pathV1: string;
|
|
19436
19468
|
pathV2: string;
|
|
19469
|
+
pagePersistentId?: string | undefined;
|
|
19437
19470
|
locale?: string | undefined;
|
|
19438
19471
|
}[];
|
|
19439
19472
|
}[];
|
|
@@ -20332,10 +20365,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
20332
20365
|
isHidden: boolean;
|
|
20333
20366
|
isPrivate: boolean;
|
|
20334
20367
|
storagePath: string;
|
|
20335
|
-
pageShortPersistentId: string;
|
|
20336
20368
|
publishedDocId: string;
|
|
20369
|
+
pageShortPersistentId: string;
|
|
20337
20370
|
pathV1: string;
|
|
20338
20371
|
pathV2: string;
|
|
20372
|
+
pagePersistentId?: string | undefined;
|
|
20339
20373
|
locale?: string | undefined;
|
|
20340
20374
|
}[];
|
|
20341
20375
|
}[];
|
|
@@ -24715,6 +24749,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24715
24749
|
id: z.ZodString;
|
|
24716
24750
|
publishedDocId: z.ZodString;
|
|
24717
24751
|
pageShortPersistentId: z.ZodString;
|
|
24752
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
24718
24753
|
pathV1: z.ZodString;
|
|
24719
24754
|
pathV2: z.ZodString;
|
|
24720
24755
|
storagePath: z.ZodString;
|
|
@@ -24730,10 +24765,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24730
24765
|
isHidden: boolean;
|
|
24731
24766
|
isPrivate: boolean;
|
|
24732
24767
|
storagePath: string;
|
|
24733
|
-
pageShortPersistentId: string;
|
|
24734
24768
|
publishedDocId: string;
|
|
24769
|
+
pageShortPersistentId: string;
|
|
24735
24770
|
pathV1: string;
|
|
24736
24771
|
pathV2: string;
|
|
24772
|
+
pagePersistentId?: string | undefined;
|
|
24737
24773
|
locale?: string | undefined;
|
|
24738
24774
|
}, {
|
|
24739
24775
|
id: string;
|
|
@@ -24742,10 +24778,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24742
24778
|
isHidden: boolean;
|
|
24743
24779
|
isPrivate: boolean;
|
|
24744
24780
|
storagePath: string;
|
|
24745
|
-
pageShortPersistentId: string;
|
|
24746
24781
|
publishedDocId: string;
|
|
24782
|
+
pageShortPersistentId: string;
|
|
24747
24783
|
pathV1: string;
|
|
24748
24784
|
pathV2: string;
|
|
24785
|
+
pagePersistentId?: string | undefined;
|
|
24749
24786
|
locale?: string | undefined;
|
|
24750
24787
|
}>, "many">;
|
|
24751
24788
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24774,10 +24811,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24774
24811
|
isHidden: boolean;
|
|
24775
24812
|
isPrivate: boolean;
|
|
24776
24813
|
storagePath: string;
|
|
24777
|
-
pageShortPersistentId: string;
|
|
24778
24814
|
publishedDocId: string;
|
|
24815
|
+
pageShortPersistentId: string;
|
|
24779
24816
|
pathV1: string;
|
|
24780
24817
|
pathV2: string;
|
|
24818
|
+
pagePersistentId?: string | undefined;
|
|
24781
24819
|
locale?: string | undefined;
|
|
24782
24820
|
}[];
|
|
24783
24821
|
}, {
|
|
@@ -24806,10 +24844,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24806
24844
|
isHidden: boolean;
|
|
24807
24845
|
isPrivate: boolean;
|
|
24808
24846
|
storagePath: string;
|
|
24809
|
-
pageShortPersistentId: string;
|
|
24810
24847
|
publishedDocId: string;
|
|
24848
|
+
pageShortPersistentId: string;
|
|
24811
24849
|
pathV1: string;
|
|
24812
24850
|
pathV2: string;
|
|
24851
|
+
pagePersistentId?: string | undefined;
|
|
24813
24852
|
locale?: string | undefined;
|
|
24814
24853
|
}[];
|
|
24815
24854
|
}>, "many">;
|
|
@@ -25096,10 +25135,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25096
25135
|
isHidden: boolean;
|
|
25097
25136
|
isPrivate: boolean;
|
|
25098
25137
|
storagePath: string;
|
|
25099
|
-
pageShortPersistentId: string;
|
|
25100
25138
|
publishedDocId: string;
|
|
25139
|
+
pageShortPersistentId: string;
|
|
25101
25140
|
pathV1: string;
|
|
25102
25141
|
pathV2: string;
|
|
25142
|
+
pagePersistentId?: string | undefined;
|
|
25103
25143
|
locale?: string | undefined;
|
|
25104
25144
|
}[];
|
|
25105
25145
|
}[];
|
|
@@ -25376,10 +25416,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25376
25416
|
isHidden: boolean;
|
|
25377
25417
|
isPrivate: boolean;
|
|
25378
25418
|
storagePath: string;
|
|
25379
|
-
pageShortPersistentId: string;
|
|
25380
25419
|
publishedDocId: string;
|
|
25420
|
+
pageShortPersistentId: string;
|
|
25381
25421
|
pathV1: string;
|
|
25382
25422
|
pathV2: string;
|
|
25423
|
+
pagePersistentId?: string | undefined;
|
|
25383
25424
|
locale?: string | undefined;
|
|
25384
25425
|
}[];
|
|
25385
25426
|
}[];
|
|
@@ -25919,10 +25960,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25919
25960
|
isHidden: boolean;
|
|
25920
25961
|
isPrivate: boolean;
|
|
25921
25962
|
storagePath: string;
|
|
25922
|
-
pageShortPersistentId: string;
|
|
25923
25963
|
publishedDocId: string;
|
|
25964
|
+
pageShortPersistentId: string;
|
|
25924
25965
|
pathV1: string;
|
|
25925
25966
|
pathV2: string;
|
|
25967
|
+
pagePersistentId?: string | undefined;
|
|
25926
25968
|
locale?: string | undefined;
|
|
25927
25969
|
}[];
|
|
25928
25970
|
}[];
|
|
@@ -26353,10 +26395,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26353
26395
|
isHidden: boolean;
|
|
26354
26396
|
isPrivate: boolean;
|
|
26355
26397
|
storagePath: string;
|
|
26356
|
-
pageShortPersistentId: string;
|
|
26357
26398
|
publishedDocId: string;
|
|
26399
|
+
pageShortPersistentId: string;
|
|
26358
26400
|
pathV1: string;
|
|
26359
26401
|
pathV2: string;
|
|
26402
|
+
pagePersistentId?: string | undefined;
|
|
26360
26403
|
locale?: string | undefined;
|
|
26361
26404
|
}[];
|
|
26362
26405
|
}[];
|
|
@@ -28010,10 +28053,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28010
28053
|
isHidden: boolean;
|
|
28011
28054
|
isPrivate: boolean;
|
|
28012
28055
|
storagePath: string;
|
|
28013
|
-
pageShortPersistentId: string;
|
|
28014
28056
|
publishedDocId: string;
|
|
28057
|
+
pageShortPersistentId: string;
|
|
28015
28058
|
pathV1: string;
|
|
28016
28059
|
pathV2: string;
|
|
28060
|
+
pagePersistentId?: string | undefined;
|
|
28017
28061
|
locale?: string | undefined;
|
|
28018
28062
|
}[];
|
|
28019
28063
|
}[];
|
|
@@ -28839,10 +28883,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28839
28883
|
isHidden: boolean;
|
|
28840
28884
|
isPrivate: boolean;
|
|
28841
28885
|
storagePath: string;
|
|
28842
|
-
pageShortPersistentId: string;
|
|
28843
28886
|
publishedDocId: string;
|
|
28887
|
+
pageShortPersistentId: string;
|
|
28844
28888
|
pathV1: string;
|
|
28845
28889
|
pathV2: string;
|
|
28890
|
+
pagePersistentId?: string | undefined;
|
|
28846
28891
|
locale?: string | undefined;
|
|
28847
28892
|
}[];
|
|
28848
28893
|
}[];
|
|
@@ -30093,6 +30138,7 @@ declare function uniqueBy<K, V>(items: V[], prop: (v: V) => K): V[];
|
|
|
30093
30138
|
declare function areShallowObjectsEqual<T extends object>(lhs: T | undefined, rhs: T | undefined): boolean;
|
|
30094
30139
|
declare function isNotNullish<T>(value: T | null | undefined): value is T;
|
|
30095
30140
|
declare function isNullish<T>(value: T | null | undefined): value is null | undefined;
|
|
30141
|
+
declare function chunkedArray<V>(array: V[], chunkSize: number): V[][];
|
|
30096
30142
|
type Pagination = {
|
|
30097
30143
|
skip?: number;
|
|
30098
30144
|
take?: number;
|
|
@@ -137825,21 +137871,21 @@ type ExporterPropertyValuesCollection = z.infer<typeof ExporterPropertyValuesCol
|
|
|
137825
137871
|
declare const PublishedDocPageVisitsEntry: z.ZodObject<{
|
|
137826
137872
|
id: z.ZodString;
|
|
137827
137873
|
versionId: z.ZodString;
|
|
137828
|
-
|
|
137874
|
+
pagePersistentId: z.ZodString;
|
|
137829
137875
|
locale: z.ZodOptional<z.ZodString>;
|
|
137830
137876
|
timestamp: z.ZodDate;
|
|
137831
137877
|
visits: z.ZodNumber;
|
|
137832
137878
|
}, "strip", z.ZodTypeAny, {
|
|
137833
137879
|
id: string;
|
|
137880
|
+
pagePersistentId: string;
|
|
137834
137881
|
versionId: string;
|
|
137835
|
-
pageShortPersistentId: string;
|
|
137836
137882
|
timestamp: Date;
|
|
137837
137883
|
visits: number;
|
|
137838
137884
|
locale?: string | undefined;
|
|
137839
137885
|
}, {
|
|
137840
137886
|
id: string;
|
|
137887
|
+
pagePersistentId: string;
|
|
137841
137888
|
versionId: string;
|
|
137842
|
-
pageShortPersistentId: string;
|
|
137843
137889
|
timestamp: Date;
|
|
137844
137890
|
visits: number;
|
|
137845
137891
|
locale?: string | undefined;
|
|
@@ -137853,6 +137899,7 @@ declare const PublishedDocPage: z.ZodObject<{
|
|
|
137853
137899
|
id: z.ZodString;
|
|
137854
137900
|
publishedDocId: z.ZodString;
|
|
137855
137901
|
pageShortPersistentId: z.ZodString;
|
|
137902
|
+
pagePersistentId: z.ZodOptional<z.ZodString>;
|
|
137856
137903
|
pathV1: z.ZodString;
|
|
137857
137904
|
pathV2: z.ZodString;
|
|
137858
137905
|
storagePath: z.ZodString;
|
|
@@ -137868,10 +137915,11 @@ declare const PublishedDocPage: z.ZodObject<{
|
|
|
137868
137915
|
isHidden: boolean;
|
|
137869
137916
|
isPrivate: boolean;
|
|
137870
137917
|
storagePath: string;
|
|
137871
|
-
pageShortPersistentId: string;
|
|
137872
137918
|
publishedDocId: string;
|
|
137919
|
+
pageShortPersistentId: string;
|
|
137873
137920
|
pathV1: string;
|
|
137874
137921
|
pathV2: string;
|
|
137922
|
+
pagePersistentId?: string | undefined;
|
|
137875
137923
|
locale?: string | undefined;
|
|
137876
137924
|
}, {
|
|
137877
137925
|
id: string;
|
|
@@ -137880,14 +137928,17 @@ declare const PublishedDocPage: z.ZodObject<{
|
|
|
137880
137928
|
isHidden: boolean;
|
|
137881
137929
|
isPrivate: boolean;
|
|
137882
137930
|
storagePath: string;
|
|
137883
|
-
pageShortPersistentId: string;
|
|
137884
137931
|
publishedDocId: string;
|
|
137932
|
+
pageShortPersistentId: string;
|
|
137885
137933
|
pathV1: string;
|
|
137886
137934
|
pathV2: string;
|
|
137935
|
+
pagePersistentId?: string | undefined;
|
|
137887
137936
|
locale?: string | undefined;
|
|
137888
137937
|
}>;
|
|
137889
137938
|
type PublishedDocPage = z.infer<typeof PublishedDocPage>;
|
|
137890
|
-
type CreatePublishedDocPage = DbCreateInputOmit<PublishedDocPage
|
|
137939
|
+
type CreatePublishedDocPage = DbCreateInputOmit<PublishedDocPage> & {
|
|
137940
|
+
pagePersistentId: string;
|
|
137941
|
+
};
|
|
137891
137942
|
type UpdatePublishedDocPage = DbUpdate<OmitStrict<PublishedDocPage, "pageShortPersistentId" | "publishedDocId">>;
|
|
137892
137943
|
|
|
137893
137944
|
declare const publishedDocEnvironments: readonly ["Live", "Preview"];
|
|
@@ -175159,4 +175210,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
175159
175210
|
token: PersonalAccessToken;
|
|
175160
175211
|
};
|
|
175161
175212
|
|
|
175162
|
-
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, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, 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 CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, 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, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, 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, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, 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 ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, 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, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, 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, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenNameFormat, PageBlockTokenValueFormat, 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, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, 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 UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
175213
|
+
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, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, 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 CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, 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, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, 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, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, 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 ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, 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, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, 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, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenNameFormat, PageBlockTokenValueFormat, 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, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, 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 UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|