@supernova-studio/model 0.54.4 → 0.54.5
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 +673 -2631
- package/dist/index.d.ts +673 -2631
- package/dist/index.js +96 -100
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +446 -450
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/design-system.ts +12 -7
package/dist/index.d.mts
CHANGED
|
@@ -2902,6 +2902,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
2902
2902
|
} | null | undefined>;
|
|
2903
2903
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
2904
2904
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
2905
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
2905
2906
|
createdAt: z.ZodDate;
|
|
2906
2907
|
updatedAt: z.ZodDate;
|
|
2907
2908
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2918,6 +2919,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
2918
2919
|
basePrefixes: string[];
|
|
2919
2920
|
isApprovalFeatureEnabled: boolean;
|
|
2920
2921
|
approvalRequiredForPublishing: boolean;
|
|
2922
|
+
accessMode: "Open" | "InviteOnly";
|
|
2921
2923
|
docExporterId?: string | undefined;
|
|
2922
2924
|
docUserSlug?: string | undefined;
|
|
2923
2925
|
docViewUrl?: string | undefined;
|
|
@@ -2939,6 +2941,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
2939
2941
|
basePrefixes: string[];
|
|
2940
2942
|
isApprovalFeatureEnabled: boolean;
|
|
2941
2943
|
approvalRequiredForPublishing: boolean;
|
|
2944
|
+
accessMode: "Open" | "InviteOnly";
|
|
2942
2945
|
docExporterId?: string | null | undefined;
|
|
2943
2946
|
docUserSlug?: string | null | undefined;
|
|
2944
2947
|
docViewUrl?: string | null | undefined;
|
|
@@ -6022,6 +6025,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6022
6025
|
basePrefixes: string[];
|
|
6023
6026
|
isApprovalFeatureEnabled: boolean;
|
|
6024
6027
|
approvalRequiredForPublishing: boolean;
|
|
6028
|
+
accessMode: "Open" | "InviteOnly";
|
|
6025
6029
|
docExporterId?: string | undefined;
|
|
6026
6030
|
docUserSlug?: string | undefined;
|
|
6027
6031
|
docViewUrl?: string | undefined;
|
|
@@ -6451,6 +6455,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6451
6455
|
basePrefixes: string[];
|
|
6452
6456
|
isApprovalFeatureEnabled: boolean;
|
|
6453
6457
|
approvalRequiredForPublishing: boolean;
|
|
6458
|
+
accessMode: "Open" | "InviteOnly";
|
|
6454
6459
|
docExporterId?: string | null | undefined;
|
|
6455
6460
|
docUserSlug?: string | null | undefined;
|
|
6456
6461
|
docViewUrl?: string | null | undefined;
|
|
@@ -10076,16 +10081,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
10076
10081
|
}, "strip", z.ZodTypeAny, {
|
|
10077
10082
|
id: string;
|
|
10078
10083
|
email?: string | undefined;
|
|
10079
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10080
10084
|
handle?: string | undefined;
|
|
10081
10085
|
avatarUrl?: string | undefined;
|
|
10086
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10082
10087
|
customUrl?: string | undefined;
|
|
10083
10088
|
}, {
|
|
10084
10089
|
id: string;
|
|
10085
10090
|
email?: string | undefined;
|
|
10086
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10087
10091
|
handle?: string | undefined;
|
|
10088
10092
|
avatarUrl?: string | undefined;
|
|
10093
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10089
10094
|
customUrl?: string | undefined;
|
|
10090
10095
|
}>>;
|
|
10091
10096
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10098,16 +10103,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
10098
10103
|
}, "strip", z.ZodTypeAny, {
|
|
10099
10104
|
id: string;
|
|
10100
10105
|
email?: string | undefined;
|
|
10101
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10102
10106
|
handle?: string | undefined;
|
|
10103
10107
|
avatarUrl?: string | undefined;
|
|
10108
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10104
10109
|
customUrl?: string | undefined;
|
|
10105
10110
|
}, {
|
|
10106
10111
|
id: string;
|
|
10107
10112
|
email?: string | undefined;
|
|
10108
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10109
10113
|
handle?: string | undefined;
|
|
10110
10114
|
avatarUrl?: string | undefined;
|
|
10115
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10111
10116
|
customUrl?: string | undefined;
|
|
10112
10117
|
}>, "many">>;
|
|
10113
10118
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10120,16 +10125,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
10120
10125
|
}, "strip", z.ZodTypeAny, {
|
|
10121
10126
|
id: string;
|
|
10122
10127
|
email?: string | undefined;
|
|
10123
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10124
10128
|
handle?: string | undefined;
|
|
10125
10129
|
avatarUrl?: string | undefined;
|
|
10130
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10126
10131
|
customUrl?: string | undefined;
|
|
10127
10132
|
}, {
|
|
10128
10133
|
id: string;
|
|
10129
10134
|
email?: string | undefined;
|
|
10130
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10131
10135
|
handle?: string | undefined;
|
|
10132
10136
|
avatarUrl?: string | undefined;
|
|
10137
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10133
10138
|
customUrl?: string | undefined;
|
|
10134
10139
|
}>, "many">>;
|
|
10135
10140
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10142,16 +10147,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
10142
10147
|
}, "strip", z.ZodTypeAny, {
|
|
10143
10148
|
id: string;
|
|
10144
10149
|
email?: string | undefined;
|
|
10145
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10146
10150
|
handle?: string | undefined;
|
|
10147
10151
|
avatarUrl?: string | undefined;
|
|
10152
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10148
10153
|
customUrl?: string | undefined;
|
|
10149
10154
|
}, {
|
|
10150
10155
|
id: string;
|
|
10151
10156
|
email?: string | undefined;
|
|
10152
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10153
10157
|
handle?: string | undefined;
|
|
10154
10158
|
avatarUrl?: string | undefined;
|
|
10159
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10155
10160
|
customUrl?: string | undefined;
|
|
10156
10161
|
}>, "many">>;
|
|
10157
10162
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10164,98 +10169,98 @@ declare const UserDump: z.ZodObject<{
|
|
|
10164
10169
|
}, "strip", z.ZodTypeAny, {
|
|
10165
10170
|
id: string;
|
|
10166
10171
|
email?: string | undefined;
|
|
10167
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10168
10172
|
handle?: string | undefined;
|
|
10169
10173
|
avatarUrl?: string | undefined;
|
|
10174
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10170
10175
|
customUrl?: string | undefined;
|
|
10171
10176
|
}, {
|
|
10172
10177
|
id: string;
|
|
10173
10178
|
email?: string | undefined;
|
|
10174
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10175
10179
|
handle?: string | undefined;
|
|
10176
10180
|
avatarUrl?: string | undefined;
|
|
10181
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10177
10182
|
customUrl?: string | undefined;
|
|
10178
10183
|
}>, "many">>;
|
|
10179
10184
|
}, "strip", z.ZodTypeAny, {
|
|
10180
10185
|
azure?: {
|
|
10181
10186
|
id: string;
|
|
10182
10187
|
email?: string | undefined;
|
|
10183
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10184
10188
|
handle?: string | undefined;
|
|
10185
10189
|
avatarUrl?: string | undefined;
|
|
10190
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10186
10191
|
customUrl?: string | undefined;
|
|
10187
10192
|
}[] | undefined;
|
|
10188
10193
|
github?: {
|
|
10189
10194
|
id: string;
|
|
10190
10195
|
email?: string | undefined;
|
|
10191
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10192
10196
|
handle?: string | undefined;
|
|
10193
10197
|
avatarUrl?: string | undefined;
|
|
10198
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10194
10199
|
customUrl?: string | undefined;
|
|
10195
10200
|
}[] | undefined;
|
|
10196
10201
|
gitlab?: {
|
|
10197
10202
|
id: string;
|
|
10198
10203
|
email?: string | undefined;
|
|
10199
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10200
10204
|
handle?: string | undefined;
|
|
10201
10205
|
avatarUrl?: string | undefined;
|
|
10206
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10202
10207
|
customUrl?: string | undefined;
|
|
10203
10208
|
}[] | undefined;
|
|
10204
10209
|
bitbucket?: {
|
|
10205
10210
|
id: string;
|
|
10206
10211
|
email?: string | undefined;
|
|
10207
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10208
10212
|
handle?: string | undefined;
|
|
10209
10213
|
avatarUrl?: string | undefined;
|
|
10214
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10210
10215
|
customUrl?: string | undefined;
|
|
10211
10216
|
}[] | undefined;
|
|
10212
10217
|
figma?: {
|
|
10213
10218
|
id: string;
|
|
10214
10219
|
email?: string | undefined;
|
|
10215
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10216
10220
|
handle?: string | undefined;
|
|
10217
10221
|
avatarUrl?: string | undefined;
|
|
10222
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10218
10223
|
customUrl?: string | undefined;
|
|
10219
10224
|
} | undefined;
|
|
10220
10225
|
}, {
|
|
10221
10226
|
azure?: {
|
|
10222
10227
|
id: string;
|
|
10223
10228
|
email?: string | undefined;
|
|
10224
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10225
10229
|
handle?: string | undefined;
|
|
10226
10230
|
avatarUrl?: string | undefined;
|
|
10231
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10227
10232
|
customUrl?: string | undefined;
|
|
10228
10233
|
}[] | undefined;
|
|
10229
10234
|
github?: {
|
|
10230
10235
|
id: string;
|
|
10231
10236
|
email?: string | undefined;
|
|
10232
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10233
10237
|
handle?: string | undefined;
|
|
10234
10238
|
avatarUrl?: string | undefined;
|
|
10239
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10235
10240
|
customUrl?: string | undefined;
|
|
10236
10241
|
}[] | undefined;
|
|
10237
10242
|
gitlab?: {
|
|
10238
10243
|
id: string;
|
|
10239
10244
|
email?: string | undefined;
|
|
10240
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10241
10245
|
handle?: string | undefined;
|
|
10242
10246
|
avatarUrl?: string | undefined;
|
|
10247
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10243
10248
|
customUrl?: string | undefined;
|
|
10244
10249
|
}[] | undefined;
|
|
10245
10250
|
bitbucket?: {
|
|
10246
10251
|
id: string;
|
|
10247
10252
|
email?: string | undefined;
|
|
10248
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10249
10253
|
handle?: string | undefined;
|
|
10250
10254
|
avatarUrl?: string | undefined;
|
|
10255
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10251
10256
|
customUrl?: string | undefined;
|
|
10252
10257
|
}[] | undefined;
|
|
10253
10258
|
figma?: {
|
|
10254
10259
|
id: string;
|
|
10255
10260
|
email?: string | undefined;
|
|
10256
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10257
10261
|
handle?: string | undefined;
|
|
10258
10262
|
avatarUrl?: string | undefined;
|
|
10263
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10259
10264
|
customUrl?: string | undefined;
|
|
10260
10265
|
} | undefined;
|
|
10261
10266
|
}>>;
|
|
@@ -10291,41 +10296,41 @@ declare const UserDump: z.ZodObject<{
|
|
|
10291
10296
|
azure?: {
|
|
10292
10297
|
id: string;
|
|
10293
10298
|
email?: string | undefined;
|
|
10294
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10295
10299
|
handle?: string | undefined;
|
|
10296
10300
|
avatarUrl?: string | undefined;
|
|
10301
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10297
10302
|
customUrl?: string | undefined;
|
|
10298
10303
|
}[] | undefined;
|
|
10299
10304
|
github?: {
|
|
10300
10305
|
id: string;
|
|
10301
10306
|
email?: string | undefined;
|
|
10302
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10303
10307
|
handle?: string | undefined;
|
|
10304
10308
|
avatarUrl?: string | undefined;
|
|
10309
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10305
10310
|
customUrl?: string | undefined;
|
|
10306
10311
|
}[] | undefined;
|
|
10307
10312
|
gitlab?: {
|
|
10308
10313
|
id: string;
|
|
10309
10314
|
email?: string | undefined;
|
|
10310
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10311
10315
|
handle?: string | undefined;
|
|
10312
10316
|
avatarUrl?: string | undefined;
|
|
10317
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10313
10318
|
customUrl?: string | undefined;
|
|
10314
10319
|
}[] | undefined;
|
|
10315
10320
|
bitbucket?: {
|
|
10316
10321
|
id: string;
|
|
10317
10322
|
email?: string | undefined;
|
|
10318
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10319
10323
|
handle?: string | undefined;
|
|
10320
10324
|
avatarUrl?: string | undefined;
|
|
10325
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10321
10326
|
customUrl?: string | undefined;
|
|
10322
10327
|
}[] | undefined;
|
|
10323
10328
|
figma?: {
|
|
10324
10329
|
id: string;
|
|
10325
10330
|
email?: string | undefined;
|
|
10326
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10327
10331
|
handle?: string | undefined;
|
|
10328
10332
|
avatarUrl?: string | undefined;
|
|
10333
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10329
10334
|
customUrl?: string | undefined;
|
|
10330
10335
|
} | undefined;
|
|
10331
10336
|
} | undefined;
|
|
@@ -10360,41 +10365,41 @@ declare const UserDump: z.ZodObject<{
|
|
|
10360
10365
|
azure?: {
|
|
10361
10366
|
id: string;
|
|
10362
10367
|
email?: string | undefined;
|
|
10363
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10364
10368
|
handle?: string | undefined;
|
|
10365
10369
|
avatarUrl?: string | undefined;
|
|
10370
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10366
10371
|
customUrl?: string | undefined;
|
|
10367
10372
|
}[] | undefined;
|
|
10368
10373
|
github?: {
|
|
10369
10374
|
id: string;
|
|
10370
10375
|
email?: string | undefined;
|
|
10371
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10372
10376
|
handle?: string | undefined;
|
|
10373
10377
|
avatarUrl?: string | undefined;
|
|
10378
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10374
10379
|
customUrl?: string | undefined;
|
|
10375
10380
|
}[] | undefined;
|
|
10376
10381
|
gitlab?: {
|
|
10377
10382
|
id: string;
|
|
10378
10383
|
email?: string | undefined;
|
|
10379
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10380
10384
|
handle?: string | undefined;
|
|
10381
10385
|
avatarUrl?: string | undefined;
|
|
10386
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10382
10387
|
customUrl?: string | undefined;
|
|
10383
10388
|
}[] | undefined;
|
|
10384
10389
|
bitbucket?: {
|
|
10385
10390
|
id: string;
|
|
10386
10391
|
email?: string | undefined;
|
|
10387
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10388
10392
|
handle?: string | undefined;
|
|
10389
10393
|
avatarUrl?: string | undefined;
|
|
10394
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10390
10395
|
customUrl?: string | undefined;
|
|
10391
10396
|
}[] | undefined;
|
|
10392
10397
|
figma?: {
|
|
10393
10398
|
id: string;
|
|
10394
10399
|
email?: string | undefined;
|
|
10395
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
10396
10400
|
handle?: string | undefined;
|
|
10397
10401
|
avatarUrl?: string | undefined;
|
|
10402
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
10398
10403
|
customUrl?: string | undefined;
|
|
10399
10404
|
} | undefined;
|
|
10400
10405
|
} | undefined;
|
|
@@ -11894,6 +11899,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11894
11899
|
} | null | undefined>;
|
|
11895
11900
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
11896
11901
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
11902
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
11897
11903
|
createdAt: z.ZodDate;
|
|
11898
11904
|
updatedAt: z.ZodDate;
|
|
11899
11905
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11910,6 +11916,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11910
11916
|
basePrefixes: string[];
|
|
11911
11917
|
isApprovalFeatureEnabled: boolean;
|
|
11912
11918
|
approvalRequiredForPublishing: boolean;
|
|
11919
|
+
accessMode: "Open" | "InviteOnly";
|
|
11913
11920
|
docExporterId?: string | undefined;
|
|
11914
11921
|
docUserSlug?: string | undefined;
|
|
11915
11922
|
docViewUrl?: string | undefined;
|
|
@@ -11931,6 +11938,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11931
11938
|
basePrefixes: string[];
|
|
11932
11939
|
isApprovalFeatureEnabled: boolean;
|
|
11933
11940
|
approvalRequiredForPublishing: boolean;
|
|
11941
|
+
accessMode: "Open" | "InviteOnly";
|
|
11934
11942
|
docExporterId?: string | null | undefined;
|
|
11935
11943
|
docUserSlug?: string | null | undefined;
|
|
11936
11944
|
docViewUrl?: string | null | undefined;
|
|
@@ -15014,6 +15022,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15014
15022
|
basePrefixes: string[];
|
|
15015
15023
|
isApprovalFeatureEnabled: boolean;
|
|
15016
15024
|
approvalRequiredForPublishing: boolean;
|
|
15025
|
+
accessMode: "Open" | "InviteOnly";
|
|
15017
15026
|
docExporterId?: string | undefined;
|
|
15018
15027
|
docUserSlug?: string | undefined;
|
|
15019
15028
|
docViewUrl?: string | undefined;
|
|
@@ -15443,6 +15452,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15443
15452
|
basePrefixes: string[];
|
|
15444
15453
|
isApprovalFeatureEnabled: boolean;
|
|
15445
15454
|
approvalRequiredForPublishing: boolean;
|
|
15455
|
+
accessMode: "Open" | "InviteOnly";
|
|
15446
15456
|
docExporterId?: string | null | undefined;
|
|
15447
15457
|
docUserSlug?: string | null | undefined;
|
|
15448
15458
|
docViewUrl?: string | null | undefined;
|
|
@@ -17062,6 +17072,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17062
17072
|
basePrefixes: string[];
|
|
17063
17073
|
isApprovalFeatureEnabled: boolean;
|
|
17064
17074
|
approvalRequiredForPublishing: boolean;
|
|
17075
|
+
accessMode: "Open" | "InviteOnly";
|
|
17065
17076
|
docExporterId?: string | undefined;
|
|
17066
17077
|
docUserSlug?: string | undefined;
|
|
17067
17078
|
docViewUrl?: string | undefined;
|
|
@@ -17871,6 +17882,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17871
17882
|
basePrefixes: string[];
|
|
17872
17883
|
isApprovalFeatureEnabled: boolean;
|
|
17873
17884
|
approvalRequiredForPublishing: boolean;
|
|
17885
|
+
accessMode: "Open" | "InviteOnly";
|
|
17874
17886
|
docExporterId?: string | null | undefined;
|
|
17875
17887
|
docUserSlug?: string | null | undefined;
|
|
17876
17888
|
docViewUrl?: string | null | undefined;
|
|
@@ -18682,6 +18694,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18682
18694
|
basePrefixes: string[];
|
|
18683
18695
|
isApprovalFeatureEnabled: boolean;
|
|
18684
18696
|
approvalRequiredForPublishing: boolean;
|
|
18697
|
+
accessMode: "Open" | "InviteOnly";
|
|
18685
18698
|
docExporterId?: string | undefined;
|
|
18686
18699
|
docUserSlug?: string | undefined;
|
|
18687
18700
|
docViewUrl?: string | undefined;
|
|
@@ -19484,41 +19497,41 @@ declare const UserDump: z.ZodObject<{
|
|
|
19484
19497
|
azure?: {
|
|
19485
19498
|
id: string;
|
|
19486
19499
|
email?: string | undefined;
|
|
19487
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
19488
19500
|
handle?: string | undefined;
|
|
19489
19501
|
avatarUrl?: string | undefined;
|
|
19502
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
19490
19503
|
customUrl?: string | undefined;
|
|
19491
19504
|
}[] | undefined;
|
|
19492
19505
|
github?: {
|
|
19493
19506
|
id: string;
|
|
19494
19507
|
email?: string | undefined;
|
|
19495
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
19496
19508
|
handle?: string | undefined;
|
|
19497
19509
|
avatarUrl?: string | undefined;
|
|
19510
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
19498
19511
|
customUrl?: string | undefined;
|
|
19499
19512
|
}[] | undefined;
|
|
19500
19513
|
gitlab?: {
|
|
19501
19514
|
id: string;
|
|
19502
19515
|
email?: string | undefined;
|
|
19503
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
19504
19516
|
handle?: string | undefined;
|
|
19505
19517
|
avatarUrl?: string | undefined;
|
|
19518
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
19506
19519
|
customUrl?: string | undefined;
|
|
19507
19520
|
}[] | undefined;
|
|
19508
19521
|
bitbucket?: {
|
|
19509
19522
|
id: string;
|
|
19510
19523
|
email?: string | undefined;
|
|
19511
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
19512
19524
|
handle?: string | undefined;
|
|
19513
19525
|
avatarUrl?: string | undefined;
|
|
19526
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
19514
19527
|
customUrl?: string | undefined;
|
|
19515
19528
|
}[] | undefined;
|
|
19516
19529
|
figma?: {
|
|
19517
19530
|
id: string;
|
|
19518
19531
|
email?: string | undefined;
|
|
19519
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
19520
19532
|
handle?: string | undefined;
|
|
19521
19533
|
avatarUrl?: string | undefined;
|
|
19534
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
19522
19535
|
customUrl?: string | undefined;
|
|
19523
19536
|
} | undefined;
|
|
19524
19537
|
} | undefined;
|
|
@@ -19563,6 +19576,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19563
19576
|
basePrefixes: string[];
|
|
19564
19577
|
isApprovalFeatureEnabled: boolean;
|
|
19565
19578
|
approvalRequiredForPublishing: boolean;
|
|
19579
|
+
accessMode: "Open" | "InviteOnly";
|
|
19566
19580
|
docExporterId?: string | null | undefined;
|
|
19567
19581
|
docUserSlug?: string | null | undefined;
|
|
19568
19582
|
docViewUrl?: string | null | undefined;
|
|
@@ -20365,41 +20379,41 @@ declare const UserDump: z.ZodObject<{
|
|
|
20365
20379
|
azure?: {
|
|
20366
20380
|
id: string;
|
|
20367
20381
|
email?: string | undefined;
|
|
20368
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
20369
20382
|
handle?: string | undefined;
|
|
20370
20383
|
avatarUrl?: string | undefined;
|
|
20384
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
20371
20385
|
customUrl?: string | undefined;
|
|
20372
20386
|
}[] | undefined;
|
|
20373
20387
|
github?: {
|
|
20374
20388
|
id: string;
|
|
20375
20389
|
email?: string | undefined;
|
|
20376
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
20377
20390
|
handle?: string | undefined;
|
|
20378
20391
|
avatarUrl?: string | undefined;
|
|
20392
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
20379
20393
|
customUrl?: string | undefined;
|
|
20380
20394
|
}[] | undefined;
|
|
20381
20395
|
gitlab?: {
|
|
20382
20396
|
id: string;
|
|
20383
20397
|
email?: string | undefined;
|
|
20384
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
20385
20398
|
handle?: string | undefined;
|
|
20386
20399
|
avatarUrl?: string | undefined;
|
|
20400
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
20387
20401
|
customUrl?: string | undefined;
|
|
20388
20402
|
}[] | undefined;
|
|
20389
20403
|
bitbucket?: {
|
|
20390
20404
|
id: string;
|
|
20391
20405
|
email?: string | undefined;
|
|
20392
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
20393
20406
|
handle?: string | undefined;
|
|
20394
20407
|
avatarUrl?: string | undefined;
|
|
20408
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
20395
20409
|
customUrl?: string | undefined;
|
|
20396
20410
|
}[] | undefined;
|
|
20397
20411
|
figma?: {
|
|
20398
20412
|
id: string;
|
|
20399
20413
|
email?: string | undefined;
|
|
20400
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
20401
20414
|
handle?: string | undefined;
|
|
20402
20415
|
avatarUrl?: string | undefined;
|
|
20416
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
20403
20417
|
customUrl?: string | undefined;
|
|
20404
20418
|
} | undefined;
|
|
20405
20419
|
} | undefined;
|
|
@@ -21902,6 +21916,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21902
21916
|
} | null | undefined>;
|
|
21903
21917
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
21904
21918
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
21919
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
21905
21920
|
createdAt: z.ZodDate;
|
|
21906
21921
|
updatedAt: z.ZodDate;
|
|
21907
21922
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21918,6 +21933,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21918
21933
|
basePrefixes: string[];
|
|
21919
21934
|
isApprovalFeatureEnabled: boolean;
|
|
21920
21935
|
approvalRequiredForPublishing: boolean;
|
|
21936
|
+
accessMode: "Open" | "InviteOnly";
|
|
21921
21937
|
docExporterId?: string | undefined;
|
|
21922
21938
|
docUserSlug?: string | undefined;
|
|
21923
21939
|
docViewUrl?: string | undefined;
|
|
@@ -21939,6 +21955,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21939
21955
|
basePrefixes: string[];
|
|
21940
21956
|
isApprovalFeatureEnabled: boolean;
|
|
21941
21957
|
approvalRequiredForPublishing: boolean;
|
|
21958
|
+
accessMode: "Open" | "InviteOnly";
|
|
21942
21959
|
docExporterId?: string | null | undefined;
|
|
21943
21960
|
docUserSlug?: string | null | undefined;
|
|
21944
21961
|
docViewUrl?: string | null | undefined;
|
|
@@ -25022,6 +25039,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25022
25039
|
basePrefixes: string[];
|
|
25023
25040
|
isApprovalFeatureEnabled: boolean;
|
|
25024
25041
|
approvalRequiredForPublishing: boolean;
|
|
25042
|
+
accessMode: "Open" | "InviteOnly";
|
|
25025
25043
|
docExporterId?: string | undefined;
|
|
25026
25044
|
docUserSlug?: string | undefined;
|
|
25027
25045
|
docViewUrl?: string | undefined;
|
|
@@ -25451,6 +25469,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25451
25469
|
basePrefixes: string[];
|
|
25452
25470
|
isApprovalFeatureEnabled: boolean;
|
|
25453
25471
|
approvalRequiredForPublishing: boolean;
|
|
25472
|
+
accessMode: "Open" | "InviteOnly";
|
|
25454
25473
|
docExporterId?: string | null | undefined;
|
|
25455
25474
|
docUserSlug?: string | null | undefined;
|
|
25456
25475
|
docViewUrl?: string | null | undefined;
|
|
@@ -27070,6 +27089,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27070
27089
|
basePrefixes: string[];
|
|
27071
27090
|
isApprovalFeatureEnabled: boolean;
|
|
27072
27091
|
approvalRequiredForPublishing: boolean;
|
|
27092
|
+
accessMode: "Open" | "InviteOnly";
|
|
27073
27093
|
docExporterId?: string | undefined;
|
|
27074
27094
|
docUserSlug?: string | undefined;
|
|
27075
27095
|
docViewUrl?: string | undefined;
|
|
@@ -27879,6 +27899,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27879
27899
|
basePrefixes: string[];
|
|
27880
27900
|
isApprovalFeatureEnabled: boolean;
|
|
27881
27901
|
approvalRequiredForPublishing: boolean;
|
|
27902
|
+
accessMode: "Open" | "InviteOnly";
|
|
27882
27903
|
docExporterId?: string | null | undefined;
|
|
27883
27904
|
docUserSlug?: string | null | undefined;
|
|
27884
27905
|
docViewUrl?: string | null | undefined;
|
|
@@ -28905,16 +28926,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
28905
28926
|
}, "strip", z.ZodTypeAny, {
|
|
28906
28927
|
id: string;
|
|
28907
28928
|
email?: string | undefined;
|
|
28908
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28909
28929
|
handle?: string | undefined;
|
|
28910
28930
|
avatarUrl?: string | undefined;
|
|
28931
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28911
28932
|
customUrl?: string | undefined;
|
|
28912
28933
|
}, {
|
|
28913
28934
|
id: string;
|
|
28914
28935
|
email?: string | undefined;
|
|
28915
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28916
28936
|
handle?: string | undefined;
|
|
28917
28937
|
avatarUrl?: string | undefined;
|
|
28938
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28918
28939
|
customUrl?: string | undefined;
|
|
28919
28940
|
}>>;
|
|
28920
28941
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -28927,16 +28948,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
28927
28948
|
}, "strip", z.ZodTypeAny, {
|
|
28928
28949
|
id: string;
|
|
28929
28950
|
email?: string | undefined;
|
|
28930
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28931
28951
|
handle?: string | undefined;
|
|
28932
28952
|
avatarUrl?: string | undefined;
|
|
28953
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28933
28954
|
customUrl?: string | undefined;
|
|
28934
28955
|
}, {
|
|
28935
28956
|
id: string;
|
|
28936
28957
|
email?: string | undefined;
|
|
28937
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28938
28958
|
handle?: string | undefined;
|
|
28939
28959
|
avatarUrl?: string | undefined;
|
|
28960
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28940
28961
|
customUrl?: string | undefined;
|
|
28941
28962
|
}>, "many">>;
|
|
28942
28963
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -28949,16 +28970,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
28949
28970
|
}, "strip", z.ZodTypeAny, {
|
|
28950
28971
|
id: string;
|
|
28951
28972
|
email?: string | undefined;
|
|
28952
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28953
28973
|
handle?: string | undefined;
|
|
28954
28974
|
avatarUrl?: string | undefined;
|
|
28975
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28955
28976
|
customUrl?: string | undefined;
|
|
28956
28977
|
}, {
|
|
28957
28978
|
id: string;
|
|
28958
28979
|
email?: string | undefined;
|
|
28959
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28960
28980
|
handle?: string | undefined;
|
|
28961
28981
|
avatarUrl?: string | undefined;
|
|
28982
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28962
28983
|
customUrl?: string | undefined;
|
|
28963
28984
|
}>, "many">>;
|
|
28964
28985
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -28971,16 +28992,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
28971
28992
|
}, "strip", z.ZodTypeAny, {
|
|
28972
28993
|
id: string;
|
|
28973
28994
|
email?: string | undefined;
|
|
28974
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28975
28995
|
handle?: string | undefined;
|
|
28976
28996
|
avatarUrl?: string | undefined;
|
|
28997
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28977
28998
|
customUrl?: string | undefined;
|
|
28978
28999
|
}, {
|
|
28979
29000
|
id: string;
|
|
28980
29001
|
email?: string | undefined;
|
|
28981
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28982
29002
|
handle?: string | undefined;
|
|
28983
29003
|
avatarUrl?: string | undefined;
|
|
29004
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28984
29005
|
customUrl?: string | undefined;
|
|
28985
29006
|
}>, "many">>;
|
|
28986
29007
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -28993,98 +29014,98 @@ declare const UserSession: z.ZodObject<{
|
|
|
28993
29014
|
}, "strip", z.ZodTypeAny, {
|
|
28994
29015
|
id: string;
|
|
28995
29016
|
email?: string | undefined;
|
|
28996
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
28997
29017
|
handle?: string | undefined;
|
|
28998
29018
|
avatarUrl?: string | undefined;
|
|
29019
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
28999
29020
|
customUrl?: string | undefined;
|
|
29000
29021
|
}, {
|
|
29001
29022
|
id: string;
|
|
29002
29023
|
email?: string | undefined;
|
|
29003
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29004
29024
|
handle?: string | undefined;
|
|
29005
29025
|
avatarUrl?: string | undefined;
|
|
29026
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29006
29027
|
customUrl?: string | undefined;
|
|
29007
29028
|
}>, "many">>;
|
|
29008
29029
|
}, "strip", z.ZodTypeAny, {
|
|
29009
29030
|
azure?: {
|
|
29010
29031
|
id: string;
|
|
29011
29032
|
email?: string | undefined;
|
|
29012
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29013
29033
|
handle?: string | undefined;
|
|
29014
29034
|
avatarUrl?: string | undefined;
|
|
29035
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29015
29036
|
customUrl?: string | undefined;
|
|
29016
29037
|
}[] | undefined;
|
|
29017
29038
|
github?: {
|
|
29018
29039
|
id: string;
|
|
29019
29040
|
email?: string | undefined;
|
|
29020
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29021
29041
|
handle?: string | undefined;
|
|
29022
29042
|
avatarUrl?: string | undefined;
|
|
29043
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29023
29044
|
customUrl?: string | undefined;
|
|
29024
29045
|
}[] | undefined;
|
|
29025
29046
|
gitlab?: {
|
|
29026
29047
|
id: string;
|
|
29027
29048
|
email?: string | undefined;
|
|
29028
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29029
29049
|
handle?: string | undefined;
|
|
29030
29050
|
avatarUrl?: string | undefined;
|
|
29051
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29031
29052
|
customUrl?: string | undefined;
|
|
29032
29053
|
}[] | undefined;
|
|
29033
29054
|
bitbucket?: {
|
|
29034
29055
|
id: string;
|
|
29035
29056
|
email?: string | undefined;
|
|
29036
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29037
29057
|
handle?: string | undefined;
|
|
29038
29058
|
avatarUrl?: string | undefined;
|
|
29059
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29039
29060
|
customUrl?: string | undefined;
|
|
29040
29061
|
}[] | undefined;
|
|
29041
29062
|
figma?: {
|
|
29042
29063
|
id: string;
|
|
29043
29064
|
email?: string | undefined;
|
|
29044
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29045
29065
|
handle?: string | undefined;
|
|
29046
29066
|
avatarUrl?: string | undefined;
|
|
29067
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29047
29068
|
customUrl?: string | undefined;
|
|
29048
29069
|
} | undefined;
|
|
29049
29070
|
}, {
|
|
29050
29071
|
azure?: {
|
|
29051
29072
|
id: string;
|
|
29052
29073
|
email?: string | undefined;
|
|
29053
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29054
29074
|
handle?: string | undefined;
|
|
29055
29075
|
avatarUrl?: string | undefined;
|
|
29076
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29056
29077
|
customUrl?: string | undefined;
|
|
29057
29078
|
}[] | undefined;
|
|
29058
29079
|
github?: {
|
|
29059
29080
|
id: string;
|
|
29060
29081
|
email?: string | undefined;
|
|
29061
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29062
29082
|
handle?: string | undefined;
|
|
29063
29083
|
avatarUrl?: string | undefined;
|
|
29084
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29064
29085
|
customUrl?: string | undefined;
|
|
29065
29086
|
}[] | undefined;
|
|
29066
29087
|
gitlab?: {
|
|
29067
29088
|
id: string;
|
|
29068
29089
|
email?: string | undefined;
|
|
29069
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29070
29090
|
handle?: string | undefined;
|
|
29071
29091
|
avatarUrl?: string | undefined;
|
|
29092
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29072
29093
|
customUrl?: string | undefined;
|
|
29073
29094
|
}[] | undefined;
|
|
29074
29095
|
bitbucket?: {
|
|
29075
29096
|
id: string;
|
|
29076
29097
|
email?: string | undefined;
|
|
29077
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29078
29098
|
handle?: string | undefined;
|
|
29079
29099
|
avatarUrl?: string | undefined;
|
|
29100
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29080
29101
|
customUrl?: string | undefined;
|
|
29081
29102
|
}[] | undefined;
|
|
29082
29103
|
figma?: {
|
|
29083
29104
|
id: string;
|
|
29084
29105
|
email?: string | undefined;
|
|
29085
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29086
29106
|
handle?: string | undefined;
|
|
29087
29107
|
avatarUrl?: string | undefined;
|
|
29108
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29088
29109
|
customUrl?: string | undefined;
|
|
29089
29110
|
} | undefined;
|
|
29090
29111
|
}>>;
|
|
@@ -29120,212 +29141,46 @@ declare const UserSession: z.ZodObject<{
|
|
|
29120
29141
|
azure?: {
|
|
29121
29142
|
id: string;
|
|
29122
29143
|
email?: string | undefined;
|
|
29123
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29124
|
-
handle?: string | undefined;
|
|
29125
|
-
avatarUrl?: string | undefined;
|
|
29126
|
-
customUrl?: string | undefined;
|
|
29127
|
-
}[] | undefined;
|
|
29128
|
-
github?: {
|
|
29129
|
-
id: string;
|
|
29130
|
-
email?: string | undefined;
|
|
29131
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29132
|
-
handle?: string | undefined;
|
|
29133
|
-
avatarUrl?: string | undefined;
|
|
29134
|
-
customUrl?: string | undefined;
|
|
29135
|
-
}[] | undefined;
|
|
29136
|
-
gitlab?: {
|
|
29137
|
-
id: string;
|
|
29138
|
-
email?: string | undefined;
|
|
29139
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29140
|
-
handle?: string | undefined;
|
|
29141
|
-
avatarUrl?: string | undefined;
|
|
29142
|
-
customUrl?: string | undefined;
|
|
29143
|
-
}[] | undefined;
|
|
29144
|
-
bitbucket?: {
|
|
29145
|
-
id: string;
|
|
29146
|
-
email?: string | undefined;
|
|
29147
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29148
|
-
handle?: string | undefined;
|
|
29149
|
-
avatarUrl?: string | undefined;
|
|
29150
|
-
customUrl?: string | undefined;
|
|
29151
|
-
}[] | undefined;
|
|
29152
|
-
figma?: {
|
|
29153
|
-
id: string;
|
|
29154
|
-
email?: string | undefined;
|
|
29155
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29156
29144
|
handle?: string | undefined;
|
|
29157
29145
|
avatarUrl?: string | undefined;
|
|
29158
|
-
customUrl?: string | undefined;
|
|
29159
|
-
} | undefined;
|
|
29160
|
-
} | undefined;
|
|
29161
|
-
loggedOutAt?: Date | undefined;
|
|
29162
|
-
}, {
|
|
29163
|
-
id: string;
|
|
29164
|
-
createdAt: Date;
|
|
29165
|
-
email: string;
|
|
29166
|
-
profile: {
|
|
29167
|
-
name: string;
|
|
29168
|
-
avatar?: string | undefined;
|
|
29169
|
-
nickname?: string | undefined;
|
|
29170
|
-
onboarding?: {
|
|
29171
|
-
companyName?: string | undefined;
|
|
29172
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
29173
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
29174
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
29175
|
-
jobTitle?: string | undefined;
|
|
29176
|
-
phase?: string | undefined;
|
|
29177
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
29178
|
-
designSystemName?: string | undefined;
|
|
29179
|
-
defaultDestination?: string | undefined;
|
|
29180
|
-
figmaUrl?: string | undefined;
|
|
29181
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
29182
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
29183
|
-
} | undefined;
|
|
29184
|
-
};
|
|
29185
|
-
emailVerified: boolean;
|
|
29186
|
-
isProtected: boolean;
|
|
29187
|
-
trialExpiresAt?: Date | undefined;
|
|
29188
|
-
linkedIntegrations?: {
|
|
29189
|
-
azure?: {
|
|
29190
|
-
id: string;
|
|
29191
|
-
email?: string | undefined;
|
|
29192
29146
|
authType?: "OAuth2" | "PAT" | undefined;
|
|
29193
|
-
handle?: string | undefined;
|
|
29194
|
-
avatarUrl?: string | undefined;
|
|
29195
29147
|
customUrl?: string | undefined;
|
|
29196
29148
|
}[] | undefined;
|
|
29197
29149
|
github?: {
|
|
29198
29150
|
id: string;
|
|
29199
29151
|
email?: string | undefined;
|
|
29200
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29201
29152
|
handle?: string | undefined;
|
|
29202
29153
|
avatarUrl?: string | undefined;
|
|
29203
|
-
customUrl?: string | undefined;
|
|
29204
|
-
}[] | undefined;
|
|
29205
|
-
gitlab?: {
|
|
29206
|
-
id: string;
|
|
29207
|
-
email?: string | undefined;
|
|
29208
29154
|
authType?: "OAuth2" | "PAT" | undefined;
|
|
29209
|
-
handle?: string | undefined;
|
|
29210
|
-
avatarUrl?: string | undefined;
|
|
29211
|
-
customUrl?: string | undefined;
|
|
29212
|
-
}[] | undefined;
|
|
29213
|
-
bitbucket?: {
|
|
29214
|
-
id: string;
|
|
29215
|
-
email?: string | undefined;
|
|
29216
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29217
|
-
handle?: string | undefined;
|
|
29218
|
-
avatarUrl?: string | undefined;
|
|
29219
|
-
customUrl?: string | undefined;
|
|
29220
|
-
}[] | undefined;
|
|
29221
|
-
figma?: {
|
|
29222
|
-
id: string;
|
|
29223
|
-
email?: string | undefined;
|
|
29224
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29225
|
-
handle?: string | undefined;
|
|
29226
|
-
avatarUrl?: string | undefined;
|
|
29227
|
-
customUrl?: string | undefined;
|
|
29228
|
-
} | undefined;
|
|
29229
|
-
} | undefined;
|
|
29230
|
-
loggedOutAt?: Date | undefined;
|
|
29231
|
-
}>>;
|
|
29232
|
-
}, "strip", z.ZodTypeAny, {
|
|
29233
|
-
session: {
|
|
29234
|
-
id: string;
|
|
29235
|
-
expiresAt: Date;
|
|
29236
|
-
data: {
|
|
29237
|
-
returnToUrl?: string | undefined;
|
|
29238
|
-
npmProxyToken?: {
|
|
29239
|
-
expiresAt: number;
|
|
29240
|
-
access: string;
|
|
29241
|
-
} | undefined;
|
|
29242
|
-
};
|
|
29243
|
-
userId: string | null;
|
|
29244
|
-
};
|
|
29245
|
-
user: {
|
|
29246
|
-
id: string;
|
|
29247
|
-
createdAt: Date;
|
|
29248
|
-
email: string;
|
|
29249
|
-
profile: {
|
|
29250
|
-
name: string;
|
|
29251
|
-
avatar?: string | undefined;
|
|
29252
|
-
nickname?: string | undefined;
|
|
29253
|
-
onboarding?: {
|
|
29254
|
-
companyName?: string | undefined;
|
|
29255
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
29256
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
29257
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
29258
|
-
jobTitle?: string | undefined;
|
|
29259
|
-
phase?: string | undefined;
|
|
29260
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
29261
|
-
designSystemName?: string | undefined;
|
|
29262
|
-
defaultDestination?: string | undefined;
|
|
29263
|
-
figmaUrl?: string | undefined;
|
|
29264
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
29265
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
29266
|
-
} | undefined;
|
|
29267
|
-
};
|
|
29268
|
-
emailVerified: boolean;
|
|
29269
|
-
isProtected: boolean;
|
|
29270
|
-
trialExpiresAt?: Date | undefined;
|
|
29271
|
-
linkedIntegrations?: {
|
|
29272
|
-
azure?: {
|
|
29273
|
-
id: string;
|
|
29274
|
-
email?: string | undefined;
|
|
29275
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29276
|
-
handle?: string | undefined;
|
|
29277
|
-
avatarUrl?: string | undefined;
|
|
29278
|
-
customUrl?: string | undefined;
|
|
29279
|
-
}[] | undefined;
|
|
29280
|
-
github?: {
|
|
29281
|
-
id: string;
|
|
29282
|
-
email?: string | undefined;
|
|
29283
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29284
|
-
handle?: string | undefined;
|
|
29285
|
-
avatarUrl?: string | undefined;
|
|
29286
29155
|
customUrl?: string | undefined;
|
|
29287
29156
|
}[] | undefined;
|
|
29288
29157
|
gitlab?: {
|
|
29289
29158
|
id: string;
|
|
29290
29159
|
email?: string | undefined;
|
|
29291
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29292
29160
|
handle?: string | undefined;
|
|
29293
29161
|
avatarUrl?: string | undefined;
|
|
29162
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29294
29163
|
customUrl?: string | undefined;
|
|
29295
29164
|
}[] | undefined;
|
|
29296
29165
|
bitbucket?: {
|
|
29297
29166
|
id: string;
|
|
29298
29167
|
email?: string | undefined;
|
|
29299
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29300
29168
|
handle?: string | undefined;
|
|
29301
29169
|
avatarUrl?: string | undefined;
|
|
29170
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29302
29171
|
customUrl?: string | undefined;
|
|
29303
29172
|
}[] | undefined;
|
|
29304
29173
|
figma?: {
|
|
29305
29174
|
id: string;
|
|
29306
29175
|
email?: string | undefined;
|
|
29307
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29308
29176
|
handle?: string | undefined;
|
|
29309
29177
|
avatarUrl?: string | undefined;
|
|
29178
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29310
29179
|
customUrl?: string | undefined;
|
|
29311
29180
|
} | undefined;
|
|
29312
29181
|
} | undefined;
|
|
29313
29182
|
loggedOutAt?: Date | undefined;
|
|
29314
|
-
}
|
|
29315
|
-
}, {
|
|
29316
|
-
session: {
|
|
29317
|
-
id: string;
|
|
29318
|
-
expiresAt: Date;
|
|
29319
|
-
data: {
|
|
29320
|
-
returnToUrl?: string | undefined;
|
|
29321
|
-
npmProxyToken?: {
|
|
29322
|
-
expiresAt: number;
|
|
29323
|
-
access: string;
|
|
29324
|
-
} | undefined;
|
|
29325
|
-
};
|
|
29326
|
-
userId: string | null;
|
|
29327
|
-
};
|
|
29328
|
-
user: {
|
|
29183
|
+
}, {
|
|
29329
29184
|
id: string;
|
|
29330
29185
|
createdAt: Date;
|
|
29331
29186
|
email: string;
|
|
@@ -29355,41 +29210,207 @@ declare const UserSession: z.ZodObject<{
|
|
|
29355
29210
|
azure?: {
|
|
29356
29211
|
id: string;
|
|
29357
29212
|
email?: string | undefined;
|
|
29358
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29359
29213
|
handle?: string | undefined;
|
|
29360
29214
|
avatarUrl?: string | undefined;
|
|
29215
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29361
29216
|
customUrl?: string | undefined;
|
|
29362
29217
|
}[] | undefined;
|
|
29363
29218
|
github?: {
|
|
29364
29219
|
id: string;
|
|
29365
29220
|
email?: string | undefined;
|
|
29366
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29367
29221
|
handle?: string | undefined;
|
|
29368
29222
|
avatarUrl?: string | undefined;
|
|
29223
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29369
29224
|
customUrl?: string | undefined;
|
|
29370
29225
|
}[] | undefined;
|
|
29371
29226
|
gitlab?: {
|
|
29372
29227
|
id: string;
|
|
29373
29228
|
email?: string | undefined;
|
|
29374
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
29375
29229
|
handle?: string | undefined;
|
|
29376
29230
|
avatarUrl?: string | undefined;
|
|
29231
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29377
29232
|
customUrl?: string | undefined;
|
|
29378
29233
|
}[] | undefined;
|
|
29379
29234
|
bitbucket?: {
|
|
29380
29235
|
id: string;
|
|
29381
29236
|
email?: string | undefined;
|
|
29237
|
+
handle?: string | undefined;
|
|
29238
|
+
avatarUrl?: string | undefined;
|
|
29239
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29240
|
+
customUrl?: string | undefined;
|
|
29241
|
+
}[] | undefined;
|
|
29242
|
+
figma?: {
|
|
29243
|
+
id: string;
|
|
29244
|
+
email?: string | undefined;
|
|
29245
|
+
handle?: string | undefined;
|
|
29246
|
+
avatarUrl?: string | undefined;
|
|
29247
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29248
|
+
customUrl?: string | undefined;
|
|
29249
|
+
} | undefined;
|
|
29250
|
+
} | undefined;
|
|
29251
|
+
loggedOutAt?: Date | undefined;
|
|
29252
|
+
}>>;
|
|
29253
|
+
}, "strip", z.ZodTypeAny, {
|
|
29254
|
+
session: {
|
|
29255
|
+
id: string;
|
|
29256
|
+
expiresAt: Date;
|
|
29257
|
+
data: {
|
|
29258
|
+
returnToUrl?: string | undefined;
|
|
29259
|
+
npmProxyToken?: {
|
|
29260
|
+
expiresAt: number;
|
|
29261
|
+
access: string;
|
|
29262
|
+
} | undefined;
|
|
29263
|
+
};
|
|
29264
|
+
userId: string | null;
|
|
29265
|
+
};
|
|
29266
|
+
user: {
|
|
29267
|
+
id: string;
|
|
29268
|
+
createdAt: Date;
|
|
29269
|
+
email: string;
|
|
29270
|
+
profile: {
|
|
29271
|
+
name: string;
|
|
29272
|
+
avatar?: string | undefined;
|
|
29273
|
+
nickname?: string | undefined;
|
|
29274
|
+
onboarding?: {
|
|
29275
|
+
companyName?: string | undefined;
|
|
29276
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
29277
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
29278
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
29279
|
+
jobTitle?: string | undefined;
|
|
29280
|
+
phase?: string | undefined;
|
|
29281
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
29282
|
+
designSystemName?: string | undefined;
|
|
29283
|
+
defaultDestination?: string | undefined;
|
|
29284
|
+
figmaUrl?: string | undefined;
|
|
29285
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
29286
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
29287
|
+
} | undefined;
|
|
29288
|
+
};
|
|
29289
|
+
emailVerified: boolean;
|
|
29290
|
+
isProtected: boolean;
|
|
29291
|
+
trialExpiresAt?: Date | undefined;
|
|
29292
|
+
linkedIntegrations?: {
|
|
29293
|
+
azure?: {
|
|
29294
|
+
id: string;
|
|
29295
|
+
email?: string | undefined;
|
|
29296
|
+
handle?: string | undefined;
|
|
29297
|
+
avatarUrl?: string | undefined;
|
|
29298
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29299
|
+
customUrl?: string | undefined;
|
|
29300
|
+
}[] | undefined;
|
|
29301
|
+
github?: {
|
|
29302
|
+
id: string;
|
|
29303
|
+
email?: string | undefined;
|
|
29304
|
+
handle?: string | undefined;
|
|
29305
|
+
avatarUrl?: string | undefined;
|
|
29306
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29307
|
+
customUrl?: string | undefined;
|
|
29308
|
+
}[] | undefined;
|
|
29309
|
+
gitlab?: {
|
|
29310
|
+
id: string;
|
|
29311
|
+
email?: string | undefined;
|
|
29312
|
+
handle?: string | undefined;
|
|
29313
|
+
avatarUrl?: string | undefined;
|
|
29382
29314
|
authType?: "OAuth2" | "PAT" | undefined;
|
|
29315
|
+
customUrl?: string | undefined;
|
|
29316
|
+
}[] | undefined;
|
|
29317
|
+
bitbucket?: {
|
|
29318
|
+
id: string;
|
|
29319
|
+
email?: string | undefined;
|
|
29383
29320
|
handle?: string | undefined;
|
|
29384
29321
|
avatarUrl?: string | undefined;
|
|
29322
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29385
29323
|
customUrl?: string | undefined;
|
|
29386
29324
|
}[] | undefined;
|
|
29387
29325
|
figma?: {
|
|
29388
29326
|
id: string;
|
|
29389
29327
|
email?: string | undefined;
|
|
29328
|
+
handle?: string | undefined;
|
|
29329
|
+
avatarUrl?: string | undefined;
|
|
29330
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29331
|
+
customUrl?: string | undefined;
|
|
29332
|
+
} | undefined;
|
|
29333
|
+
} | undefined;
|
|
29334
|
+
loggedOutAt?: Date | undefined;
|
|
29335
|
+
} | null;
|
|
29336
|
+
}, {
|
|
29337
|
+
session: {
|
|
29338
|
+
id: string;
|
|
29339
|
+
expiresAt: Date;
|
|
29340
|
+
data: {
|
|
29341
|
+
returnToUrl?: string | undefined;
|
|
29342
|
+
npmProxyToken?: {
|
|
29343
|
+
expiresAt: number;
|
|
29344
|
+
access: string;
|
|
29345
|
+
} | undefined;
|
|
29346
|
+
};
|
|
29347
|
+
userId: string | null;
|
|
29348
|
+
};
|
|
29349
|
+
user: {
|
|
29350
|
+
id: string;
|
|
29351
|
+
createdAt: Date;
|
|
29352
|
+
email: string;
|
|
29353
|
+
profile: {
|
|
29354
|
+
name: string;
|
|
29355
|
+
avatar?: string | undefined;
|
|
29356
|
+
nickname?: string | undefined;
|
|
29357
|
+
onboarding?: {
|
|
29358
|
+
companyName?: string | undefined;
|
|
29359
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
29360
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
29361
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
29362
|
+
jobTitle?: string | undefined;
|
|
29363
|
+
phase?: string | undefined;
|
|
29364
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
29365
|
+
designSystemName?: string | undefined;
|
|
29366
|
+
defaultDestination?: string | undefined;
|
|
29367
|
+
figmaUrl?: string | undefined;
|
|
29368
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
29369
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
29370
|
+
} | undefined;
|
|
29371
|
+
};
|
|
29372
|
+
emailVerified: boolean;
|
|
29373
|
+
isProtected: boolean;
|
|
29374
|
+
trialExpiresAt?: Date | undefined;
|
|
29375
|
+
linkedIntegrations?: {
|
|
29376
|
+
azure?: {
|
|
29377
|
+
id: string;
|
|
29378
|
+
email?: string | undefined;
|
|
29379
|
+
handle?: string | undefined;
|
|
29380
|
+
avatarUrl?: string | undefined;
|
|
29381
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29382
|
+
customUrl?: string | undefined;
|
|
29383
|
+
}[] | undefined;
|
|
29384
|
+
github?: {
|
|
29385
|
+
id: string;
|
|
29386
|
+
email?: string | undefined;
|
|
29387
|
+
handle?: string | undefined;
|
|
29388
|
+
avatarUrl?: string | undefined;
|
|
29389
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29390
|
+
customUrl?: string | undefined;
|
|
29391
|
+
}[] | undefined;
|
|
29392
|
+
gitlab?: {
|
|
29393
|
+
id: string;
|
|
29394
|
+
email?: string | undefined;
|
|
29395
|
+
handle?: string | undefined;
|
|
29396
|
+
avatarUrl?: string | undefined;
|
|
29397
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29398
|
+
customUrl?: string | undefined;
|
|
29399
|
+
}[] | undefined;
|
|
29400
|
+
bitbucket?: {
|
|
29401
|
+
id: string;
|
|
29402
|
+
email?: string | undefined;
|
|
29403
|
+
handle?: string | undefined;
|
|
29404
|
+
avatarUrl?: string | undefined;
|
|
29390
29405
|
authType?: "OAuth2" | "PAT" | undefined;
|
|
29406
|
+
customUrl?: string | undefined;
|
|
29407
|
+
}[] | undefined;
|
|
29408
|
+
figma?: {
|
|
29409
|
+
id: string;
|
|
29410
|
+
email?: string | undefined;
|
|
29391
29411
|
handle?: string | undefined;
|
|
29392
29412
|
avatarUrl?: string | undefined;
|
|
29413
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
29393
29414
|
customUrl?: string | undefined;
|
|
29394
29415
|
} | undefined;
|
|
29395
29416
|
} | undefined;
|
|
@@ -128386,6 +128407,7 @@ declare const DesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
128386
128407
|
} | null | undefined>>;
|
|
128387
128408
|
isApprovalFeatureEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
128388
128409
|
approvalRequiredForPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
128410
|
+
accessMode: z.ZodOptional<z.ZodEnum<["Open", "InviteOnly"]>>;
|
|
128389
128411
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
128390
128412
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
128391
128413
|
}, "id" | "createdAt" | "updatedAt" | "workspaceId" | "docSlug" | "docViewUrl">, {
|
|
@@ -128418,6 +128440,7 @@ declare const DesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
128418
128440
|
} | undefined;
|
|
128419
128441
|
isApprovalFeatureEnabled?: boolean | undefined;
|
|
128420
128442
|
approvalRequiredForPublishing?: boolean | undefined;
|
|
128443
|
+
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
128421
128444
|
}, {
|
|
128422
128445
|
name?: string | undefined;
|
|
128423
128446
|
description?: string | undefined;
|
|
@@ -128437,6 +128460,7 @@ declare const DesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
128437
128460
|
} | null | undefined;
|
|
128438
128461
|
isApprovalFeatureEnabled?: boolean | undefined;
|
|
128439
128462
|
approvalRequiredForPublishing?: boolean | undefined;
|
|
128463
|
+
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
128440
128464
|
}>;
|
|
128441
128465
|
type DesignSystemUpdateInput = z.infer<typeof DesignSystemUpdateInput>;
|
|
128442
128466
|
declare const DesignSystemUpdateInputMetadata: z.ZodObject<{
|
|
@@ -128451,6 +128475,8 @@ declare const DesignSystemUpdateInputMetadata: z.ZodObject<{
|
|
|
128451
128475
|
}>;
|
|
128452
128476
|
type DesignSystemUpdateInputMetadata = z.infer<typeof DesignSystemUpdateInputMetadata>;
|
|
128453
128477
|
|
|
128478
|
+
declare const DesignSystemAccessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
128479
|
+
type DesignSystemAccessMode = z.infer<typeof DesignSystemAccessMode>;
|
|
128454
128480
|
declare const DesignSystemSwitcher: z.ZodObject<{
|
|
128455
128481
|
isEnabled: z.ZodBoolean;
|
|
128456
128482
|
designSystemIds: z.ZodArray<z.ZodString, "many">;
|
|
@@ -128490,6 +128516,7 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
128490
128516
|
} | null | undefined>;
|
|
128491
128517
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
128492
128518
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
128519
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
128493
128520
|
createdAt: z.ZodDate;
|
|
128494
128521
|
updatedAt: z.ZodDate;
|
|
128495
128522
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -128506,6 +128533,7 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
128506
128533
|
basePrefixes: string[];
|
|
128507
128534
|
isApprovalFeatureEnabled: boolean;
|
|
128508
128535
|
approvalRequiredForPublishing: boolean;
|
|
128536
|
+
accessMode: "Open" | "InviteOnly";
|
|
128509
128537
|
docExporterId?: string | undefined;
|
|
128510
128538
|
docUserSlug?: string | undefined;
|
|
128511
128539
|
docViewUrl?: string | undefined;
|
|
@@ -128527,6 +128555,7 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
128527
128555
|
basePrefixes: string[];
|
|
128528
128556
|
isApprovalFeatureEnabled: boolean;
|
|
128529
128557
|
approvalRequiredForPublishing: boolean;
|
|
128558
|
+
accessMode: "Open" | "InviteOnly";
|
|
128530
128559
|
docExporterId?: string | null | undefined;
|
|
128531
128560
|
docUserSlug?: string | null | undefined;
|
|
128532
128561
|
docViewUrl?: string | null | undefined;
|
|
@@ -128536,2373 +128565,381 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
128536
128565
|
} | null | undefined;
|
|
128537
128566
|
}>;
|
|
128538
128567
|
type DesignSystem = z.infer<typeof DesignSystem>;
|
|
128539
|
-
|
|
128540
|
-
|
|
128541
|
-
|
|
128542
|
-
workspaceId: z.ZodString;
|
|
128568
|
+
|
|
128569
|
+
declare const DesignSystemCreateInput: z.ZodObject<{
|
|
128570
|
+
meta: z.ZodObject<{
|
|
128543
128571
|
name: z.ZodString;
|
|
128544
128572
|
description: z.ZodString;
|
|
128545
|
-
|
|
128546
|
-
|
|
128547
|
-
|
|
128548
|
-
|
|
128549
|
-
|
|
128550
|
-
|
|
128551
|
-
|
|
128552
|
-
|
|
128553
|
-
|
|
128554
|
-
|
|
128555
|
-
|
|
128573
|
+
}, "strip", z.ZodTypeAny, {
|
|
128574
|
+
name: string;
|
|
128575
|
+
description: string;
|
|
128576
|
+
}, {
|
|
128577
|
+
name: string;
|
|
128578
|
+
description: string;
|
|
128579
|
+
}>;
|
|
128580
|
+
workspaceId: z.ZodString;
|
|
128581
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
128582
|
+
basePrefixes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
128583
|
+
docUserSlug: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
128584
|
+
source: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
128585
|
+
}, "strip", z.ZodTypeAny, {
|
|
128586
|
+
meta: {
|
|
128587
|
+
name: string;
|
|
128588
|
+
description: string;
|
|
128589
|
+
};
|
|
128590
|
+
workspaceId: string;
|
|
128591
|
+
source?: string[] | undefined;
|
|
128592
|
+
isPublic?: boolean | undefined;
|
|
128593
|
+
docUserSlug?: string | null | undefined;
|
|
128594
|
+
basePrefixes?: string[] | undefined;
|
|
128595
|
+
}, {
|
|
128596
|
+
meta: {
|
|
128597
|
+
name: string;
|
|
128598
|
+
description: string;
|
|
128599
|
+
};
|
|
128600
|
+
workspaceId: string;
|
|
128601
|
+
source?: string[] | undefined;
|
|
128602
|
+
isPublic?: boolean | undefined;
|
|
128603
|
+
docUserSlug?: string | null | undefined;
|
|
128604
|
+
basePrefixes?: string[] | undefined;
|
|
128605
|
+
}>;
|
|
128606
|
+
type DesignSystemCreateInput = z.infer<typeof DesignSystemCreateInput>;
|
|
128607
|
+
|
|
128608
|
+
declare const ExporterPropertyImageValue: z.ZodObject<{
|
|
128609
|
+
asset: z.ZodOptional<z.ZodObject<{
|
|
128610
|
+
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
128611
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
128612
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
128613
|
+
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
128614
|
+
persistentId: string;
|
|
128615
|
+
sourceId: string;
|
|
128616
|
+
sourceFrameId: string;
|
|
128617
|
+
description?: string | undefined;
|
|
128618
|
+
title?: string | undefined;
|
|
128619
|
+
origin?: {
|
|
128620
|
+
valid?: boolean | undefined;
|
|
128621
|
+
title?: string | undefined;
|
|
128622
|
+
assetId?: string | undefined;
|
|
128623
|
+
width?: number | undefined;
|
|
128624
|
+
height?: number | undefined;
|
|
128625
|
+
referenceId?: string | undefined;
|
|
128626
|
+
sourceFileName?: string | undefined;
|
|
128627
|
+
previewUrl?: string | undefined;
|
|
128628
|
+
assetScale?: number | undefined;
|
|
128629
|
+
} | undefined;
|
|
128630
|
+
backgroundColor?: {
|
|
128631
|
+
value: string;
|
|
128632
|
+
} | undefined;
|
|
128556
128633
|
}, z.ZodTypeDef, {
|
|
128557
|
-
|
|
128558
|
-
|
|
128634
|
+
persistentId: string;
|
|
128635
|
+
sourceId: string;
|
|
128636
|
+
sourceFrameId: string;
|
|
128637
|
+
description?: string | null | undefined;
|
|
128638
|
+
title?: string | null | undefined;
|
|
128639
|
+
origin?: {
|
|
128640
|
+
valid?: boolean | null | undefined;
|
|
128641
|
+
title?: string | null | undefined;
|
|
128642
|
+
assetId?: string | null | undefined;
|
|
128643
|
+
width?: number | null | undefined;
|
|
128644
|
+
height?: number | null | undefined;
|
|
128645
|
+
referenceId?: string | null | undefined;
|
|
128646
|
+
sourceFileName?: string | null | undefined;
|
|
128647
|
+
previewUrl?: string | null | undefined;
|
|
128648
|
+
assetScale?: number | null | undefined;
|
|
128649
|
+
} | null | undefined;
|
|
128650
|
+
backgroundColor?: {
|
|
128651
|
+
value: string;
|
|
128652
|
+
} | null | undefined;
|
|
128559
128653
|
}>>>, {
|
|
128560
|
-
|
|
128561
|
-
|
|
128654
|
+
persistentId: string;
|
|
128655
|
+
sourceId: string;
|
|
128656
|
+
sourceFrameId: string;
|
|
128657
|
+
description?: string | undefined;
|
|
128658
|
+
title?: string | undefined;
|
|
128659
|
+
origin?: {
|
|
128660
|
+
valid?: boolean | undefined;
|
|
128661
|
+
title?: string | undefined;
|
|
128662
|
+
assetId?: string | undefined;
|
|
128663
|
+
width?: number | undefined;
|
|
128664
|
+
height?: number | undefined;
|
|
128665
|
+
referenceId?: string | undefined;
|
|
128666
|
+
sourceFileName?: string | undefined;
|
|
128667
|
+
previewUrl?: string | undefined;
|
|
128668
|
+
assetScale?: number | undefined;
|
|
128669
|
+
} | undefined;
|
|
128670
|
+
backgroundColor?: {
|
|
128671
|
+
value: string;
|
|
128672
|
+
} | undefined;
|
|
128562
128673
|
} | undefined, {
|
|
128563
|
-
|
|
128564
|
-
|
|
128674
|
+
persistentId: string;
|
|
128675
|
+
sourceId: string;
|
|
128676
|
+
sourceFrameId: string;
|
|
128677
|
+
description?: string | null | undefined;
|
|
128678
|
+
title?: string | null | undefined;
|
|
128679
|
+
origin?: {
|
|
128680
|
+
valid?: boolean | null | undefined;
|
|
128681
|
+
title?: string | null | undefined;
|
|
128682
|
+
assetId?: string | null | undefined;
|
|
128683
|
+
width?: number | null | undefined;
|
|
128684
|
+
height?: number | null | undefined;
|
|
128685
|
+
referenceId?: string | null | undefined;
|
|
128686
|
+
sourceFileName?: string | null | undefined;
|
|
128687
|
+
previewUrl?: string | null | undefined;
|
|
128688
|
+
assetScale?: number | null | undefined;
|
|
128689
|
+
} | null | undefined;
|
|
128690
|
+
backgroundColor?: {
|
|
128691
|
+
value: string;
|
|
128692
|
+
} | null | undefined;
|
|
128565
128693
|
} | null | undefined>;
|
|
128566
|
-
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
128567
|
-
approvalRequiredForPublishing: z.ZodBoolean;
|
|
128568
|
-
createdAt: z.ZodDate;
|
|
128569
|
-
updatedAt: z.ZodDate;
|
|
128570
128694
|
}, "strip", z.ZodTypeAny, {
|
|
128571
|
-
|
|
128572
|
-
|
|
128573
|
-
|
|
128574
|
-
|
|
128575
|
-
|
|
128576
|
-
|
|
128577
|
-
|
|
128578
|
-
|
|
128579
|
-
|
|
128580
|
-
|
|
128581
|
-
|
|
128582
|
-
|
|
128583
|
-
|
|
128584
|
-
|
|
128585
|
-
|
|
128586
|
-
|
|
128587
|
-
|
|
128588
|
-
|
|
128589
|
-
|
|
128695
|
+
type: "image" | "figmaFrame";
|
|
128696
|
+
id?: string | undefined;
|
|
128697
|
+
url?: string | undefined;
|
|
128698
|
+
figmaFrame?: {
|
|
128699
|
+
persistentId: string;
|
|
128700
|
+
sourceId: string;
|
|
128701
|
+
sourceFrameId: string;
|
|
128702
|
+
description?: string | undefined;
|
|
128703
|
+
title?: string | undefined;
|
|
128704
|
+
origin?: {
|
|
128705
|
+
valid?: boolean | undefined;
|
|
128706
|
+
title?: string | undefined;
|
|
128707
|
+
assetId?: string | undefined;
|
|
128708
|
+
width?: number | undefined;
|
|
128709
|
+
height?: number | undefined;
|
|
128710
|
+
referenceId?: string | undefined;
|
|
128711
|
+
sourceFileName?: string | undefined;
|
|
128712
|
+
previewUrl?: string | undefined;
|
|
128713
|
+
assetScale?: number | undefined;
|
|
128714
|
+
} | undefined;
|
|
128715
|
+
backgroundColor?: {
|
|
128716
|
+
value: string;
|
|
128717
|
+
} | undefined;
|
|
128590
128718
|
} | undefined;
|
|
128591
128719
|
}, {
|
|
128592
|
-
|
|
128593
|
-
|
|
128594
|
-
|
|
128595
|
-
|
|
128596
|
-
|
|
128597
|
-
|
|
128598
|
-
|
|
128599
|
-
|
|
128600
|
-
|
|
128601
|
-
|
|
128602
|
-
|
|
128603
|
-
|
|
128604
|
-
|
|
128605
|
-
|
|
128606
|
-
|
|
128607
|
-
|
|
128608
|
-
|
|
128609
|
-
|
|
128610
|
-
|
|
128720
|
+
type: "image" | "figmaFrame";
|
|
128721
|
+
id?: string | null | undefined;
|
|
128722
|
+
url?: string | null | undefined;
|
|
128723
|
+
figmaFrame?: {
|
|
128724
|
+
persistentId: string;
|
|
128725
|
+
sourceId: string;
|
|
128726
|
+
sourceFrameId: string;
|
|
128727
|
+
description?: string | null | undefined;
|
|
128728
|
+
title?: string | null | undefined;
|
|
128729
|
+
origin?: {
|
|
128730
|
+
valid?: boolean | null | undefined;
|
|
128731
|
+
title?: string | null | undefined;
|
|
128732
|
+
assetId?: string | null | undefined;
|
|
128733
|
+
width?: number | null | undefined;
|
|
128734
|
+
height?: number | null | undefined;
|
|
128735
|
+
referenceId?: string | null | undefined;
|
|
128736
|
+
sourceFileName?: string | null | undefined;
|
|
128737
|
+
previewUrl?: string | null | undefined;
|
|
128738
|
+
assetScale?: number | null | undefined;
|
|
128739
|
+
} | null | undefined;
|
|
128740
|
+
backgroundColor?: {
|
|
128741
|
+
value: string;
|
|
128742
|
+
} | null | undefined;
|
|
128611
128743
|
} | null | undefined;
|
|
128612
|
-
}
|
|
128613
|
-
|
|
128614
|
-
|
|
128615
|
-
|
|
128616
|
-
|
|
128617
|
-
|
|
128618
|
-
|
|
128619
|
-
|
|
128620
|
-
|
|
128621
|
-
|
|
128622
|
-
|
|
128623
|
-
|
|
128624
|
-
|
|
128625
|
-
|
|
128626
|
-
|
|
128627
|
-
|
|
128744
|
+
}>>;
|
|
128745
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
128746
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
128747
|
+
}, "strip", z.ZodTypeAny, {
|
|
128748
|
+
assetId?: string | undefined;
|
|
128749
|
+
asset?: {
|
|
128750
|
+
type: "image" | "figmaFrame";
|
|
128751
|
+
id?: string | undefined;
|
|
128752
|
+
url?: string | undefined;
|
|
128753
|
+
figmaFrame?: {
|
|
128754
|
+
persistentId: string;
|
|
128755
|
+
sourceId: string;
|
|
128756
|
+
sourceFrameId: string;
|
|
128757
|
+
description?: string | undefined;
|
|
128758
|
+
title?: string | undefined;
|
|
128759
|
+
origin?: {
|
|
128760
|
+
valid?: boolean | undefined;
|
|
128761
|
+
title?: string | undefined;
|
|
128762
|
+
assetId?: string | undefined;
|
|
128763
|
+
width?: number | undefined;
|
|
128764
|
+
height?: number | undefined;
|
|
128765
|
+
referenceId?: string | undefined;
|
|
128766
|
+
sourceFileName?: string | undefined;
|
|
128767
|
+
previewUrl?: string | undefined;
|
|
128768
|
+
assetScale?: number | undefined;
|
|
128769
|
+
} | undefined;
|
|
128770
|
+
backgroundColor?: {
|
|
128771
|
+
value: string;
|
|
128772
|
+
} | undefined;
|
|
128773
|
+
} | undefined;
|
|
128774
|
+
} | undefined;
|
|
128775
|
+
assetUrl?: string | undefined;
|
|
128776
|
+
}, {
|
|
128777
|
+
assetId?: string | undefined;
|
|
128778
|
+
asset?: {
|
|
128779
|
+
type: "image" | "figmaFrame";
|
|
128780
|
+
id?: string | null | undefined;
|
|
128781
|
+
url?: string | null | undefined;
|
|
128782
|
+
figmaFrame?: {
|
|
128783
|
+
persistentId: string;
|
|
128784
|
+
sourceId: string;
|
|
128785
|
+
sourceFrameId: string;
|
|
128786
|
+
description?: string | null | undefined;
|
|
128787
|
+
title?: string | null | undefined;
|
|
128788
|
+
origin?: {
|
|
128789
|
+
valid?: boolean | null | undefined;
|
|
128790
|
+
title?: string | null | undefined;
|
|
128791
|
+
assetId?: string | null | undefined;
|
|
128792
|
+
width?: number | null | undefined;
|
|
128793
|
+
height?: number | null | undefined;
|
|
128794
|
+
referenceId?: string | null | undefined;
|
|
128795
|
+
sourceFileName?: string | null | undefined;
|
|
128796
|
+
previewUrl?: string | null | undefined;
|
|
128797
|
+
assetScale?: number | null | undefined;
|
|
128798
|
+
} | null | undefined;
|
|
128799
|
+
backgroundColor?: {
|
|
128800
|
+
value: string;
|
|
128801
|
+
} | null | undefined;
|
|
128802
|
+
} | null | undefined;
|
|
128803
|
+
} | undefined;
|
|
128804
|
+
assetUrl?: string | undefined;
|
|
128805
|
+
}>;
|
|
128806
|
+
type ExporterPropertyImageValue = z.infer<typeof ExporterPropertyImageValue>;
|
|
128807
|
+
declare const ExporterPropertyValue: z.ZodObject<{
|
|
128808
|
+
key: z.ZodString;
|
|
128809
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
128810
|
+
asset: z.ZodOptional<z.ZodObject<{
|
|
128811
|
+
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
128812
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
128813
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
128814
|
+
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
128815
|
+
persistentId: string;
|
|
128816
|
+
sourceId: string;
|
|
128817
|
+
sourceFrameId: string;
|
|
128818
|
+
description?: string | undefined;
|
|
128819
|
+
title?: string | undefined;
|
|
128820
|
+
origin?: {
|
|
128821
|
+
valid?: boolean | undefined;
|
|
128822
|
+
title?: string | undefined;
|
|
128823
|
+
assetId?: string | undefined;
|
|
128824
|
+
width?: number | undefined;
|
|
128825
|
+
height?: number | undefined;
|
|
128826
|
+
referenceId?: string | undefined;
|
|
128827
|
+
sourceFileName?: string | undefined;
|
|
128828
|
+
previewUrl?: string | undefined;
|
|
128829
|
+
assetScale?: number | undefined;
|
|
128830
|
+
} | undefined;
|
|
128831
|
+
backgroundColor?: {
|
|
128832
|
+
value: string;
|
|
128628
128833
|
} | undefined;
|
|
128629
|
-
email?: string | undefined;
|
|
128630
|
-
companyName?: string | undefined;
|
|
128631
|
-
companyId?: string | undefined;
|
|
128632
|
-
notes?: string | undefined;
|
|
128633
|
-
vat?: string | undefined;
|
|
128634
|
-
poNumber?: string | undefined;
|
|
128635
128834
|
}, z.ZodTypeDef, {
|
|
128636
|
-
|
|
128637
|
-
|
|
128638
|
-
|
|
128639
|
-
|
|
128640
|
-
|
|
128641
|
-
|
|
128642
|
-
|
|
128835
|
+
persistentId: string;
|
|
128836
|
+
sourceId: string;
|
|
128837
|
+
sourceFrameId: string;
|
|
128838
|
+
description?: string | null | undefined;
|
|
128839
|
+
title?: string | null | undefined;
|
|
128840
|
+
origin?: {
|
|
128841
|
+
valid?: boolean | null | undefined;
|
|
128842
|
+
title?: string | null | undefined;
|
|
128843
|
+
assetId?: string | null | undefined;
|
|
128844
|
+
width?: number | null | undefined;
|
|
128845
|
+
height?: number | null | undefined;
|
|
128846
|
+
referenceId?: string | null | undefined;
|
|
128847
|
+
sourceFileName?: string | null | undefined;
|
|
128848
|
+
previewUrl?: string | null | undefined;
|
|
128849
|
+
assetScale?: number | null | undefined;
|
|
128850
|
+
} | null | undefined;
|
|
128851
|
+
backgroundColor?: {
|
|
128852
|
+
value: string;
|
|
128643
128853
|
} | null | undefined;
|
|
128644
|
-
email?: string | null | undefined;
|
|
128645
|
-
companyName?: string | null | undefined;
|
|
128646
|
-
companyId?: string | null | undefined;
|
|
128647
|
-
notes?: string | null | undefined;
|
|
128648
|
-
vat?: string | null | undefined;
|
|
128649
|
-
poNumber?: string | null | undefined;
|
|
128650
128854
|
}>>>, {
|
|
128651
|
-
|
|
128652
|
-
|
|
128653
|
-
|
|
128654
|
-
|
|
128655
|
-
|
|
128656
|
-
|
|
128657
|
-
|
|
128855
|
+
persistentId: string;
|
|
128856
|
+
sourceId: string;
|
|
128857
|
+
sourceFrameId: string;
|
|
128858
|
+
description?: string | undefined;
|
|
128859
|
+
title?: string | undefined;
|
|
128860
|
+
origin?: {
|
|
128861
|
+
valid?: boolean | undefined;
|
|
128862
|
+
title?: string | undefined;
|
|
128863
|
+
assetId?: string | undefined;
|
|
128864
|
+
width?: number | undefined;
|
|
128865
|
+
height?: number | undefined;
|
|
128866
|
+
referenceId?: string | undefined;
|
|
128867
|
+
sourceFileName?: string | undefined;
|
|
128868
|
+
previewUrl?: string | undefined;
|
|
128869
|
+
assetScale?: number | undefined;
|
|
128870
|
+
} | undefined;
|
|
128871
|
+
backgroundColor?: {
|
|
128872
|
+
value: string;
|
|
128658
128873
|
} | undefined;
|
|
128659
|
-
email?: string | undefined;
|
|
128660
|
-
companyName?: string | undefined;
|
|
128661
|
-
companyId?: string | undefined;
|
|
128662
|
-
notes?: string | undefined;
|
|
128663
|
-
vat?: string | undefined;
|
|
128664
|
-
poNumber?: string | undefined;
|
|
128665
128874
|
} | undefined, {
|
|
128666
|
-
|
|
128667
|
-
|
|
128668
|
-
|
|
128669
|
-
|
|
128670
|
-
|
|
128671
|
-
|
|
128672
|
-
|
|
128875
|
+
persistentId: string;
|
|
128876
|
+
sourceId: string;
|
|
128877
|
+
sourceFrameId: string;
|
|
128878
|
+
description?: string | null | undefined;
|
|
128879
|
+
title?: string | null | undefined;
|
|
128880
|
+
origin?: {
|
|
128881
|
+
valid?: boolean | null | undefined;
|
|
128882
|
+
title?: string | null | undefined;
|
|
128883
|
+
assetId?: string | null | undefined;
|
|
128884
|
+
width?: number | null | undefined;
|
|
128885
|
+
height?: number | null | undefined;
|
|
128886
|
+
referenceId?: string | null | undefined;
|
|
128887
|
+
sourceFileName?: string | null | undefined;
|
|
128888
|
+
previewUrl?: string | null | undefined;
|
|
128889
|
+
assetScale?: number | null | undefined;
|
|
128890
|
+
} | null | undefined;
|
|
128891
|
+
backgroundColor?: {
|
|
128892
|
+
value: string;
|
|
128673
128893
|
} | null | undefined;
|
|
128674
|
-
email?: string | null | undefined;
|
|
128675
|
-
companyName?: string | null | undefined;
|
|
128676
|
-
companyId?: string | null | undefined;
|
|
128677
|
-
notes?: string | null | undefined;
|
|
128678
|
-
vat?: string | null | undefined;
|
|
128679
|
-
poNumber?: string | null | undefined;
|
|
128680
128894
|
} | null | undefined>;
|
|
128681
128895
|
}, "strip", z.ZodTypeAny, {
|
|
128682
|
-
|
|
128683
|
-
|
|
128684
|
-
|
|
128685
|
-
|
|
128686
|
-
|
|
128687
|
-
|
|
128688
|
-
|
|
128689
|
-
|
|
128690
|
-
|
|
128691
|
-
|
|
128692
|
-
|
|
128693
|
-
|
|
128896
|
+
type: "image" | "figmaFrame";
|
|
128897
|
+
id?: string | undefined;
|
|
128898
|
+
url?: string | undefined;
|
|
128899
|
+
figmaFrame?: {
|
|
128900
|
+
persistentId: string;
|
|
128901
|
+
sourceId: string;
|
|
128902
|
+
sourceFrameId: string;
|
|
128903
|
+
description?: string | undefined;
|
|
128904
|
+
title?: string | undefined;
|
|
128905
|
+
origin?: {
|
|
128906
|
+
valid?: boolean | undefined;
|
|
128907
|
+
title?: string | undefined;
|
|
128908
|
+
assetId?: string | undefined;
|
|
128909
|
+
width?: number | undefined;
|
|
128910
|
+
height?: number | undefined;
|
|
128911
|
+
referenceId?: string | undefined;
|
|
128912
|
+
sourceFileName?: string | undefined;
|
|
128913
|
+
previewUrl?: string | undefined;
|
|
128914
|
+
assetScale?: number | undefined;
|
|
128915
|
+
} | undefined;
|
|
128916
|
+
backgroundColor?: {
|
|
128917
|
+
value: string;
|
|
128694
128918
|
} | undefined;
|
|
128695
|
-
email?: string | undefined;
|
|
128696
|
-
companyName?: string | undefined;
|
|
128697
|
-
companyId?: string | undefined;
|
|
128698
|
-
notes?: string | undefined;
|
|
128699
|
-
vat?: string | undefined;
|
|
128700
|
-
poNumber?: string | undefined;
|
|
128701
128919
|
} | undefined;
|
|
128702
128920
|
}, {
|
|
128703
|
-
|
|
128704
|
-
|
|
128705
|
-
|
|
128706
|
-
|
|
128707
|
-
|
|
128708
|
-
|
|
128709
|
-
|
|
128710
|
-
|
|
128711
|
-
|
|
128712
|
-
|
|
128713
|
-
|
|
128714
|
-
|
|
128715
|
-
|
|
128716
|
-
|
|
128717
|
-
|
|
128718
|
-
|
|
128719
|
-
|
|
128720
|
-
|
|
128721
|
-
|
|
128722
|
-
|
|
128723
|
-
|
|
128724
|
-
|
|
128725
|
-
stripeSubscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
128726
|
-
stripeCustomerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
128727
|
-
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
128728
|
-
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
128729
|
-
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
128730
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
128731
|
-
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
128732
|
-
designSystems: z.ZodObject<{
|
|
128733
|
-
max: z.ZodNumber;
|
|
128734
|
-
errorMessage: z.ZodString;
|
|
128735
|
-
errorReason: z.ZodString;
|
|
128736
|
-
}, "strip", z.ZodTypeAny, {
|
|
128737
|
-
max: number;
|
|
128738
|
-
errorMessage: string;
|
|
128739
|
-
errorReason: string;
|
|
128740
|
-
}, {
|
|
128741
|
-
max: number;
|
|
128742
|
-
errorMessage: string;
|
|
128743
|
-
errorReason: string;
|
|
128744
|
-
}>;
|
|
128745
|
-
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
128746
|
-
max: z.ZodNumber;
|
|
128747
|
-
errorMessage: z.ZodString;
|
|
128748
|
-
errorReason: z.ZodString;
|
|
128749
|
-
}, {
|
|
128750
|
-
noImportJobsErrorMessage: z.ZodString;
|
|
128751
|
-
noImportJobsErrorReason: z.ZodString;
|
|
128752
|
-
}>, "strip", z.ZodTypeAny, {
|
|
128753
|
-
max: number;
|
|
128754
|
-
errorMessage: string;
|
|
128755
|
-
errorReason: string;
|
|
128756
|
-
noImportJobsErrorMessage: string;
|
|
128757
|
-
noImportJobsErrorReason: string;
|
|
128758
|
-
}, {
|
|
128759
|
-
max: number;
|
|
128760
|
-
errorMessage: string;
|
|
128761
|
-
errorReason: string;
|
|
128762
|
-
noImportJobsErrorMessage: string;
|
|
128763
|
-
noImportJobsErrorReason: string;
|
|
128764
|
-
}>;
|
|
128765
|
-
designSystemVersions: z.ZodObject<{
|
|
128766
|
-
max: z.ZodNumber;
|
|
128767
|
-
errorMessage: z.ZodString;
|
|
128768
|
-
errorReason: z.ZodString;
|
|
128769
|
-
}, "strip", z.ZodTypeAny, {
|
|
128770
|
-
max: number;
|
|
128771
|
-
errorMessage: string;
|
|
128772
|
-
errorReason: string;
|
|
128773
|
-
}, {
|
|
128774
|
-
max: number;
|
|
128775
|
-
errorMessage: string;
|
|
128776
|
-
errorReason: string;
|
|
128777
|
-
}>;
|
|
128778
|
-
themes: z.ZodObject<{
|
|
128779
|
-
max: z.ZodNumber;
|
|
128780
|
-
errorMessage: z.ZodString;
|
|
128781
|
-
errorReason: z.ZodString;
|
|
128782
|
-
}, "strip", z.ZodTypeAny, {
|
|
128783
|
-
max: number;
|
|
128784
|
-
errorMessage: string;
|
|
128785
|
-
errorReason: string;
|
|
128786
|
-
}, {
|
|
128787
|
-
max: number;
|
|
128788
|
-
errorMessage: string;
|
|
128789
|
-
errorReason: string;
|
|
128790
|
-
}>;
|
|
128791
|
-
brands: z.ZodObject<{
|
|
128792
|
-
max: z.ZodNumber;
|
|
128793
|
-
errorMessage: z.ZodString;
|
|
128794
|
-
errorReason: z.ZodString;
|
|
128795
|
-
}, "strip", z.ZodTypeAny, {
|
|
128796
|
-
max: number;
|
|
128797
|
-
errorMessage: string;
|
|
128798
|
-
errorReason: string;
|
|
128799
|
-
}, {
|
|
128800
|
-
max: number;
|
|
128801
|
-
errorMessage: string;
|
|
128802
|
-
errorReason: string;
|
|
128803
|
-
}>;
|
|
128804
|
-
codegenSchedules: z.ZodObject<{
|
|
128805
|
-
max: z.ZodNumber;
|
|
128806
|
-
errorMessage: z.ZodString;
|
|
128807
|
-
errorReason: z.ZodString;
|
|
128808
|
-
}, "strip", z.ZodTypeAny, {
|
|
128809
|
-
max: number;
|
|
128810
|
-
errorMessage: string;
|
|
128811
|
-
errorReason: string;
|
|
128812
|
-
}, {
|
|
128813
|
-
max: number;
|
|
128814
|
-
errorMessage: string;
|
|
128815
|
-
errorReason: string;
|
|
128816
|
-
}>;
|
|
128817
|
-
publicDocumentation: z.ZodObject<{
|
|
128818
|
-
enabled: z.ZodBoolean;
|
|
128819
|
-
errorMessage: z.ZodString;
|
|
128820
|
-
errorReason: z.ZodString;
|
|
128821
|
-
}, "strip", z.ZodTypeAny, {
|
|
128822
|
-
errorMessage: string;
|
|
128823
|
-
errorReason: string;
|
|
128824
|
-
enabled: boolean;
|
|
128825
|
-
}, {
|
|
128826
|
-
errorMessage: string;
|
|
128827
|
-
errorReason: string;
|
|
128828
|
-
enabled: boolean;
|
|
128829
|
-
}>;
|
|
128830
|
-
customDocumentationUrl: z.ZodObject<{
|
|
128831
|
-
enabled: z.ZodBoolean;
|
|
128832
|
-
errorMessage: z.ZodString;
|
|
128833
|
-
errorReason: z.ZodString;
|
|
128834
|
-
}, "strip", z.ZodTypeAny, {
|
|
128835
|
-
errorMessage: string;
|
|
128836
|
-
errorReason: string;
|
|
128837
|
-
enabled: boolean;
|
|
128838
|
-
}, {
|
|
128839
|
-
errorMessage: string;
|
|
128840
|
-
errorReason: string;
|
|
128841
|
-
enabled: boolean;
|
|
128842
|
-
}>;
|
|
128843
|
-
customDocumentationViewButton: z.ZodObject<{
|
|
128844
|
-
enabled: z.ZodBoolean;
|
|
128845
|
-
errorMessage: z.ZodString;
|
|
128846
|
-
errorReason: z.ZodString;
|
|
128847
|
-
}, "strip", z.ZodTypeAny, {
|
|
128848
|
-
errorMessage: string;
|
|
128849
|
-
errorReason: string;
|
|
128850
|
-
enabled: boolean;
|
|
128851
|
-
}, {
|
|
128852
|
-
errorMessage: string;
|
|
128853
|
-
errorReason: string;
|
|
128854
|
-
enabled: boolean;
|
|
128855
|
-
}>;
|
|
128856
|
-
designSystemSourceAutoImport: z.ZodObject<{
|
|
128857
|
-
enabled: z.ZodBoolean;
|
|
128858
|
-
errorMessage: z.ZodString;
|
|
128859
|
-
errorReason: z.ZodString;
|
|
128860
|
-
}, "strip", z.ZodTypeAny, {
|
|
128861
|
-
errorMessage: string;
|
|
128862
|
-
errorReason: string;
|
|
128863
|
-
enabled: boolean;
|
|
128864
|
-
}, {
|
|
128865
|
-
errorMessage: string;
|
|
128866
|
-
errorReason: string;
|
|
128867
|
-
enabled: boolean;
|
|
128868
|
-
}>;
|
|
128869
|
-
designSystemSlug: z.ZodObject<{
|
|
128870
|
-
enabled: z.ZodBoolean;
|
|
128871
|
-
errorMessage: z.ZodString;
|
|
128872
|
-
errorReason: z.ZodString;
|
|
128873
|
-
}, "strip", z.ZodTypeAny, {
|
|
128874
|
-
errorMessage: string;
|
|
128875
|
-
errorReason: string;
|
|
128876
|
-
enabled: boolean;
|
|
128877
|
-
}, {
|
|
128878
|
-
errorMessage: string;
|
|
128879
|
-
errorReason: string;
|
|
128880
|
-
enabled: boolean;
|
|
128881
|
-
}>;
|
|
128882
|
-
ipWhitelisting: z.ZodObject<{
|
|
128883
|
-
enabled: z.ZodBoolean;
|
|
128884
|
-
errorMessage: z.ZodString;
|
|
128885
|
-
errorReason: z.ZodString;
|
|
128886
|
-
}, "strip", z.ZodTypeAny, {
|
|
128887
|
-
errorMessage: string;
|
|
128888
|
-
errorReason: string;
|
|
128889
|
-
enabled: boolean;
|
|
128890
|
-
}, {
|
|
128891
|
-
errorMessage: string;
|
|
128892
|
-
errorReason: string;
|
|
128893
|
-
enabled: boolean;
|
|
128894
|
-
}>;
|
|
128895
|
-
npmRegistry: z.ZodObject<{
|
|
128896
|
-
enabled: z.ZodBoolean;
|
|
128897
|
-
errorMessage: z.ZodString;
|
|
128898
|
-
errorReason: z.ZodString;
|
|
128899
|
-
}, "strip", z.ZodTypeAny, {
|
|
128900
|
-
errorMessage: string;
|
|
128901
|
-
errorReason: string;
|
|
128902
|
-
enabled: boolean;
|
|
128903
|
-
}, {
|
|
128904
|
-
errorMessage: string;
|
|
128905
|
-
errorReason: string;
|
|
128906
|
-
enabled: boolean;
|
|
128907
|
-
}>;
|
|
128908
|
-
sso: z.ZodObject<{
|
|
128909
|
-
enabled: z.ZodBoolean;
|
|
128910
|
-
errorMessage: z.ZodString;
|
|
128911
|
-
errorReason: z.ZodString;
|
|
128912
|
-
}, "strip", z.ZodTypeAny, {
|
|
128913
|
-
errorMessage: string;
|
|
128914
|
-
errorReason: string;
|
|
128915
|
-
enabled: boolean;
|
|
128916
|
-
}, {
|
|
128917
|
-
errorMessage: string;
|
|
128918
|
-
errorReason: string;
|
|
128919
|
-
enabled: boolean;
|
|
128920
|
-
}>;
|
|
128921
|
-
workspacePaidSeats: z.ZodObject<{
|
|
128922
|
-
max: z.ZodNumber;
|
|
128923
|
-
errorMessage: z.ZodString;
|
|
128924
|
-
errorReason: z.ZodString;
|
|
128925
|
-
}, "strip", z.ZodTypeAny, {
|
|
128926
|
-
max: number;
|
|
128927
|
-
errorMessage: string;
|
|
128928
|
-
errorReason: string;
|
|
128929
|
-
}, {
|
|
128930
|
-
max: number;
|
|
128931
|
-
errorMessage: string;
|
|
128932
|
-
errorReason: string;
|
|
128933
|
-
}>;
|
|
128934
|
-
workspaceViewers: z.ZodObject<{
|
|
128935
|
-
max: z.ZodNumber;
|
|
128936
|
-
errorMessage: z.ZodString;
|
|
128937
|
-
errorReason: z.ZodString;
|
|
128938
|
-
}, "strip", z.ZodTypeAny, {
|
|
128939
|
-
max: number;
|
|
128940
|
-
errorMessage: string;
|
|
128941
|
-
errorReason: string;
|
|
128942
|
-
}, {
|
|
128943
|
-
max: number;
|
|
128944
|
-
errorMessage: string;
|
|
128945
|
-
errorReason: string;
|
|
128946
|
-
}>;
|
|
128947
|
-
customDocumentationExporter: z.ZodObject<{
|
|
128948
|
-
enabled: z.ZodBoolean;
|
|
128949
|
-
errorMessage: z.ZodString;
|
|
128950
|
-
errorReason: z.ZodString;
|
|
128951
|
-
}, "strip", z.ZodTypeAny, {
|
|
128952
|
-
errorMessage: string;
|
|
128953
|
-
errorReason: string;
|
|
128954
|
-
enabled: boolean;
|
|
128955
|
-
}, {
|
|
128956
|
-
errorMessage: string;
|
|
128957
|
-
errorReason: string;
|
|
128958
|
-
enabled: boolean;
|
|
128959
|
-
}>;
|
|
128960
|
-
protectedPages: z.ZodObject<{
|
|
128961
|
-
enabled: z.ZodBoolean;
|
|
128962
|
-
errorMessage: z.ZodString;
|
|
128963
|
-
errorReason: z.ZodString;
|
|
128964
|
-
}, "strip", z.ZodTypeAny, {
|
|
128965
|
-
errorMessage: string;
|
|
128966
|
-
errorReason: string;
|
|
128967
|
-
enabled: boolean;
|
|
128968
|
-
}, {
|
|
128969
|
-
errorMessage: string;
|
|
128970
|
-
errorReason: string;
|
|
128971
|
-
enabled: boolean;
|
|
128972
|
-
}>;
|
|
128973
|
-
approvals: z.ZodObject<{
|
|
128974
|
-
enabled: z.ZodBoolean;
|
|
128975
|
-
errorMessage: z.ZodString;
|
|
128976
|
-
errorReason: z.ZodString;
|
|
128977
|
-
}, "strip", z.ZodTypeAny, {
|
|
128978
|
-
errorMessage: string;
|
|
128979
|
-
errorReason: string;
|
|
128980
|
-
enabled: boolean;
|
|
128981
|
-
}, {
|
|
128982
|
-
errorMessage: string;
|
|
128983
|
-
errorReason: string;
|
|
128984
|
-
enabled: boolean;
|
|
128985
|
-
}>;
|
|
128986
|
-
selectivePublishing: z.ZodObject<{
|
|
128987
|
-
enabled: z.ZodBoolean;
|
|
128988
|
-
errorMessage: z.ZodString;
|
|
128989
|
-
errorReason: z.ZodString;
|
|
128990
|
-
}, "strip", z.ZodTypeAny, {
|
|
128991
|
-
errorMessage: string;
|
|
128992
|
-
errorReason: string;
|
|
128993
|
-
enabled: boolean;
|
|
128994
|
-
}, {
|
|
128995
|
-
errorMessage: string;
|
|
128996
|
-
errorReason: string;
|
|
128997
|
-
enabled: boolean;
|
|
128998
|
-
}>;
|
|
128999
|
-
}, "strip", z.ZodTypeAny, {
|
|
129000
|
-
designSystems: {
|
|
129001
|
-
max: number;
|
|
129002
|
-
errorMessage: string;
|
|
129003
|
-
errorReason: string;
|
|
129004
|
-
};
|
|
129005
|
-
designSystemSources: {
|
|
129006
|
-
max: number;
|
|
129007
|
-
errorMessage: string;
|
|
129008
|
-
errorReason: string;
|
|
129009
|
-
noImportJobsErrorMessage: string;
|
|
129010
|
-
noImportJobsErrorReason: string;
|
|
129011
|
-
};
|
|
129012
|
-
designSystemVersions: {
|
|
129013
|
-
max: number;
|
|
129014
|
-
errorMessage: string;
|
|
129015
|
-
errorReason: string;
|
|
129016
|
-
};
|
|
129017
|
-
themes: {
|
|
129018
|
-
max: number;
|
|
129019
|
-
errorMessage: string;
|
|
129020
|
-
errorReason: string;
|
|
129021
|
-
};
|
|
129022
|
-
brands: {
|
|
129023
|
-
max: number;
|
|
129024
|
-
errorMessage: string;
|
|
129025
|
-
errorReason: string;
|
|
129026
|
-
};
|
|
129027
|
-
codegenSchedules: {
|
|
129028
|
-
max: number;
|
|
129029
|
-
errorMessage: string;
|
|
129030
|
-
errorReason: string;
|
|
129031
|
-
};
|
|
129032
|
-
publicDocumentation: {
|
|
129033
|
-
errorMessage: string;
|
|
129034
|
-
errorReason: string;
|
|
129035
|
-
enabled: boolean;
|
|
129036
|
-
};
|
|
129037
|
-
customDocumentationUrl: {
|
|
129038
|
-
errorMessage: string;
|
|
129039
|
-
errorReason: string;
|
|
129040
|
-
enabled: boolean;
|
|
129041
|
-
};
|
|
129042
|
-
customDocumentationViewButton: {
|
|
129043
|
-
errorMessage: string;
|
|
129044
|
-
errorReason: string;
|
|
129045
|
-
enabled: boolean;
|
|
129046
|
-
};
|
|
129047
|
-
designSystemSourceAutoImport: {
|
|
129048
|
-
errorMessage: string;
|
|
129049
|
-
errorReason: string;
|
|
129050
|
-
enabled: boolean;
|
|
129051
|
-
};
|
|
129052
|
-
designSystemSlug: {
|
|
129053
|
-
errorMessage: string;
|
|
129054
|
-
errorReason: string;
|
|
129055
|
-
enabled: boolean;
|
|
129056
|
-
};
|
|
129057
|
-
ipWhitelisting: {
|
|
129058
|
-
errorMessage: string;
|
|
129059
|
-
errorReason: string;
|
|
129060
|
-
enabled: boolean;
|
|
129061
|
-
};
|
|
129062
|
-
npmRegistry: {
|
|
129063
|
-
errorMessage: string;
|
|
129064
|
-
errorReason: string;
|
|
129065
|
-
enabled: boolean;
|
|
129066
|
-
};
|
|
129067
|
-
sso: {
|
|
129068
|
-
errorMessage: string;
|
|
129069
|
-
errorReason: string;
|
|
129070
|
-
enabled: boolean;
|
|
129071
|
-
};
|
|
129072
|
-
workspacePaidSeats: {
|
|
129073
|
-
max: number;
|
|
129074
|
-
errorMessage: string;
|
|
129075
|
-
errorReason: string;
|
|
129076
|
-
};
|
|
129077
|
-
workspaceViewers: {
|
|
129078
|
-
max: number;
|
|
129079
|
-
errorMessage: string;
|
|
129080
|
-
errorReason: string;
|
|
129081
|
-
};
|
|
129082
|
-
customDocumentationExporter: {
|
|
129083
|
-
errorMessage: string;
|
|
129084
|
-
errorReason: string;
|
|
129085
|
-
enabled: boolean;
|
|
129086
|
-
};
|
|
129087
|
-
protectedPages: {
|
|
129088
|
-
errorMessage: string;
|
|
129089
|
-
errorReason: string;
|
|
129090
|
-
enabled: boolean;
|
|
129091
|
-
};
|
|
129092
|
-
approvals: {
|
|
129093
|
-
errorMessage: string;
|
|
129094
|
-
errorReason: string;
|
|
129095
|
-
enabled: boolean;
|
|
129096
|
-
};
|
|
129097
|
-
selectivePublishing: {
|
|
129098
|
-
errorMessage: string;
|
|
129099
|
-
errorReason: string;
|
|
129100
|
-
enabled: boolean;
|
|
129101
|
-
};
|
|
129102
|
-
}, {
|
|
129103
|
-
designSystems: {
|
|
129104
|
-
max: number;
|
|
129105
|
-
errorMessage: string;
|
|
129106
|
-
errorReason: string;
|
|
129107
|
-
};
|
|
129108
|
-
designSystemSources: {
|
|
129109
|
-
max: number;
|
|
129110
|
-
errorMessage: string;
|
|
129111
|
-
errorReason: string;
|
|
129112
|
-
noImportJobsErrorMessage: string;
|
|
129113
|
-
noImportJobsErrorReason: string;
|
|
129114
|
-
};
|
|
129115
|
-
designSystemVersions: {
|
|
129116
|
-
max: number;
|
|
129117
|
-
errorMessage: string;
|
|
129118
|
-
errorReason: string;
|
|
129119
|
-
};
|
|
129120
|
-
themes: {
|
|
129121
|
-
max: number;
|
|
129122
|
-
errorMessage: string;
|
|
129123
|
-
errorReason: string;
|
|
129124
|
-
};
|
|
129125
|
-
brands: {
|
|
129126
|
-
max: number;
|
|
129127
|
-
errorMessage: string;
|
|
129128
|
-
errorReason: string;
|
|
129129
|
-
};
|
|
129130
|
-
codegenSchedules: {
|
|
129131
|
-
max: number;
|
|
129132
|
-
errorMessage: string;
|
|
129133
|
-
errorReason: string;
|
|
129134
|
-
};
|
|
129135
|
-
publicDocumentation: {
|
|
129136
|
-
errorMessage: string;
|
|
129137
|
-
errorReason: string;
|
|
129138
|
-
enabled: boolean;
|
|
129139
|
-
};
|
|
129140
|
-
customDocumentationUrl: {
|
|
129141
|
-
errorMessage: string;
|
|
129142
|
-
errorReason: string;
|
|
129143
|
-
enabled: boolean;
|
|
129144
|
-
};
|
|
129145
|
-
customDocumentationViewButton: {
|
|
129146
|
-
errorMessage: string;
|
|
129147
|
-
errorReason: string;
|
|
129148
|
-
enabled: boolean;
|
|
129149
|
-
};
|
|
129150
|
-
designSystemSourceAutoImport: {
|
|
129151
|
-
errorMessage: string;
|
|
129152
|
-
errorReason: string;
|
|
129153
|
-
enabled: boolean;
|
|
129154
|
-
};
|
|
129155
|
-
designSystemSlug: {
|
|
129156
|
-
errorMessage: string;
|
|
129157
|
-
errorReason: string;
|
|
129158
|
-
enabled: boolean;
|
|
129159
|
-
};
|
|
129160
|
-
ipWhitelisting: {
|
|
129161
|
-
errorMessage: string;
|
|
129162
|
-
errorReason: string;
|
|
129163
|
-
enabled: boolean;
|
|
129164
|
-
};
|
|
129165
|
-
npmRegistry: {
|
|
129166
|
-
errorMessage: string;
|
|
129167
|
-
errorReason: string;
|
|
129168
|
-
enabled: boolean;
|
|
129169
|
-
};
|
|
129170
|
-
sso: {
|
|
129171
|
-
errorMessage: string;
|
|
129172
|
-
errorReason: string;
|
|
129173
|
-
enabled: boolean;
|
|
129174
|
-
};
|
|
129175
|
-
workspacePaidSeats: {
|
|
129176
|
-
max: number;
|
|
129177
|
-
errorMessage: string;
|
|
129178
|
-
errorReason: string;
|
|
129179
|
-
};
|
|
129180
|
-
workspaceViewers: {
|
|
129181
|
-
max: number;
|
|
129182
|
-
errorMessage: string;
|
|
129183
|
-
errorReason: string;
|
|
129184
|
-
};
|
|
129185
|
-
customDocumentationExporter: {
|
|
129186
|
-
errorMessage: string;
|
|
129187
|
-
errorReason: string;
|
|
129188
|
-
enabled: boolean;
|
|
129189
|
-
};
|
|
129190
|
-
protectedPages: {
|
|
129191
|
-
errorMessage: string;
|
|
129192
|
-
errorReason: string;
|
|
129193
|
-
enabled: boolean;
|
|
129194
|
-
};
|
|
129195
|
-
approvals: {
|
|
129196
|
-
errorMessage: string;
|
|
129197
|
-
errorReason: string;
|
|
129198
|
-
enabled: boolean;
|
|
129199
|
-
};
|
|
129200
|
-
selectivePublishing: {
|
|
129201
|
-
errorMessage: string;
|
|
129202
|
-
errorReason: string;
|
|
129203
|
-
enabled: boolean;
|
|
129204
|
-
};
|
|
129205
|
-
}>>;
|
|
129206
|
-
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
129207
|
-
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
129208
|
-
stripeProductAdditionalFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
129209
|
-
stripeSubscriptionMainItemId: z.ZodOptional<z.ZodString>;
|
|
129210
|
-
planPriceId: z.ZodString;
|
|
129211
|
-
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
129212
|
-
isPricePerCreator: z.ZodOptional<z.ZodBoolean>;
|
|
129213
|
-
legacyVersion: z.ZodOptional<z.ZodString>;
|
|
129214
|
-
seats: z.ZodNumber;
|
|
129215
|
-
seatLimit: z.ZodNumber;
|
|
129216
|
-
currentPeriodStart: z.ZodOptional<z.ZodString>;
|
|
129217
|
-
currentPeriodEnd: z.ZodOptional<z.ZodString>;
|
|
129218
|
-
subscriptionStatusUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
129219
|
-
cancelAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129220
|
-
card: z.ZodOptional<z.ZodObject<{
|
|
129221
|
-
cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129222
|
-
last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129223
|
-
expiryMonth: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129224
|
-
expiryYear: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129225
|
-
brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129226
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
129227
|
-
}, "strip", z.ZodTypeAny, {
|
|
129228
|
-
cardId?: string | null | undefined;
|
|
129229
|
-
last4?: string | null | undefined;
|
|
129230
|
-
expiryMonth?: string | null | undefined;
|
|
129231
|
-
expiryYear?: string | null | undefined;
|
|
129232
|
-
brand?: string | null | undefined;
|
|
129233
|
-
name?: string | null | undefined;
|
|
129234
|
-
}, {
|
|
129235
|
-
cardId?: string | null | undefined;
|
|
129236
|
-
last4?: string | null | undefined;
|
|
129237
|
-
expiryMonth?: string | null | undefined;
|
|
129238
|
-
expiryYear?: string | null | undefined;
|
|
129239
|
-
brand?: string | null | undefined;
|
|
129240
|
-
name?: string | null | undefined;
|
|
129241
|
-
}>>;
|
|
129242
|
-
amount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
129243
|
-
isTrial: z.ZodOptional<z.ZodBoolean>;
|
|
129244
|
-
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
129245
|
-
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
129246
|
-
}, "strip", z.ZodTypeAny, {
|
|
129247
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
129248
|
-
planPriceId: string;
|
|
129249
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
129250
|
-
seats: number;
|
|
129251
|
-
seatLimit: number;
|
|
129252
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129253
|
-
card?: {
|
|
129254
|
-
cardId?: string | null | undefined;
|
|
129255
|
-
last4?: string | null | undefined;
|
|
129256
|
-
expiryMonth?: string | null | undefined;
|
|
129257
|
-
expiryYear?: string | null | undefined;
|
|
129258
|
-
brand?: string | null | undefined;
|
|
129259
|
-
name?: string | null | undefined;
|
|
129260
|
-
} | undefined;
|
|
129261
|
-
amount?: number | null | undefined;
|
|
129262
|
-
stripeProductDescription?: string | undefined;
|
|
129263
|
-
isPricePerCreator?: boolean | undefined;
|
|
129264
|
-
isTrial?: boolean | undefined;
|
|
129265
|
-
legacyVersion?: string | undefined;
|
|
129266
|
-
stripeProductFeatures?: string[] | undefined;
|
|
129267
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
129268
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
129269
|
-
stripeCustomerId?: string | null | undefined;
|
|
129270
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
129271
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129272
|
-
featuresSummary?: {
|
|
129273
|
-
designSystems: {
|
|
129274
|
-
max: number;
|
|
129275
|
-
errorMessage: string;
|
|
129276
|
-
errorReason: string;
|
|
129277
|
-
};
|
|
129278
|
-
designSystemSources: {
|
|
129279
|
-
max: number;
|
|
129280
|
-
errorMessage: string;
|
|
129281
|
-
errorReason: string;
|
|
129282
|
-
noImportJobsErrorMessage: string;
|
|
129283
|
-
noImportJobsErrorReason: string;
|
|
129284
|
-
};
|
|
129285
|
-
designSystemVersions: {
|
|
129286
|
-
max: number;
|
|
129287
|
-
errorMessage: string;
|
|
129288
|
-
errorReason: string;
|
|
129289
|
-
};
|
|
129290
|
-
themes: {
|
|
129291
|
-
max: number;
|
|
129292
|
-
errorMessage: string;
|
|
129293
|
-
errorReason: string;
|
|
129294
|
-
};
|
|
129295
|
-
brands: {
|
|
129296
|
-
max: number;
|
|
129297
|
-
errorMessage: string;
|
|
129298
|
-
errorReason: string;
|
|
129299
|
-
};
|
|
129300
|
-
codegenSchedules: {
|
|
129301
|
-
max: number;
|
|
129302
|
-
errorMessage: string;
|
|
129303
|
-
errorReason: string;
|
|
129304
|
-
};
|
|
129305
|
-
publicDocumentation: {
|
|
129306
|
-
errorMessage: string;
|
|
129307
|
-
errorReason: string;
|
|
129308
|
-
enabled: boolean;
|
|
129309
|
-
};
|
|
129310
|
-
customDocumentationUrl: {
|
|
129311
|
-
errorMessage: string;
|
|
129312
|
-
errorReason: string;
|
|
129313
|
-
enabled: boolean;
|
|
129314
|
-
};
|
|
129315
|
-
customDocumentationViewButton: {
|
|
129316
|
-
errorMessage: string;
|
|
129317
|
-
errorReason: string;
|
|
129318
|
-
enabled: boolean;
|
|
129319
|
-
};
|
|
129320
|
-
designSystemSourceAutoImport: {
|
|
129321
|
-
errorMessage: string;
|
|
129322
|
-
errorReason: string;
|
|
129323
|
-
enabled: boolean;
|
|
129324
|
-
};
|
|
129325
|
-
designSystemSlug: {
|
|
129326
|
-
errorMessage: string;
|
|
129327
|
-
errorReason: string;
|
|
129328
|
-
enabled: boolean;
|
|
129329
|
-
};
|
|
129330
|
-
ipWhitelisting: {
|
|
129331
|
-
errorMessage: string;
|
|
129332
|
-
errorReason: string;
|
|
129333
|
-
enabled: boolean;
|
|
129334
|
-
};
|
|
129335
|
-
npmRegistry: {
|
|
129336
|
-
errorMessage: string;
|
|
129337
|
-
errorReason: string;
|
|
129338
|
-
enabled: boolean;
|
|
129339
|
-
};
|
|
129340
|
-
sso: {
|
|
129341
|
-
errorMessage: string;
|
|
129342
|
-
errorReason: string;
|
|
129343
|
-
enabled: boolean;
|
|
129344
|
-
};
|
|
129345
|
-
workspacePaidSeats: {
|
|
129346
|
-
max: number;
|
|
129347
|
-
errorMessage: string;
|
|
129348
|
-
errorReason: string;
|
|
129349
|
-
};
|
|
129350
|
-
workspaceViewers: {
|
|
129351
|
-
max: number;
|
|
129352
|
-
errorMessage: string;
|
|
129353
|
-
errorReason: string;
|
|
129354
|
-
};
|
|
129355
|
-
customDocumentationExporter: {
|
|
129356
|
-
errorMessage: string;
|
|
129357
|
-
errorReason: string;
|
|
129358
|
-
enabled: boolean;
|
|
129359
|
-
};
|
|
129360
|
-
protectedPages: {
|
|
129361
|
-
errorMessage: string;
|
|
129362
|
-
errorReason: string;
|
|
129363
|
-
enabled: boolean;
|
|
129364
|
-
};
|
|
129365
|
-
approvals: {
|
|
129366
|
-
errorMessage: string;
|
|
129367
|
-
errorReason: string;
|
|
129368
|
-
enabled: boolean;
|
|
129369
|
-
};
|
|
129370
|
-
selectivePublishing: {
|
|
129371
|
-
errorMessage: string;
|
|
129372
|
-
errorReason: string;
|
|
129373
|
-
enabled: boolean;
|
|
129374
|
-
};
|
|
129375
|
-
} | undefined;
|
|
129376
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
129377
|
-
currentPeriodStart?: string | undefined;
|
|
129378
|
-
currentPeriodEnd?: string | undefined;
|
|
129379
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
129380
|
-
cancelAt?: string | null | undefined;
|
|
129381
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
129382
|
-
daysUntilDue?: number | undefined;
|
|
129383
|
-
}, {
|
|
129384
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
129385
|
-
planPriceId: string;
|
|
129386
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
129387
|
-
seats: number;
|
|
129388
|
-
seatLimit: number;
|
|
129389
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129390
|
-
card?: {
|
|
129391
|
-
cardId?: string | null | undefined;
|
|
129392
|
-
last4?: string | null | undefined;
|
|
129393
|
-
expiryMonth?: string | null | undefined;
|
|
129394
|
-
expiryYear?: string | null | undefined;
|
|
129395
|
-
brand?: string | null | undefined;
|
|
129396
|
-
name?: string | null | undefined;
|
|
129397
|
-
} | undefined;
|
|
129398
|
-
amount?: number | null | undefined;
|
|
129399
|
-
stripeProductDescription?: string | undefined;
|
|
129400
|
-
isPricePerCreator?: boolean | undefined;
|
|
129401
|
-
isTrial?: boolean | undefined;
|
|
129402
|
-
legacyVersion?: string | undefined;
|
|
129403
|
-
stripeProductFeatures?: string[] | undefined;
|
|
129404
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
129405
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
129406
|
-
stripeCustomerId?: string | null | undefined;
|
|
129407
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
129408
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129409
|
-
featuresSummary?: {
|
|
129410
|
-
designSystems: {
|
|
129411
|
-
max: number;
|
|
129412
|
-
errorMessage: string;
|
|
129413
|
-
errorReason: string;
|
|
129414
|
-
};
|
|
129415
|
-
designSystemSources: {
|
|
129416
|
-
max: number;
|
|
129417
|
-
errorMessage: string;
|
|
129418
|
-
errorReason: string;
|
|
129419
|
-
noImportJobsErrorMessage: string;
|
|
129420
|
-
noImportJobsErrorReason: string;
|
|
129421
|
-
};
|
|
129422
|
-
designSystemVersions: {
|
|
129423
|
-
max: number;
|
|
129424
|
-
errorMessage: string;
|
|
129425
|
-
errorReason: string;
|
|
129426
|
-
};
|
|
129427
|
-
themes: {
|
|
129428
|
-
max: number;
|
|
129429
|
-
errorMessage: string;
|
|
129430
|
-
errorReason: string;
|
|
129431
|
-
};
|
|
129432
|
-
brands: {
|
|
129433
|
-
max: number;
|
|
129434
|
-
errorMessage: string;
|
|
129435
|
-
errorReason: string;
|
|
129436
|
-
};
|
|
129437
|
-
codegenSchedules: {
|
|
129438
|
-
max: number;
|
|
129439
|
-
errorMessage: string;
|
|
129440
|
-
errorReason: string;
|
|
129441
|
-
};
|
|
129442
|
-
publicDocumentation: {
|
|
129443
|
-
errorMessage: string;
|
|
129444
|
-
errorReason: string;
|
|
129445
|
-
enabled: boolean;
|
|
129446
|
-
};
|
|
129447
|
-
customDocumentationUrl: {
|
|
129448
|
-
errorMessage: string;
|
|
129449
|
-
errorReason: string;
|
|
129450
|
-
enabled: boolean;
|
|
129451
|
-
};
|
|
129452
|
-
customDocumentationViewButton: {
|
|
129453
|
-
errorMessage: string;
|
|
129454
|
-
errorReason: string;
|
|
129455
|
-
enabled: boolean;
|
|
129456
|
-
};
|
|
129457
|
-
designSystemSourceAutoImport: {
|
|
129458
|
-
errorMessage: string;
|
|
129459
|
-
errorReason: string;
|
|
129460
|
-
enabled: boolean;
|
|
129461
|
-
};
|
|
129462
|
-
designSystemSlug: {
|
|
129463
|
-
errorMessage: string;
|
|
129464
|
-
errorReason: string;
|
|
129465
|
-
enabled: boolean;
|
|
129466
|
-
};
|
|
129467
|
-
ipWhitelisting: {
|
|
129468
|
-
errorMessage: string;
|
|
129469
|
-
errorReason: string;
|
|
129470
|
-
enabled: boolean;
|
|
129471
|
-
};
|
|
129472
|
-
npmRegistry: {
|
|
129473
|
-
errorMessage: string;
|
|
129474
|
-
errorReason: string;
|
|
129475
|
-
enabled: boolean;
|
|
129476
|
-
};
|
|
129477
|
-
sso: {
|
|
129478
|
-
errorMessage: string;
|
|
129479
|
-
errorReason: string;
|
|
129480
|
-
enabled: boolean;
|
|
129481
|
-
};
|
|
129482
|
-
workspacePaidSeats: {
|
|
129483
|
-
max: number;
|
|
129484
|
-
errorMessage: string;
|
|
129485
|
-
errorReason: string;
|
|
129486
|
-
};
|
|
129487
|
-
workspaceViewers: {
|
|
129488
|
-
max: number;
|
|
129489
|
-
errorMessage: string;
|
|
129490
|
-
errorReason: string;
|
|
129491
|
-
};
|
|
129492
|
-
customDocumentationExporter: {
|
|
129493
|
-
errorMessage: string;
|
|
129494
|
-
errorReason: string;
|
|
129495
|
-
enabled: boolean;
|
|
129496
|
-
};
|
|
129497
|
-
protectedPages: {
|
|
129498
|
-
errorMessage: string;
|
|
129499
|
-
errorReason: string;
|
|
129500
|
-
enabled: boolean;
|
|
129501
|
-
};
|
|
129502
|
-
approvals: {
|
|
129503
|
-
errorMessage: string;
|
|
129504
|
-
errorReason: string;
|
|
129505
|
-
enabled: boolean;
|
|
129506
|
-
};
|
|
129507
|
-
selectivePublishing: {
|
|
129508
|
-
errorMessage: string;
|
|
129509
|
-
errorReason: string;
|
|
129510
|
-
enabled: boolean;
|
|
129511
|
-
};
|
|
129512
|
-
} | undefined;
|
|
129513
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
129514
|
-
currentPeriodStart?: string | undefined;
|
|
129515
|
-
currentPeriodEnd?: string | undefined;
|
|
129516
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
129517
|
-
cancelAt?: string | null | undefined;
|
|
129518
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
129519
|
-
daysUntilDue?: number | undefined;
|
|
129520
|
-
}>;
|
|
129521
|
-
ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
129522
|
-
entries: {
|
|
129523
|
-
name: string;
|
|
129524
|
-
isEnabled: boolean;
|
|
129525
|
-
range: string;
|
|
129526
|
-
}[];
|
|
129527
|
-
isEnabledForCloud: boolean;
|
|
129528
|
-
isEnabledForDocs: boolean;
|
|
129529
|
-
}, z.ZodTypeDef, {
|
|
129530
|
-
entries: {
|
|
129531
|
-
name: string;
|
|
129532
|
-
isEnabled: boolean;
|
|
129533
|
-
range: string;
|
|
129534
|
-
}[];
|
|
129535
|
-
isEnabledForCloud: boolean;
|
|
129536
|
-
isEnabledForDocs: boolean;
|
|
129537
|
-
}>>>, {
|
|
129538
|
-
entries: {
|
|
129539
|
-
name: string;
|
|
129540
|
-
isEnabled: boolean;
|
|
129541
|
-
range: string;
|
|
129542
|
-
}[];
|
|
129543
|
-
isEnabledForCloud: boolean;
|
|
129544
|
-
isEnabledForDocs: boolean;
|
|
129545
|
-
} | undefined, {
|
|
129546
|
-
entries: {
|
|
129547
|
-
name: string;
|
|
129548
|
-
isEnabled: boolean;
|
|
129549
|
-
range: string;
|
|
129550
|
-
}[];
|
|
129551
|
-
isEnabledForCloud: boolean;
|
|
129552
|
-
isEnabledForDocs: boolean;
|
|
129553
|
-
} | null | undefined>;
|
|
129554
|
-
sso: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
129555
|
-
providerId: string;
|
|
129556
|
-
defaultAutoInviteValue: boolean;
|
|
129557
|
-
autoInviteDomains: Record<string, boolean>;
|
|
129558
|
-
skipDocsSupernovaLogin: boolean;
|
|
129559
|
-
areInvitesDisabled: boolean;
|
|
129560
|
-
isTestMode: boolean;
|
|
129561
|
-
emailDomains: string[];
|
|
129562
|
-
metadataXml?: string | null | undefined;
|
|
129563
|
-
}, z.ZodTypeDef, {
|
|
129564
|
-
providerId: string;
|
|
129565
|
-
defaultAutoInviteValue: boolean;
|
|
129566
|
-
autoInviteDomains: Record<string, boolean>;
|
|
129567
|
-
skipDocsSupernovaLogin: boolean;
|
|
129568
|
-
areInvitesDisabled: boolean;
|
|
129569
|
-
isTestMode: boolean;
|
|
129570
|
-
emailDomains: string[];
|
|
129571
|
-
metadataXml?: string | null | undefined;
|
|
129572
|
-
}>>>, {
|
|
129573
|
-
providerId: string;
|
|
129574
|
-
defaultAutoInviteValue: boolean;
|
|
129575
|
-
autoInviteDomains: Record<string, boolean>;
|
|
129576
|
-
skipDocsSupernovaLogin: boolean;
|
|
129577
|
-
areInvitesDisabled: boolean;
|
|
129578
|
-
isTestMode: boolean;
|
|
129579
|
-
emailDomains: string[];
|
|
129580
|
-
metadataXml?: string | null | undefined;
|
|
129581
|
-
} | undefined, {
|
|
129582
|
-
providerId: string;
|
|
129583
|
-
defaultAutoInviteValue: boolean;
|
|
129584
|
-
autoInviteDomains: Record<string, boolean>;
|
|
129585
|
-
skipDocsSupernovaLogin: boolean;
|
|
129586
|
-
areInvitesDisabled: boolean;
|
|
129587
|
-
isTestMode: boolean;
|
|
129588
|
-
emailDomains: string[];
|
|
129589
|
-
metadataXml?: string | null | undefined;
|
|
129590
|
-
} | null | undefined>;
|
|
129591
|
-
npmRegistrySettings: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
129592
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
129593
|
-
enabledScopes: string[];
|
|
129594
|
-
bypassProxy: boolean;
|
|
129595
|
-
customRegistryUrl?: string | undefined;
|
|
129596
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
129597
|
-
npmProxyVersion?: number | undefined;
|
|
129598
|
-
} & ({
|
|
129599
|
-
password: string;
|
|
129600
|
-
username: string;
|
|
129601
|
-
authType: "Basic";
|
|
129602
|
-
} | {
|
|
129603
|
-
accessToken: string;
|
|
129604
|
-
authType: "Bearer";
|
|
129605
|
-
} | {
|
|
129606
|
-
authType: "None";
|
|
129607
|
-
} | {
|
|
129608
|
-
authType: "Custom";
|
|
129609
|
-
authHeaderName: string;
|
|
129610
|
-
authHeaderValue: string;
|
|
129611
|
-
}), z.ZodTypeDef, {
|
|
129612
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
129613
|
-
enabledScopes: string[];
|
|
129614
|
-
customRegistryUrl?: string | undefined;
|
|
129615
|
-
bypassProxy?: boolean | undefined;
|
|
129616
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
129617
|
-
npmProxyVersion?: number | undefined;
|
|
129618
|
-
} & ({
|
|
129619
|
-
password: string;
|
|
129620
|
-
username: string;
|
|
129621
|
-
authType: "Basic";
|
|
129622
|
-
} | {
|
|
129623
|
-
accessToken: string;
|
|
129624
|
-
authType: "Bearer";
|
|
129625
|
-
} | {
|
|
129626
|
-
authType: "None";
|
|
129627
|
-
} | {
|
|
129628
|
-
authType: "Custom";
|
|
129629
|
-
authHeaderName: string;
|
|
129630
|
-
authHeaderValue: string;
|
|
129631
|
-
})>>>, NonNullable<{
|
|
129632
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
129633
|
-
enabledScopes: string[];
|
|
129634
|
-
bypassProxy: boolean;
|
|
129635
|
-
customRegistryUrl?: string | undefined;
|
|
129636
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
129637
|
-
npmProxyVersion?: number | undefined;
|
|
129638
|
-
} & ({
|
|
129639
|
-
password: string;
|
|
129640
|
-
username: string;
|
|
129641
|
-
authType: "Basic";
|
|
129642
|
-
} | {
|
|
129643
|
-
accessToken: string;
|
|
129644
|
-
authType: "Bearer";
|
|
129645
|
-
} | {
|
|
129646
|
-
authType: "None";
|
|
129647
|
-
} | {
|
|
129648
|
-
authType: "Custom";
|
|
129649
|
-
authHeaderName: string;
|
|
129650
|
-
authHeaderValue: string;
|
|
129651
|
-
})> | undefined, ({
|
|
129652
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
129653
|
-
enabledScopes: string[];
|
|
129654
|
-
customRegistryUrl?: string | undefined;
|
|
129655
|
-
bypassProxy?: boolean | undefined;
|
|
129656
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
129657
|
-
npmProxyVersion?: number | undefined;
|
|
129658
|
-
} & ({
|
|
129659
|
-
password: string;
|
|
129660
|
-
username: string;
|
|
129661
|
-
authType: "Basic";
|
|
129662
|
-
} | {
|
|
129663
|
-
accessToken: string;
|
|
129664
|
-
authType: "Bearer";
|
|
129665
|
-
} | {
|
|
129666
|
-
authType: "None";
|
|
129667
|
-
} | {
|
|
129668
|
-
authType: "Custom";
|
|
129669
|
-
authHeaderName: string;
|
|
129670
|
-
authHeaderValue: string;
|
|
129671
|
-
})) | null | undefined>;
|
|
129672
|
-
}, "strip", z.ZodTypeAny, {
|
|
129673
|
-
id: string;
|
|
129674
|
-
profile: {
|
|
129675
|
-
name: string;
|
|
129676
|
-
color: string;
|
|
129677
|
-
handle: string;
|
|
129678
|
-
avatar?: string | undefined;
|
|
129679
|
-
billingDetails?: {
|
|
129680
|
-
address?: {
|
|
129681
|
-
street1?: string | undefined;
|
|
129682
|
-
street2?: string | undefined;
|
|
129683
|
-
city?: string | undefined;
|
|
129684
|
-
postal?: string | undefined;
|
|
129685
|
-
country?: string | undefined;
|
|
129686
|
-
state?: string | undefined;
|
|
129687
|
-
} | undefined;
|
|
129688
|
-
email?: string | undefined;
|
|
129689
|
-
companyName?: string | undefined;
|
|
129690
|
-
companyId?: string | undefined;
|
|
129691
|
-
notes?: string | undefined;
|
|
129692
|
-
vat?: string | undefined;
|
|
129693
|
-
poNumber?: string | undefined;
|
|
129694
|
-
} | undefined;
|
|
129695
|
-
};
|
|
129696
|
-
subscription: {
|
|
129697
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
129698
|
-
planPriceId: string;
|
|
129699
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
129700
|
-
seats: number;
|
|
129701
|
-
seatLimit: number;
|
|
129702
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129703
|
-
card?: {
|
|
129704
|
-
cardId?: string | null | undefined;
|
|
129705
|
-
last4?: string | null | undefined;
|
|
129706
|
-
expiryMonth?: string | null | undefined;
|
|
129707
|
-
expiryYear?: string | null | undefined;
|
|
129708
|
-
brand?: string | null | undefined;
|
|
129709
|
-
name?: string | null | undefined;
|
|
129710
|
-
} | undefined;
|
|
129711
|
-
amount?: number | null | undefined;
|
|
129712
|
-
stripeProductDescription?: string | undefined;
|
|
129713
|
-
isPricePerCreator?: boolean | undefined;
|
|
129714
|
-
isTrial?: boolean | undefined;
|
|
129715
|
-
legacyVersion?: string | undefined;
|
|
129716
|
-
stripeProductFeatures?: string[] | undefined;
|
|
129717
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
129718
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
129719
|
-
stripeCustomerId?: string | null | undefined;
|
|
129720
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
129721
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129722
|
-
featuresSummary?: {
|
|
129723
|
-
designSystems: {
|
|
129724
|
-
max: number;
|
|
129725
|
-
errorMessage: string;
|
|
129726
|
-
errorReason: string;
|
|
129727
|
-
};
|
|
129728
|
-
designSystemSources: {
|
|
129729
|
-
max: number;
|
|
129730
|
-
errorMessage: string;
|
|
129731
|
-
errorReason: string;
|
|
129732
|
-
noImportJobsErrorMessage: string;
|
|
129733
|
-
noImportJobsErrorReason: string;
|
|
129734
|
-
};
|
|
129735
|
-
designSystemVersions: {
|
|
129736
|
-
max: number;
|
|
129737
|
-
errorMessage: string;
|
|
129738
|
-
errorReason: string;
|
|
129739
|
-
};
|
|
129740
|
-
themes: {
|
|
129741
|
-
max: number;
|
|
129742
|
-
errorMessage: string;
|
|
129743
|
-
errorReason: string;
|
|
129744
|
-
};
|
|
129745
|
-
brands: {
|
|
129746
|
-
max: number;
|
|
129747
|
-
errorMessage: string;
|
|
129748
|
-
errorReason: string;
|
|
129749
|
-
};
|
|
129750
|
-
codegenSchedules: {
|
|
129751
|
-
max: number;
|
|
129752
|
-
errorMessage: string;
|
|
129753
|
-
errorReason: string;
|
|
129754
|
-
};
|
|
129755
|
-
publicDocumentation: {
|
|
129756
|
-
errorMessage: string;
|
|
129757
|
-
errorReason: string;
|
|
129758
|
-
enabled: boolean;
|
|
129759
|
-
};
|
|
129760
|
-
customDocumentationUrl: {
|
|
129761
|
-
errorMessage: string;
|
|
129762
|
-
errorReason: string;
|
|
129763
|
-
enabled: boolean;
|
|
129764
|
-
};
|
|
129765
|
-
customDocumentationViewButton: {
|
|
129766
|
-
errorMessage: string;
|
|
129767
|
-
errorReason: string;
|
|
129768
|
-
enabled: boolean;
|
|
129769
|
-
};
|
|
129770
|
-
designSystemSourceAutoImport: {
|
|
129771
|
-
errorMessage: string;
|
|
129772
|
-
errorReason: string;
|
|
129773
|
-
enabled: boolean;
|
|
129774
|
-
};
|
|
129775
|
-
designSystemSlug: {
|
|
129776
|
-
errorMessage: string;
|
|
129777
|
-
errorReason: string;
|
|
129778
|
-
enabled: boolean;
|
|
129779
|
-
};
|
|
129780
|
-
ipWhitelisting: {
|
|
129781
|
-
errorMessage: string;
|
|
129782
|
-
errorReason: string;
|
|
129783
|
-
enabled: boolean;
|
|
129784
|
-
};
|
|
129785
|
-
npmRegistry: {
|
|
129786
|
-
errorMessage: string;
|
|
129787
|
-
errorReason: string;
|
|
129788
|
-
enabled: boolean;
|
|
129789
|
-
};
|
|
129790
|
-
sso: {
|
|
129791
|
-
errorMessage: string;
|
|
129792
|
-
errorReason: string;
|
|
129793
|
-
enabled: boolean;
|
|
129794
|
-
};
|
|
129795
|
-
workspacePaidSeats: {
|
|
129796
|
-
max: number;
|
|
129797
|
-
errorMessage: string;
|
|
129798
|
-
errorReason: string;
|
|
129799
|
-
};
|
|
129800
|
-
workspaceViewers: {
|
|
129801
|
-
max: number;
|
|
129802
|
-
errorMessage: string;
|
|
129803
|
-
errorReason: string;
|
|
129804
|
-
};
|
|
129805
|
-
customDocumentationExporter: {
|
|
129806
|
-
errorMessage: string;
|
|
129807
|
-
errorReason: string;
|
|
129808
|
-
enabled: boolean;
|
|
129809
|
-
};
|
|
129810
|
-
protectedPages: {
|
|
129811
|
-
errorMessage: string;
|
|
129812
|
-
errorReason: string;
|
|
129813
|
-
enabled: boolean;
|
|
129814
|
-
};
|
|
129815
|
-
approvals: {
|
|
129816
|
-
errorMessage: string;
|
|
129817
|
-
errorReason: string;
|
|
129818
|
-
enabled: boolean;
|
|
129819
|
-
};
|
|
129820
|
-
selectivePublishing: {
|
|
129821
|
-
errorMessage: string;
|
|
129822
|
-
errorReason: string;
|
|
129823
|
-
enabled: boolean;
|
|
129824
|
-
};
|
|
129825
|
-
} | undefined;
|
|
129826
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
129827
|
-
currentPeriodStart?: string | undefined;
|
|
129828
|
-
currentPeriodEnd?: string | undefined;
|
|
129829
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
129830
|
-
cancelAt?: string | null | undefined;
|
|
129831
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
129832
|
-
daysUntilDue?: number | undefined;
|
|
129833
|
-
};
|
|
129834
|
-
sso?: {
|
|
129835
|
-
providerId: string;
|
|
129836
|
-
defaultAutoInviteValue: boolean;
|
|
129837
|
-
autoInviteDomains: Record<string, boolean>;
|
|
129838
|
-
skipDocsSupernovaLogin: boolean;
|
|
129839
|
-
areInvitesDisabled: boolean;
|
|
129840
|
-
isTestMode: boolean;
|
|
129841
|
-
emailDomains: string[];
|
|
129842
|
-
metadataXml?: string | null | undefined;
|
|
129843
|
-
} | undefined;
|
|
129844
|
-
ipWhitelist?: {
|
|
129845
|
-
entries: {
|
|
129846
|
-
name: string;
|
|
129847
|
-
isEnabled: boolean;
|
|
129848
|
-
range: string;
|
|
129849
|
-
}[];
|
|
129850
|
-
isEnabledForCloud: boolean;
|
|
129851
|
-
isEnabledForDocs: boolean;
|
|
129852
|
-
} | undefined;
|
|
129853
|
-
npmRegistrySettings?: NonNullable<{
|
|
129854
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
129855
|
-
enabledScopes: string[];
|
|
129856
|
-
bypassProxy: boolean;
|
|
129857
|
-
customRegistryUrl?: string | undefined;
|
|
129858
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
129859
|
-
npmProxyVersion?: number | undefined;
|
|
129860
|
-
} & ({
|
|
129861
|
-
password: string;
|
|
129862
|
-
username: string;
|
|
129863
|
-
authType: "Basic";
|
|
129864
|
-
} | {
|
|
129865
|
-
accessToken: string;
|
|
129866
|
-
authType: "Bearer";
|
|
129867
|
-
} | {
|
|
129868
|
-
authType: "None";
|
|
129869
|
-
} | {
|
|
129870
|
-
authType: "Custom";
|
|
129871
|
-
authHeaderName: string;
|
|
129872
|
-
authHeaderValue: string;
|
|
129873
|
-
})> | undefined;
|
|
129874
|
-
}, {
|
|
129875
|
-
id: string;
|
|
129876
|
-
profile: {
|
|
129877
|
-
name: string;
|
|
129878
|
-
color: string;
|
|
129879
|
-
handle: string;
|
|
129880
|
-
avatar?: string | null | undefined;
|
|
129881
|
-
billingDetails?: {
|
|
129882
|
-
address?: {
|
|
129883
|
-
street1?: string | null | undefined;
|
|
129884
|
-
street2?: string | null | undefined;
|
|
129885
|
-
city?: string | null | undefined;
|
|
129886
|
-
postal?: string | null | undefined;
|
|
129887
|
-
country?: string | null | undefined;
|
|
129888
|
-
state?: string | null | undefined;
|
|
129889
|
-
} | null | undefined;
|
|
129890
|
-
email?: string | null | undefined;
|
|
129891
|
-
companyName?: string | null | undefined;
|
|
129892
|
-
companyId?: string | null | undefined;
|
|
129893
|
-
notes?: string | null | undefined;
|
|
129894
|
-
vat?: string | null | undefined;
|
|
129895
|
-
poNumber?: string | null | undefined;
|
|
129896
|
-
} | null | undefined;
|
|
129897
|
-
};
|
|
129898
|
-
subscription: {
|
|
129899
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
129900
|
-
planPriceId: string;
|
|
129901
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
129902
|
-
seats: number;
|
|
129903
|
-
seatLimit: number;
|
|
129904
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129905
|
-
card?: {
|
|
129906
|
-
cardId?: string | null | undefined;
|
|
129907
|
-
last4?: string | null | undefined;
|
|
129908
|
-
expiryMonth?: string | null | undefined;
|
|
129909
|
-
expiryYear?: string | null | undefined;
|
|
129910
|
-
brand?: string | null | undefined;
|
|
129911
|
-
name?: string | null | undefined;
|
|
129912
|
-
} | undefined;
|
|
129913
|
-
amount?: number | null | undefined;
|
|
129914
|
-
stripeProductDescription?: string | undefined;
|
|
129915
|
-
isPricePerCreator?: boolean | undefined;
|
|
129916
|
-
isTrial?: boolean | undefined;
|
|
129917
|
-
legacyVersion?: string | undefined;
|
|
129918
|
-
stripeProductFeatures?: string[] | undefined;
|
|
129919
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
129920
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
129921
|
-
stripeCustomerId?: string | null | undefined;
|
|
129922
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
129923
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
129924
|
-
featuresSummary?: {
|
|
129925
|
-
designSystems: {
|
|
129926
|
-
max: number;
|
|
129927
|
-
errorMessage: string;
|
|
129928
|
-
errorReason: string;
|
|
129929
|
-
};
|
|
129930
|
-
designSystemSources: {
|
|
129931
|
-
max: number;
|
|
129932
|
-
errorMessage: string;
|
|
129933
|
-
errorReason: string;
|
|
129934
|
-
noImportJobsErrorMessage: string;
|
|
129935
|
-
noImportJobsErrorReason: string;
|
|
129936
|
-
};
|
|
129937
|
-
designSystemVersions: {
|
|
129938
|
-
max: number;
|
|
129939
|
-
errorMessage: string;
|
|
129940
|
-
errorReason: string;
|
|
129941
|
-
};
|
|
129942
|
-
themes: {
|
|
129943
|
-
max: number;
|
|
129944
|
-
errorMessage: string;
|
|
129945
|
-
errorReason: string;
|
|
129946
|
-
};
|
|
129947
|
-
brands: {
|
|
129948
|
-
max: number;
|
|
129949
|
-
errorMessage: string;
|
|
129950
|
-
errorReason: string;
|
|
129951
|
-
};
|
|
129952
|
-
codegenSchedules: {
|
|
129953
|
-
max: number;
|
|
129954
|
-
errorMessage: string;
|
|
129955
|
-
errorReason: string;
|
|
129956
|
-
};
|
|
129957
|
-
publicDocumentation: {
|
|
129958
|
-
errorMessage: string;
|
|
129959
|
-
errorReason: string;
|
|
129960
|
-
enabled: boolean;
|
|
129961
|
-
};
|
|
129962
|
-
customDocumentationUrl: {
|
|
129963
|
-
errorMessage: string;
|
|
129964
|
-
errorReason: string;
|
|
129965
|
-
enabled: boolean;
|
|
129966
|
-
};
|
|
129967
|
-
customDocumentationViewButton: {
|
|
129968
|
-
errorMessage: string;
|
|
129969
|
-
errorReason: string;
|
|
129970
|
-
enabled: boolean;
|
|
129971
|
-
};
|
|
129972
|
-
designSystemSourceAutoImport: {
|
|
129973
|
-
errorMessage: string;
|
|
129974
|
-
errorReason: string;
|
|
129975
|
-
enabled: boolean;
|
|
129976
|
-
};
|
|
129977
|
-
designSystemSlug: {
|
|
129978
|
-
errorMessage: string;
|
|
129979
|
-
errorReason: string;
|
|
129980
|
-
enabled: boolean;
|
|
129981
|
-
};
|
|
129982
|
-
ipWhitelisting: {
|
|
129983
|
-
errorMessage: string;
|
|
129984
|
-
errorReason: string;
|
|
129985
|
-
enabled: boolean;
|
|
129986
|
-
};
|
|
129987
|
-
npmRegistry: {
|
|
129988
|
-
errorMessage: string;
|
|
129989
|
-
errorReason: string;
|
|
129990
|
-
enabled: boolean;
|
|
129991
|
-
};
|
|
129992
|
-
sso: {
|
|
129993
|
-
errorMessage: string;
|
|
129994
|
-
errorReason: string;
|
|
129995
|
-
enabled: boolean;
|
|
129996
|
-
};
|
|
129997
|
-
workspacePaidSeats: {
|
|
129998
|
-
max: number;
|
|
129999
|
-
errorMessage: string;
|
|
130000
|
-
errorReason: string;
|
|
130001
|
-
};
|
|
130002
|
-
workspaceViewers: {
|
|
130003
|
-
max: number;
|
|
130004
|
-
errorMessage: string;
|
|
130005
|
-
errorReason: string;
|
|
130006
|
-
};
|
|
130007
|
-
customDocumentationExporter: {
|
|
130008
|
-
errorMessage: string;
|
|
130009
|
-
errorReason: string;
|
|
130010
|
-
enabled: boolean;
|
|
130011
|
-
};
|
|
130012
|
-
protectedPages: {
|
|
130013
|
-
errorMessage: string;
|
|
130014
|
-
errorReason: string;
|
|
130015
|
-
enabled: boolean;
|
|
130016
|
-
};
|
|
130017
|
-
approvals: {
|
|
130018
|
-
errorMessage: string;
|
|
130019
|
-
errorReason: string;
|
|
130020
|
-
enabled: boolean;
|
|
130021
|
-
};
|
|
130022
|
-
selectivePublishing: {
|
|
130023
|
-
errorMessage: string;
|
|
130024
|
-
errorReason: string;
|
|
130025
|
-
enabled: boolean;
|
|
130026
|
-
};
|
|
130027
|
-
} | undefined;
|
|
130028
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
130029
|
-
currentPeriodStart?: string | undefined;
|
|
130030
|
-
currentPeriodEnd?: string | undefined;
|
|
130031
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
130032
|
-
cancelAt?: string | null | undefined;
|
|
130033
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
130034
|
-
daysUntilDue?: number | undefined;
|
|
130035
|
-
};
|
|
130036
|
-
sso?: {
|
|
130037
|
-
providerId: string;
|
|
130038
|
-
defaultAutoInviteValue: boolean;
|
|
130039
|
-
autoInviteDomains: Record<string, boolean>;
|
|
130040
|
-
skipDocsSupernovaLogin: boolean;
|
|
130041
|
-
areInvitesDisabled: boolean;
|
|
130042
|
-
isTestMode: boolean;
|
|
130043
|
-
emailDomains: string[];
|
|
130044
|
-
metadataXml?: string | null | undefined;
|
|
130045
|
-
} | null | undefined;
|
|
130046
|
-
ipWhitelist?: {
|
|
130047
|
-
entries: {
|
|
130048
|
-
name: string;
|
|
130049
|
-
isEnabled: boolean;
|
|
130050
|
-
range: string;
|
|
130051
|
-
}[];
|
|
130052
|
-
isEnabledForCloud: boolean;
|
|
130053
|
-
isEnabledForDocs: boolean;
|
|
130054
|
-
} | null | undefined;
|
|
130055
|
-
npmRegistrySettings?: ({
|
|
130056
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
130057
|
-
enabledScopes: string[];
|
|
130058
|
-
customRegistryUrl?: string | undefined;
|
|
130059
|
-
bypassProxy?: boolean | undefined;
|
|
130060
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
130061
|
-
npmProxyVersion?: number | undefined;
|
|
130062
|
-
} & ({
|
|
130063
|
-
password: string;
|
|
130064
|
-
username: string;
|
|
130065
|
-
authType: "Basic";
|
|
130066
|
-
} | {
|
|
130067
|
-
accessToken: string;
|
|
130068
|
-
authType: "Bearer";
|
|
130069
|
-
} | {
|
|
130070
|
-
authType: "None";
|
|
130071
|
-
} | {
|
|
130072
|
-
authType: "Custom";
|
|
130073
|
-
authHeaderName: string;
|
|
130074
|
-
authHeaderValue: string;
|
|
130075
|
-
})) | null | undefined;
|
|
130076
|
-
}>;
|
|
130077
|
-
}, "strip", z.ZodTypeAny, {
|
|
130078
|
-
workspace: {
|
|
130079
|
-
id: string;
|
|
130080
|
-
profile: {
|
|
130081
|
-
name: string;
|
|
130082
|
-
color: string;
|
|
130083
|
-
handle: string;
|
|
130084
|
-
avatar?: string | undefined;
|
|
130085
|
-
billingDetails?: {
|
|
130086
|
-
address?: {
|
|
130087
|
-
street1?: string | undefined;
|
|
130088
|
-
street2?: string | undefined;
|
|
130089
|
-
city?: string | undefined;
|
|
130090
|
-
postal?: string | undefined;
|
|
130091
|
-
country?: string | undefined;
|
|
130092
|
-
state?: string | undefined;
|
|
130093
|
-
} | undefined;
|
|
130094
|
-
email?: string | undefined;
|
|
130095
|
-
companyName?: string | undefined;
|
|
130096
|
-
companyId?: string | undefined;
|
|
130097
|
-
notes?: string | undefined;
|
|
130098
|
-
vat?: string | undefined;
|
|
130099
|
-
poNumber?: string | undefined;
|
|
130100
|
-
} | undefined;
|
|
130101
|
-
};
|
|
130102
|
-
subscription: {
|
|
130103
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
130104
|
-
planPriceId: string;
|
|
130105
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
130106
|
-
seats: number;
|
|
130107
|
-
seatLimit: number;
|
|
130108
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
130109
|
-
card?: {
|
|
130110
|
-
cardId?: string | null | undefined;
|
|
130111
|
-
last4?: string | null | undefined;
|
|
130112
|
-
expiryMonth?: string | null | undefined;
|
|
130113
|
-
expiryYear?: string | null | undefined;
|
|
130114
|
-
brand?: string | null | undefined;
|
|
130115
|
-
name?: string | null | undefined;
|
|
130116
|
-
} | undefined;
|
|
130117
|
-
amount?: number | null | undefined;
|
|
130118
|
-
stripeProductDescription?: string | undefined;
|
|
130119
|
-
isPricePerCreator?: boolean | undefined;
|
|
130120
|
-
isTrial?: boolean | undefined;
|
|
130121
|
-
legacyVersion?: string | undefined;
|
|
130122
|
-
stripeProductFeatures?: string[] | undefined;
|
|
130123
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
130124
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
130125
|
-
stripeCustomerId?: string | null | undefined;
|
|
130126
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
130127
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
130128
|
-
featuresSummary?: {
|
|
130129
|
-
designSystems: {
|
|
130130
|
-
max: number;
|
|
130131
|
-
errorMessage: string;
|
|
130132
|
-
errorReason: string;
|
|
130133
|
-
};
|
|
130134
|
-
designSystemSources: {
|
|
130135
|
-
max: number;
|
|
130136
|
-
errorMessage: string;
|
|
130137
|
-
errorReason: string;
|
|
130138
|
-
noImportJobsErrorMessage: string;
|
|
130139
|
-
noImportJobsErrorReason: string;
|
|
130140
|
-
};
|
|
130141
|
-
designSystemVersions: {
|
|
130142
|
-
max: number;
|
|
130143
|
-
errorMessage: string;
|
|
130144
|
-
errorReason: string;
|
|
130145
|
-
};
|
|
130146
|
-
themes: {
|
|
130147
|
-
max: number;
|
|
130148
|
-
errorMessage: string;
|
|
130149
|
-
errorReason: string;
|
|
130150
|
-
};
|
|
130151
|
-
brands: {
|
|
130152
|
-
max: number;
|
|
130153
|
-
errorMessage: string;
|
|
130154
|
-
errorReason: string;
|
|
130155
|
-
};
|
|
130156
|
-
codegenSchedules: {
|
|
130157
|
-
max: number;
|
|
130158
|
-
errorMessage: string;
|
|
130159
|
-
errorReason: string;
|
|
130160
|
-
};
|
|
130161
|
-
publicDocumentation: {
|
|
130162
|
-
errorMessage: string;
|
|
130163
|
-
errorReason: string;
|
|
130164
|
-
enabled: boolean;
|
|
130165
|
-
};
|
|
130166
|
-
customDocumentationUrl: {
|
|
130167
|
-
errorMessage: string;
|
|
130168
|
-
errorReason: string;
|
|
130169
|
-
enabled: boolean;
|
|
130170
|
-
};
|
|
130171
|
-
customDocumentationViewButton: {
|
|
130172
|
-
errorMessage: string;
|
|
130173
|
-
errorReason: string;
|
|
130174
|
-
enabled: boolean;
|
|
130175
|
-
};
|
|
130176
|
-
designSystemSourceAutoImport: {
|
|
130177
|
-
errorMessage: string;
|
|
130178
|
-
errorReason: string;
|
|
130179
|
-
enabled: boolean;
|
|
130180
|
-
};
|
|
130181
|
-
designSystemSlug: {
|
|
130182
|
-
errorMessage: string;
|
|
130183
|
-
errorReason: string;
|
|
130184
|
-
enabled: boolean;
|
|
130185
|
-
};
|
|
130186
|
-
ipWhitelisting: {
|
|
130187
|
-
errorMessage: string;
|
|
130188
|
-
errorReason: string;
|
|
130189
|
-
enabled: boolean;
|
|
130190
|
-
};
|
|
130191
|
-
npmRegistry: {
|
|
130192
|
-
errorMessage: string;
|
|
130193
|
-
errorReason: string;
|
|
130194
|
-
enabled: boolean;
|
|
130195
|
-
};
|
|
130196
|
-
sso: {
|
|
130197
|
-
errorMessage: string;
|
|
130198
|
-
errorReason: string;
|
|
130199
|
-
enabled: boolean;
|
|
130200
|
-
};
|
|
130201
|
-
workspacePaidSeats: {
|
|
130202
|
-
max: number;
|
|
130203
|
-
errorMessage: string;
|
|
130204
|
-
errorReason: string;
|
|
130205
|
-
};
|
|
130206
|
-
workspaceViewers: {
|
|
130207
|
-
max: number;
|
|
130208
|
-
errorMessage: string;
|
|
130209
|
-
errorReason: string;
|
|
130210
|
-
};
|
|
130211
|
-
customDocumentationExporter: {
|
|
130212
|
-
errorMessage: string;
|
|
130213
|
-
errorReason: string;
|
|
130214
|
-
enabled: boolean;
|
|
130215
|
-
};
|
|
130216
|
-
protectedPages: {
|
|
130217
|
-
errorMessage: string;
|
|
130218
|
-
errorReason: string;
|
|
130219
|
-
enabled: boolean;
|
|
130220
|
-
};
|
|
130221
|
-
approvals: {
|
|
130222
|
-
errorMessage: string;
|
|
130223
|
-
errorReason: string;
|
|
130224
|
-
enabled: boolean;
|
|
130225
|
-
};
|
|
130226
|
-
selectivePublishing: {
|
|
130227
|
-
errorMessage: string;
|
|
130228
|
-
errorReason: string;
|
|
130229
|
-
enabled: boolean;
|
|
130230
|
-
};
|
|
130231
|
-
} | undefined;
|
|
130232
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
130233
|
-
currentPeriodStart?: string | undefined;
|
|
130234
|
-
currentPeriodEnd?: string | undefined;
|
|
130235
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
130236
|
-
cancelAt?: string | null | undefined;
|
|
130237
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
130238
|
-
daysUntilDue?: number | undefined;
|
|
130239
|
-
};
|
|
130240
|
-
sso?: {
|
|
130241
|
-
providerId: string;
|
|
130242
|
-
defaultAutoInviteValue: boolean;
|
|
130243
|
-
autoInviteDomains: Record<string, boolean>;
|
|
130244
|
-
skipDocsSupernovaLogin: boolean;
|
|
130245
|
-
areInvitesDisabled: boolean;
|
|
130246
|
-
isTestMode: boolean;
|
|
130247
|
-
emailDomains: string[];
|
|
130248
|
-
metadataXml?: string | null | undefined;
|
|
130249
|
-
} | undefined;
|
|
130250
|
-
ipWhitelist?: {
|
|
130251
|
-
entries: {
|
|
130252
|
-
name: string;
|
|
130253
|
-
isEnabled: boolean;
|
|
130254
|
-
range: string;
|
|
130255
|
-
}[];
|
|
130256
|
-
isEnabledForCloud: boolean;
|
|
130257
|
-
isEnabledForDocs: boolean;
|
|
130258
|
-
} | undefined;
|
|
130259
|
-
npmRegistrySettings?: NonNullable<{
|
|
130260
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
130261
|
-
enabledScopes: string[];
|
|
130262
|
-
bypassProxy: boolean;
|
|
130263
|
-
customRegistryUrl?: string | undefined;
|
|
130264
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
130265
|
-
npmProxyVersion?: number | undefined;
|
|
130266
|
-
} & ({
|
|
130267
|
-
password: string;
|
|
130268
|
-
username: string;
|
|
130269
|
-
authType: "Basic";
|
|
130270
|
-
} | {
|
|
130271
|
-
accessToken: string;
|
|
130272
|
-
authType: "Bearer";
|
|
130273
|
-
} | {
|
|
130274
|
-
authType: "None";
|
|
130275
|
-
} | {
|
|
130276
|
-
authType: "Custom";
|
|
130277
|
-
authHeaderName: string;
|
|
130278
|
-
authHeaderValue: string;
|
|
130279
|
-
})> | undefined;
|
|
130280
|
-
};
|
|
130281
|
-
designSystem: {
|
|
130282
|
-
id: string;
|
|
130283
|
-
createdAt: Date;
|
|
130284
|
-
updatedAt: Date;
|
|
130285
|
-
name: string;
|
|
130286
|
-
description: string;
|
|
130287
|
-
isPublic: boolean;
|
|
130288
|
-
workspaceId: string;
|
|
130289
|
-
docSlug: string;
|
|
130290
|
-
docSlugDeprecated: string;
|
|
130291
|
-
isMultibrand: boolean;
|
|
130292
|
-
basePrefixes: string[];
|
|
130293
|
-
isApprovalFeatureEnabled: boolean;
|
|
130294
|
-
approvalRequiredForPublishing: boolean;
|
|
130295
|
-
docExporterId?: string | undefined;
|
|
130296
|
-
docUserSlug?: string | undefined;
|
|
130297
|
-
docViewUrl?: string | undefined;
|
|
130298
|
-
designSystemSwitcher?: {
|
|
130299
|
-
isEnabled: boolean;
|
|
130300
|
-
designSystemIds: string[];
|
|
130301
|
-
} | undefined;
|
|
130302
|
-
};
|
|
130303
|
-
}, {
|
|
130304
|
-
workspace: {
|
|
130305
|
-
id: string;
|
|
130306
|
-
profile: {
|
|
130307
|
-
name: string;
|
|
130308
|
-
color: string;
|
|
130309
|
-
handle: string;
|
|
130310
|
-
avatar?: string | null | undefined;
|
|
130311
|
-
billingDetails?: {
|
|
130312
|
-
address?: {
|
|
130313
|
-
street1?: string | null | undefined;
|
|
130314
|
-
street2?: string | null | undefined;
|
|
130315
|
-
city?: string | null | undefined;
|
|
130316
|
-
postal?: string | null | undefined;
|
|
130317
|
-
country?: string | null | undefined;
|
|
130318
|
-
state?: string | null | undefined;
|
|
130319
|
-
} | null | undefined;
|
|
130320
|
-
email?: string | null | undefined;
|
|
130321
|
-
companyName?: string | null | undefined;
|
|
130322
|
-
companyId?: string | null | undefined;
|
|
130323
|
-
notes?: string | null | undefined;
|
|
130324
|
-
vat?: string | null | undefined;
|
|
130325
|
-
poNumber?: string | null | undefined;
|
|
130326
|
-
} | null | undefined;
|
|
130327
|
-
};
|
|
130328
|
-
subscription: {
|
|
130329
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
130330
|
-
planPriceId: string;
|
|
130331
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
130332
|
-
seats: number;
|
|
130333
|
-
seatLimit: number;
|
|
130334
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
130335
|
-
card?: {
|
|
130336
|
-
cardId?: string | null | undefined;
|
|
130337
|
-
last4?: string | null | undefined;
|
|
130338
|
-
expiryMonth?: string | null | undefined;
|
|
130339
|
-
expiryYear?: string | null | undefined;
|
|
130340
|
-
brand?: string | null | undefined;
|
|
130341
|
-
name?: string | null | undefined;
|
|
130342
|
-
} | undefined;
|
|
130343
|
-
amount?: number | null | undefined;
|
|
130344
|
-
stripeProductDescription?: string | undefined;
|
|
130345
|
-
isPricePerCreator?: boolean | undefined;
|
|
130346
|
-
isTrial?: boolean | undefined;
|
|
130347
|
-
legacyVersion?: string | undefined;
|
|
130348
|
-
stripeProductFeatures?: string[] | undefined;
|
|
130349
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
130350
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
130351
|
-
stripeCustomerId?: string | null | undefined;
|
|
130352
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
130353
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
130354
|
-
featuresSummary?: {
|
|
130355
|
-
designSystems: {
|
|
130356
|
-
max: number;
|
|
130357
|
-
errorMessage: string;
|
|
130358
|
-
errorReason: string;
|
|
130359
|
-
};
|
|
130360
|
-
designSystemSources: {
|
|
130361
|
-
max: number;
|
|
130362
|
-
errorMessage: string;
|
|
130363
|
-
errorReason: string;
|
|
130364
|
-
noImportJobsErrorMessage: string;
|
|
130365
|
-
noImportJobsErrorReason: string;
|
|
130366
|
-
};
|
|
130367
|
-
designSystemVersions: {
|
|
130368
|
-
max: number;
|
|
130369
|
-
errorMessage: string;
|
|
130370
|
-
errorReason: string;
|
|
130371
|
-
};
|
|
130372
|
-
themes: {
|
|
130373
|
-
max: number;
|
|
130374
|
-
errorMessage: string;
|
|
130375
|
-
errorReason: string;
|
|
130376
|
-
};
|
|
130377
|
-
brands: {
|
|
130378
|
-
max: number;
|
|
130379
|
-
errorMessage: string;
|
|
130380
|
-
errorReason: string;
|
|
130381
|
-
};
|
|
130382
|
-
codegenSchedules: {
|
|
130383
|
-
max: number;
|
|
130384
|
-
errorMessage: string;
|
|
130385
|
-
errorReason: string;
|
|
130386
|
-
};
|
|
130387
|
-
publicDocumentation: {
|
|
130388
|
-
errorMessage: string;
|
|
130389
|
-
errorReason: string;
|
|
130390
|
-
enabled: boolean;
|
|
130391
|
-
};
|
|
130392
|
-
customDocumentationUrl: {
|
|
130393
|
-
errorMessage: string;
|
|
130394
|
-
errorReason: string;
|
|
130395
|
-
enabled: boolean;
|
|
130396
|
-
};
|
|
130397
|
-
customDocumentationViewButton: {
|
|
130398
|
-
errorMessage: string;
|
|
130399
|
-
errorReason: string;
|
|
130400
|
-
enabled: boolean;
|
|
130401
|
-
};
|
|
130402
|
-
designSystemSourceAutoImport: {
|
|
130403
|
-
errorMessage: string;
|
|
130404
|
-
errorReason: string;
|
|
130405
|
-
enabled: boolean;
|
|
130406
|
-
};
|
|
130407
|
-
designSystemSlug: {
|
|
130408
|
-
errorMessage: string;
|
|
130409
|
-
errorReason: string;
|
|
130410
|
-
enabled: boolean;
|
|
130411
|
-
};
|
|
130412
|
-
ipWhitelisting: {
|
|
130413
|
-
errorMessage: string;
|
|
130414
|
-
errorReason: string;
|
|
130415
|
-
enabled: boolean;
|
|
130416
|
-
};
|
|
130417
|
-
npmRegistry: {
|
|
130418
|
-
errorMessage: string;
|
|
130419
|
-
errorReason: string;
|
|
130420
|
-
enabled: boolean;
|
|
130421
|
-
};
|
|
130422
|
-
sso: {
|
|
130423
|
-
errorMessage: string;
|
|
130424
|
-
errorReason: string;
|
|
130425
|
-
enabled: boolean;
|
|
130426
|
-
};
|
|
130427
|
-
workspacePaidSeats: {
|
|
130428
|
-
max: number;
|
|
130429
|
-
errorMessage: string;
|
|
130430
|
-
errorReason: string;
|
|
130431
|
-
};
|
|
130432
|
-
workspaceViewers: {
|
|
130433
|
-
max: number;
|
|
130434
|
-
errorMessage: string;
|
|
130435
|
-
errorReason: string;
|
|
130436
|
-
};
|
|
130437
|
-
customDocumentationExporter: {
|
|
130438
|
-
errorMessage: string;
|
|
130439
|
-
errorReason: string;
|
|
130440
|
-
enabled: boolean;
|
|
130441
|
-
};
|
|
130442
|
-
protectedPages: {
|
|
130443
|
-
errorMessage: string;
|
|
130444
|
-
errorReason: string;
|
|
130445
|
-
enabled: boolean;
|
|
130446
|
-
};
|
|
130447
|
-
approvals: {
|
|
130448
|
-
errorMessage: string;
|
|
130449
|
-
errorReason: string;
|
|
130450
|
-
enabled: boolean;
|
|
130451
|
-
};
|
|
130452
|
-
selectivePublishing: {
|
|
130453
|
-
errorMessage: string;
|
|
130454
|
-
errorReason: string;
|
|
130455
|
-
enabled: boolean;
|
|
130456
|
-
};
|
|
130457
|
-
} | undefined;
|
|
130458
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
130459
|
-
currentPeriodStart?: string | undefined;
|
|
130460
|
-
currentPeriodEnd?: string | undefined;
|
|
130461
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
130462
|
-
cancelAt?: string | null | undefined;
|
|
130463
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
130464
|
-
daysUntilDue?: number | undefined;
|
|
130465
|
-
};
|
|
130466
|
-
sso?: {
|
|
130467
|
-
providerId: string;
|
|
130468
|
-
defaultAutoInviteValue: boolean;
|
|
130469
|
-
autoInviteDomains: Record<string, boolean>;
|
|
130470
|
-
skipDocsSupernovaLogin: boolean;
|
|
130471
|
-
areInvitesDisabled: boolean;
|
|
130472
|
-
isTestMode: boolean;
|
|
130473
|
-
emailDomains: string[];
|
|
130474
|
-
metadataXml?: string | null | undefined;
|
|
130475
|
-
} | null | undefined;
|
|
130476
|
-
ipWhitelist?: {
|
|
130477
|
-
entries: {
|
|
130478
|
-
name: string;
|
|
130479
|
-
isEnabled: boolean;
|
|
130480
|
-
range: string;
|
|
130481
|
-
}[];
|
|
130482
|
-
isEnabledForCloud: boolean;
|
|
130483
|
-
isEnabledForDocs: boolean;
|
|
130484
|
-
} | null | undefined;
|
|
130485
|
-
npmRegistrySettings?: ({
|
|
130486
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
130487
|
-
enabledScopes: string[];
|
|
130488
|
-
customRegistryUrl?: string | undefined;
|
|
130489
|
-
bypassProxy?: boolean | undefined;
|
|
130490
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
130491
|
-
npmProxyVersion?: number | undefined;
|
|
130492
|
-
} & ({
|
|
130493
|
-
password: string;
|
|
130494
|
-
username: string;
|
|
130495
|
-
authType: "Basic";
|
|
130496
|
-
} | {
|
|
130497
|
-
accessToken: string;
|
|
130498
|
-
authType: "Bearer";
|
|
130499
|
-
} | {
|
|
130500
|
-
authType: "None";
|
|
130501
|
-
} | {
|
|
130502
|
-
authType: "Custom";
|
|
130503
|
-
authHeaderName: string;
|
|
130504
|
-
authHeaderValue: string;
|
|
130505
|
-
})) | null | undefined;
|
|
130506
|
-
};
|
|
130507
|
-
designSystem: {
|
|
130508
|
-
id: string;
|
|
130509
|
-
createdAt: Date;
|
|
130510
|
-
updatedAt: Date;
|
|
130511
|
-
name: string;
|
|
130512
|
-
description: string;
|
|
130513
|
-
isPublic: boolean;
|
|
130514
|
-
workspaceId: string;
|
|
130515
|
-
docSlug: string;
|
|
130516
|
-
docSlugDeprecated: string;
|
|
130517
|
-
isMultibrand: boolean;
|
|
130518
|
-
basePrefixes: string[];
|
|
130519
|
-
isApprovalFeatureEnabled: boolean;
|
|
130520
|
-
approvalRequiredForPublishing: boolean;
|
|
130521
|
-
docExporterId?: string | null | undefined;
|
|
130522
|
-
docUserSlug?: string | null | undefined;
|
|
130523
|
-
docViewUrl?: string | null | undefined;
|
|
130524
|
-
designSystemSwitcher?: {
|
|
130525
|
-
isEnabled: boolean;
|
|
130526
|
-
designSystemIds: string[];
|
|
130527
|
-
} | null | undefined;
|
|
130528
|
-
};
|
|
130529
|
-
}>;
|
|
130530
|
-
type DesignSystemWithWorkspace = z.infer<typeof DesignSystemWithWorkspace>;
|
|
130531
|
-
|
|
130532
|
-
declare const DesignSystemCreateInput: z.ZodObject<{
|
|
130533
|
-
meta: z.ZodObject<{
|
|
130534
|
-
name: z.ZodString;
|
|
130535
|
-
description: z.ZodString;
|
|
130536
|
-
}, "strip", z.ZodTypeAny, {
|
|
130537
|
-
name: string;
|
|
130538
|
-
description: string;
|
|
130539
|
-
}, {
|
|
130540
|
-
name: string;
|
|
130541
|
-
description: string;
|
|
130542
|
-
}>;
|
|
130543
|
-
workspaceId: z.ZodString;
|
|
130544
|
-
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
130545
|
-
basePrefixes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
130546
|
-
docUserSlug: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
130547
|
-
source: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
130548
|
-
}, "strip", z.ZodTypeAny, {
|
|
130549
|
-
meta: {
|
|
130550
|
-
name: string;
|
|
130551
|
-
description: string;
|
|
130552
|
-
};
|
|
130553
|
-
workspaceId: string;
|
|
130554
|
-
source?: string[] | undefined;
|
|
130555
|
-
isPublic?: boolean | undefined;
|
|
130556
|
-
docUserSlug?: string | null | undefined;
|
|
130557
|
-
basePrefixes?: string[] | undefined;
|
|
130558
|
-
}, {
|
|
130559
|
-
meta: {
|
|
130560
|
-
name: string;
|
|
130561
|
-
description: string;
|
|
130562
|
-
};
|
|
130563
|
-
workspaceId: string;
|
|
130564
|
-
source?: string[] | undefined;
|
|
130565
|
-
isPublic?: boolean | undefined;
|
|
130566
|
-
docUserSlug?: string | null | undefined;
|
|
130567
|
-
basePrefixes?: string[] | undefined;
|
|
130568
|
-
}>;
|
|
130569
|
-
type DesignSystemCreateInput = z.infer<typeof DesignSystemCreateInput>;
|
|
130570
|
-
|
|
130571
|
-
declare const ExporterPropertyImageValue: z.ZodObject<{
|
|
130572
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
130573
|
-
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
130574
|
-
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
130575
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
130576
|
-
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
130577
|
-
persistentId: string;
|
|
130578
|
-
sourceId: string;
|
|
130579
|
-
sourceFrameId: string;
|
|
130580
|
-
description?: string | undefined;
|
|
130581
|
-
title?: string | undefined;
|
|
130582
|
-
origin?: {
|
|
130583
|
-
valid?: boolean | undefined;
|
|
130584
|
-
title?: string | undefined;
|
|
130585
|
-
assetId?: string | undefined;
|
|
130586
|
-
width?: number | undefined;
|
|
130587
|
-
height?: number | undefined;
|
|
130588
|
-
referenceId?: string | undefined;
|
|
130589
|
-
sourceFileName?: string | undefined;
|
|
130590
|
-
previewUrl?: string | undefined;
|
|
130591
|
-
assetScale?: number | undefined;
|
|
130592
|
-
} | undefined;
|
|
130593
|
-
backgroundColor?: {
|
|
130594
|
-
value: string;
|
|
130595
|
-
} | undefined;
|
|
130596
|
-
}, z.ZodTypeDef, {
|
|
130597
|
-
persistentId: string;
|
|
130598
|
-
sourceId: string;
|
|
130599
|
-
sourceFrameId: string;
|
|
130600
|
-
description?: string | null | undefined;
|
|
130601
|
-
title?: string | null | undefined;
|
|
130602
|
-
origin?: {
|
|
130603
|
-
valid?: boolean | null | undefined;
|
|
130604
|
-
title?: string | null | undefined;
|
|
130605
|
-
assetId?: string | null | undefined;
|
|
130606
|
-
width?: number | null | undefined;
|
|
130607
|
-
height?: number | null | undefined;
|
|
130608
|
-
referenceId?: string | null | undefined;
|
|
130609
|
-
sourceFileName?: string | null | undefined;
|
|
130610
|
-
previewUrl?: string | null | undefined;
|
|
130611
|
-
assetScale?: number | null | undefined;
|
|
130612
|
-
} | null | undefined;
|
|
130613
|
-
backgroundColor?: {
|
|
130614
|
-
value: string;
|
|
130615
|
-
} | null | undefined;
|
|
130616
|
-
}>>>, {
|
|
130617
|
-
persistentId: string;
|
|
130618
|
-
sourceId: string;
|
|
130619
|
-
sourceFrameId: string;
|
|
130620
|
-
description?: string | undefined;
|
|
130621
|
-
title?: string | undefined;
|
|
130622
|
-
origin?: {
|
|
130623
|
-
valid?: boolean | undefined;
|
|
130624
|
-
title?: string | undefined;
|
|
130625
|
-
assetId?: string | undefined;
|
|
130626
|
-
width?: number | undefined;
|
|
130627
|
-
height?: number | undefined;
|
|
130628
|
-
referenceId?: string | undefined;
|
|
130629
|
-
sourceFileName?: string | undefined;
|
|
130630
|
-
previewUrl?: string | undefined;
|
|
130631
|
-
assetScale?: number | undefined;
|
|
130632
|
-
} | undefined;
|
|
130633
|
-
backgroundColor?: {
|
|
130634
|
-
value: string;
|
|
130635
|
-
} | undefined;
|
|
130636
|
-
} | undefined, {
|
|
130637
|
-
persistentId: string;
|
|
130638
|
-
sourceId: string;
|
|
130639
|
-
sourceFrameId: string;
|
|
130640
|
-
description?: string | null | undefined;
|
|
130641
|
-
title?: string | null | undefined;
|
|
130642
|
-
origin?: {
|
|
130643
|
-
valid?: boolean | null | undefined;
|
|
130644
|
-
title?: string | null | undefined;
|
|
130645
|
-
assetId?: string | null | undefined;
|
|
130646
|
-
width?: number | null | undefined;
|
|
130647
|
-
height?: number | null | undefined;
|
|
130648
|
-
referenceId?: string | null | undefined;
|
|
130649
|
-
sourceFileName?: string | null | undefined;
|
|
130650
|
-
previewUrl?: string | null | undefined;
|
|
130651
|
-
assetScale?: number | null | undefined;
|
|
130652
|
-
} | null | undefined;
|
|
130653
|
-
backgroundColor?: {
|
|
130654
|
-
value: string;
|
|
130655
|
-
} | null | undefined;
|
|
130656
|
-
} | null | undefined>;
|
|
130657
|
-
}, "strip", z.ZodTypeAny, {
|
|
130658
|
-
type: "image" | "figmaFrame";
|
|
130659
|
-
id?: string | undefined;
|
|
130660
|
-
url?: string | undefined;
|
|
130661
|
-
figmaFrame?: {
|
|
130662
|
-
persistentId: string;
|
|
130663
|
-
sourceId: string;
|
|
130664
|
-
sourceFrameId: string;
|
|
130665
|
-
description?: string | undefined;
|
|
130666
|
-
title?: string | undefined;
|
|
130667
|
-
origin?: {
|
|
130668
|
-
valid?: boolean | undefined;
|
|
130669
|
-
title?: string | undefined;
|
|
130670
|
-
assetId?: string | undefined;
|
|
130671
|
-
width?: number | undefined;
|
|
130672
|
-
height?: number | undefined;
|
|
130673
|
-
referenceId?: string | undefined;
|
|
130674
|
-
sourceFileName?: string | undefined;
|
|
130675
|
-
previewUrl?: string | undefined;
|
|
130676
|
-
assetScale?: number | undefined;
|
|
130677
|
-
} | undefined;
|
|
130678
|
-
backgroundColor?: {
|
|
130679
|
-
value: string;
|
|
130680
|
-
} | undefined;
|
|
130681
|
-
} | undefined;
|
|
130682
|
-
}, {
|
|
130683
|
-
type: "image" | "figmaFrame";
|
|
130684
|
-
id?: string | null | undefined;
|
|
130685
|
-
url?: string | null | undefined;
|
|
130686
|
-
figmaFrame?: {
|
|
130687
|
-
persistentId: string;
|
|
130688
|
-
sourceId: string;
|
|
130689
|
-
sourceFrameId: string;
|
|
130690
|
-
description?: string | null | undefined;
|
|
130691
|
-
title?: string | null | undefined;
|
|
130692
|
-
origin?: {
|
|
130693
|
-
valid?: boolean | null | undefined;
|
|
130694
|
-
title?: string | null | undefined;
|
|
130695
|
-
assetId?: string | null | undefined;
|
|
130696
|
-
width?: number | null | undefined;
|
|
130697
|
-
height?: number | null | undefined;
|
|
130698
|
-
referenceId?: string | null | undefined;
|
|
130699
|
-
sourceFileName?: string | null | undefined;
|
|
130700
|
-
previewUrl?: string | null | undefined;
|
|
130701
|
-
assetScale?: number | null | undefined;
|
|
130702
|
-
} | null | undefined;
|
|
130703
|
-
backgroundColor?: {
|
|
130704
|
-
value: string;
|
|
130705
|
-
} | null | undefined;
|
|
130706
|
-
} | null | undefined;
|
|
130707
|
-
}>>;
|
|
130708
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
130709
|
-
assetUrl: z.ZodOptional<z.ZodString>;
|
|
130710
|
-
}, "strip", z.ZodTypeAny, {
|
|
130711
|
-
assetId?: string | undefined;
|
|
130712
|
-
asset?: {
|
|
130713
|
-
type: "image" | "figmaFrame";
|
|
130714
|
-
id?: string | undefined;
|
|
130715
|
-
url?: string | undefined;
|
|
130716
|
-
figmaFrame?: {
|
|
130717
|
-
persistentId: string;
|
|
130718
|
-
sourceId: string;
|
|
130719
|
-
sourceFrameId: string;
|
|
130720
|
-
description?: string | undefined;
|
|
130721
|
-
title?: string | undefined;
|
|
130722
|
-
origin?: {
|
|
130723
|
-
valid?: boolean | undefined;
|
|
130724
|
-
title?: string | undefined;
|
|
130725
|
-
assetId?: string | undefined;
|
|
130726
|
-
width?: number | undefined;
|
|
130727
|
-
height?: number | undefined;
|
|
130728
|
-
referenceId?: string | undefined;
|
|
130729
|
-
sourceFileName?: string | undefined;
|
|
130730
|
-
previewUrl?: string | undefined;
|
|
130731
|
-
assetScale?: number | undefined;
|
|
130732
|
-
} | undefined;
|
|
130733
|
-
backgroundColor?: {
|
|
130734
|
-
value: string;
|
|
130735
|
-
} | undefined;
|
|
130736
|
-
} | undefined;
|
|
130737
|
-
} | undefined;
|
|
130738
|
-
assetUrl?: string | undefined;
|
|
130739
|
-
}, {
|
|
130740
|
-
assetId?: string | undefined;
|
|
130741
|
-
asset?: {
|
|
130742
|
-
type: "image" | "figmaFrame";
|
|
130743
|
-
id?: string | null | undefined;
|
|
130744
|
-
url?: string | null | undefined;
|
|
130745
|
-
figmaFrame?: {
|
|
130746
|
-
persistentId: string;
|
|
130747
|
-
sourceId: string;
|
|
130748
|
-
sourceFrameId: string;
|
|
130749
|
-
description?: string | null | undefined;
|
|
130750
|
-
title?: string | null | undefined;
|
|
130751
|
-
origin?: {
|
|
130752
|
-
valid?: boolean | null | undefined;
|
|
130753
|
-
title?: string | null | undefined;
|
|
130754
|
-
assetId?: string | null | undefined;
|
|
130755
|
-
width?: number | null | undefined;
|
|
130756
|
-
height?: number | null | undefined;
|
|
130757
|
-
referenceId?: string | null | undefined;
|
|
130758
|
-
sourceFileName?: string | null | undefined;
|
|
130759
|
-
previewUrl?: string | null | undefined;
|
|
130760
|
-
assetScale?: number | null | undefined;
|
|
130761
|
-
} | null | undefined;
|
|
130762
|
-
backgroundColor?: {
|
|
130763
|
-
value: string;
|
|
130764
|
-
} | null | undefined;
|
|
130765
|
-
} | null | undefined;
|
|
130766
|
-
} | undefined;
|
|
130767
|
-
assetUrl?: string | undefined;
|
|
130768
|
-
}>;
|
|
130769
|
-
type ExporterPropertyImageValue = z.infer<typeof ExporterPropertyImageValue>;
|
|
130770
|
-
declare const ExporterPropertyValue: z.ZodObject<{
|
|
130771
|
-
key: z.ZodString;
|
|
130772
|
-
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
130773
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
130774
|
-
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
130775
|
-
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
130776
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
130777
|
-
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
130778
|
-
persistentId: string;
|
|
130779
|
-
sourceId: string;
|
|
130780
|
-
sourceFrameId: string;
|
|
130781
|
-
description?: string | undefined;
|
|
130782
|
-
title?: string | undefined;
|
|
130783
|
-
origin?: {
|
|
130784
|
-
valid?: boolean | undefined;
|
|
130785
|
-
title?: string | undefined;
|
|
130786
|
-
assetId?: string | undefined;
|
|
130787
|
-
width?: number | undefined;
|
|
130788
|
-
height?: number | undefined;
|
|
130789
|
-
referenceId?: string | undefined;
|
|
130790
|
-
sourceFileName?: string | undefined;
|
|
130791
|
-
previewUrl?: string | undefined;
|
|
130792
|
-
assetScale?: number | undefined;
|
|
130793
|
-
} | undefined;
|
|
130794
|
-
backgroundColor?: {
|
|
130795
|
-
value: string;
|
|
130796
|
-
} | undefined;
|
|
130797
|
-
}, z.ZodTypeDef, {
|
|
130798
|
-
persistentId: string;
|
|
130799
|
-
sourceId: string;
|
|
130800
|
-
sourceFrameId: string;
|
|
130801
|
-
description?: string | null | undefined;
|
|
130802
|
-
title?: string | null | undefined;
|
|
130803
|
-
origin?: {
|
|
130804
|
-
valid?: boolean | null | undefined;
|
|
130805
|
-
title?: string | null | undefined;
|
|
130806
|
-
assetId?: string | null | undefined;
|
|
130807
|
-
width?: number | null | undefined;
|
|
130808
|
-
height?: number | null | undefined;
|
|
130809
|
-
referenceId?: string | null | undefined;
|
|
130810
|
-
sourceFileName?: string | null | undefined;
|
|
130811
|
-
previewUrl?: string | null | undefined;
|
|
130812
|
-
assetScale?: number | null | undefined;
|
|
130813
|
-
} | null | undefined;
|
|
130814
|
-
backgroundColor?: {
|
|
130815
|
-
value: string;
|
|
130816
|
-
} | null | undefined;
|
|
130817
|
-
}>>>, {
|
|
130818
|
-
persistentId: string;
|
|
130819
|
-
sourceId: string;
|
|
130820
|
-
sourceFrameId: string;
|
|
130821
|
-
description?: string | undefined;
|
|
130822
|
-
title?: string | undefined;
|
|
130823
|
-
origin?: {
|
|
130824
|
-
valid?: boolean | undefined;
|
|
130825
|
-
title?: string | undefined;
|
|
130826
|
-
assetId?: string | undefined;
|
|
130827
|
-
width?: number | undefined;
|
|
130828
|
-
height?: number | undefined;
|
|
130829
|
-
referenceId?: string | undefined;
|
|
130830
|
-
sourceFileName?: string | undefined;
|
|
130831
|
-
previewUrl?: string | undefined;
|
|
130832
|
-
assetScale?: number | undefined;
|
|
130833
|
-
} | undefined;
|
|
130834
|
-
backgroundColor?: {
|
|
130835
|
-
value: string;
|
|
130836
|
-
} | undefined;
|
|
130837
|
-
} | undefined, {
|
|
130838
|
-
persistentId: string;
|
|
130839
|
-
sourceId: string;
|
|
130840
|
-
sourceFrameId: string;
|
|
130841
|
-
description?: string | null | undefined;
|
|
130842
|
-
title?: string | null | undefined;
|
|
130843
|
-
origin?: {
|
|
130844
|
-
valid?: boolean | null | undefined;
|
|
130845
|
-
title?: string | null | undefined;
|
|
130846
|
-
assetId?: string | null | undefined;
|
|
130847
|
-
width?: number | null | undefined;
|
|
130848
|
-
height?: number | null | undefined;
|
|
130849
|
-
referenceId?: string | null | undefined;
|
|
130850
|
-
sourceFileName?: string | null | undefined;
|
|
130851
|
-
previewUrl?: string | null | undefined;
|
|
130852
|
-
assetScale?: number | null | undefined;
|
|
130853
|
-
} | null | undefined;
|
|
130854
|
-
backgroundColor?: {
|
|
130855
|
-
value: string;
|
|
130856
|
-
} | null | undefined;
|
|
130857
|
-
} | null | undefined>;
|
|
130858
|
-
}, "strip", z.ZodTypeAny, {
|
|
130859
|
-
type: "image" | "figmaFrame";
|
|
130860
|
-
id?: string | undefined;
|
|
130861
|
-
url?: string | undefined;
|
|
130862
|
-
figmaFrame?: {
|
|
130863
|
-
persistentId: string;
|
|
130864
|
-
sourceId: string;
|
|
130865
|
-
sourceFrameId: string;
|
|
130866
|
-
description?: string | undefined;
|
|
130867
|
-
title?: string | undefined;
|
|
130868
|
-
origin?: {
|
|
130869
|
-
valid?: boolean | undefined;
|
|
130870
|
-
title?: string | undefined;
|
|
130871
|
-
assetId?: string | undefined;
|
|
130872
|
-
width?: number | undefined;
|
|
130873
|
-
height?: number | undefined;
|
|
130874
|
-
referenceId?: string | undefined;
|
|
130875
|
-
sourceFileName?: string | undefined;
|
|
130876
|
-
previewUrl?: string | undefined;
|
|
130877
|
-
assetScale?: number | undefined;
|
|
130878
|
-
} | undefined;
|
|
130879
|
-
backgroundColor?: {
|
|
130880
|
-
value: string;
|
|
130881
|
-
} | undefined;
|
|
130882
|
-
} | undefined;
|
|
130883
|
-
}, {
|
|
130884
|
-
type: "image" | "figmaFrame";
|
|
130885
|
-
id?: string | null | undefined;
|
|
130886
|
-
url?: string | null | undefined;
|
|
130887
|
-
figmaFrame?: {
|
|
130888
|
-
persistentId: string;
|
|
130889
|
-
sourceId: string;
|
|
130890
|
-
sourceFrameId: string;
|
|
130891
|
-
description?: string | null | undefined;
|
|
130892
|
-
title?: string | null | undefined;
|
|
130893
|
-
origin?: {
|
|
130894
|
-
valid?: boolean | null | undefined;
|
|
130895
|
-
title?: string | null | undefined;
|
|
130896
|
-
assetId?: string | null | undefined;
|
|
130897
|
-
width?: number | null | undefined;
|
|
130898
|
-
height?: number | null | undefined;
|
|
130899
|
-
referenceId?: string | null | undefined;
|
|
130900
|
-
sourceFileName?: string | null | undefined;
|
|
130901
|
-
previewUrl?: string | null | undefined;
|
|
130902
|
-
assetScale?: number | null | undefined;
|
|
130903
|
-
} | null | undefined;
|
|
130904
|
-
backgroundColor?: {
|
|
130905
|
-
value: string;
|
|
128921
|
+
type: "image" | "figmaFrame";
|
|
128922
|
+
id?: string | null | undefined;
|
|
128923
|
+
url?: string | null | undefined;
|
|
128924
|
+
figmaFrame?: {
|
|
128925
|
+
persistentId: string;
|
|
128926
|
+
sourceId: string;
|
|
128927
|
+
sourceFrameId: string;
|
|
128928
|
+
description?: string | null | undefined;
|
|
128929
|
+
title?: string | null | undefined;
|
|
128930
|
+
origin?: {
|
|
128931
|
+
valid?: boolean | null | undefined;
|
|
128932
|
+
title?: string | null | undefined;
|
|
128933
|
+
assetId?: string | null | undefined;
|
|
128934
|
+
width?: number | null | undefined;
|
|
128935
|
+
height?: number | null | undefined;
|
|
128936
|
+
referenceId?: string | null | undefined;
|
|
128937
|
+
sourceFileName?: string | null | undefined;
|
|
128938
|
+
previewUrl?: string | null | undefined;
|
|
128939
|
+
assetScale?: number | null | undefined;
|
|
128940
|
+
} | null | undefined;
|
|
128941
|
+
backgroundColor?: {
|
|
128942
|
+
value: string;
|
|
130906
128943
|
} | null | undefined;
|
|
130907
128944
|
} | null | undefined;
|
|
130908
128945
|
}>>;
|
|
@@ -162094,16 +160131,16 @@ declare const IntegrationUserInfo: z.ZodObject<{
|
|
|
162094
160131
|
}, "strip", z.ZodTypeAny, {
|
|
162095
160132
|
id: string;
|
|
162096
160133
|
email?: string | undefined;
|
|
162097
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162098
160134
|
handle?: string | undefined;
|
|
162099
160135
|
avatarUrl?: string | undefined;
|
|
160136
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162100
160137
|
customUrl?: string | undefined;
|
|
162101
160138
|
}, {
|
|
162102
160139
|
id: string;
|
|
162103
160140
|
email?: string | undefined;
|
|
162104
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162105
160141
|
handle?: string | undefined;
|
|
162106
160142
|
avatarUrl?: string | undefined;
|
|
160143
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162107
160144
|
customUrl?: string | undefined;
|
|
162108
160145
|
}>;
|
|
162109
160146
|
type IntegrationUserInfo = z.infer<typeof IntegrationUserInfo>;
|
|
@@ -162118,16 +160155,16 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
162118
160155
|
}, "strip", z.ZodTypeAny, {
|
|
162119
160156
|
id: string;
|
|
162120
160157
|
email?: string | undefined;
|
|
162121
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162122
160158
|
handle?: string | undefined;
|
|
162123
160159
|
avatarUrl?: string | undefined;
|
|
160160
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162124
160161
|
customUrl?: string | undefined;
|
|
162125
160162
|
}, {
|
|
162126
160163
|
id: string;
|
|
162127
160164
|
email?: string | undefined;
|
|
162128
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162129
160165
|
handle?: string | undefined;
|
|
162130
160166
|
avatarUrl?: string | undefined;
|
|
160167
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162131
160168
|
customUrl?: string | undefined;
|
|
162132
160169
|
}>>;
|
|
162133
160170
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162140,16 +160177,16 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
162140
160177
|
}, "strip", z.ZodTypeAny, {
|
|
162141
160178
|
id: string;
|
|
162142
160179
|
email?: string | undefined;
|
|
162143
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162144
160180
|
handle?: string | undefined;
|
|
162145
160181
|
avatarUrl?: string | undefined;
|
|
160182
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162146
160183
|
customUrl?: string | undefined;
|
|
162147
160184
|
}, {
|
|
162148
160185
|
id: string;
|
|
162149
160186
|
email?: string | undefined;
|
|
162150
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162151
160187
|
handle?: string | undefined;
|
|
162152
160188
|
avatarUrl?: string | undefined;
|
|
160189
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162153
160190
|
customUrl?: string | undefined;
|
|
162154
160191
|
}>, "many">>;
|
|
162155
160192
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162162,16 +160199,16 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
162162
160199
|
}, "strip", z.ZodTypeAny, {
|
|
162163
160200
|
id: string;
|
|
162164
160201
|
email?: string | undefined;
|
|
162165
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162166
160202
|
handle?: string | undefined;
|
|
162167
160203
|
avatarUrl?: string | undefined;
|
|
160204
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162168
160205
|
customUrl?: string | undefined;
|
|
162169
160206
|
}, {
|
|
162170
160207
|
id: string;
|
|
162171
160208
|
email?: string | undefined;
|
|
162172
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162173
160209
|
handle?: string | undefined;
|
|
162174
160210
|
avatarUrl?: string | undefined;
|
|
160211
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162175
160212
|
customUrl?: string | undefined;
|
|
162176
160213
|
}>, "many">>;
|
|
162177
160214
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162184,16 +160221,16 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
162184
160221
|
}, "strip", z.ZodTypeAny, {
|
|
162185
160222
|
id: string;
|
|
162186
160223
|
email?: string | undefined;
|
|
162187
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162188
160224
|
handle?: string | undefined;
|
|
162189
160225
|
avatarUrl?: string | undefined;
|
|
160226
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162190
160227
|
customUrl?: string | undefined;
|
|
162191
160228
|
}, {
|
|
162192
160229
|
id: string;
|
|
162193
160230
|
email?: string | undefined;
|
|
162194
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162195
160231
|
handle?: string | undefined;
|
|
162196
160232
|
avatarUrl?: string | undefined;
|
|
160233
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162197
160234
|
customUrl?: string | undefined;
|
|
162198
160235
|
}>, "many">>;
|
|
162199
160236
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162206,98 +160243,98 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
162206
160243
|
}, "strip", z.ZodTypeAny, {
|
|
162207
160244
|
id: string;
|
|
162208
160245
|
email?: string | undefined;
|
|
162209
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162210
160246
|
handle?: string | undefined;
|
|
162211
160247
|
avatarUrl?: string | undefined;
|
|
160248
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162212
160249
|
customUrl?: string | undefined;
|
|
162213
160250
|
}, {
|
|
162214
160251
|
id: string;
|
|
162215
160252
|
email?: string | undefined;
|
|
162216
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162217
160253
|
handle?: string | undefined;
|
|
162218
160254
|
avatarUrl?: string | undefined;
|
|
160255
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162219
160256
|
customUrl?: string | undefined;
|
|
162220
160257
|
}>, "many">>;
|
|
162221
160258
|
}, "strip", z.ZodTypeAny, {
|
|
162222
160259
|
azure?: {
|
|
162223
160260
|
id: string;
|
|
162224
160261
|
email?: string | undefined;
|
|
162225
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162226
160262
|
handle?: string | undefined;
|
|
162227
160263
|
avatarUrl?: string | undefined;
|
|
160264
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162228
160265
|
customUrl?: string | undefined;
|
|
162229
160266
|
}[] | undefined;
|
|
162230
160267
|
github?: {
|
|
162231
160268
|
id: string;
|
|
162232
160269
|
email?: string | undefined;
|
|
162233
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162234
160270
|
handle?: string | undefined;
|
|
162235
160271
|
avatarUrl?: string | undefined;
|
|
160272
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162236
160273
|
customUrl?: string | undefined;
|
|
162237
160274
|
}[] | undefined;
|
|
162238
160275
|
gitlab?: {
|
|
162239
160276
|
id: string;
|
|
162240
160277
|
email?: string | undefined;
|
|
162241
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162242
160278
|
handle?: string | undefined;
|
|
162243
160279
|
avatarUrl?: string | undefined;
|
|
160280
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162244
160281
|
customUrl?: string | undefined;
|
|
162245
160282
|
}[] | undefined;
|
|
162246
160283
|
bitbucket?: {
|
|
162247
160284
|
id: string;
|
|
162248
160285
|
email?: string | undefined;
|
|
162249
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162250
160286
|
handle?: string | undefined;
|
|
162251
160287
|
avatarUrl?: string | undefined;
|
|
160288
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162252
160289
|
customUrl?: string | undefined;
|
|
162253
160290
|
}[] | undefined;
|
|
162254
160291
|
figma?: {
|
|
162255
160292
|
id: string;
|
|
162256
160293
|
email?: string | undefined;
|
|
162257
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162258
160294
|
handle?: string | undefined;
|
|
162259
160295
|
avatarUrl?: string | undefined;
|
|
160296
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162260
160297
|
customUrl?: string | undefined;
|
|
162261
160298
|
} | undefined;
|
|
162262
160299
|
}, {
|
|
162263
160300
|
azure?: {
|
|
162264
160301
|
id: string;
|
|
162265
160302
|
email?: string | undefined;
|
|
162266
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162267
160303
|
handle?: string | undefined;
|
|
162268
160304
|
avatarUrl?: string | undefined;
|
|
160305
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162269
160306
|
customUrl?: string | undefined;
|
|
162270
160307
|
}[] | undefined;
|
|
162271
160308
|
github?: {
|
|
162272
160309
|
id: string;
|
|
162273
160310
|
email?: string | undefined;
|
|
162274
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162275
160311
|
handle?: string | undefined;
|
|
162276
160312
|
avatarUrl?: string | undefined;
|
|
160313
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162277
160314
|
customUrl?: string | undefined;
|
|
162278
160315
|
}[] | undefined;
|
|
162279
160316
|
gitlab?: {
|
|
162280
160317
|
id: string;
|
|
162281
160318
|
email?: string | undefined;
|
|
162282
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162283
160319
|
handle?: string | undefined;
|
|
162284
160320
|
avatarUrl?: string | undefined;
|
|
160321
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162285
160322
|
customUrl?: string | undefined;
|
|
162286
160323
|
}[] | undefined;
|
|
162287
160324
|
bitbucket?: {
|
|
162288
160325
|
id: string;
|
|
162289
160326
|
email?: string | undefined;
|
|
162290
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162291
160327
|
handle?: string | undefined;
|
|
162292
160328
|
avatarUrl?: string | undefined;
|
|
160329
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162293
160330
|
customUrl?: string | undefined;
|
|
162294
160331
|
}[] | undefined;
|
|
162295
160332
|
figma?: {
|
|
162296
160333
|
id: string;
|
|
162297
160334
|
email?: string | undefined;
|
|
162298
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162299
160335
|
handle?: string | undefined;
|
|
162300
160336
|
avatarUrl?: string | undefined;
|
|
160337
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162301
160338
|
customUrl?: string | undefined;
|
|
162302
160339
|
} | undefined;
|
|
162303
160340
|
}>;
|
|
@@ -162719,16 +160756,16 @@ declare const User: z.ZodObject<{
|
|
|
162719
160756
|
}, "strip", z.ZodTypeAny, {
|
|
162720
160757
|
id: string;
|
|
162721
160758
|
email?: string | undefined;
|
|
162722
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162723
160759
|
handle?: string | undefined;
|
|
162724
160760
|
avatarUrl?: string | undefined;
|
|
160761
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162725
160762
|
customUrl?: string | undefined;
|
|
162726
160763
|
}, {
|
|
162727
160764
|
id: string;
|
|
162728
160765
|
email?: string | undefined;
|
|
162729
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162730
160766
|
handle?: string | undefined;
|
|
162731
160767
|
avatarUrl?: string | undefined;
|
|
160768
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162732
160769
|
customUrl?: string | undefined;
|
|
162733
160770
|
}>>;
|
|
162734
160771
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162741,16 +160778,16 @@ declare const User: z.ZodObject<{
|
|
|
162741
160778
|
}, "strip", z.ZodTypeAny, {
|
|
162742
160779
|
id: string;
|
|
162743
160780
|
email?: string | undefined;
|
|
162744
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162745
160781
|
handle?: string | undefined;
|
|
162746
160782
|
avatarUrl?: string | undefined;
|
|
160783
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162747
160784
|
customUrl?: string | undefined;
|
|
162748
160785
|
}, {
|
|
162749
160786
|
id: string;
|
|
162750
160787
|
email?: string | undefined;
|
|
162751
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162752
160788
|
handle?: string | undefined;
|
|
162753
160789
|
avatarUrl?: string | undefined;
|
|
160790
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162754
160791
|
customUrl?: string | undefined;
|
|
162755
160792
|
}>, "many">>;
|
|
162756
160793
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162763,16 +160800,16 @@ declare const User: z.ZodObject<{
|
|
|
162763
160800
|
}, "strip", z.ZodTypeAny, {
|
|
162764
160801
|
id: string;
|
|
162765
160802
|
email?: string | undefined;
|
|
162766
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162767
160803
|
handle?: string | undefined;
|
|
162768
160804
|
avatarUrl?: string | undefined;
|
|
160805
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162769
160806
|
customUrl?: string | undefined;
|
|
162770
160807
|
}, {
|
|
162771
160808
|
id: string;
|
|
162772
160809
|
email?: string | undefined;
|
|
162773
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162774
160810
|
handle?: string | undefined;
|
|
162775
160811
|
avatarUrl?: string | undefined;
|
|
160812
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162776
160813
|
customUrl?: string | undefined;
|
|
162777
160814
|
}>, "many">>;
|
|
162778
160815
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162785,16 +160822,16 @@ declare const User: z.ZodObject<{
|
|
|
162785
160822
|
}, "strip", z.ZodTypeAny, {
|
|
162786
160823
|
id: string;
|
|
162787
160824
|
email?: string | undefined;
|
|
162788
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162789
160825
|
handle?: string | undefined;
|
|
162790
160826
|
avatarUrl?: string | undefined;
|
|
160827
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162791
160828
|
customUrl?: string | undefined;
|
|
162792
160829
|
}, {
|
|
162793
160830
|
id: string;
|
|
162794
160831
|
email?: string | undefined;
|
|
162795
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162796
160832
|
handle?: string | undefined;
|
|
162797
160833
|
avatarUrl?: string | undefined;
|
|
160834
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162798
160835
|
customUrl?: string | undefined;
|
|
162799
160836
|
}>, "many">>;
|
|
162800
160837
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -162807,98 +160844,98 @@ declare const User: z.ZodObject<{
|
|
|
162807
160844
|
}, "strip", z.ZodTypeAny, {
|
|
162808
160845
|
id: string;
|
|
162809
160846
|
email?: string | undefined;
|
|
162810
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162811
160847
|
handle?: string | undefined;
|
|
162812
160848
|
avatarUrl?: string | undefined;
|
|
160849
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162813
160850
|
customUrl?: string | undefined;
|
|
162814
160851
|
}, {
|
|
162815
160852
|
id: string;
|
|
162816
160853
|
email?: string | undefined;
|
|
162817
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162818
160854
|
handle?: string | undefined;
|
|
162819
160855
|
avatarUrl?: string | undefined;
|
|
160856
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162820
160857
|
customUrl?: string | undefined;
|
|
162821
160858
|
}>, "many">>;
|
|
162822
160859
|
}, "strip", z.ZodTypeAny, {
|
|
162823
160860
|
azure?: {
|
|
162824
160861
|
id: string;
|
|
162825
160862
|
email?: string | undefined;
|
|
162826
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162827
160863
|
handle?: string | undefined;
|
|
162828
160864
|
avatarUrl?: string | undefined;
|
|
160865
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162829
160866
|
customUrl?: string | undefined;
|
|
162830
160867
|
}[] | undefined;
|
|
162831
160868
|
github?: {
|
|
162832
160869
|
id: string;
|
|
162833
160870
|
email?: string | undefined;
|
|
162834
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162835
160871
|
handle?: string | undefined;
|
|
162836
160872
|
avatarUrl?: string | undefined;
|
|
160873
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162837
160874
|
customUrl?: string | undefined;
|
|
162838
160875
|
}[] | undefined;
|
|
162839
160876
|
gitlab?: {
|
|
162840
160877
|
id: string;
|
|
162841
160878
|
email?: string | undefined;
|
|
162842
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162843
160879
|
handle?: string | undefined;
|
|
162844
160880
|
avatarUrl?: string | undefined;
|
|
160881
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162845
160882
|
customUrl?: string | undefined;
|
|
162846
160883
|
}[] | undefined;
|
|
162847
160884
|
bitbucket?: {
|
|
162848
160885
|
id: string;
|
|
162849
160886
|
email?: string | undefined;
|
|
162850
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162851
160887
|
handle?: string | undefined;
|
|
162852
160888
|
avatarUrl?: string | undefined;
|
|
160889
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162853
160890
|
customUrl?: string | undefined;
|
|
162854
160891
|
}[] | undefined;
|
|
162855
160892
|
figma?: {
|
|
162856
160893
|
id: string;
|
|
162857
160894
|
email?: string | undefined;
|
|
162858
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162859
160895
|
handle?: string | undefined;
|
|
162860
160896
|
avatarUrl?: string | undefined;
|
|
160897
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162861
160898
|
customUrl?: string | undefined;
|
|
162862
160899
|
} | undefined;
|
|
162863
160900
|
}, {
|
|
162864
160901
|
azure?: {
|
|
162865
160902
|
id: string;
|
|
162866
160903
|
email?: string | undefined;
|
|
162867
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162868
160904
|
handle?: string | undefined;
|
|
162869
160905
|
avatarUrl?: string | undefined;
|
|
160906
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162870
160907
|
customUrl?: string | undefined;
|
|
162871
160908
|
}[] | undefined;
|
|
162872
160909
|
github?: {
|
|
162873
160910
|
id: string;
|
|
162874
160911
|
email?: string | undefined;
|
|
162875
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162876
160912
|
handle?: string | undefined;
|
|
162877
160913
|
avatarUrl?: string | undefined;
|
|
160914
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162878
160915
|
customUrl?: string | undefined;
|
|
162879
160916
|
}[] | undefined;
|
|
162880
160917
|
gitlab?: {
|
|
162881
160918
|
id: string;
|
|
162882
160919
|
email?: string | undefined;
|
|
162883
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162884
160920
|
handle?: string | undefined;
|
|
162885
160921
|
avatarUrl?: string | undefined;
|
|
160922
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162886
160923
|
customUrl?: string | undefined;
|
|
162887
160924
|
}[] | undefined;
|
|
162888
160925
|
bitbucket?: {
|
|
162889
160926
|
id: string;
|
|
162890
160927
|
email?: string | undefined;
|
|
162891
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162892
160928
|
handle?: string | undefined;
|
|
162893
160929
|
avatarUrl?: string | undefined;
|
|
160930
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162894
160931
|
customUrl?: string | undefined;
|
|
162895
160932
|
}[] | undefined;
|
|
162896
160933
|
figma?: {
|
|
162897
160934
|
id: string;
|
|
162898
160935
|
email?: string | undefined;
|
|
162899
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162900
160936
|
handle?: string | undefined;
|
|
162901
160937
|
avatarUrl?: string | undefined;
|
|
160938
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162902
160939
|
customUrl?: string | undefined;
|
|
162903
160940
|
} | undefined;
|
|
162904
160941
|
}>>;
|
|
@@ -162934,41 +160971,41 @@ declare const User: z.ZodObject<{
|
|
|
162934
160971
|
azure?: {
|
|
162935
160972
|
id: string;
|
|
162936
160973
|
email?: string | undefined;
|
|
162937
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162938
160974
|
handle?: string | undefined;
|
|
162939
160975
|
avatarUrl?: string | undefined;
|
|
160976
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162940
160977
|
customUrl?: string | undefined;
|
|
162941
160978
|
}[] | undefined;
|
|
162942
160979
|
github?: {
|
|
162943
160980
|
id: string;
|
|
162944
160981
|
email?: string | undefined;
|
|
162945
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162946
160982
|
handle?: string | undefined;
|
|
162947
160983
|
avatarUrl?: string | undefined;
|
|
160984
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162948
160985
|
customUrl?: string | undefined;
|
|
162949
160986
|
}[] | undefined;
|
|
162950
160987
|
gitlab?: {
|
|
162951
160988
|
id: string;
|
|
162952
160989
|
email?: string | undefined;
|
|
162953
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162954
160990
|
handle?: string | undefined;
|
|
162955
160991
|
avatarUrl?: string | undefined;
|
|
160992
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162956
160993
|
customUrl?: string | undefined;
|
|
162957
160994
|
}[] | undefined;
|
|
162958
160995
|
bitbucket?: {
|
|
162959
160996
|
id: string;
|
|
162960
160997
|
email?: string | undefined;
|
|
162961
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162962
160998
|
handle?: string | undefined;
|
|
162963
160999
|
avatarUrl?: string | undefined;
|
|
161000
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162964
161001
|
customUrl?: string | undefined;
|
|
162965
161002
|
}[] | undefined;
|
|
162966
161003
|
figma?: {
|
|
162967
161004
|
id: string;
|
|
162968
161005
|
email?: string | undefined;
|
|
162969
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
162970
161006
|
handle?: string | undefined;
|
|
162971
161007
|
avatarUrl?: string | undefined;
|
|
161008
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
162972
161009
|
customUrl?: string | undefined;
|
|
162973
161010
|
} | undefined;
|
|
162974
161011
|
} | undefined;
|
|
@@ -163003,41 +161040,41 @@ declare const User: z.ZodObject<{
|
|
|
163003
161040
|
azure?: {
|
|
163004
161041
|
id: string;
|
|
163005
161042
|
email?: string | undefined;
|
|
163006
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
163007
161043
|
handle?: string | undefined;
|
|
163008
161044
|
avatarUrl?: string | undefined;
|
|
161045
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
163009
161046
|
customUrl?: string | undefined;
|
|
163010
161047
|
}[] | undefined;
|
|
163011
161048
|
github?: {
|
|
163012
161049
|
id: string;
|
|
163013
161050
|
email?: string | undefined;
|
|
163014
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
163015
161051
|
handle?: string | undefined;
|
|
163016
161052
|
avatarUrl?: string | undefined;
|
|
161053
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
163017
161054
|
customUrl?: string | undefined;
|
|
163018
161055
|
}[] | undefined;
|
|
163019
161056
|
gitlab?: {
|
|
163020
161057
|
id: string;
|
|
163021
161058
|
email?: string | undefined;
|
|
163022
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
163023
161059
|
handle?: string | undefined;
|
|
163024
161060
|
avatarUrl?: string | undefined;
|
|
161061
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
163025
161062
|
customUrl?: string | undefined;
|
|
163026
161063
|
}[] | undefined;
|
|
163027
161064
|
bitbucket?: {
|
|
163028
161065
|
id: string;
|
|
163029
161066
|
email?: string | undefined;
|
|
163030
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
163031
161067
|
handle?: string | undefined;
|
|
163032
161068
|
avatarUrl?: string | undefined;
|
|
161069
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
163033
161070
|
customUrl?: string | undefined;
|
|
163034
161071
|
}[] | undefined;
|
|
163035
161072
|
figma?: {
|
|
163036
161073
|
id: string;
|
|
163037
161074
|
email?: string | undefined;
|
|
163038
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
163039
161075
|
handle?: string | undefined;
|
|
163040
161076
|
avatarUrl?: string | undefined;
|
|
161077
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
163041
161078
|
customUrl?: string | undefined;
|
|
163042
161079
|
} | undefined;
|
|
163043
161080
|
} | undefined;
|
|
@@ -167297,6 +165334,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167297
165334
|
} | null | undefined>;
|
|
167298
165335
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
167299
165336
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
165337
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
167300
165338
|
createdAt: z.ZodDate;
|
|
167301
165339
|
updatedAt: z.ZodDate;
|
|
167302
165340
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -167313,6 +165351,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167313
165351
|
basePrefixes: string[];
|
|
167314
165352
|
isApprovalFeatureEnabled: boolean;
|
|
167315
165353
|
approvalRequiredForPublishing: boolean;
|
|
165354
|
+
accessMode: "Open" | "InviteOnly";
|
|
167316
165355
|
docExporterId?: string | undefined;
|
|
167317
165356
|
docUserSlug?: string | undefined;
|
|
167318
165357
|
docViewUrl?: string | undefined;
|
|
@@ -167334,6 +165373,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167334
165373
|
basePrefixes: string[];
|
|
167335
165374
|
isApprovalFeatureEnabled: boolean;
|
|
167336
165375
|
approvalRequiredForPublishing: boolean;
|
|
165376
|
+
accessMode: "Open" | "InviteOnly";
|
|
167337
165377
|
docExporterId?: string | null | undefined;
|
|
167338
165378
|
docUserSlug?: string | null | undefined;
|
|
167339
165379
|
docViewUrl?: string | null | undefined;
|
|
@@ -167357,6 +165397,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167357
165397
|
basePrefixes: string[];
|
|
167358
165398
|
isApprovalFeatureEnabled: boolean;
|
|
167359
165399
|
approvalRequiredForPublishing: boolean;
|
|
165400
|
+
accessMode: "Open" | "InviteOnly";
|
|
167360
165401
|
docExporterId?: string | undefined;
|
|
167361
165402
|
docUserSlug?: string | undefined;
|
|
167362
165403
|
docViewUrl?: string | undefined;
|
|
@@ -167583,6 +165624,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167583
165624
|
basePrefixes: string[];
|
|
167584
165625
|
isApprovalFeatureEnabled: boolean;
|
|
167585
165626
|
approvalRequiredForPublishing: boolean;
|
|
165627
|
+
accessMode: "Open" | "InviteOnly";
|
|
167586
165628
|
docExporterId?: string | null | undefined;
|
|
167587
165629
|
docUserSlug?: string | null | undefined;
|
|
167588
165630
|
docViewUrl?: string | null | undefined;
|
|
@@ -167797,4 +165839,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167797
165839
|
}>;
|
|
167798
165840
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
167799
165841
|
|
|
167800
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, 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 CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, 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, 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, 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, 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, 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, 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, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, 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 UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, 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, zodCreateInputOmit, zodUpdateInputOmit };
|
|
165842
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, 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 CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, 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, 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, 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, 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, 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, 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, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, 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 UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, 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, zodCreateInputOmit, zodUpdateInputOmit };
|