@supernova-studio/model 0.6.0 → 0.7.1
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 +90 -45
- package/dist/index.d.ts +90 -45
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/billing/subscription.ts +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +2 -1
- package/src/workspace/workspace-membership.ts +10 -0
package/dist/index.d.mts
CHANGED
|
@@ -8053,7 +8053,7 @@ type PageBlockImageAlignment = z.infer<typeof PageBlockImageAlignment>;
|
|
|
8053
8053
|
declare const PageBlockTableCellAlignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
8054
8054
|
type PageBlockTableCellAlignment = z.infer<typeof PageBlockTableCellAlignment>;
|
|
8055
8055
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8056
|
-
itemBackgroundColor: z.ZodObject<{
|
|
8056
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8057
8057
|
opacity: z.ZodObject<{
|
|
8058
8058
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8059
8059
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -8115,9 +8115,10 @@ declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
|
8115
8115
|
}) & (string | {
|
|
8116
8116
|
aliasTo?: string | null | undefined;
|
|
8117
8117
|
} | undefined);
|
|
8118
|
-
}
|
|
8118
|
+
}>>;
|
|
8119
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8119
8120
|
}, "strip", z.ZodTypeAny, {
|
|
8120
|
-
itemBackgroundColor
|
|
8121
|
+
itemBackgroundColor?: {
|
|
8121
8122
|
opacity: {
|
|
8122
8123
|
aliasTo?: string | undefined;
|
|
8123
8124
|
value?: {
|
|
@@ -8130,9 +8131,10 @@ declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
|
8130
8131
|
}) & (string | {
|
|
8131
8132
|
aliasTo?: string | undefined;
|
|
8132
8133
|
} | undefined);
|
|
8133
|
-
};
|
|
8134
|
+
} | undefined;
|
|
8135
|
+
numberOfColumns?: number | undefined;
|
|
8134
8136
|
}, {
|
|
8135
|
-
itemBackgroundColor
|
|
8137
|
+
itemBackgroundColor?: {
|
|
8136
8138
|
opacity: {
|
|
8137
8139
|
aliasTo?: string | null | undefined;
|
|
8138
8140
|
value?: {
|
|
@@ -8145,7 +8147,8 @@ declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
|
8145
8147
|
}) & (string | {
|
|
8146
8148
|
aliasTo?: string | null | undefined;
|
|
8147
8149
|
} | undefined);
|
|
8148
|
-
};
|
|
8150
|
+
} | undefined;
|
|
8151
|
+
numberOfColumns?: number | undefined;
|
|
8149
8152
|
}>;
|
|
8150
8153
|
type PageBlockAppearanceV2 = z.infer<typeof PageBlockAppearanceV2>;
|
|
8151
8154
|
declare const PageBlockItemUntypedValue: z.ZodIntersection<z.ZodObject<{
|
|
@@ -8235,7 +8238,7 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8235
8238
|
variantId: z.ZodOptional<z.ZodString>;
|
|
8236
8239
|
indentLevel: z.ZodNumber;
|
|
8237
8240
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
8238
|
-
itemBackgroundColor: z.ZodObject<{
|
|
8241
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8239
8242
|
opacity: z.ZodObject<{
|
|
8240
8243
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8241
8244
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -8297,9 +8300,10 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8297
8300
|
}) & (string | {
|
|
8298
8301
|
aliasTo?: string | null | undefined;
|
|
8299
8302
|
} | undefined);
|
|
8300
|
-
}
|
|
8303
|
+
}>>;
|
|
8304
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8301
8305
|
}, "strip", z.ZodTypeAny, {
|
|
8302
|
-
itemBackgroundColor
|
|
8306
|
+
itemBackgroundColor?: {
|
|
8303
8307
|
opacity: {
|
|
8304
8308
|
aliasTo?: string | undefined;
|
|
8305
8309
|
value?: {
|
|
@@ -8312,9 +8316,10 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8312
8316
|
}) & (string | {
|
|
8313
8317
|
aliasTo?: string | undefined;
|
|
8314
8318
|
} | undefined);
|
|
8315
|
-
};
|
|
8319
|
+
} | undefined;
|
|
8320
|
+
numberOfColumns?: number | undefined;
|
|
8316
8321
|
}, {
|
|
8317
|
-
itemBackgroundColor
|
|
8322
|
+
itemBackgroundColor?: {
|
|
8318
8323
|
opacity: {
|
|
8319
8324
|
aliasTo?: string | null | undefined;
|
|
8320
8325
|
value?: {
|
|
@@ -8327,7 +8332,8 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8327
8332
|
}) & (string | {
|
|
8328
8333
|
aliasTo?: string | null | undefined;
|
|
8329
8334
|
} | undefined);
|
|
8330
|
-
};
|
|
8335
|
+
} | undefined;
|
|
8336
|
+
numberOfColumns?: number | undefined;
|
|
8331
8337
|
}>>;
|
|
8332
8338
|
items: z.ZodArray<z.ZodObject<{
|
|
8333
8339
|
id: z.ZodString;
|
|
@@ -8400,7 +8406,7 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8400
8406
|
}[];
|
|
8401
8407
|
variantId?: string | undefined;
|
|
8402
8408
|
appearance?: {
|
|
8403
|
-
itemBackgroundColor
|
|
8409
|
+
itemBackgroundColor?: {
|
|
8404
8410
|
opacity: {
|
|
8405
8411
|
aliasTo?: string | undefined;
|
|
8406
8412
|
value?: {
|
|
@@ -8413,7 +8419,8 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8413
8419
|
}) & (string | {
|
|
8414
8420
|
aliasTo?: string | undefined;
|
|
8415
8421
|
} | undefined);
|
|
8416
|
-
};
|
|
8422
|
+
} | undefined;
|
|
8423
|
+
numberOfColumns?: number | undefined;
|
|
8417
8424
|
} | undefined;
|
|
8418
8425
|
}, {
|
|
8419
8426
|
packageId: string;
|
|
@@ -8433,7 +8440,7 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8433
8440
|
}[];
|
|
8434
8441
|
variantId?: string | undefined;
|
|
8435
8442
|
appearance?: {
|
|
8436
|
-
itemBackgroundColor
|
|
8443
|
+
itemBackgroundColor?: {
|
|
8437
8444
|
opacity: {
|
|
8438
8445
|
aliasTo?: string | null | undefined;
|
|
8439
8446
|
value?: {
|
|
@@ -8446,7 +8453,8 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8446
8453
|
}) & (string | {
|
|
8447
8454
|
aliasTo?: string | null | undefined;
|
|
8448
8455
|
} | undefined);
|
|
8449
|
-
};
|
|
8456
|
+
} | undefined;
|
|
8457
|
+
numberOfColumns?: number | undefined;
|
|
8450
8458
|
} | undefined;
|
|
8451
8459
|
}>;
|
|
8452
8460
|
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
@@ -24541,7 +24549,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24541
24549
|
variantId: z.ZodOptional<z.ZodString>;
|
|
24542
24550
|
indentLevel: z.ZodNumber;
|
|
24543
24551
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
24544
|
-
itemBackgroundColor: z.ZodObject<{
|
|
24552
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
24545
24553
|
opacity: z.ZodObject<{
|
|
24546
24554
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
24547
24555
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -24603,9 +24611,10 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24603
24611
|
}) & (string | {
|
|
24604
24612
|
aliasTo?: string | null | undefined;
|
|
24605
24613
|
} | undefined);
|
|
24606
|
-
}
|
|
24614
|
+
}>>;
|
|
24615
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
24607
24616
|
}, "strip", z.ZodTypeAny, {
|
|
24608
|
-
itemBackgroundColor
|
|
24617
|
+
itemBackgroundColor?: {
|
|
24609
24618
|
opacity: {
|
|
24610
24619
|
aliasTo?: string | undefined;
|
|
24611
24620
|
value?: {
|
|
@@ -24618,9 +24627,10 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24618
24627
|
}) & (string | {
|
|
24619
24628
|
aliasTo?: string | undefined;
|
|
24620
24629
|
} | undefined);
|
|
24621
|
-
};
|
|
24630
|
+
} | undefined;
|
|
24631
|
+
numberOfColumns?: number | undefined;
|
|
24622
24632
|
}, {
|
|
24623
|
-
itemBackgroundColor
|
|
24633
|
+
itemBackgroundColor?: {
|
|
24624
24634
|
opacity: {
|
|
24625
24635
|
aliasTo?: string | null | undefined;
|
|
24626
24636
|
value?: {
|
|
@@ -24633,7 +24643,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24633
24643
|
}) & (string | {
|
|
24634
24644
|
aliasTo?: string | null | undefined;
|
|
24635
24645
|
} | undefined);
|
|
24636
|
-
};
|
|
24646
|
+
} | undefined;
|
|
24647
|
+
numberOfColumns?: number | undefined;
|
|
24637
24648
|
}>>;
|
|
24638
24649
|
items: z.ZodArray<z.ZodObject<{
|
|
24639
24650
|
id: z.ZodString;
|
|
@@ -24706,7 +24717,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24706
24717
|
}[];
|
|
24707
24718
|
variantId?: string | undefined;
|
|
24708
24719
|
appearance?: {
|
|
24709
|
-
itemBackgroundColor
|
|
24720
|
+
itemBackgroundColor?: {
|
|
24710
24721
|
opacity: {
|
|
24711
24722
|
aliasTo?: string | undefined;
|
|
24712
24723
|
value?: {
|
|
@@ -24719,7 +24730,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24719
24730
|
}) & (string | {
|
|
24720
24731
|
aliasTo?: string | undefined;
|
|
24721
24732
|
} | undefined);
|
|
24722
|
-
};
|
|
24733
|
+
} | undefined;
|
|
24734
|
+
numberOfColumns?: number | undefined;
|
|
24723
24735
|
} | undefined;
|
|
24724
24736
|
}, {
|
|
24725
24737
|
packageId: string;
|
|
@@ -24739,7 +24751,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24739
24751
|
}[];
|
|
24740
24752
|
variantId?: string | undefined;
|
|
24741
24753
|
appearance?: {
|
|
24742
|
-
itemBackgroundColor
|
|
24754
|
+
itemBackgroundColor?: {
|
|
24743
24755
|
opacity: {
|
|
24744
24756
|
aliasTo?: string | null | undefined;
|
|
24745
24757
|
value?: {
|
|
@@ -24752,7 +24764,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24752
24764
|
}) & (string | {
|
|
24753
24765
|
aliasTo?: string | null | undefined;
|
|
24754
24766
|
} | undefined);
|
|
24755
|
-
};
|
|
24767
|
+
} | undefined;
|
|
24768
|
+
numberOfColumns?: number | undefined;
|
|
24756
24769
|
} | undefined;
|
|
24757
24770
|
}>;
|
|
24758
24771
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24779,7 +24792,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24779
24792
|
}[];
|
|
24780
24793
|
variantId?: string | undefined;
|
|
24781
24794
|
appearance?: {
|
|
24782
|
-
itemBackgroundColor
|
|
24795
|
+
itemBackgroundColor?: {
|
|
24783
24796
|
opacity: {
|
|
24784
24797
|
aliasTo?: string | undefined;
|
|
24785
24798
|
value?: {
|
|
@@ -24792,7 +24805,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24792
24805
|
}) & (string | {
|
|
24793
24806
|
aliasTo?: string | undefined;
|
|
24794
24807
|
} | undefined);
|
|
24795
|
-
};
|
|
24808
|
+
} | undefined;
|
|
24809
|
+
numberOfColumns?: number | undefined;
|
|
24796
24810
|
} | undefined;
|
|
24797
24811
|
};
|
|
24798
24812
|
parentPersistentId: string;
|
|
@@ -24825,7 +24839,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24825
24839
|
}[];
|
|
24826
24840
|
variantId?: string | undefined;
|
|
24827
24841
|
appearance?: {
|
|
24828
|
-
itemBackgroundColor
|
|
24842
|
+
itemBackgroundColor?: {
|
|
24829
24843
|
opacity: {
|
|
24830
24844
|
aliasTo?: string | null | undefined;
|
|
24831
24845
|
value?: {
|
|
@@ -24838,7 +24852,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
24838
24852
|
}) & (string | {
|
|
24839
24853
|
aliasTo?: string | null | undefined;
|
|
24840
24854
|
} | undefined);
|
|
24841
|
-
};
|
|
24855
|
+
} | undefined;
|
|
24856
|
+
numberOfColumns?: number | undefined;
|
|
24842
24857
|
} | undefined;
|
|
24843
24858
|
};
|
|
24844
24859
|
parentPersistentId: string;
|
|
@@ -24856,7 +24871,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
24856
24871
|
variantId: z.ZodOptional<z.ZodString>;
|
|
24857
24872
|
indentLevel: z.ZodNumber;
|
|
24858
24873
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
24859
|
-
itemBackgroundColor: z.ZodObject<{
|
|
24874
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
24860
24875
|
opacity: z.ZodObject<{
|
|
24861
24876
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
24862
24877
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -24918,9 +24933,10 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
24918
24933
|
}) & (string | {
|
|
24919
24934
|
aliasTo?: string | null | undefined;
|
|
24920
24935
|
} | undefined);
|
|
24921
|
-
}
|
|
24936
|
+
}>>;
|
|
24937
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
24922
24938
|
}, "strip", z.ZodTypeAny, {
|
|
24923
|
-
itemBackgroundColor
|
|
24939
|
+
itemBackgroundColor?: {
|
|
24924
24940
|
opacity: {
|
|
24925
24941
|
aliasTo?: string | undefined;
|
|
24926
24942
|
value?: {
|
|
@@ -24933,9 +24949,10 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
24933
24949
|
}) & (string | {
|
|
24934
24950
|
aliasTo?: string | undefined;
|
|
24935
24951
|
} | undefined);
|
|
24936
|
-
};
|
|
24952
|
+
} | undefined;
|
|
24953
|
+
numberOfColumns?: number | undefined;
|
|
24937
24954
|
}, {
|
|
24938
|
-
itemBackgroundColor
|
|
24955
|
+
itemBackgroundColor?: {
|
|
24939
24956
|
opacity: {
|
|
24940
24957
|
aliasTo?: string | null | undefined;
|
|
24941
24958
|
value?: {
|
|
@@ -24948,7 +24965,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
24948
24965
|
}) & (string | {
|
|
24949
24966
|
aliasTo?: string | null | undefined;
|
|
24950
24967
|
} | undefined);
|
|
24951
|
-
};
|
|
24968
|
+
} | undefined;
|
|
24969
|
+
numberOfColumns?: number | undefined;
|
|
24952
24970
|
}>>;
|
|
24953
24971
|
items: z.ZodArray<z.ZodObject<{
|
|
24954
24972
|
id: z.ZodString;
|
|
@@ -25021,7 +25039,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25021
25039
|
}[];
|
|
25022
25040
|
variantId?: string | undefined;
|
|
25023
25041
|
appearance?: {
|
|
25024
|
-
itemBackgroundColor
|
|
25042
|
+
itemBackgroundColor?: {
|
|
25025
25043
|
opacity: {
|
|
25026
25044
|
aliasTo?: string | undefined;
|
|
25027
25045
|
value?: {
|
|
@@ -25034,7 +25052,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25034
25052
|
}) & (string | {
|
|
25035
25053
|
aliasTo?: string | undefined;
|
|
25036
25054
|
} | undefined);
|
|
25037
|
-
};
|
|
25055
|
+
} | undefined;
|
|
25056
|
+
numberOfColumns?: number | undefined;
|
|
25038
25057
|
} | undefined;
|
|
25039
25058
|
}, {
|
|
25040
25059
|
packageId: string;
|
|
@@ -25054,7 +25073,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25054
25073
|
}[];
|
|
25055
25074
|
variantId?: string | undefined;
|
|
25056
25075
|
appearance?: {
|
|
25057
|
-
itemBackgroundColor
|
|
25076
|
+
itemBackgroundColor?: {
|
|
25058
25077
|
opacity: {
|
|
25059
25078
|
aliasTo?: string | null | undefined;
|
|
25060
25079
|
value?: {
|
|
@@ -25067,7 +25086,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25067
25086
|
}) & (string | {
|
|
25068
25087
|
aliasTo?: string | null | undefined;
|
|
25069
25088
|
} | undefined);
|
|
25070
|
-
};
|
|
25089
|
+
} | undefined;
|
|
25090
|
+
numberOfColumns?: number | undefined;
|
|
25071
25091
|
} | undefined;
|
|
25072
25092
|
}>;
|
|
25073
25093
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25090,7 +25110,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25090
25110
|
}[];
|
|
25091
25111
|
variantId?: string | undefined;
|
|
25092
25112
|
appearance?: {
|
|
25093
|
-
itemBackgroundColor
|
|
25113
|
+
itemBackgroundColor?: {
|
|
25094
25114
|
opacity: {
|
|
25095
25115
|
aliasTo?: string | undefined;
|
|
25096
25116
|
value?: {
|
|
@@ -25103,7 +25123,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25103
25123
|
}) & (string | {
|
|
25104
25124
|
aliasTo?: string | undefined;
|
|
25105
25125
|
} | undefined);
|
|
25106
|
-
};
|
|
25126
|
+
} | undefined;
|
|
25127
|
+
numberOfColumns?: number | undefined;
|
|
25107
25128
|
} | undefined;
|
|
25108
25129
|
};
|
|
25109
25130
|
}, {
|
|
@@ -25126,7 +25147,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25126
25147
|
}[];
|
|
25127
25148
|
variantId?: string | undefined;
|
|
25128
25149
|
appearance?: {
|
|
25129
|
-
itemBackgroundColor
|
|
25150
|
+
itemBackgroundColor?: {
|
|
25130
25151
|
opacity: {
|
|
25131
25152
|
aliasTo?: string | null | undefined;
|
|
25132
25153
|
value?: {
|
|
@@ -25139,7 +25160,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25139
25160
|
}) & (string | {
|
|
25140
25161
|
aliasTo?: string | null | undefined;
|
|
25141
25162
|
} | undefined);
|
|
25142
|
-
};
|
|
25163
|
+
} | undefined;
|
|
25164
|
+
numberOfColumns?: number | undefined;
|
|
25143
25165
|
} | undefined;
|
|
25144
25166
|
};
|
|
25145
25167
|
}>;
|
|
@@ -94967,6 +94989,29 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
94967
94989
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
94968
94990
|
}>;
|
|
94969
94991
|
type WorkspaceMembership = z.infer<typeof WorkspaceMembership>;
|
|
94992
|
+
declare const UpdateMembershipRolesInput: z.ZodObject<{
|
|
94993
|
+
members: z.ZodArray<z.ZodObject<{
|
|
94994
|
+
userId: z.ZodString;
|
|
94995
|
+
role: z.ZodNativeEnum<z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>>;
|
|
94996
|
+
}, "strip", z.ZodTypeAny, {
|
|
94997
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
94998
|
+
userId: string;
|
|
94999
|
+
}, {
|
|
95000
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
95001
|
+
userId: string;
|
|
95002
|
+
}>, "many">;
|
|
95003
|
+
}, "strip", z.ZodTypeAny, {
|
|
95004
|
+
members: {
|
|
95005
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
95006
|
+
userId: string;
|
|
95007
|
+
}[];
|
|
95008
|
+
}, {
|
|
95009
|
+
members: {
|
|
95010
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
95011
|
+
userId: string;
|
|
95012
|
+
}[];
|
|
95013
|
+
}>;
|
|
95014
|
+
type UpdateMembershipRolesInput = z.infer<typeof UpdateMembershipRolesInput>;
|
|
94970
95015
|
|
|
94971
95016
|
declare const WorkspaceRoleSchema: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>;
|
|
94972
95017
|
type WorkspaceRole = z.infer<typeof WorkspaceRoleSchema>;
|
|
@@ -98232,4 +98277,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
98232
98277
|
}>;
|
|
98233
98278
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
98234
98279
|
|
|
98235
|
-
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, 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, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, 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, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, 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, 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 UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
98280
|
+
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, 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, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, 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, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, 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, 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 UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|