@supernova-studio/client 0.55.16 → 0.55.18
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 +343 -83
- package/dist/index.d.ts +343 -83
- package/dist/index.js +315 -231
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1304 -1220
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/collections/collection.ts +25 -0
- package/src/api/dto/collections/index.ts +1 -0
- package/src/api/dto/design-systems/design-system.ts +10 -0
- package/src/api/dto/design-systems/index.ts +1 -0
- package/src/api/dto/design-systems/members.ts +13 -0
- package/src/api/dto/design-systems/role.ts +11 -0
- package/src/api/dto/index.ts +1 -0
- package/src/api/endpoints/index.ts +1 -0
- package/src/api/endpoints/token-collections.ts +13 -0
package/dist/index.d.mts
CHANGED
|
@@ -2496,6 +2496,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2496
2496
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
2497
2497
|
}, "strip", z.ZodTypeAny, {
|
|
2498
2498
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2499
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2499
2500
|
workspace: {
|
|
2500
2501
|
id: string;
|
|
2501
2502
|
profile: {
|
|
@@ -2676,9 +2677,9 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2676
2677
|
password?: string | undefined;
|
|
2677
2678
|
} | undefined;
|
|
2678
2679
|
};
|
|
2679
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2680
2680
|
}, {
|
|
2681
2681
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2682
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2682
2683
|
workspace: {
|
|
2683
2684
|
id: string;
|
|
2684
2685
|
profile: {
|
|
@@ -2859,7 +2860,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2859
2860
|
password?: string | undefined;
|
|
2860
2861
|
} | undefined;
|
|
2861
2862
|
};
|
|
2862
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2863
2863
|
}>>;
|
|
2864
2864
|
designSystem: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
2865
2865
|
id: z.ZodString;
|
|
@@ -2870,7 +2870,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2870
2870
|
docSlug: z.ZodString;
|
|
2871
2871
|
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2872
2872
|
docSlugDeprecated: z.ZodString;
|
|
2873
|
-
isPublic: z.ZodBoolean;
|
|
2874
2873
|
isMultibrand: z.ZodBoolean;
|
|
2875
2874
|
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2876
2875
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
@@ -2908,6 +2907,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2908
2907
|
sources: z.ZodArray<z.ZodAny, "many">;
|
|
2909
2908
|
isAvailableToUser: z.ZodBoolean;
|
|
2910
2909
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
2910
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
2911
2911
|
}>, "strip", z.ZodTypeAny, {
|
|
2912
2912
|
id: string;
|
|
2913
2913
|
meta: {
|
|
@@ -2921,7 +2921,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2921
2921
|
docExporterId: string;
|
|
2922
2922
|
docSlug: string;
|
|
2923
2923
|
docSlugDeprecated: string;
|
|
2924
|
-
isPublic: boolean;
|
|
2925
2924
|
isMultibrand: boolean;
|
|
2926
2925
|
basePrefixes: string[];
|
|
2927
2926
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -2936,6 +2935,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2936
2935
|
designSystemIds: string[];
|
|
2937
2936
|
} | undefined;
|
|
2938
2937
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
2938
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
2939
2939
|
}, {
|
|
2940
2940
|
id: string;
|
|
2941
2941
|
meta: {
|
|
@@ -2949,7 +2949,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2949
2949
|
docExporterId: string;
|
|
2950
2950
|
docSlug: string;
|
|
2951
2951
|
docSlugDeprecated: string;
|
|
2952
|
-
isPublic: boolean;
|
|
2953
2952
|
isMultibrand: boolean;
|
|
2954
2953
|
basePrefixes: string[];
|
|
2955
2954
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -2964,6 +2963,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2964
2963
|
designSystemIds: string[];
|
|
2965
2964
|
} | null | undefined;
|
|
2966
2965
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
2966
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
2967
2967
|
}>>;
|
|
2968
2968
|
version: z.ZodOptional<z.ZodObject<{
|
|
2969
2969
|
id: z.ZodString;
|
|
@@ -3059,7 +3059,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3059
3059
|
docExporterId: string;
|
|
3060
3060
|
docSlug: string;
|
|
3061
3061
|
docSlugDeprecated: string;
|
|
3062
|
-
isPublic: boolean;
|
|
3063
3062
|
isMultibrand: boolean;
|
|
3064
3063
|
basePrefixes: string[];
|
|
3065
3064
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -3074,6 +3073,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3074
3073
|
designSystemIds: string[];
|
|
3075
3074
|
} | undefined;
|
|
3076
3075
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
3076
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
3077
3077
|
} | undefined;
|
|
3078
3078
|
version?: {
|
|
3079
3079
|
id: string;
|
|
@@ -3089,6 +3089,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3089
3089
|
} | undefined;
|
|
3090
3090
|
workspaceMembership?: {
|
|
3091
3091
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3092
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3092
3093
|
workspace: {
|
|
3093
3094
|
id: string;
|
|
3094
3095
|
profile: {
|
|
@@ -3269,7 +3270,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3269
3270
|
password?: string | undefined;
|
|
3270
3271
|
} | undefined;
|
|
3271
3272
|
};
|
|
3272
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3273
3273
|
} | undefined;
|
|
3274
3274
|
}, {
|
|
3275
3275
|
brand?: {
|
|
@@ -3294,7 +3294,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3294
3294
|
docExporterId: string;
|
|
3295
3295
|
docSlug: string;
|
|
3296
3296
|
docSlugDeprecated: string;
|
|
3297
|
-
isPublic: boolean;
|
|
3298
3297
|
isMultibrand: boolean;
|
|
3299
3298
|
basePrefixes: string[];
|
|
3300
3299
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -3309,6 +3308,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3309
3308
|
designSystemIds: string[];
|
|
3310
3309
|
} | null | undefined;
|
|
3311
3310
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
3311
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
3312
3312
|
} | undefined;
|
|
3313
3313
|
version?: {
|
|
3314
3314
|
id: string;
|
|
@@ -3324,6 +3324,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3324
3324
|
} | undefined;
|
|
3325
3325
|
workspaceMembership?: {
|
|
3326
3326
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3327
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3327
3328
|
workspace: {
|
|
3328
3329
|
id: string;
|
|
3329
3330
|
profile: {
|
|
@@ -3504,11 +3505,157 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3504
3505
|
password?: string | undefined;
|
|
3505
3506
|
} | undefined;
|
|
3506
3507
|
};
|
|
3507
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3508
3508
|
} | undefined;
|
|
3509
3509
|
}>;
|
|
3510
3510
|
type DTOAppBootstrapDataResponse = z.infer<typeof DTOAppBootstrapDataResponse>;
|
|
3511
3511
|
|
|
3512
|
+
declare const DTOTokenCollection: z.ZodObject<{
|
|
3513
|
+
id: z.ZodString;
|
|
3514
|
+
persistentId: z.ZodString;
|
|
3515
|
+
designSystemVersionId: z.ZodString;
|
|
3516
|
+
meta: z.ZodObject<{
|
|
3517
|
+
name: z.ZodString;
|
|
3518
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3519
|
+
}, "strip", z.ZodTypeAny, {
|
|
3520
|
+
name: string;
|
|
3521
|
+
description?: string | undefined;
|
|
3522
|
+
}, {
|
|
3523
|
+
name: string;
|
|
3524
|
+
description?: string | undefined;
|
|
3525
|
+
}>;
|
|
3526
|
+
createdAt: z.ZodDate;
|
|
3527
|
+
updatedAt: z.ZodDate;
|
|
3528
|
+
origin: z.ZodObject<{
|
|
3529
|
+
id: z.ZodString;
|
|
3530
|
+
sourceId: z.ZodString;
|
|
3531
|
+
}, "strip", z.ZodTypeAny, {
|
|
3532
|
+
id: string;
|
|
3533
|
+
sourceId: string;
|
|
3534
|
+
}, {
|
|
3535
|
+
id: string;
|
|
3536
|
+
sourceId: string;
|
|
3537
|
+
}>;
|
|
3538
|
+
}, "strip", z.ZodTypeAny, {
|
|
3539
|
+
id: string;
|
|
3540
|
+
persistentId: string;
|
|
3541
|
+
meta: {
|
|
3542
|
+
name: string;
|
|
3543
|
+
description?: string | undefined;
|
|
3544
|
+
};
|
|
3545
|
+
designSystemVersionId: string;
|
|
3546
|
+
createdAt: Date;
|
|
3547
|
+
updatedAt: Date;
|
|
3548
|
+
origin: {
|
|
3549
|
+
id: string;
|
|
3550
|
+
sourceId: string;
|
|
3551
|
+
};
|
|
3552
|
+
}, {
|
|
3553
|
+
id: string;
|
|
3554
|
+
persistentId: string;
|
|
3555
|
+
meta: {
|
|
3556
|
+
name: string;
|
|
3557
|
+
description?: string | undefined;
|
|
3558
|
+
};
|
|
3559
|
+
designSystemVersionId: string;
|
|
3560
|
+
createdAt: Date;
|
|
3561
|
+
updatedAt: Date;
|
|
3562
|
+
origin: {
|
|
3563
|
+
id: string;
|
|
3564
|
+
sourceId: string;
|
|
3565
|
+
};
|
|
3566
|
+
}>;
|
|
3567
|
+
type DTOTokenCollection = z.infer<typeof DTOTokenCollection>;
|
|
3568
|
+
declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
3569
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
3570
|
+
id: z.ZodString;
|
|
3571
|
+
persistentId: z.ZodString;
|
|
3572
|
+
designSystemVersionId: z.ZodString;
|
|
3573
|
+
meta: z.ZodObject<{
|
|
3574
|
+
name: z.ZodString;
|
|
3575
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3576
|
+
}, "strip", z.ZodTypeAny, {
|
|
3577
|
+
name: string;
|
|
3578
|
+
description?: string | undefined;
|
|
3579
|
+
}, {
|
|
3580
|
+
name: string;
|
|
3581
|
+
description?: string | undefined;
|
|
3582
|
+
}>;
|
|
3583
|
+
createdAt: z.ZodDate;
|
|
3584
|
+
updatedAt: z.ZodDate;
|
|
3585
|
+
origin: z.ZodObject<{
|
|
3586
|
+
id: z.ZodString;
|
|
3587
|
+
sourceId: z.ZodString;
|
|
3588
|
+
}, "strip", z.ZodTypeAny, {
|
|
3589
|
+
id: string;
|
|
3590
|
+
sourceId: string;
|
|
3591
|
+
}, {
|
|
3592
|
+
id: string;
|
|
3593
|
+
sourceId: string;
|
|
3594
|
+
}>;
|
|
3595
|
+
}, "strip", z.ZodTypeAny, {
|
|
3596
|
+
id: string;
|
|
3597
|
+
persistentId: string;
|
|
3598
|
+
meta: {
|
|
3599
|
+
name: string;
|
|
3600
|
+
description?: string | undefined;
|
|
3601
|
+
};
|
|
3602
|
+
designSystemVersionId: string;
|
|
3603
|
+
createdAt: Date;
|
|
3604
|
+
updatedAt: Date;
|
|
3605
|
+
origin: {
|
|
3606
|
+
id: string;
|
|
3607
|
+
sourceId: string;
|
|
3608
|
+
};
|
|
3609
|
+
}, {
|
|
3610
|
+
id: string;
|
|
3611
|
+
persistentId: string;
|
|
3612
|
+
meta: {
|
|
3613
|
+
name: string;
|
|
3614
|
+
description?: string | undefined;
|
|
3615
|
+
};
|
|
3616
|
+
designSystemVersionId: string;
|
|
3617
|
+
createdAt: Date;
|
|
3618
|
+
updatedAt: Date;
|
|
3619
|
+
origin: {
|
|
3620
|
+
id: string;
|
|
3621
|
+
sourceId: string;
|
|
3622
|
+
};
|
|
3623
|
+
}>, "many">;
|
|
3624
|
+
}, "strip", z.ZodTypeAny, {
|
|
3625
|
+
collections: {
|
|
3626
|
+
id: string;
|
|
3627
|
+
persistentId: string;
|
|
3628
|
+
meta: {
|
|
3629
|
+
name: string;
|
|
3630
|
+
description?: string | undefined;
|
|
3631
|
+
};
|
|
3632
|
+
designSystemVersionId: string;
|
|
3633
|
+
createdAt: Date;
|
|
3634
|
+
updatedAt: Date;
|
|
3635
|
+
origin: {
|
|
3636
|
+
id: string;
|
|
3637
|
+
sourceId: string;
|
|
3638
|
+
};
|
|
3639
|
+
}[];
|
|
3640
|
+
}, {
|
|
3641
|
+
collections: {
|
|
3642
|
+
id: string;
|
|
3643
|
+
persistentId: string;
|
|
3644
|
+
meta: {
|
|
3645
|
+
name: string;
|
|
3646
|
+
description?: string | undefined;
|
|
3647
|
+
};
|
|
3648
|
+
designSystemVersionId: string;
|
|
3649
|
+
createdAt: Date;
|
|
3650
|
+
updatedAt: Date;
|
|
3651
|
+
origin: {
|
|
3652
|
+
id: string;
|
|
3653
|
+
sourceId: string;
|
|
3654
|
+
};
|
|
3655
|
+
}[];
|
|
3656
|
+
}>;
|
|
3657
|
+
type DTOTokenCollectionsListReponse = z.infer<typeof DTOTokenCollectionsListReponse>;
|
|
3658
|
+
|
|
3512
3659
|
declare const DTOBrand: z.ZodObject<{
|
|
3513
3660
|
id: z.ZodString;
|
|
3514
3661
|
designSystemVersionId: z.ZodString;
|
|
@@ -7210,7 +7357,6 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7210
7357
|
docSlug: z.ZodString;
|
|
7211
7358
|
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7212
7359
|
docSlugDeprecated: z.ZodString;
|
|
7213
|
-
isPublic: z.ZodBoolean;
|
|
7214
7360
|
isMultibrand: z.ZodBoolean;
|
|
7215
7361
|
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7216
7362
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7251,7 +7397,15 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7251
7397
|
* has access to the design system's contents.
|
|
7252
7398
|
*/
|
|
7253
7399
|
isAvailableToUser: z.ZodBoolean;
|
|
7400
|
+
/**
|
|
7401
|
+
* @deprecated
|
|
7402
|
+
*/
|
|
7254
7403
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
7404
|
+
/**
|
|
7405
|
+
* User's role within the design system that can come either from
|
|
7406
|
+
* the design system or workspace.
|
|
7407
|
+
*/
|
|
7408
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7255
7409
|
}>, "strip", z.ZodTypeAny, {
|
|
7256
7410
|
id: string;
|
|
7257
7411
|
meta: {
|
|
@@ -7265,7 +7419,6 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7265
7419
|
docExporterId: string;
|
|
7266
7420
|
docSlug: string;
|
|
7267
7421
|
docSlugDeprecated: string;
|
|
7268
|
-
isPublic: boolean;
|
|
7269
7422
|
isMultibrand: boolean;
|
|
7270
7423
|
basePrefixes: string[];
|
|
7271
7424
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7280,6 +7433,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7280
7433
|
designSystemIds: string[];
|
|
7281
7434
|
} | undefined;
|
|
7282
7435
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7436
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7283
7437
|
}, {
|
|
7284
7438
|
id: string;
|
|
7285
7439
|
meta: {
|
|
@@ -7293,7 +7447,6 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7293
7447
|
docExporterId: string;
|
|
7294
7448
|
docSlug: string;
|
|
7295
7449
|
docSlugDeprecated: string;
|
|
7296
|
-
isPublic: boolean;
|
|
7297
7450
|
isMultibrand: boolean;
|
|
7298
7451
|
basePrefixes: string[];
|
|
7299
7452
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7308,6 +7461,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7308
7461
|
designSystemIds: string[];
|
|
7309
7462
|
} | null | undefined;
|
|
7310
7463
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7464
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7311
7465
|
}>;
|
|
7312
7466
|
type DTODesignSystem = z.infer<typeof DTODesignSystem>;
|
|
7313
7467
|
declare const DTODesignSystemResponse: z.ZodObject<{
|
|
@@ -7320,7 +7474,6 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7320
7474
|
docSlug: z.ZodString;
|
|
7321
7475
|
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7322
7476
|
docSlugDeprecated: z.ZodString;
|
|
7323
|
-
isPublic: z.ZodBoolean;
|
|
7324
7477
|
isMultibrand: z.ZodBoolean;
|
|
7325
7478
|
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7326
7479
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7361,7 +7514,15 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7361
7514
|
* has access to the design system's contents.
|
|
7362
7515
|
*/
|
|
7363
7516
|
isAvailableToUser: z.ZodBoolean;
|
|
7517
|
+
/**
|
|
7518
|
+
* @deprecated
|
|
7519
|
+
*/
|
|
7364
7520
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
7521
|
+
/**
|
|
7522
|
+
* User's role within the design system that can come either from
|
|
7523
|
+
* the design system or workspace.
|
|
7524
|
+
*/
|
|
7525
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7365
7526
|
}>, "strip", z.ZodTypeAny, {
|
|
7366
7527
|
id: string;
|
|
7367
7528
|
meta: {
|
|
@@ -7375,7 +7536,6 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7375
7536
|
docExporterId: string;
|
|
7376
7537
|
docSlug: string;
|
|
7377
7538
|
docSlugDeprecated: string;
|
|
7378
|
-
isPublic: boolean;
|
|
7379
7539
|
isMultibrand: boolean;
|
|
7380
7540
|
basePrefixes: string[];
|
|
7381
7541
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7390,6 +7550,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7390
7550
|
designSystemIds: string[];
|
|
7391
7551
|
} | undefined;
|
|
7392
7552
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7553
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7393
7554
|
}, {
|
|
7394
7555
|
id: string;
|
|
7395
7556
|
meta: {
|
|
@@ -7403,7 +7564,6 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7403
7564
|
docExporterId: string;
|
|
7404
7565
|
docSlug: string;
|
|
7405
7566
|
docSlugDeprecated: string;
|
|
7406
|
-
isPublic: boolean;
|
|
7407
7567
|
isMultibrand: boolean;
|
|
7408
7568
|
basePrefixes: string[];
|
|
7409
7569
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7418,6 +7578,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7418
7578
|
designSystemIds: string[];
|
|
7419
7579
|
} | null | undefined;
|
|
7420
7580
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7581
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7421
7582
|
}>;
|
|
7422
7583
|
}, "strip", z.ZodTypeAny, {
|
|
7423
7584
|
designSystem: {
|
|
@@ -7433,7 +7594,6 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7433
7594
|
docExporterId: string;
|
|
7434
7595
|
docSlug: string;
|
|
7435
7596
|
docSlugDeprecated: string;
|
|
7436
|
-
isPublic: boolean;
|
|
7437
7597
|
isMultibrand: boolean;
|
|
7438
7598
|
basePrefixes: string[];
|
|
7439
7599
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7448,6 +7608,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7448
7608
|
designSystemIds: string[];
|
|
7449
7609
|
} | undefined;
|
|
7450
7610
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7611
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7451
7612
|
};
|
|
7452
7613
|
}, {
|
|
7453
7614
|
designSystem: {
|
|
@@ -7463,7 +7624,6 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7463
7624
|
docExporterId: string;
|
|
7464
7625
|
docSlug: string;
|
|
7465
7626
|
docSlugDeprecated: string;
|
|
7466
|
-
isPublic: boolean;
|
|
7467
7627
|
isMultibrand: boolean;
|
|
7468
7628
|
basePrefixes: string[];
|
|
7469
7629
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7478,6 +7638,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7478
7638
|
designSystemIds: string[];
|
|
7479
7639
|
} | null | undefined;
|
|
7480
7640
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7641
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7481
7642
|
};
|
|
7482
7643
|
}>;
|
|
7483
7644
|
type DTODesignSystemResponse = z.infer<typeof DTODesignSystemResponse>;
|
|
@@ -7491,7 +7652,6 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7491
7652
|
docSlug: z.ZodString;
|
|
7492
7653
|
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7493
7654
|
docSlugDeprecated: z.ZodString;
|
|
7494
|
-
isPublic: z.ZodBoolean;
|
|
7495
7655
|
isMultibrand: z.ZodBoolean;
|
|
7496
7656
|
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7497
7657
|
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7532,7 +7692,15 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7532
7692
|
* has access to the design system's contents.
|
|
7533
7693
|
*/
|
|
7534
7694
|
isAvailableToUser: z.ZodBoolean;
|
|
7695
|
+
/**
|
|
7696
|
+
* @deprecated
|
|
7697
|
+
*/
|
|
7535
7698
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
7699
|
+
/**
|
|
7700
|
+
* User's role within the design system that can come either from
|
|
7701
|
+
* the design system or workspace.
|
|
7702
|
+
*/
|
|
7703
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7536
7704
|
}>, "strip", z.ZodTypeAny, {
|
|
7537
7705
|
id: string;
|
|
7538
7706
|
meta: {
|
|
@@ -7546,7 +7714,6 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7546
7714
|
docExporterId: string;
|
|
7547
7715
|
docSlug: string;
|
|
7548
7716
|
docSlugDeprecated: string;
|
|
7549
|
-
isPublic: boolean;
|
|
7550
7717
|
isMultibrand: boolean;
|
|
7551
7718
|
basePrefixes: string[];
|
|
7552
7719
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7561,6 +7728,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7561
7728
|
designSystemIds: string[];
|
|
7562
7729
|
} | undefined;
|
|
7563
7730
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7731
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7564
7732
|
}, {
|
|
7565
7733
|
id: string;
|
|
7566
7734
|
meta: {
|
|
@@ -7574,7 +7742,6 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7574
7742
|
docExporterId: string;
|
|
7575
7743
|
docSlug: string;
|
|
7576
7744
|
docSlugDeprecated: string;
|
|
7577
|
-
isPublic: boolean;
|
|
7578
7745
|
isMultibrand: boolean;
|
|
7579
7746
|
basePrefixes: string[];
|
|
7580
7747
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7589,6 +7756,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7589
7756
|
designSystemIds: string[];
|
|
7590
7757
|
} | null | undefined;
|
|
7591
7758
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7759
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7592
7760
|
}>, "many">;
|
|
7593
7761
|
}, "strip", z.ZodTypeAny, {
|
|
7594
7762
|
designSystems: {
|
|
@@ -7604,7 +7772,6 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7604
7772
|
docExporterId: string;
|
|
7605
7773
|
docSlug: string;
|
|
7606
7774
|
docSlugDeprecated: string;
|
|
7607
|
-
isPublic: boolean;
|
|
7608
7775
|
isMultibrand: boolean;
|
|
7609
7776
|
basePrefixes: string[];
|
|
7610
7777
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7619,6 +7786,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7619
7786
|
designSystemIds: string[];
|
|
7620
7787
|
} | undefined;
|
|
7621
7788
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7789
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7622
7790
|
}[];
|
|
7623
7791
|
}, {
|
|
7624
7792
|
designSystems: {
|
|
@@ -7634,7 +7802,6 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7634
7802
|
docExporterId: string;
|
|
7635
7803
|
docSlug: string;
|
|
7636
7804
|
docSlugDeprecated: string;
|
|
7637
|
-
isPublic: boolean;
|
|
7638
7805
|
isMultibrand: boolean;
|
|
7639
7806
|
basePrefixes: string[];
|
|
7640
7807
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -7649,6 +7816,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7649
7816
|
designSystemIds: string[];
|
|
7650
7817
|
} | null | undefined;
|
|
7651
7818
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7819
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7652
7820
|
}[];
|
|
7653
7821
|
}>;
|
|
7654
7822
|
type DTODesignSystemsListResponse = z.infer<typeof DTODesignSystemsListResponse>;
|
|
@@ -7670,51 +7838,66 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
|
|
|
7670
7838
|
invites: z.ZodOptional<z.ZodObject<Pick<{
|
|
7671
7839
|
usersToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7672
7840
|
userId: z.ZodString;
|
|
7841
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7673
7842
|
}, "strip", z.ZodTypeAny, {
|
|
7674
7843
|
userId: string;
|
|
7844
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7675
7845
|
}, {
|
|
7676
7846
|
userId: string;
|
|
7847
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7677
7848
|
}>, "many">>;
|
|
7678
7849
|
invitesToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7679
7850
|
inviteId: z.ZodString;
|
|
7851
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7680
7852
|
}, "strip", z.ZodTypeAny, {
|
|
7681
7853
|
inviteId: string;
|
|
7854
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7682
7855
|
}, {
|
|
7683
7856
|
inviteId: string;
|
|
7857
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7684
7858
|
}>, "many">>;
|
|
7685
7859
|
emailsToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7686
7860
|
email: z.ZodString;
|
|
7687
7861
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
7862
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7688
7863
|
}, "strip", z.ZodTypeAny, {
|
|
7689
7864
|
email: string;
|
|
7690
7865
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7866
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7691
7867
|
}, {
|
|
7692
7868
|
email: string;
|
|
7693
7869
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7870
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7694
7871
|
}>, "many">>;
|
|
7695
7872
|
removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7696
7873
|
deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7697
7874
|
}, "usersToInvite" | "invitesToInvite" | "emailsToInvite">, "strip", z.ZodTypeAny, {
|
|
7698
7875
|
usersToInvite?: {
|
|
7699
7876
|
userId: string;
|
|
7877
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7700
7878
|
}[] | undefined;
|
|
7701
7879
|
invitesToInvite?: {
|
|
7702
7880
|
inviteId: string;
|
|
7881
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7703
7882
|
}[] | undefined;
|
|
7704
7883
|
emailsToInvite?: {
|
|
7705
7884
|
email: string;
|
|
7706
7885
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7886
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7707
7887
|
}[] | undefined;
|
|
7708
7888
|
}, {
|
|
7709
7889
|
usersToInvite?: {
|
|
7710
7890
|
userId: string;
|
|
7891
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7711
7892
|
}[] | undefined;
|
|
7712
7893
|
invitesToInvite?: {
|
|
7713
7894
|
inviteId: string;
|
|
7895
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7714
7896
|
}[] | undefined;
|
|
7715
7897
|
emailsToInvite?: {
|
|
7716
7898
|
email: string;
|
|
7717
7899
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7900
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7718
7901
|
}[] | undefined;
|
|
7719
7902
|
}>>;
|
|
7720
7903
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7729,13 +7912,16 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
|
|
|
7729
7912
|
invites?: {
|
|
7730
7913
|
usersToInvite?: {
|
|
7731
7914
|
userId: string;
|
|
7915
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7732
7916
|
}[] | undefined;
|
|
7733
7917
|
invitesToInvite?: {
|
|
7734
7918
|
inviteId: string;
|
|
7919
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7735
7920
|
}[] | undefined;
|
|
7736
7921
|
emailsToInvite?: {
|
|
7737
7922
|
email: string;
|
|
7738
7923
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7924
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7739
7925
|
}[] | undefined;
|
|
7740
7926
|
} | undefined;
|
|
7741
7927
|
}, {
|
|
@@ -7750,13 +7936,16 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
|
|
|
7750
7936
|
invites?: {
|
|
7751
7937
|
usersToInvite?: {
|
|
7752
7938
|
userId: string;
|
|
7939
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7753
7940
|
}[] | undefined;
|
|
7754
7941
|
invitesToInvite?: {
|
|
7755
7942
|
inviteId: string;
|
|
7943
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7756
7944
|
}[] | undefined;
|
|
7757
7945
|
emailsToInvite?: {
|
|
7758
7946
|
email: string;
|
|
7759
7947
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7948
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7760
7949
|
}[] | undefined;
|
|
7761
7950
|
} | undefined;
|
|
7762
7951
|
}>;
|
|
@@ -7840,56 +8029,88 @@ type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListRes
|
|
|
7840
8029
|
|
|
7841
8030
|
declare const DTODesignSystemMember: z.ZodObject<{
|
|
7842
8031
|
userId: z.ZodString;
|
|
8032
|
+
/**
|
|
8033
|
+
* Role that the member has in the design system,
|
|
8034
|
+
* undefined if set to inherit from workspace
|
|
8035
|
+
*/
|
|
8036
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7843
8037
|
}, "strip", z.ZodTypeAny, {
|
|
7844
8038
|
userId: string;
|
|
8039
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7845
8040
|
}, {
|
|
7846
8041
|
userId: string;
|
|
8042
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7847
8043
|
}>;
|
|
7848
8044
|
type DTODesignSystemMember = z.infer<typeof DTODesignSystemMember>;
|
|
7849
8045
|
declare const DTODesignSystemInvitation: z.ZodObject<{
|
|
7850
8046
|
id: z.ZodString;
|
|
7851
8047
|
workspaceInvitationId: z.ZodString;
|
|
8048
|
+
/**
|
|
8049
|
+
* Role that the invitation has in the design system,
|
|
8050
|
+
* undefined if set to inherit from workspace
|
|
8051
|
+
*/
|
|
8052
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7852
8053
|
}, "strip", z.ZodTypeAny, {
|
|
7853
8054
|
id: string;
|
|
7854
8055
|
workspaceInvitationId: string;
|
|
8056
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7855
8057
|
}, {
|
|
7856
8058
|
id: string;
|
|
7857
8059
|
workspaceInvitationId: string;
|
|
8060
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7858
8061
|
}>;
|
|
7859
8062
|
type DTODesignSystemInvitation = z.infer<typeof DTODesignSystemInvitation>;
|
|
7860
8063
|
declare const DTODesignSystemMemberListResponse: z.ZodObject<{
|
|
7861
8064
|
members: z.ZodArray<z.ZodObject<{
|
|
7862
8065
|
userId: z.ZodString;
|
|
8066
|
+
/**
|
|
8067
|
+
* Role that the member has in the design system,
|
|
8068
|
+
* undefined if set to inherit from workspace
|
|
8069
|
+
*/
|
|
8070
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7863
8071
|
}, "strip", z.ZodTypeAny, {
|
|
7864
8072
|
userId: string;
|
|
8073
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7865
8074
|
}, {
|
|
7866
8075
|
userId: string;
|
|
8076
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7867
8077
|
}>, "many">;
|
|
7868
8078
|
invitations: z.ZodArray<z.ZodObject<{
|
|
7869
8079
|
id: z.ZodString;
|
|
7870
8080
|
workspaceInvitationId: z.ZodString;
|
|
8081
|
+
/**
|
|
8082
|
+
* Role that the invitation has in the design system,
|
|
8083
|
+
* undefined if set to inherit from workspace
|
|
8084
|
+
*/
|
|
8085
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7871
8086
|
}, "strip", z.ZodTypeAny, {
|
|
7872
8087
|
id: string;
|
|
7873
8088
|
workspaceInvitationId: string;
|
|
8089
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7874
8090
|
}, {
|
|
7875
8091
|
id: string;
|
|
7876
8092
|
workspaceInvitationId: string;
|
|
8093
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7877
8094
|
}>, "many">;
|
|
7878
8095
|
}, "strip", z.ZodTypeAny, {
|
|
7879
8096
|
members: {
|
|
7880
8097
|
userId: string;
|
|
8098
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7881
8099
|
}[];
|
|
7882
8100
|
invitations: {
|
|
7883
8101
|
id: string;
|
|
7884
8102
|
workspaceInvitationId: string;
|
|
8103
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7885
8104
|
}[];
|
|
7886
8105
|
}, {
|
|
7887
8106
|
members: {
|
|
7888
8107
|
userId: string;
|
|
8108
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7889
8109
|
}[];
|
|
7890
8110
|
invitations: {
|
|
7891
8111
|
id: string;
|
|
7892
8112
|
workspaceInvitationId: string;
|
|
8113
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7893
8114
|
}[];
|
|
7894
8115
|
}>;
|
|
7895
8116
|
type DTODesignSystemMemberListResponse = z.infer<typeof DTODesignSystemMemberListResponse>;
|
|
@@ -7904,59 +8125,77 @@ type DTODesignSystemMembersUpdateResponse = z.infer<typeof DTODesignSystemMember
|
|
|
7904
8125
|
declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
|
|
7905
8126
|
usersToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7906
8127
|
userId: z.ZodString;
|
|
8128
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7907
8129
|
}, "strip", z.ZodTypeAny, {
|
|
7908
8130
|
userId: string;
|
|
8131
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7909
8132
|
}, {
|
|
7910
8133
|
userId: string;
|
|
8134
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7911
8135
|
}>, "many">>;
|
|
7912
8136
|
invitesToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7913
8137
|
inviteId: z.ZodString;
|
|
8138
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7914
8139
|
}, "strip", z.ZodTypeAny, {
|
|
7915
8140
|
inviteId: string;
|
|
8141
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7916
8142
|
}, {
|
|
7917
8143
|
inviteId: string;
|
|
8144
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7918
8145
|
}>, "many">>;
|
|
7919
8146
|
emailsToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7920
8147
|
email: z.ZodString;
|
|
7921
8148
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
8149
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7922
8150
|
}, "strip", z.ZodTypeAny, {
|
|
7923
8151
|
email: string;
|
|
7924
8152
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8153
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7925
8154
|
}, {
|
|
7926
8155
|
email: string;
|
|
7927
8156
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8157
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7928
8158
|
}>, "many">>;
|
|
7929
8159
|
removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7930
8160
|
deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7931
8161
|
}, "strip", z.ZodTypeAny, {
|
|
7932
8162
|
usersToInvite?: {
|
|
7933
8163
|
userId: string;
|
|
8164
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7934
8165
|
}[] | undefined;
|
|
7935
8166
|
invitesToInvite?: {
|
|
7936
8167
|
inviteId: string;
|
|
8168
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7937
8169
|
}[] | undefined;
|
|
7938
8170
|
emailsToInvite?: {
|
|
7939
8171
|
email: string;
|
|
7940
8172
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8173
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7941
8174
|
}[] | undefined;
|
|
7942
8175
|
removeUserIds?: string[] | undefined;
|
|
7943
8176
|
deleteInvitationIds?: string[] | undefined;
|
|
7944
8177
|
}, {
|
|
7945
8178
|
usersToInvite?: {
|
|
7946
8179
|
userId: string;
|
|
8180
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7947
8181
|
}[] | undefined;
|
|
7948
8182
|
invitesToInvite?: {
|
|
7949
8183
|
inviteId: string;
|
|
8184
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7950
8185
|
}[] | undefined;
|
|
7951
8186
|
emailsToInvite?: {
|
|
7952
8187
|
email: string;
|
|
7953
8188
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8189
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7954
8190
|
}[] | undefined;
|
|
7955
8191
|
removeUserIds?: string[] | undefined;
|
|
7956
8192
|
deleteInvitationIds?: string[] | undefined;
|
|
7957
8193
|
}>;
|
|
7958
8194
|
type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
|
|
7959
8195
|
|
|
8196
|
+
declare const DTODesignSystemRole: z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>;
|
|
8197
|
+
type DTODesignSystemRole = z.infer<typeof DTODesignSystemRole>;
|
|
8198
|
+
|
|
7960
8199
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
7961
8200
|
jobId: z.ZodString;
|
|
7962
8201
|
designSystemId: z.ZodString;
|
|
@@ -36570,16 +36809,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36570
36809
|
}, "strip", z.ZodTypeAny, {
|
|
36571
36810
|
id: string;
|
|
36572
36811
|
email?: string | undefined;
|
|
36573
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36574
36812
|
handle?: string | undefined;
|
|
36575
36813
|
avatarUrl?: string | undefined;
|
|
36814
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36576
36815
|
customUrl?: string | undefined;
|
|
36577
36816
|
}, {
|
|
36578
36817
|
id: string;
|
|
36579
36818
|
email?: string | undefined;
|
|
36580
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36581
36819
|
handle?: string | undefined;
|
|
36582
36820
|
avatarUrl?: string | undefined;
|
|
36821
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36583
36822
|
customUrl?: string | undefined;
|
|
36584
36823
|
}>>;
|
|
36585
36824
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36592,16 +36831,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36592
36831
|
}, "strip", z.ZodTypeAny, {
|
|
36593
36832
|
id: string;
|
|
36594
36833
|
email?: string | undefined;
|
|
36595
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36596
36834
|
handle?: string | undefined;
|
|
36597
36835
|
avatarUrl?: string | undefined;
|
|
36836
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36598
36837
|
customUrl?: string | undefined;
|
|
36599
36838
|
}, {
|
|
36600
36839
|
id: string;
|
|
36601
36840
|
email?: string | undefined;
|
|
36602
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36603
36841
|
handle?: string | undefined;
|
|
36604
36842
|
avatarUrl?: string | undefined;
|
|
36843
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36605
36844
|
customUrl?: string | undefined;
|
|
36606
36845
|
}>, "many">>;
|
|
36607
36846
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36614,16 +36853,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36614
36853
|
}, "strip", z.ZodTypeAny, {
|
|
36615
36854
|
id: string;
|
|
36616
36855
|
email?: string | undefined;
|
|
36617
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36618
36856
|
handle?: string | undefined;
|
|
36619
36857
|
avatarUrl?: string | undefined;
|
|
36858
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36620
36859
|
customUrl?: string | undefined;
|
|
36621
36860
|
}, {
|
|
36622
36861
|
id: string;
|
|
36623
36862
|
email?: string | undefined;
|
|
36624
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36625
36863
|
handle?: string | undefined;
|
|
36626
36864
|
avatarUrl?: string | undefined;
|
|
36865
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36627
36866
|
customUrl?: string | undefined;
|
|
36628
36867
|
}>, "many">>;
|
|
36629
36868
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36636,16 +36875,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36636
36875
|
}, "strip", z.ZodTypeAny, {
|
|
36637
36876
|
id: string;
|
|
36638
36877
|
email?: string | undefined;
|
|
36639
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36640
36878
|
handle?: string | undefined;
|
|
36641
36879
|
avatarUrl?: string | undefined;
|
|
36880
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36642
36881
|
customUrl?: string | undefined;
|
|
36643
36882
|
}, {
|
|
36644
36883
|
id: string;
|
|
36645
36884
|
email?: string | undefined;
|
|
36646
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36647
36885
|
handle?: string | undefined;
|
|
36648
36886
|
avatarUrl?: string | undefined;
|
|
36887
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36649
36888
|
customUrl?: string | undefined;
|
|
36650
36889
|
}>, "many">>;
|
|
36651
36890
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36658,98 +36897,98 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36658
36897
|
}, "strip", z.ZodTypeAny, {
|
|
36659
36898
|
id: string;
|
|
36660
36899
|
email?: string | undefined;
|
|
36661
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36662
36900
|
handle?: string | undefined;
|
|
36663
36901
|
avatarUrl?: string | undefined;
|
|
36902
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36664
36903
|
customUrl?: string | undefined;
|
|
36665
36904
|
}, {
|
|
36666
36905
|
id: string;
|
|
36667
36906
|
email?: string | undefined;
|
|
36668
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36669
36907
|
handle?: string | undefined;
|
|
36670
36908
|
avatarUrl?: string | undefined;
|
|
36909
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36671
36910
|
customUrl?: string | undefined;
|
|
36672
36911
|
}>, "many">>;
|
|
36673
36912
|
}, "strip", z.ZodTypeAny, {
|
|
36674
36913
|
azure?: {
|
|
36675
36914
|
id: string;
|
|
36676
36915
|
email?: string | undefined;
|
|
36677
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36678
36916
|
handle?: string | undefined;
|
|
36679
36917
|
avatarUrl?: string | undefined;
|
|
36918
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36680
36919
|
customUrl?: string | undefined;
|
|
36681
36920
|
}[] | undefined;
|
|
36682
36921
|
github?: {
|
|
36683
36922
|
id: string;
|
|
36684
36923
|
email?: string | undefined;
|
|
36685
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36686
36924
|
handle?: string | undefined;
|
|
36687
36925
|
avatarUrl?: string | undefined;
|
|
36926
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36688
36927
|
customUrl?: string | undefined;
|
|
36689
36928
|
}[] | undefined;
|
|
36690
36929
|
gitlab?: {
|
|
36691
36930
|
id: string;
|
|
36692
36931
|
email?: string | undefined;
|
|
36693
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36694
36932
|
handle?: string | undefined;
|
|
36695
36933
|
avatarUrl?: string | undefined;
|
|
36934
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36696
36935
|
customUrl?: string | undefined;
|
|
36697
36936
|
}[] | undefined;
|
|
36698
36937
|
bitbucket?: {
|
|
36699
36938
|
id: string;
|
|
36700
36939
|
email?: string | undefined;
|
|
36701
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36702
36940
|
handle?: string | undefined;
|
|
36703
36941
|
avatarUrl?: string | undefined;
|
|
36942
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36704
36943
|
customUrl?: string | undefined;
|
|
36705
36944
|
}[] | undefined;
|
|
36706
36945
|
figma?: {
|
|
36707
36946
|
id: string;
|
|
36708
36947
|
email?: string | undefined;
|
|
36709
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36710
36948
|
handle?: string | undefined;
|
|
36711
36949
|
avatarUrl?: string | undefined;
|
|
36950
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36712
36951
|
customUrl?: string | undefined;
|
|
36713
36952
|
} | undefined;
|
|
36714
36953
|
}, {
|
|
36715
36954
|
azure?: {
|
|
36716
36955
|
id: string;
|
|
36717
36956
|
email?: string | undefined;
|
|
36718
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36719
36957
|
handle?: string | undefined;
|
|
36720
36958
|
avatarUrl?: string | undefined;
|
|
36959
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36721
36960
|
customUrl?: string | undefined;
|
|
36722
36961
|
}[] | undefined;
|
|
36723
36962
|
github?: {
|
|
36724
36963
|
id: string;
|
|
36725
36964
|
email?: string | undefined;
|
|
36726
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36727
36965
|
handle?: string | undefined;
|
|
36728
36966
|
avatarUrl?: string | undefined;
|
|
36967
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36729
36968
|
customUrl?: string | undefined;
|
|
36730
36969
|
}[] | undefined;
|
|
36731
36970
|
gitlab?: {
|
|
36732
36971
|
id: string;
|
|
36733
36972
|
email?: string | undefined;
|
|
36734
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36735
36973
|
handle?: string | undefined;
|
|
36736
36974
|
avatarUrl?: string | undefined;
|
|
36975
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36737
36976
|
customUrl?: string | undefined;
|
|
36738
36977
|
}[] | undefined;
|
|
36739
36978
|
bitbucket?: {
|
|
36740
36979
|
id: string;
|
|
36741
36980
|
email?: string | undefined;
|
|
36742
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36743
36981
|
handle?: string | undefined;
|
|
36744
36982
|
avatarUrl?: string | undefined;
|
|
36983
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36745
36984
|
customUrl?: string | undefined;
|
|
36746
36985
|
}[] | undefined;
|
|
36747
36986
|
figma?: {
|
|
36748
36987
|
id: string;
|
|
36749
36988
|
email?: string | undefined;
|
|
36750
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36751
36989
|
handle?: string | undefined;
|
|
36752
36990
|
avatarUrl?: string | undefined;
|
|
36991
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36753
36992
|
customUrl?: string | undefined;
|
|
36754
36993
|
} | undefined;
|
|
36755
36994
|
}>>;
|
|
@@ -36787,41 +37026,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36787
37026
|
azure?: {
|
|
36788
37027
|
id: string;
|
|
36789
37028
|
email?: string | undefined;
|
|
36790
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36791
37029
|
handle?: string | undefined;
|
|
36792
37030
|
avatarUrl?: string | undefined;
|
|
37031
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36793
37032
|
customUrl?: string | undefined;
|
|
36794
37033
|
}[] | undefined;
|
|
36795
37034
|
github?: {
|
|
36796
37035
|
id: string;
|
|
36797
37036
|
email?: string | undefined;
|
|
36798
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36799
37037
|
handle?: string | undefined;
|
|
36800
37038
|
avatarUrl?: string | undefined;
|
|
37039
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36801
37040
|
customUrl?: string | undefined;
|
|
36802
37041
|
}[] | undefined;
|
|
36803
37042
|
gitlab?: {
|
|
36804
37043
|
id: string;
|
|
36805
37044
|
email?: string | undefined;
|
|
36806
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36807
37045
|
handle?: string | undefined;
|
|
36808
37046
|
avatarUrl?: string | undefined;
|
|
37047
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36809
37048
|
customUrl?: string | undefined;
|
|
36810
37049
|
}[] | undefined;
|
|
36811
37050
|
bitbucket?: {
|
|
36812
37051
|
id: string;
|
|
36813
37052
|
email?: string | undefined;
|
|
36814
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36815
37053
|
handle?: string | undefined;
|
|
36816
37054
|
avatarUrl?: string | undefined;
|
|
37055
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36817
37056
|
customUrl?: string | undefined;
|
|
36818
37057
|
}[] | undefined;
|
|
36819
37058
|
figma?: {
|
|
36820
37059
|
id: string;
|
|
36821
37060
|
email?: string | undefined;
|
|
36822
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36823
37061
|
handle?: string | undefined;
|
|
36824
37062
|
avatarUrl?: string | undefined;
|
|
37063
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36825
37064
|
customUrl?: string | undefined;
|
|
36826
37065
|
} | undefined;
|
|
36827
37066
|
} | undefined;
|
|
@@ -36857,41 +37096,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36857
37096
|
azure?: {
|
|
36858
37097
|
id: string;
|
|
36859
37098
|
email?: string | undefined;
|
|
36860
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36861
37099
|
handle?: string | undefined;
|
|
36862
37100
|
avatarUrl?: string | undefined;
|
|
37101
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36863
37102
|
customUrl?: string | undefined;
|
|
36864
37103
|
}[] | undefined;
|
|
36865
37104
|
github?: {
|
|
36866
37105
|
id: string;
|
|
36867
37106
|
email?: string | undefined;
|
|
36868
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36869
37107
|
handle?: string | undefined;
|
|
36870
37108
|
avatarUrl?: string | undefined;
|
|
37109
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36871
37110
|
customUrl?: string | undefined;
|
|
36872
37111
|
}[] | undefined;
|
|
36873
37112
|
gitlab?: {
|
|
36874
37113
|
id: string;
|
|
36875
37114
|
email?: string | undefined;
|
|
36876
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36877
37115
|
handle?: string | undefined;
|
|
36878
37116
|
avatarUrl?: string | undefined;
|
|
37117
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36879
37118
|
customUrl?: string | undefined;
|
|
36880
37119
|
}[] | undefined;
|
|
36881
37120
|
bitbucket?: {
|
|
36882
37121
|
id: string;
|
|
36883
37122
|
email?: string | undefined;
|
|
36884
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36885
37123
|
handle?: string | undefined;
|
|
36886
37124
|
avatarUrl?: string | undefined;
|
|
37125
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36887
37126
|
customUrl?: string | undefined;
|
|
36888
37127
|
}[] | undefined;
|
|
36889
37128
|
figma?: {
|
|
36890
37129
|
id: string;
|
|
36891
37130
|
email?: string | undefined;
|
|
36892
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36893
37131
|
handle?: string | undefined;
|
|
36894
37132
|
avatarUrl?: string | undefined;
|
|
37133
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36895
37134
|
customUrl?: string | undefined;
|
|
36896
37135
|
} | undefined;
|
|
36897
37136
|
} | undefined;
|
|
@@ -36929,41 +37168,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36929
37168
|
azure?: {
|
|
36930
37169
|
id: string;
|
|
36931
37170
|
email?: string | undefined;
|
|
36932
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36933
37171
|
handle?: string | undefined;
|
|
36934
37172
|
avatarUrl?: string | undefined;
|
|
37173
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36935
37174
|
customUrl?: string | undefined;
|
|
36936
37175
|
}[] | undefined;
|
|
36937
37176
|
github?: {
|
|
36938
37177
|
id: string;
|
|
36939
37178
|
email?: string | undefined;
|
|
36940
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36941
37179
|
handle?: string | undefined;
|
|
36942
37180
|
avatarUrl?: string | undefined;
|
|
37181
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36943
37182
|
customUrl?: string | undefined;
|
|
36944
37183
|
}[] | undefined;
|
|
36945
37184
|
gitlab?: {
|
|
36946
37185
|
id: string;
|
|
36947
37186
|
email?: string | undefined;
|
|
36948
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36949
37187
|
handle?: string | undefined;
|
|
36950
37188
|
avatarUrl?: string | undefined;
|
|
37189
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36951
37190
|
customUrl?: string | undefined;
|
|
36952
37191
|
}[] | undefined;
|
|
36953
37192
|
bitbucket?: {
|
|
36954
37193
|
id: string;
|
|
36955
37194
|
email?: string | undefined;
|
|
36956
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36957
37195
|
handle?: string | undefined;
|
|
36958
37196
|
avatarUrl?: string | undefined;
|
|
37197
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36959
37198
|
customUrl?: string | undefined;
|
|
36960
37199
|
}[] | undefined;
|
|
36961
37200
|
figma?: {
|
|
36962
37201
|
id: string;
|
|
36963
37202
|
email?: string | undefined;
|
|
36964
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36965
37203
|
handle?: string | undefined;
|
|
36966
37204
|
avatarUrl?: string | undefined;
|
|
37205
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36967
37206
|
customUrl?: string | undefined;
|
|
36968
37207
|
} | undefined;
|
|
36969
37208
|
} | undefined;
|
|
@@ -37001,41 +37240,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
37001
37240
|
azure?: {
|
|
37002
37241
|
id: string;
|
|
37003
37242
|
email?: string | undefined;
|
|
37004
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37005
37243
|
handle?: string | undefined;
|
|
37006
37244
|
avatarUrl?: string | undefined;
|
|
37245
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37007
37246
|
customUrl?: string | undefined;
|
|
37008
37247
|
}[] | undefined;
|
|
37009
37248
|
github?: {
|
|
37010
37249
|
id: string;
|
|
37011
37250
|
email?: string | undefined;
|
|
37012
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37013
37251
|
handle?: string | undefined;
|
|
37014
37252
|
avatarUrl?: string | undefined;
|
|
37253
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37015
37254
|
customUrl?: string | undefined;
|
|
37016
37255
|
}[] | undefined;
|
|
37017
37256
|
gitlab?: {
|
|
37018
37257
|
id: string;
|
|
37019
37258
|
email?: string | undefined;
|
|
37020
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37021
37259
|
handle?: string | undefined;
|
|
37022
37260
|
avatarUrl?: string | undefined;
|
|
37261
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37023
37262
|
customUrl?: string | undefined;
|
|
37024
37263
|
}[] | undefined;
|
|
37025
37264
|
bitbucket?: {
|
|
37026
37265
|
id: string;
|
|
37027
37266
|
email?: string | undefined;
|
|
37028
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37029
37267
|
handle?: string | undefined;
|
|
37030
37268
|
avatarUrl?: string | undefined;
|
|
37269
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37031
37270
|
customUrl?: string | undefined;
|
|
37032
37271
|
}[] | undefined;
|
|
37033
37272
|
figma?: {
|
|
37034
37273
|
id: string;
|
|
37035
37274
|
email?: string | undefined;
|
|
37036
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37037
37275
|
handle?: string | undefined;
|
|
37038
37276
|
avatarUrl?: string | undefined;
|
|
37277
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37039
37278
|
customUrl?: string | undefined;
|
|
37040
37279
|
} | undefined;
|
|
37041
37280
|
} | undefined;
|
|
@@ -38313,16 +38552,16 @@ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
|
|
|
38313
38552
|
id: string;
|
|
38314
38553
|
createdAt: Date;
|
|
38315
38554
|
email: string;
|
|
38316
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38317
38555
|
workspaceId: string;
|
|
38556
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38318
38557
|
invitedBy: string;
|
|
38319
38558
|
resentAt?: Date | null | undefined;
|
|
38320
38559
|
}, {
|
|
38321
38560
|
id: string;
|
|
38322
38561
|
createdAt: Date;
|
|
38323
38562
|
email: string;
|
|
38324
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38325
38563
|
workspaceId: string;
|
|
38564
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38326
38565
|
invitedBy: string;
|
|
38327
38566
|
resentAt?: Date | null | undefined;
|
|
38328
38567
|
}>, "many">;
|
|
@@ -38331,8 +38570,8 @@ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
|
|
|
38331
38570
|
id: string;
|
|
38332
38571
|
createdAt: Date;
|
|
38333
38572
|
email: string;
|
|
38334
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38335
38573
|
workspaceId: string;
|
|
38574
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38336
38575
|
invitedBy: string;
|
|
38337
38576
|
resentAt?: Date | null | undefined;
|
|
38338
38577
|
}[];
|
|
@@ -38341,8 +38580,8 @@ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
|
|
|
38341
38580
|
id: string;
|
|
38342
38581
|
createdAt: Date;
|
|
38343
38582
|
email: string;
|
|
38344
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38345
38583
|
workspaceId: string;
|
|
38584
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38346
38585
|
invitedBy: string;
|
|
38347
38586
|
resentAt?: Date | null | undefined;
|
|
38348
38587
|
}[];
|
|
@@ -39690,6 +39929,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
39690
39929
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
39691
39930
|
}, "strip", z.ZodTypeAny, {
|
|
39692
39931
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39932
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39693
39933
|
workspace: {
|
|
39694
39934
|
id: string;
|
|
39695
39935
|
profile: {
|
|
@@ -39870,9 +40110,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
39870
40110
|
password?: string | undefined;
|
|
39871
40111
|
} | undefined;
|
|
39872
40112
|
};
|
|
39873
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39874
40113
|
}, {
|
|
39875
40114
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
40115
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39876
40116
|
workspace: {
|
|
39877
40117
|
id: string;
|
|
39878
40118
|
profile: {
|
|
@@ -40053,7 +40293,6 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
40053
40293
|
password?: string | undefined;
|
|
40054
40294
|
} | undefined;
|
|
40055
40295
|
};
|
|
40056
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
40057
40296
|
}>;
|
|
40058
40297
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
40059
40298
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -41396,6 +41635,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41396
41635
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
41397
41636
|
}, "strip", z.ZodTypeAny, {
|
|
41398
41637
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41638
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41399
41639
|
workspace: {
|
|
41400
41640
|
id: string;
|
|
41401
41641
|
profile: {
|
|
@@ -41576,9 +41816,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41576
41816
|
password?: string | undefined;
|
|
41577
41817
|
} | undefined;
|
|
41578
41818
|
};
|
|
41579
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41580
41819
|
}, {
|
|
41581
41820
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41821
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41582
41822
|
workspace: {
|
|
41583
41823
|
id: string;
|
|
41584
41824
|
profile: {
|
|
@@ -41759,11 +41999,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41759
41999
|
password?: string | undefined;
|
|
41760
42000
|
} | undefined;
|
|
41761
42001
|
};
|
|
41762
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41763
42002
|
}>, "many">;
|
|
41764
42003
|
}, "strip", z.ZodTypeAny, {
|
|
41765
42004
|
membership: {
|
|
41766
42005
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
42006
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41767
42007
|
workspace: {
|
|
41768
42008
|
id: string;
|
|
41769
42009
|
profile: {
|
|
@@ -41944,11 +42184,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41944
42184
|
password?: string | undefined;
|
|
41945
42185
|
} | undefined;
|
|
41946
42186
|
};
|
|
41947
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41948
42187
|
}[];
|
|
41949
42188
|
}, {
|
|
41950
42189
|
membership: {
|
|
41951
42190
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
42191
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41952
42192
|
workspace: {
|
|
41953
42193
|
id: string;
|
|
41954
42194
|
profile: {
|
|
@@ -42129,7 +42369,6 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
42129
42369
|
password?: string | undefined;
|
|
42130
42370
|
} | undefined;
|
|
42131
42371
|
};
|
|
42132
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
42133
42372
|
}[];
|
|
42134
42373
|
}>;
|
|
42135
42374
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
|
@@ -45295,10 +45534,12 @@ declare class DesignSystemMembersEndpoint {
|
|
|
45295
45534
|
list(dsId: string): Promise<{
|
|
45296
45535
|
members: {
|
|
45297
45536
|
userId: string;
|
|
45537
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
45298
45538
|
}[];
|
|
45299
45539
|
invitations: {
|
|
45300
45540
|
id: string;
|
|
45301
45541
|
workspaceInvitationId: string;
|
|
45542
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
45302
45543
|
}[];
|
|
45303
45544
|
}>;
|
|
45304
45545
|
update(dsId: string, body: DTODesignSystemMembersUpdatePayload): Promise<{
|
|
@@ -45361,7 +45602,6 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
45361
45602
|
docSlug: z.ZodOptional<z.ZodString>;
|
|
45362
45603
|
docUserSlug: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
45363
45604
|
docSlugDeprecated: z.ZodOptional<z.ZodString>;
|
|
45364
|
-
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
45365
45605
|
isMultibrand: z.ZodOptional<z.ZodBoolean>;
|
|
45366
45606
|
docViewUrl: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
45367
45607
|
basePrefixes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -45405,7 +45645,6 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
45405
45645
|
docExporterId?: string | undefined;
|
|
45406
45646
|
docUserSlug?: string | undefined;
|
|
45407
45647
|
docSlugDeprecated?: string | undefined;
|
|
45408
|
-
isPublic?: boolean | undefined;
|
|
45409
45648
|
isMultibrand?: boolean | undefined;
|
|
45410
45649
|
basePrefixes?: string[] | undefined;
|
|
45411
45650
|
designSystemSwitcher?: {
|
|
@@ -45425,7 +45664,6 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
45425
45664
|
docExporterId?: string | null | undefined;
|
|
45426
45665
|
docUserSlug?: string | null | undefined;
|
|
45427
45666
|
docSlugDeprecated?: string | undefined;
|
|
45428
|
-
isPublic?: boolean | undefined;
|
|
45429
45667
|
isMultibrand?: boolean | undefined;
|
|
45430
45668
|
basePrefixes?: string[] | undefined;
|
|
45431
45669
|
designSystemSwitcher?: {
|
|
@@ -47772,7 +48010,6 @@ declare class DesignSystemsEndpoint {
|
|
|
47772
48010
|
docExporterId: string;
|
|
47773
48011
|
docSlug: string;
|
|
47774
48012
|
docSlugDeprecated: string;
|
|
47775
|
-
isPublic: boolean;
|
|
47776
48013
|
isMultibrand: boolean;
|
|
47777
48014
|
basePrefixes: string[];
|
|
47778
48015
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -47787,6 +48024,7 @@ declare class DesignSystemsEndpoint {
|
|
|
47787
48024
|
designSystemIds: string[];
|
|
47788
48025
|
} | undefined;
|
|
47789
48026
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48027
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47790
48028
|
};
|
|
47791
48029
|
}>;
|
|
47792
48030
|
list(wsId: string): Promise<{
|
|
@@ -47803,7 +48041,6 @@ declare class DesignSystemsEndpoint {
|
|
|
47803
48041
|
docExporterId: string;
|
|
47804
48042
|
docSlug: string;
|
|
47805
48043
|
docSlugDeprecated: string;
|
|
47806
|
-
isPublic: boolean;
|
|
47807
48044
|
isMultibrand: boolean;
|
|
47808
48045
|
basePrefixes: string[];
|
|
47809
48046
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -47818,6 +48055,7 @@ declare class DesignSystemsEndpoint {
|
|
|
47818
48055
|
designSystemIds: string[];
|
|
47819
48056
|
} | undefined;
|
|
47820
48057
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48058
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47821
48059
|
}[];
|
|
47822
48060
|
}>;
|
|
47823
48061
|
get(dsId: string): Promise<any>;
|
|
@@ -47836,7 +48074,6 @@ declare class DesignSystemsEndpoint {
|
|
|
47836
48074
|
docExporterId: string;
|
|
47837
48075
|
docSlug: string;
|
|
47838
48076
|
docSlugDeprecated: string;
|
|
47839
|
-
isPublic: boolean;
|
|
47840
48077
|
isMultibrand: boolean;
|
|
47841
48078
|
basePrefixes: string[];
|
|
47842
48079
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -47851,6 +48088,7 @@ declare class DesignSystemsEndpoint {
|
|
|
47851
48088
|
designSystemIds: string[];
|
|
47852
48089
|
} | undefined;
|
|
47853
48090
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48091
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47854
48092
|
};
|
|
47855
48093
|
}>;
|
|
47856
48094
|
updateAccessMode(dsId: string, body: DTODesignSystemUpdateAccessModeInput): Promise<{
|
|
@@ -47867,7 +48105,6 @@ declare class DesignSystemsEndpoint {
|
|
|
47867
48105
|
docExporterId: string;
|
|
47868
48106
|
docSlug: string;
|
|
47869
48107
|
docSlugDeprecated: string;
|
|
47870
|
-
isPublic: boolean;
|
|
47871
48108
|
isMultibrand: boolean;
|
|
47872
48109
|
basePrefixes: string[];
|
|
47873
48110
|
isApprovalFeatureEnabled: boolean;
|
|
@@ -47882,10 +48119,33 @@ declare class DesignSystemsEndpoint {
|
|
|
47882
48119
|
designSystemIds: string[];
|
|
47883
48120
|
} | undefined;
|
|
47884
48121
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48122
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47885
48123
|
};
|
|
47886
48124
|
}>;
|
|
47887
48125
|
}
|
|
47888
48126
|
|
|
48127
|
+
declare class TokenCollectionsEndpoint {
|
|
48128
|
+
private readonly requestExecutor;
|
|
48129
|
+
constructor(requestExecutor: RequestExecutor);
|
|
48130
|
+
list(dsId: string, vId: string): Promise<{
|
|
48131
|
+
collections: {
|
|
48132
|
+
id: string;
|
|
48133
|
+
persistentId: string;
|
|
48134
|
+
meta: {
|
|
48135
|
+
name: string;
|
|
48136
|
+
description?: string | undefined;
|
|
48137
|
+
};
|
|
48138
|
+
designSystemVersionId: string;
|
|
48139
|
+
createdAt: Date;
|
|
48140
|
+
updatedAt: Date;
|
|
48141
|
+
origin: {
|
|
48142
|
+
id: string;
|
|
48143
|
+
sourceId: string;
|
|
48144
|
+
};
|
|
48145
|
+
}[];
|
|
48146
|
+
}>;
|
|
48147
|
+
}
|
|
48148
|
+
|
|
47889
48149
|
declare class UsersEndpoint {
|
|
47890
48150
|
private readonly requestExecutor;
|
|
47891
48151
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -47918,6 +48178,7 @@ declare class UsersEndpoint {
|
|
|
47918
48178
|
listWorkspaces(uid: string): Promise<{
|
|
47919
48179
|
membership: {
|
|
47920
48180
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48181
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
47921
48182
|
workspace: {
|
|
47922
48183
|
id: string;
|
|
47923
48184
|
profile: {
|
|
@@ -48098,7 +48359,6 @@ declare class UsersEndpoint {
|
|
|
48098
48359
|
password?: string | undefined;
|
|
48099
48360
|
} | undefined;
|
|
48100
48361
|
};
|
|
48101
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48102
48362
|
}[];
|
|
48103
48363
|
}>;
|
|
48104
48364
|
delete(uid: string): Promise<{
|
|
@@ -48176,8 +48436,8 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
48176
48436
|
id: string;
|
|
48177
48437
|
createdAt: Date;
|
|
48178
48438
|
email: string;
|
|
48179
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
48180
48439
|
workspaceId: string;
|
|
48440
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
48181
48441
|
invitedBy: string;
|
|
48182
48442
|
resentAt?: Date | null | undefined;
|
|
48183
48443
|
}[];
|
|
@@ -48372,6 +48632,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
48372
48632
|
list(workspaceId: string): Promise<{
|
|
48373
48633
|
membership: {
|
|
48374
48634
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48635
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48375
48636
|
workspace: {
|
|
48376
48637
|
id: string;
|
|
48377
48638
|
profile: {
|
|
@@ -48552,7 +48813,6 @@ declare class WorkspaceMembersEndpoint {
|
|
|
48552
48813
|
password?: string | undefined;
|
|
48553
48814
|
} | undefined;
|
|
48554
48815
|
};
|
|
48555
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48556
48816
|
}[];
|
|
48557
48817
|
}>;
|
|
48558
48818
|
update(workspaceId: string, body: UpdateMembershipRolesInput): Promise<{
|
|
@@ -51677,4 +51937,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
51677
51937
|
|
|
51678
51938
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
51679
51939
|
|
|
51680
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
51940
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, TokenCollectionsEndpoint, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|