@supernova-studio/client 0.55.16 → 0.55.17
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 -58
- package/dist/index.d.ts +343 -58
- package/dist/index.js +315 -230
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1305 -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;
|
|
@@ -2908,6 +2908,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2908
2908
|
sources: z.ZodArray<z.ZodAny, "many">;
|
|
2909
2909
|
isAvailableToUser: z.ZodBoolean;
|
|
2910
2910
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
2911
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
2911
2912
|
}>, "strip", z.ZodTypeAny, {
|
|
2912
2913
|
id: string;
|
|
2913
2914
|
meta: {
|
|
@@ -2936,6 +2937,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2936
2937
|
designSystemIds: string[];
|
|
2937
2938
|
} | undefined;
|
|
2938
2939
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
2940
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
2939
2941
|
}, {
|
|
2940
2942
|
id: string;
|
|
2941
2943
|
meta: {
|
|
@@ -2964,6 +2966,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2964
2966
|
designSystemIds: string[];
|
|
2965
2967
|
} | null | undefined;
|
|
2966
2968
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
2969
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
2967
2970
|
}>>;
|
|
2968
2971
|
version: z.ZodOptional<z.ZodObject<{
|
|
2969
2972
|
id: z.ZodString;
|
|
@@ -3074,6 +3077,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3074
3077
|
designSystemIds: string[];
|
|
3075
3078
|
} | undefined;
|
|
3076
3079
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
3080
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
3077
3081
|
} | undefined;
|
|
3078
3082
|
version?: {
|
|
3079
3083
|
id: string;
|
|
@@ -3089,6 +3093,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3089
3093
|
} | undefined;
|
|
3090
3094
|
workspaceMembership?: {
|
|
3091
3095
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3096
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3092
3097
|
workspace: {
|
|
3093
3098
|
id: string;
|
|
3094
3099
|
profile: {
|
|
@@ -3269,7 +3274,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3269
3274
|
password?: string | undefined;
|
|
3270
3275
|
} | undefined;
|
|
3271
3276
|
};
|
|
3272
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3273
3277
|
} | undefined;
|
|
3274
3278
|
}, {
|
|
3275
3279
|
brand?: {
|
|
@@ -3309,6 +3313,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3309
3313
|
designSystemIds: string[];
|
|
3310
3314
|
} | null | undefined;
|
|
3311
3315
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
3316
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
3312
3317
|
} | undefined;
|
|
3313
3318
|
version?: {
|
|
3314
3319
|
id: string;
|
|
@@ -3324,6 +3329,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3324
3329
|
} | undefined;
|
|
3325
3330
|
workspaceMembership?: {
|
|
3326
3331
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3332
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3327
3333
|
workspace: {
|
|
3328
3334
|
id: string;
|
|
3329
3335
|
profile: {
|
|
@@ -3504,11 +3510,157 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3504
3510
|
password?: string | undefined;
|
|
3505
3511
|
} | undefined;
|
|
3506
3512
|
};
|
|
3507
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3508
3513
|
} | undefined;
|
|
3509
3514
|
}>;
|
|
3510
3515
|
type DTOAppBootstrapDataResponse = z.infer<typeof DTOAppBootstrapDataResponse>;
|
|
3511
3516
|
|
|
3517
|
+
declare const DTOTokenCollection: z.ZodObject<{
|
|
3518
|
+
id: z.ZodString;
|
|
3519
|
+
persistentId: z.ZodString;
|
|
3520
|
+
designSystemVersionId: z.ZodString;
|
|
3521
|
+
meta: z.ZodObject<{
|
|
3522
|
+
name: z.ZodString;
|
|
3523
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3524
|
+
}, "strip", z.ZodTypeAny, {
|
|
3525
|
+
name: string;
|
|
3526
|
+
description?: string | undefined;
|
|
3527
|
+
}, {
|
|
3528
|
+
name: string;
|
|
3529
|
+
description?: string | undefined;
|
|
3530
|
+
}>;
|
|
3531
|
+
createdAt: z.ZodDate;
|
|
3532
|
+
updatedAt: z.ZodDate;
|
|
3533
|
+
origin: z.ZodObject<{
|
|
3534
|
+
id: z.ZodString;
|
|
3535
|
+
sourceId: z.ZodString;
|
|
3536
|
+
}, "strip", z.ZodTypeAny, {
|
|
3537
|
+
id: string;
|
|
3538
|
+
sourceId: string;
|
|
3539
|
+
}, {
|
|
3540
|
+
id: string;
|
|
3541
|
+
sourceId: string;
|
|
3542
|
+
}>;
|
|
3543
|
+
}, "strip", z.ZodTypeAny, {
|
|
3544
|
+
id: string;
|
|
3545
|
+
persistentId: string;
|
|
3546
|
+
meta: {
|
|
3547
|
+
name: string;
|
|
3548
|
+
description?: string | undefined;
|
|
3549
|
+
};
|
|
3550
|
+
designSystemVersionId: string;
|
|
3551
|
+
createdAt: Date;
|
|
3552
|
+
updatedAt: Date;
|
|
3553
|
+
origin: {
|
|
3554
|
+
id: string;
|
|
3555
|
+
sourceId: string;
|
|
3556
|
+
};
|
|
3557
|
+
}, {
|
|
3558
|
+
id: string;
|
|
3559
|
+
persistentId: string;
|
|
3560
|
+
meta: {
|
|
3561
|
+
name: string;
|
|
3562
|
+
description?: string | undefined;
|
|
3563
|
+
};
|
|
3564
|
+
designSystemVersionId: string;
|
|
3565
|
+
createdAt: Date;
|
|
3566
|
+
updatedAt: Date;
|
|
3567
|
+
origin: {
|
|
3568
|
+
id: string;
|
|
3569
|
+
sourceId: string;
|
|
3570
|
+
};
|
|
3571
|
+
}>;
|
|
3572
|
+
type DTOTokenCollection = z.infer<typeof DTOTokenCollection>;
|
|
3573
|
+
declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
3574
|
+
collections: z.ZodArray<z.ZodObject<{
|
|
3575
|
+
id: z.ZodString;
|
|
3576
|
+
persistentId: z.ZodString;
|
|
3577
|
+
designSystemVersionId: z.ZodString;
|
|
3578
|
+
meta: z.ZodObject<{
|
|
3579
|
+
name: z.ZodString;
|
|
3580
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3581
|
+
}, "strip", z.ZodTypeAny, {
|
|
3582
|
+
name: string;
|
|
3583
|
+
description?: string | undefined;
|
|
3584
|
+
}, {
|
|
3585
|
+
name: string;
|
|
3586
|
+
description?: string | undefined;
|
|
3587
|
+
}>;
|
|
3588
|
+
createdAt: z.ZodDate;
|
|
3589
|
+
updatedAt: z.ZodDate;
|
|
3590
|
+
origin: z.ZodObject<{
|
|
3591
|
+
id: z.ZodString;
|
|
3592
|
+
sourceId: z.ZodString;
|
|
3593
|
+
}, "strip", z.ZodTypeAny, {
|
|
3594
|
+
id: string;
|
|
3595
|
+
sourceId: string;
|
|
3596
|
+
}, {
|
|
3597
|
+
id: string;
|
|
3598
|
+
sourceId: string;
|
|
3599
|
+
}>;
|
|
3600
|
+
}, "strip", z.ZodTypeAny, {
|
|
3601
|
+
id: string;
|
|
3602
|
+
persistentId: string;
|
|
3603
|
+
meta: {
|
|
3604
|
+
name: string;
|
|
3605
|
+
description?: string | undefined;
|
|
3606
|
+
};
|
|
3607
|
+
designSystemVersionId: string;
|
|
3608
|
+
createdAt: Date;
|
|
3609
|
+
updatedAt: Date;
|
|
3610
|
+
origin: {
|
|
3611
|
+
id: string;
|
|
3612
|
+
sourceId: string;
|
|
3613
|
+
};
|
|
3614
|
+
}, {
|
|
3615
|
+
id: string;
|
|
3616
|
+
persistentId: string;
|
|
3617
|
+
meta: {
|
|
3618
|
+
name: string;
|
|
3619
|
+
description?: string | undefined;
|
|
3620
|
+
};
|
|
3621
|
+
designSystemVersionId: string;
|
|
3622
|
+
createdAt: Date;
|
|
3623
|
+
updatedAt: Date;
|
|
3624
|
+
origin: {
|
|
3625
|
+
id: string;
|
|
3626
|
+
sourceId: string;
|
|
3627
|
+
};
|
|
3628
|
+
}>, "many">;
|
|
3629
|
+
}, "strip", z.ZodTypeAny, {
|
|
3630
|
+
collections: {
|
|
3631
|
+
id: string;
|
|
3632
|
+
persistentId: string;
|
|
3633
|
+
meta: {
|
|
3634
|
+
name: string;
|
|
3635
|
+
description?: string | undefined;
|
|
3636
|
+
};
|
|
3637
|
+
designSystemVersionId: string;
|
|
3638
|
+
createdAt: Date;
|
|
3639
|
+
updatedAt: Date;
|
|
3640
|
+
origin: {
|
|
3641
|
+
id: string;
|
|
3642
|
+
sourceId: string;
|
|
3643
|
+
};
|
|
3644
|
+
}[];
|
|
3645
|
+
}, {
|
|
3646
|
+
collections: {
|
|
3647
|
+
id: string;
|
|
3648
|
+
persistentId: string;
|
|
3649
|
+
meta: {
|
|
3650
|
+
name: string;
|
|
3651
|
+
description?: string | undefined;
|
|
3652
|
+
};
|
|
3653
|
+
designSystemVersionId: string;
|
|
3654
|
+
createdAt: Date;
|
|
3655
|
+
updatedAt: Date;
|
|
3656
|
+
origin: {
|
|
3657
|
+
id: string;
|
|
3658
|
+
sourceId: string;
|
|
3659
|
+
};
|
|
3660
|
+
}[];
|
|
3661
|
+
}>;
|
|
3662
|
+
type DTOTokenCollectionsListReponse = z.infer<typeof DTOTokenCollectionsListReponse>;
|
|
3663
|
+
|
|
3512
3664
|
declare const DTOBrand: z.ZodObject<{
|
|
3513
3665
|
id: z.ZodString;
|
|
3514
3666
|
designSystemVersionId: z.ZodString;
|
|
@@ -7251,7 +7403,15 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7251
7403
|
* has access to the design system's contents.
|
|
7252
7404
|
*/
|
|
7253
7405
|
isAvailableToUser: z.ZodBoolean;
|
|
7406
|
+
/**
|
|
7407
|
+
* @deprecated
|
|
7408
|
+
*/
|
|
7254
7409
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
7410
|
+
/**
|
|
7411
|
+
* User's role within the design system that can come either from
|
|
7412
|
+
* the design system or workspace.
|
|
7413
|
+
*/
|
|
7414
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7255
7415
|
}>, "strip", z.ZodTypeAny, {
|
|
7256
7416
|
id: string;
|
|
7257
7417
|
meta: {
|
|
@@ -7280,6 +7440,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7280
7440
|
designSystemIds: string[];
|
|
7281
7441
|
} | undefined;
|
|
7282
7442
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7443
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7283
7444
|
}, {
|
|
7284
7445
|
id: string;
|
|
7285
7446
|
meta: {
|
|
@@ -7308,6 +7469,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
7308
7469
|
designSystemIds: string[];
|
|
7309
7470
|
} | null | undefined;
|
|
7310
7471
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7472
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7311
7473
|
}>;
|
|
7312
7474
|
type DTODesignSystem = z.infer<typeof DTODesignSystem>;
|
|
7313
7475
|
declare const DTODesignSystemResponse: z.ZodObject<{
|
|
@@ -7361,7 +7523,15 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7361
7523
|
* has access to the design system's contents.
|
|
7362
7524
|
*/
|
|
7363
7525
|
isAvailableToUser: z.ZodBoolean;
|
|
7526
|
+
/**
|
|
7527
|
+
* @deprecated
|
|
7528
|
+
*/
|
|
7364
7529
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
7530
|
+
/**
|
|
7531
|
+
* User's role within the design system that can come either from
|
|
7532
|
+
* the design system or workspace.
|
|
7533
|
+
*/
|
|
7534
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7365
7535
|
}>, "strip", z.ZodTypeAny, {
|
|
7366
7536
|
id: string;
|
|
7367
7537
|
meta: {
|
|
@@ -7390,6 +7560,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7390
7560
|
designSystemIds: string[];
|
|
7391
7561
|
} | undefined;
|
|
7392
7562
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7563
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7393
7564
|
}, {
|
|
7394
7565
|
id: string;
|
|
7395
7566
|
meta: {
|
|
@@ -7418,6 +7589,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7418
7589
|
designSystemIds: string[];
|
|
7419
7590
|
} | null | undefined;
|
|
7420
7591
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7592
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7421
7593
|
}>;
|
|
7422
7594
|
}, "strip", z.ZodTypeAny, {
|
|
7423
7595
|
designSystem: {
|
|
@@ -7448,6 +7620,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7448
7620
|
designSystemIds: string[];
|
|
7449
7621
|
} | undefined;
|
|
7450
7622
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7623
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7451
7624
|
};
|
|
7452
7625
|
}, {
|
|
7453
7626
|
designSystem: {
|
|
@@ -7478,6 +7651,7 @@ declare const DTODesignSystemResponse: z.ZodObject<{
|
|
|
7478
7651
|
designSystemIds: string[];
|
|
7479
7652
|
} | null | undefined;
|
|
7480
7653
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7654
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7481
7655
|
};
|
|
7482
7656
|
}>;
|
|
7483
7657
|
type DTODesignSystemResponse = z.infer<typeof DTODesignSystemResponse>;
|
|
@@ -7532,7 +7706,15 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7532
7706
|
* has access to the design system's contents.
|
|
7533
7707
|
*/
|
|
7534
7708
|
isAvailableToUser: z.ZodBoolean;
|
|
7709
|
+
/**
|
|
7710
|
+
* @deprecated
|
|
7711
|
+
*/
|
|
7535
7712
|
role: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
7713
|
+
/**
|
|
7714
|
+
* User's role within the design system that can come either from
|
|
7715
|
+
* the design system or workspace.
|
|
7716
|
+
*/
|
|
7717
|
+
effectiveRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7536
7718
|
}>, "strip", z.ZodTypeAny, {
|
|
7537
7719
|
id: string;
|
|
7538
7720
|
meta: {
|
|
@@ -7561,6 +7743,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7561
7743
|
designSystemIds: string[];
|
|
7562
7744
|
} | undefined;
|
|
7563
7745
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7746
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7564
7747
|
}, {
|
|
7565
7748
|
id: string;
|
|
7566
7749
|
meta: {
|
|
@@ -7589,6 +7772,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7589
7772
|
designSystemIds: string[];
|
|
7590
7773
|
} | null | undefined;
|
|
7591
7774
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7775
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7592
7776
|
}>, "many">;
|
|
7593
7777
|
}, "strip", z.ZodTypeAny, {
|
|
7594
7778
|
designSystems: {
|
|
@@ -7619,6 +7803,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7619
7803
|
designSystemIds: string[];
|
|
7620
7804
|
} | undefined;
|
|
7621
7805
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7806
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7622
7807
|
}[];
|
|
7623
7808
|
}, {
|
|
7624
7809
|
designSystems: {
|
|
@@ -7649,6 +7834,7 @@ declare const DTODesignSystemsListResponse: z.ZodObject<{
|
|
|
7649
7834
|
designSystemIds: string[];
|
|
7650
7835
|
} | null | undefined;
|
|
7651
7836
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
7837
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7652
7838
|
}[];
|
|
7653
7839
|
}>;
|
|
7654
7840
|
type DTODesignSystemsListResponse = z.infer<typeof DTODesignSystemsListResponse>;
|
|
@@ -7670,51 +7856,66 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
|
|
|
7670
7856
|
invites: z.ZodOptional<z.ZodObject<Pick<{
|
|
7671
7857
|
usersToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7672
7858
|
userId: z.ZodString;
|
|
7859
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7673
7860
|
}, "strip", z.ZodTypeAny, {
|
|
7674
7861
|
userId: string;
|
|
7862
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7675
7863
|
}, {
|
|
7676
7864
|
userId: string;
|
|
7865
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7677
7866
|
}>, "many">>;
|
|
7678
7867
|
invitesToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7679
7868
|
inviteId: z.ZodString;
|
|
7869
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7680
7870
|
}, "strip", z.ZodTypeAny, {
|
|
7681
7871
|
inviteId: string;
|
|
7872
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7682
7873
|
}, {
|
|
7683
7874
|
inviteId: string;
|
|
7875
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7684
7876
|
}>, "many">>;
|
|
7685
7877
|
emailsToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7686
7878
|
email: z.ZodString;
|
|
7687
7879
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
7880
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7688
7881
|
}, "strip", z.ZodTypeAny, {
|
|
7689
7882
|
email: string;
|
|
7690
7883
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7884
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7691
7885
|
}, {
|
|
7692
7886
|
email: string;
|
|
7693
7887
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7888
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7694
7889
|
}>, "many">>;
|
|
7695
7890
|
removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7696
7891
|
deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7697
7892
|
}, "usersToInvite" | "invitesToInvite" | "emailsToInvite">, "strip", z.ZodTypeAny, {
|
|
7698
7893
|
usersToInvite?: {
|
|
7699
7894
|
userId: string;
|
|
7895
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7700
7896
|
}[] | undefined;
|
|
7701
7897
|
invitesToInvite?: {
|
|
7702
7898
|
inviteId: string;
|
|
7899
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7703
7900
|
}[] | undefined;
|
|
7704
7901
|
emailsToInvite?: {
|
|
7705
7902
|
email: string;
|
|
7706
7903
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7904
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7707
7905
|
}[] | undefined;
|
|
7708
7906
|
}, {
|
|
7709
7907
|
usersToInvite?: {
|
|
7710
7908
|
userId: string;
|
|
7909
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7711
7910
|
}[] | undefined;
|
|
7712
7911
|
invitesToInvite?: {
|
|
7713
7912
|
inviteId: string;
|
|
7913
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7714
7914
|
}[] | undefined;
|
|
7715
7915
|
emailsToInvite?: {
|
|
7716
7916
|
email: string;
|
|
7717
7917
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7918
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7718
7919
|
}[] | undefined;
|
|
7719
7920
|
}>>;
|
|
7720
7921
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7729,13 +7930,16 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
|
|
|
7729
7930
|
invites?: {
|
|
7730
7931
|
usersToInvite?: {
|
|
7731
7932
|
userId: string;
|
|
7933
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7732
7934
|
}[] | undefined;
|
|
7733
7935
|
invitesToInvite?: {
|
|
7734
7936
|
inviteId: string;
|
|
7937
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7735
7938
|
}[] | undefined;
|
|
7736
7939
|
emailsToInvite?: {
|
|
7737
7940
|
email: string;
|
|
7738
7941
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7942
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7739
7943
|
}[] | undefined;
|
|
7740
7944
|
} | undefined;
|
|
7741
7945
|
}, {
|
|
@@ -7750,13 +7954,16 @@ declare const DTODesignSystemCreateInput: z.ZodObject<{
|
|
|
7750
7954
|
invites?: {
|
|
7751
7955
|
usersToInvite?: {
|
|
7752
7956
|
userId: string;
|
|
7957
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7753
7958
|
}[] | undefined;
|
|
7754
7959
|
invitesToInvite?: {
|
|
7755
7960
|
inviteId: string;
|
|
7961
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7756
7962
|
}[] | undefined;
|
|
7757
7963
|
emailsToInvite?: {
|
|
7758
7964
|
email: string;
|
|
7759
7965
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
7966
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7760
7967
|
}[] | undefined;
|
|
7761
7968
|
} | undefined;
|
|
7762
7969
|
}>;
|
|
@@ -7840,56 +8047,88 @@ type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListRes
|
|
|
7840
8047
|
|
|
7841
8048
|
declare const DTODesignSystemMember: z.ZodObject<{
|
|
7842
8049
|
userId: z.ZodString;
|
|
8050
|
+
/**
|
|
8051
|
+
* Role that the member has in the design system,
|
|
8052
|
+
* undefined if set to inherit from workspace
|
|
8053
|
+
*/
|
|
8054
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7843
8055
|
}, "strip", z.ZodTypeAny, {
|
|
7844
8056
|
userId: string;
|
|
8057
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7845
8058
|
}, {
|
|
7846
8059
|
userId: string;
|
|
8060
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7847
8061
|
}>;
|
|
7848
8062
|
type DTODesignSystemMember = z.infer<typeof DTODesignSystemMember>;
|
|
7849
8063
|
declare const DTODesignSystemInvitation: z.ZodObject<{
|
|
7850
8064
|
id: z.ZodString;
|
|
7851
8065
|
workspaceInvitationId: z.ZodString;
|
|
8066
|
+
/**
|
|
8067
|
+
* Role that the invitation has in the design system,
|
|
8068
|
+
* undefined if set to inherit from workspace
|
|
8069
|
+
*/
|
|
8070
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7852
8071
|
}, "strip", z.ZodTypeAny, {
|
|
7853
8072
|
id: string;
|
|
7854
8073
|
workspaceInvitationId: string;
|
|
8074
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7855
8075
|
}, {
|
|
7856
8076
|
id: string;
|
|
7857
8077
|
workspaceInvitationId: string;
|
|
8078
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7858
8079
|
}>;
|
|
7859
8080
|
type DTODesignSystemInvitation = z.infer<typeof DTODesignSystemInvitation>;
|
|
7860
8081
|
declare const DTODesignSystemMemberListResponse: z.ZodObject<{
|
|
7861
8082
|
members: z.ZodArray<z.ZodObject<{
|
|
7862
8083
|
userId: z.ZodString;
|
|
8084
|
+
/**
|
|
8085
|
+
* Role that the member has in the design system,
|
|
8086
|
+
* undefined if set to inherit from workspace
|
|
8087
|
+
*/
|
|
8088
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7863
8089
|
}, "strip", z.ZodTypeAny, {
|
|
7864
8090
|
userId: string;
|
|
8091
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7865
8092
|
}, {
|
|
7866
8093
|
userId: string;
|
|
8094
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7867
8095
|
}>, "many">;
|
|
7868
8096
|
invitations: z.ZodArray<z.ZodObject<{
|
|
7869
8097
|
id: z.ZodString;
|
|
7870
8098
|
workspaceInvitationId: z.ZodString;
|
|
8099
|
+
/**
|
|
8100
|
+
* Role that the invitation has in the design system,
|
|
8101
|
+
* undefined if set to inherit from workspace
|
|
8102
|
+
*/
|
|
8103
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7871
8104
|
}, "strip", z.ZodTypeAny, {
|
|
7872
8105
|
id: string;
|
|
7873
8106
|
workspaceInvitationId: string;
|
|
8107
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7874
8108
|
}, {
|
|
7875
8109
|
id: string;
|
|
7876
8110
|
workspaceInvitationId: string;
|
|
8111
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7877
8112
|
}>, "many">;
|
|
7878
8113
|
}, "strip", z.ZodTypeAny, {
|
|
7879
8114
|
members: {
|
|
7880
8115
|
userId: string;
|
|
8116
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7881
8117
|
}[];
|
|
7882
8118
|
invitations: {
|
|
7883
8119
|
id: string;
|
|
7884
8120
|
workspaceInvitationId: string;
|
|
8121
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7885
8122
|
}[];
|
|
7886
8123
|
}, {
|
|
7887
8124
|
members: {
|
|
7888
8125
|
userId: string;
|
|
8126
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7889
8127
|
}[];
|
|
7890
8128
|
invitations: {
|
|
7891
8129
|
id: string;
|
|
7892
8130
|
workspaceInvitationId: string;
|
|
8131
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7893
8132
|
}[];
|
|
7894
8133
|
}>;
|
|
7895
8134
|
type DTODesignSystemMemberListResponse = z.infer<typeof DTODesignSystemMemberListResponse>;
|
|
@@ -7904,59 +8143,77 @@ type DTODesignSystemMembersUpdateResponse = z.infer<typeof DTODesignSystemMember
|
|
|
7904
8143
|
declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
|
|
7905
8144
|
usersToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7906
8145
|
userId: z.ZodString;
|
|
8146
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7907
8147
|
}, "strip", z.ZodTypeAny, {
|
|
7908
8148
|
userId: string;
|
|
8149
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7909
8150
|
}, {
|
|
7910
8151
|
userId: string;
|
|
8152
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7911
8153
|
}>, "many">>;
|
|
7912
8154
|
invitesToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7913
8155
|
inviteId: z.ZodString;
|
|
8156
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7914
8157
|
}, "strip", z.ZodTypeAny, {
|
|
7915
8158
|
inviteId: string;
|
|
8159
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7916
8160
|
}, {
|
|
7917
8161
|
inviteId: string;
|
|
8162
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7918
8163
|
}>, "many">>;
|
|
7919
8164
|
emailsToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7920
8165
|
email: z.ZodString;
|
|
7921
8166
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
8167
|
+
designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
7922
8168
|
}, "strip", z.ZodTypeAny, {
|
|
7923
8169
|
email: string;
|
|
7924
8170
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8171
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7925
8172
|
}, {
|
|
7926
8173
|
email: string;
|
|
7927
8174
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8175
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7928
8176
|
}>, "many">>;
|
|
7929
8177
|
removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7930
8178
|
deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7931
8179
|
}, "strip", z.ZodTypeAny, {
|
|
7932
8180
|
usersToInvite?: {
|
|
7933
8181
|
userId: string;
|
|
8182
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7934
8183
|
}[] | undefined;
|
|
7935
8184
|
invitesToInvite?: {
|
|
7936
8185
|
inviteId: string;
|
|
8186
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7937
8187
|
}[] | undefined;
|
|
7938
8188
|
emailsToInvite?: {
|
|
7939
8189
|
email: string;
|
|
7940
8190
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8191
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7941
8192
|
}[] | undefined;
|
|
7942
8193
|
removeUserIds?: string[] | undefined;
|
|
7943
8194
|
deleteInvitationIds?: string[] | undefined;
|
|
7944
8195
|
}, {
|
|
7945
8196
|
usersToInvite?: {
|
|
7946
8197
|
userId: string;
|
|
8198
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7947
8199
|
}[] | undefined;
|
|
7948
8200
|
invitesToInvite?: {
|
|
7949
8201
|
inviteId: string;
|
|
8202
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7950
8203
|
}[] | undefined;
|
|
7951
8204
|
emailsToInvite?: {
|
|
7952
8205
|
email: string;
|
|
7953
8206
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
8207
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
7954
8208
|
}[] | undefined;
|
|
7955
8209
|
removeUserIds?: string[] | undefined;
|
|
7956
8210
|
deleteInvitationIds?: string[] | undefined;
|
|
7957
8211
|
}>;
|
|
7958
8212
|
type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
|
|
7959
8213
|
|
|
8214
|
+
declare const DTODesignSystemRole: z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>;
|
|
8215
|
+
type DTODesignSystemRole = z.infer<typeof DTODesignSystemRole>;
|
|
8216
|
+
|
|
7960
8217
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
7961
8218
|
jobId: z.ZodString;
|
|
7962
8219
|
designSystemId: z.ZodString;
|
|
@@ -36570,16 +36827,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36570
36827
|
}, "strip", z.ZodTypeAny, {
|
|
36571
36828
|
id: string;
|
|
36572
36829
|
email?: string | undefined;
|
|
36573
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36574
36830
|
handle?: string | undefined;
|
|
36575
36831
|
avatarUrl?: string | undefined;
|
|
36832
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36576
36833
|
customUrl?: string | undefined;
|
|
36577
36834
|
}, {
|
|
36578
36835
|
id: string;
|
|
36579
36836
|
email?: string | undefined;
|
|
36580
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36581
36837
|
handle?: string | undefined;
|
|
36582
36838
|
avatarUrl?: string | undefined;
|
|
36839
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36583
36840
|
customUrl?: string | undefined;
|
|
36584
36841
|
}>>;
|
|
36585
36842
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36592,16 +36849,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36592
36849
|
}, "strip", z.ZodTypeAny, {
|
|
36593
36850
|
id: string;
|
|
36594
36851
|
email?: string | undefined;
|
|
36595
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36596
36852
|
handle?: string | undefined;
|
|
36597
36853
|
avatarUrl?: string | undefined;
|
|
36854
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36598
36855
|
customUrl?: string | undefined;
|
|
36599
36856
|
}, {
|
|
36600
36857
|
id: string;
|
|
36601
36858
|
email?: string | undefined;
|
|
36602
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36603
36859
|
handle?: string | undefined;
|
|
36604
36860
|
avatarUrl?: string | undefined;
|
|
36861
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36605
36862
|
customUrl?: string | undefined;
|
|
36606
36863
|
}>, "many">>;
|
|
36607
36864
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36614,16 +36871,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36614
36871
|
}, "strip", z.ZodTypeAny, {
|
|
36615
36872
|
id: string;
|
|
36616
36873
|
email?: string | undefined;
|
|
36617
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36618
36874
|
handle?: string | undefined;
|
|
36619
36875
|
avatarUrl?: string | undefined;
|
|
36876
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36620
36877
|
customUrl?: string | undefined;
|
|
36621
36878
|
}, {
|
|
36622
36879
|
id: string;
|
|
36623
36880
|
email?: string | undefined;
|
|
36624
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36625
36881
|
handle?: string | undefined;
|
|
36626
36882
|
avatarUrl?: string | undefined;
|
|
36883
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36627
36884
|
customUrl?: string | undefined;
|
|
36628
36885
|
}>, "many">>;
|
|
36629
36886
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36636,16 +36893,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36636
36893
|
}, "strip", z.ZodTypeAny, {
|
|
36637
36894
|
id: string;
|
|
36638
36895
|
email?: string | undefined;
|
|
36639
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36640
36896
|
handle?: string | undefined;
|
|
36641
36897
|
avatarUrl?: string | undefined;
|
|
36898
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36642
36899
|
customUrl?: string | undefined;
|
|
36643
36900
|
}, {
|
|
36644
36901
|
id: string;
|
|
36645
36902
|
email?: string | undefined;
|
|
36646
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36647
36903
|
handle?: string | undefined;
|
|
36648
36904
|
avatarUrl?: string | undefined;
|
|
36905
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36649
36906
|
customUrl?: string | undefined;
|
|
36650
36907
|
}>, "many">>;
|
|
36651
36908
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -36658,98 +36915,98 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36658
36915
|
}, "strip", z.ZodTypeAny, {
|
|
36659
36916
|
id: string;
|
|
36660
36917
|
email?: string | undefined;
|
|
36661
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36662
36918
|
handle?: string | undefined;
|
|
36663
36919
|
avatarUrl?: string | undefined;
|
|
36920
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36664
36921
|
customUrl?: string | undefined;
|
|
36665
36922
|
}, {
|
|
36666
36923
|
id: string;
|
|
36667
36924
|
email?: string | undefined;
|
|
36668
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36669
36925
|
handle?: string | undefined;
|
|
36670
36926
|
avatarUrl?: string | undefined;
|
|
36927
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36671
36928
|
customUrl?: string | undefined;
|
|
36672
36929
|
}>, "many">>;
|
|
36673
36930
|
}, "strip", z.ZodTypeAny, {
|
|
36674
36931
|
azure?: {
|
|
36675
36932
|
id: string;
|
|
36676
36933
|
email?: string | undefined;
|
|
36677
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36678
36934
|
handle?: string | undefined;
|
|
36679
36935
|
avatarUrl?: string | undefined;
|
|
36936
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36680
36937
|
customUrl?: string | undefined;
|
|
36681
36938
|
}[] | undefined;
|
|
36682
36939
|
github?: {
|
|
36683
36940
|
id: string;
|
|
36684
36941
|
email?: string | undefined;
|
|
36685
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36686
36942
|
handle?: string | undefined;
|
|
36687
36943
|
avatarUrl?: string | undefined;
|
|
36944
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36688
36945
|
customUrl?: string | undefined;
|
|
36689
36946
|
}[] | undefined;
|
|
36690
36947
|
gitlab?: {
|
|
36691
36948
|
id: string;
|
|
36692
36949
|
email?: string | undefined;
|
|
36693
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36694
36950
|
handle?: string | undefined;
|
|
36695
36951
|
avatarUrl?: string | undefined;
|
|
36952
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36696
36953
|
customUrl?: string | undefined;
|
|
36697
36954
|
}[] | undefined;
|
|
36698
36955
|
bitbucket?: {
|
|
36699
36956
|
id: string;
|
|
36700
36957
|
email?: string | undefined;
|
|
36701
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36702
36958
|
handle?: string | undefined;
|
|
36703
36959
|
avatarUrl?: string | undefined;
|
|
36960
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36704
36961
|
customUrl?: string | undefined;
|
|
36705
36962
|
}[] | undefined;
|
|
36706
36963
|
figma?: {
|
|
36707
36964
|
id: string;
|
|
36708
36965
|
email?: string | undefined;
|
|
36709
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36710
36966
|
handle?: string | undefined;
|
|
36711
36967
|
avatarUrl?: string | undefined;
|
|
36968
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36712
36969
|
customUrl?: string | undefined;
|
|
36713
36970
|
} | undefined;
|
|
36714
36971
|
}, {
|
|
36715
36972
|
azure?: {
|
|
36716
36973
|
id: string;
|
|
36717
36974
|
email?: string | undefined;
|
|
36718
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36719
36975
|
handle?: string | undefined;
|
|
36720
36976
|
avatarUrl?: string | undefined;
|
|
36977
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36721
36978
|
customUrl?: string | undefined;
|
|
36722
36979
|
}[] | undefined;
|
|
36723
36980
|
github?: {
|
|
36724
36981
|
id: string;
|
|
36725
36982
|
email?: string | undefined;
|
|
36726
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36727
36983
|
handle?: string | undefined;
|
|
36728
36984
|
avatarUrl?: string | undefined;
|
|
36985
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36729
36986
|
customUrl?: string | undefined;
|
|
36730
36987
|
}[] | undefined;
|
|
36731
36988
|
gitlab?: {
|
|
36732
36989
|
id: string;
|
|
36733
36990
|
email?: string | undefined;
|
|
36734
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36735
36991
|
handle?: string | undefined;
|
|
36736
36992
|
avatarUrl?: string | undefined;
|
|
36993
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36737
36994
|
customUrl?: string | undefined;
|
|
36738
36995
|
}[] | undefined;
|
|
36739
36996
|
bitbucket?: {
|
|
36740
36997
|
id: string;
|
|
36741
36998
|
email?: string | undefined;
|
|
36742
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36743
36999
|
handle?: string | undefined;
|
|
36744
37000
|
avatarUrl?: string | undefined;
|
|
37001
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36745
37002
|
customUrl?: string | undefined;
|
|
36746
37003
|
}[] | undefined;
|
|
36747
37004
|
figma?: {
|
|
36748
37005
|
id: string;
|
|
36749
37006
|
email?: string | undefined;
|
|
36750
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36751
37007
|
handle?: string | undefined;
|
|
36752
37008
|
avatarUrl?: string | undefined;
|
|
37009
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36753
37010
|
customUrl?: string | undefined;
|
|
36754
37011
|
} | undefined;
|
|
36755
37012
|
}>>;
|
|
@@ -36787,41 +37044,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36787
37044
|
azure?: {
|
|
36788
37045
|
id: string;
|
|
36789
37046
|
email?: string | undefined;
|
|
36790
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36791
37047
|
handle?: string | undefined;
|
|
36792
37048
|
avatarUrl?: string | undefined;
|
|
37049
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36793
37050
|
customUrl?: string | undefined;
|
|
36794
37051
|
}[] | undefined;
|
|
36795
37052
|
github?: {
|
|
36796
37053
|
id: string;
|
|
36797
37054
|
email?: string | undefined;
|
|
36798
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36799
37055
|
handle?: string | undefined;
|
|
36800
37056
|
avatarUrl?: string | undefined;
|
|
37057
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36801
37058
|
customUrl?: string | undefined;
|
|
36802
37059
|
}[] | undefined;
|
|
36803
37060
|
gitlab?: {
|
|
36804
37061
|
id: string;
|
|
36805
37062
|
email?: string | undefined;
|
|
36806
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36807
37063
|
handle?: string | undefined;
|
|
36808
37064
|
avatarUrl?: string | undefined;
|
|
37065
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36809
37066
|
customUrl?: string | undefined;
|
|
36810
37067
|
}[] | undefined;
|
|
36811
37068
|
bitbucket?: {
|
|
36812
37069
|
id: string;
|
|
36813
37070
|
email?: string | undefined;
|
|
36814
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36815
37071
|
handle?: string | undefined;
|
|
36816
37072
|
avatarUrl?: string | undefined;
|
|
37073
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36817
37074
|
customUrl?: string | undefined;
|
|
36818
37075
|
}[] | undefined;
|
|
36819
37076
|
figma?: {
|
|
36820
37077
|
id: string;
|
|
36821
37078
|
email?: string | undefined;
|
|
36822
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36823
37079
|
handle?: string | undefined;
|
|
36824
37080
|
avatarUrl?: string | undefined;
|
|
37081
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36825
37082
|
customUrl?: string | undefined;
|
|
36826
37083
|
} | undefined;
|
|
36827
37084
|
} | undefined;
|
|
@@ -36857,41 +37114,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36857
37114
|
azure?: {
|
|
36858
37115
|
id: string;
|
|
36859
37116
|
email?: string | undefined;
|
|
36860
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36861
37117
|
handle?: string | undefined;
|
|
36862
37118
|
avatarUrl?: string | undefined;
|
|
37119
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36863
37120
|
customUrl?: string | undefined;
|
|
36864
37121
|
}[] | undefined;
|
|
36865
37122
|
github?: {
|
|
36866
37123
|
id: string;
|
|
36867
37124
|
email?: string | undefined;
|
|
36868
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36869
37125
|
handle?: string | undefined;
|
|
36870
37126
|
avatarUrl?: string | undefined;
|
|
37127
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36871
37128
|
customUrl?: string | undefined;
|
|
36872
37129
|
}[] | undefined;
|
|
36873
37130
|
gitlab?: {
|
|
36874
37131
|
id: string;
|
|
36875
37132
|
email?: string | undefined;
|
|
36876
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36877
37133
|
handle?: string | undefined;
|
|
36878
37134
|
avatarUrl?: string | undefined;
|
|
37135
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36879
37136
|
customUrl?: string | undefined;
|
|
36880
37137
|
}[] | undefined;
|
|
36881
37138
|
bitbucket?: {
|
|
36882
37139
|
id: string;
|
|
36883
37140
|
email?: string | undefined;
|
|
36884
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36885
37141
|
handle?: string | undefined;
|
|
36886
37142
|
avatarUrl?: string | undefined;
|
|
37143
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36887
37144
|
customUrl?: string | undefined;
|
|
36888
37145
|
}[] | undefined;
|
|
36889
37146
|
figma?: {
|
|
36890
37147
|
id: string;
|
|
36891
37148
|
email?: string | undefined;
|
|
36892
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36893
37149
|
handle?: string | undefined;
|
|
36894
37150
|
avatarUrl?: string | undefined;
|
|
37151
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36895
37152
|
customUrl?: string | undefined;
|
|
36896
37153
|
} | undefined;
|
|
36897
37154
|
} | undefined;
|
|
@@ -36929,41 +37186,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
36929
37186
|
azure?: {
|
|
36930
37187
|
id: string;
|
|
36931
37188
|
email?: string | undefined;
|
|
36932
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36933
37189
|
handle?: string | undefined;
|
|
36934
37190
|
avatarUrl?: string | undefined;
|
|
37191
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36935
37192
|
customUrl?: string | undefined;
|
|
36936
37193
|
}[] | undefined;
|
|
36937
37194
|
github?: {
|
|
36938
37195
|
id: string;
|
|
36939
37196
|
email?: string | undefined;
|
|
36940
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36941
37197
|
handle?: string | undefined;
|
|
36942
37198
|
avatarUrl?: string | undefined;
|
|
37199
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36943
37200
|
customUrl?: string | undefined;
|
|
36944
37201
|
}[] | undefined;
|
|
36945
37202
|
gitlab?: {
|
|
36946
37203
|
id: string;
|
|
36947
37204
|
email?: string | undefined;
|
|
36948
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36949
37205
|
handle?: string | undefined;
|
|
36950
37206
|
avatarUrl?: string | undefined;
|
|
37207
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36951
37208
|
customUrl?: string | undefined;
|
|
36952
37209
|
}[] | undefined;
|
|
36953
37210
|
bitbucket?: {
|
|
36954
37211
|
id: string;
|
|
36955
37212
|
email?: string | undefined;
|
|
36956
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36957
37213
|
handle?: string | undefined;
|
|
36958
37214
|
avatarUrl?: string | undefined;
|
|
37215
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36959
37216
|
customUrl?: string | undefined;
|
|
36960
37217
|
}[] | undefined;
|
|
36961
37218
|
figma?: {
|
|
36962
37219
|
id: string;
|
|
36963
37220
|
email?: string | undefined;
|
|
36964
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
36965
37221
|
handle?: string | undefined;
|
|
36966
37222
|
avatarUrl?: string | undefined;
|
|
37223
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
36967
37224
|
customUrl?: string | undefined;
|
|
36968
37225
|
} | undefined;
|
|
36969
37226
|
} | undefined;
|
|
@@ -37001,41 +37258,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
37001
37258
|
azure?: {
|
|
37002
37259
|
id: string;
|
|
37003
37260
|
email?: string | undefined;
|
|
37004
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37005
37261
|
handle?: string | undefined;
|
|
37006
37262
|
avatarUrl?: string | undefined;
|
|
37263
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37007
37264
|
customUrl?: string | undefined;
|
|
37008
37265
|
}[] | undefined;
|
|
37009
37266
|
github?: {
|
|
37010
37267
|
id: string;
|
|
37011
37268
|
email?: string | undefined;
|
|
37012
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37013
37269
|
handle?: string | undefined;
|
|
37014
37270
|
avatarUrl?: string | undefined;
|
|
37271
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37015
37272
|
customUrl?: string | undefined;
|
|
37016
37273
|
}[] | undefined;
|
|
37017
37274
|
gitlab?: {
|
|
37018
37275
|
id: string;
|
|
37019
37276
|
email?: string | undefined;
|
|
37020
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37021
37277
|
handle?: string | undefined;
|
|
37022
37278
|
avatarUrl?: string | undefined;
|
|
37279
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37023
37280
|
customUrl?: string | undefined;
|
|
37024
37281
|
}[] | undefined;
|
|
37025
37282
|
bitbucket?: {
|
|
37026
37283
|
id: string;
|
|
37027
37284
|
email?: string | undefined;
|
|
37028
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37029
37285
|
handle?: string | undefined;
|
|
37030
37286
|
avatarUrl?: string | undefined;
|
|
37287
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37031
37288
|
customUrl?: string | undefined;
|
|
37032
37289
|
}[] | undefined;
|
|
37033
37290
|
figma?: {
|
|
37034
37291
|
id: string;
|
|
37035
37292
|
email?: string | undefined;
|
|
37036
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
37037
37293
|
handle?: string | undefined;
|
|
37038
37294
|
avatarUrl?: string | undefined;
|
|
37295
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
37039
37296
|
customUrl?: string | undefined;
|
|
37040
37297
|
} | undefined;
|
|
37041
37298
|
} | undefined;
|
|
@@ -38313,16 +38570,16 @@ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
|
|
|
38313
38570
|
id: string;
|
|
38314
38571
|
createdAt: Date;
|
|
38315
38572
|
email: string;
|
|
38316
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38317
38573
|
workspaceId: string;
|
|
38574
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38318
38575
|
invitedBy: string;
|
|
38319
38576
|
resentAt?: Date | null | undefined;
|
|
38320
38577
|
}, {
|
|
38321
38578
|
id: string;
|
|
38322
38579
|
createdAt: Date;
|
|
38323
38580
|
email: string;
|
|
38324
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38325
38581
|
workspaceId: string;
|
|
38582
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38326
38583
|
invitedBy: string;
|
|
38327
38584
|
resentAt?: Date | null | undefined;
|
|
38328
38585
|
}>, "many">;
|
|
@@ -38331,8 +38588,8 @@ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
|
|
|
38331
38588
|
id: string;
|
|
38332
38589
|
createdAt: Date;
|
|
38333
38590
|
email: string;
|
|
38334
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38335
38591
|
workspaceId: string;
|
|
38592
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38336
38593
|
invitedBy: string;
|
|
38337
38594
|
resentAt?: Date | null | undefined;
|
|
38338
38595
|
}[];
|
|
@@ -38341,8 +38598,8 @@ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
|
|
|
38341
38598
|
id: string;
|
|
38342
38599
|
createdAt: Date;
|
|
38343
38600
|
email: string;
|
|
38344
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38345
38601
|
workspaceId: string;
|
|
38602
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
38346
38603
|
invitedBy: string;
|
|
38347
38604
|
resentAt?: Date | null | undefined;
|
|
38348
38605
|
}[];
|
|
@@ -39690,6 +39947,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
39690
39947
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
39691
39948
|
}, "strip", z.ZodTypeAny, {
|
|
39692
39949
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39950
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39693
39951
|
workspace: {
|
|
39694
39952
|
id: string;
|
|
39695
39953
|
profile: {
|
|
@@ -39870,9 +40128,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
39870
40128
|
password?: string | undefined;
|
|
39871
40129
|
} | undefined;
|
|
39872
40130
|
};
|
|
39873
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39874
40131
|
}, {
|
|
39875
40132
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
40133
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
39876
40134
|
workspace: {
|
|
39877
40135
|
id: string;
|
|
39878
40136
|
profile: {
|
|
@@ -40053,7 +40311,6 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
40053
40311
|
password?: string | undefined;
|
|
40054
40312
|
} | undefined;
|
|
40055
40313
|
};
|
|
40056
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
40057
40314
|
}>;
|
|
40058
40315
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
40059
40316
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -41396,6 +41653,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41396
41653
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
41397
41654
|
}, "strip", z.ZodTypeAny, {
|
|
41398
41655
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41656
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41399
41657
|
workspace: {
|
|
41400
41658
|
id: string;
|
|
41401
41659
|
profile: {
|
|
@@ -41576,9 +41834,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41576
41834
|
password?: string | undefined;
|
|
41577
41835
|
} | undefined;
|
|
41578
41836
|
};
|
|
41579
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41580
41837
|
}, {
|
|
41581
41838
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41839
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41582
41840
|
workspace: {
|
|
41583
41841
|
id: string;
|
|
41584
41842
|
profile: {
|
|
@@ -41759,11 +42017,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41759
42017
|
password?: string | undefined;
|
|
41760
42018
|
} | undefined;
|
|
41761
42019
|
};
|
|
41762
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41763
42020
|
}>, "many">;
|
|
41764
42021
|
}, "strip", z.ZodTypeAny, {
|
|
41765
42022
|
membership: {
|
|
41766
42023
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
42024
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41767
42025
|
workspace: {
|
|
41768
42026
|
id: string;
|
|
41769
42027
|
profile: {
|
|
@@ -41944,11 +42202,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
41944
42202
|
password?: string | undefined;
|
|
41945
42203
|
} | undefined;
|
|
41946
42204
|
};
|
|
41947
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41948
42205
|
}[];
|
|
41949
42206
|
}, {
|
|
41950
42207
|
membership: {
|
|
41951
42208
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
42209
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
41952
42210
|
workspace: {
|
|
41953
42211
|
id: string;
|
|
41954
42212
|
profile: {
|
|
@@ -42129,7 +42387,6 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
42129
42387
|
password?: string | undefined;
|
|
42130
42388
|
} | undefined;
|
|
42131
42389
|
};
|
|
42132
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
42133
42390
|
}[];
|
|
42134
42391
|
}>;
|
|
42135
42392
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
|
@@ -45295,10 +45552,12 @@ declare class DesignSystemMembersEndpoint {
|
|
|
45295
45552
|
list(dsId: string): Promise<{
|
|
45296
45553
|
members: {
|
|
45297
45554
|
userId: string;
|
|
45555
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
45298
45556
|
}[];
|
|
45299
45557
|
invitations: {
|
|
45300
45558
|
id: string;
|
|
45301
45559
|
workspaceInvitationId: string;
|
|
45560
|
+
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
45302
45561
|
}[];
|
|
45303
45562
|
}>;
|
|
45304
45563
|
update(dsId: string, body: DTODesignSystemMembersUpdatePayload): Promise<{
|
|
@@ -47787,6 +48046,7 @@ declare class DesignSystemsEndpoint {
|
|
|
47787
48046
|
designSystemIds: string[];
|
|
47788
48047
|
} | undefined;
|
|
47789
48048
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48049
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47790
48050
|
};
|
|
47791
48051
|
}>;
|
|
47792
48052
|
list(wsId: string): Promise<{
|
|
@@ -47818,6 +48078,7 @@ declare class DesignSystemsEndpoint {
|
|
|
47818
48078
|
designSystemIds: string[];
|
|
47819
48079
|
} | undefined;
|
|
47820
48080
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48081
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47821
48082
|
}[];
|
|
47822
48083
|
}>;
|
|
47823
48084
|
get(dsId: string): Promise<any>;
|
|
@@ -47851,6 +48112,7 @@ declare class DesignSystemsEndpoint {
|
|
|
47851
48112
|
designSystemIds: string[];
|
|
47852
48113
|
} | undefined;
|
|
47853
48114
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48115
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47854
48116
|
};
|
|
47855
48117
|
}>;
|
|
47856
48118
|
updateAccessMode(dsId: string, body: DTODesignSystemUpdateAccessModeInput): Promise<{
|
|
@@ -47882,10 +48144,33 @@ declare class DesignSystemsEndpoint {
|
|
|
47882
48144
|
designSystemIds: string[];
|
|
47883
48145
|
} | undefined;
|
|
47884
48146
|
role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
48147
|
+
effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
47885
48148
|
};
|
|
47886
48149
|
}>;
|
|
47887
48150
|
}
|
|
47888
48151
|
|
|
48152
|
+
declare class TokenCollectionsEndpoint {
|
|
48153
|
+
private readonly requestExecutor;
|
|
48154
|
+
constructor(requestExecutor: RequestExecutor);
|
|
48155
|
+
list(dsId: string, vId: string): Promise<{
|
|
48156
|
+
collections: {
|
|
48157
|
+
id: string;
|
|
48158
|
+
persistentId: string;
|
|
48159
|
+
meta: {
|
|
48160
|
+
name: string;
|
|
48161
|
+
description?: string | undefined;
|
|
48162
|
+
};
|
|
48163
|
+
designSystemVersionId: string;
|
|
48164
|
+
createdAt: Date;
|
|
48165
|
+
updatedAt: Date;
|
|
48166
|
+
origin: {
|
|
48167
|
+
id: string;
|
|
48168
|
+
sourceId: string;
|
|
48169
|
+
};
|
|
48170
|
+
}[];
|
|
48171
|
+
}>;
|
|
48172
|
+
}
|
|
48173
|
+
|
|
47889
48174
|
declare class UsersEndpoint {
|
|
47890
48175
|
private readonly requestExecutor;
|
|
47891
48176
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -47918,6 +48203,7 @@ declare class UsersEndpoint {
|
|
|
47918
48203
|
listWorkspaces(uid: string): Promise<{
|
|
47919
48204
|
membership: {
|
|
47920
48205
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48206
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
47921
48207
|
workspace: {
|
|
47922
48208
|
id: string;
|
|
47923
48209
|
profile: {
|
|
@@ -48098,7 +48384,6 @@ declare class UsersEndpoint {
|
|
|
48098
48384
|
password?: string | undefined;
|
|
48099
48385
|
} | undefined;
|
|
48100
48386
|
};
|
|
48101
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48102
48387
|
}[];
|
|
48103
48388
|
}>;
|
|
48104
48389
|
delete(uid: string): Promise<{
|
|
@@ -48176,8 +48461,8 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
48176
48461
|
id: string;
|
|
48177
48462
|
createdAt: Date;
|
|
48178
48463
|
email: string;
|
|
48179
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
48180
48464
|
workspaceId: string;
|
|
48465
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
48181
48466
|
invitedBy: string;
|
|
48182
48467
|
resentAt?: Date | null | undefined;
|
|
48183
48468
|
}[];
|
|
@@ -48372,6 +48657,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
48372
48657
|
list(workspaceId: string): Promise<{
|
|
48373
48658
|
membership: {
|
|
48374
48659
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48660
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48375
48661
|
workspace: {
|
|
48376
48662
|
id: string;
|
|
48377
48663
|
profile: {
|
|
@@ -48552,7 +48838,6 @@ declare class WorkspaceMembersEndpoint {
|
|
|
48552
48838
|
password?: string | undefined;
|
|
48553
48839
|
} | undefined;
|
|
48554
48840
|
};
|
|
48555
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
48556
48841
|
}[];
|
|
48557
48842
|
}>;
|
|
48558
48843
|
update(workspaceId: string, body: UpdateMembershipRolesInput): Promise<{
|
|
@@ -51677,4 +51962,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
51677
51962
|
|
|
51678
51963
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
51679
51964
|
|
|
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 };
|
|
51965
|
+
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 };
|