@supernova-studio/client 0.53.2 → 0.53.4
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 +23 -17
- package/dist/index.d.ts +23 -17
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/workspaces/membership.ts +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -20097,6 +20097,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
20097
20097
|
}[];
|
|
20098
20098
|
}[];
|
|
20099
20099
|
} | null | undefined;
|
|
20100
|
+
imageAlt?: string | null | undefined;
|
|
20100
20101
|
numberOfColumns?: number | null | undefined;
|
|
20101
20102
|
designObjectId?: string | null | undefined;
|
|
20102
20103
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -20663,6 +20664,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
20663
20664
|
}[];
|
|
20664
20665
|
}[];
|
|
20665
20666
|
} | null | undefined;
|
|
20667
|
+
imageAlt?: string | null | undefined;
|
|
20666
20668
|
numberOfColumns?: number | null | undefined;
|
|
20667
20669
|
designObjectId?: string | null | undefined;
|
|
20668
20670
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -21453,6 +21455,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
21453
21455
|
}[];
|
|
21454
21456
|
}[];
|
|
21455
21457
|
} | null | undefined;
|
|
21458
|
+
imageAlt?: string | null | undefined;
|
|
21456
21459
|
numberOfColumns?: number | null | undefined;
|
|
21457
21460
|
designObjectId?: string | null | undefined;
|
|
21458
21461
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -21672,6 +21675,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
21672
21675
|
}[];
|
|
21673
21676
|
}[];
|
|
21674
21677
|
} | null | undefined;
|
|
21678
|
+
imageAlt?: string | null | undefined;
|
|
21675
21679
|
numberOfColumns?: number | null | undefined;
|
|
21676
21680
|
designObjectId?: string | null | undefined;
|
|
21677
21681
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -22009,6 +22013,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
22009
22013
|
}[];
|
|
22010
22014
|
}[];
|
|
22011
22015
|
} | null | undefined;
|
|
22016
|
+
imageAlt?: string | null | undefined;
|
|
22012
22017
|
numberOfColumns?: number | null | undefined;
|
|
22013
22018
|
designObjectId?: string | null | undefined;
|
|
22014
22019
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -22228,6 +22233,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
22228
22233
|
}[];
|
|
22229
22234
|
}[];
|
|
22230
22235
|
} | null | undefined;
|
|
22236
|
+
imageAlt?: string | null | undefined;
|
|
22231
22237
|
numberOfColumns?: number | null | undefined;
|
|
22232
22238
|
designObjectId?: string | null | undefined;
|
|
22233
22239
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -34237,7 +34243,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
34237
34243
|
}>;
|
|
34238
34244
|
type DTOIntegrationsGetListResponse = z.infer<typeof DTOIntegrationsGetListResponse>;
|
|
34239
34245
|
|
|
34240
|
-
declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
34246
|
+
declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
34241
34247
|
type DTOWorkspaceRole = z.infer<typeof DTOWorkspaceRole>;
|
|
34242
34248
|
declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
34243
34249
|
workspace: z.ZodObject<{
|
|
@@ -35531,10 +35537,10 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
35531
35537
|
password?: string | undefined;
|
|
35532
35538
|
} | undefined;
|
|
35533
35539
|
}>;
|
|
35534
|
-
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
35535
|
-
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
35540
|
+
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
35541
|
+
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
35536
35542
|
}, "strip", z.ZodTypeAny, {
|
|
35537
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35543
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35538
35544
|
workspace: {
|
|
35539
35545
|
id: string;
|
|
35540
35546
|
profile: {
|
|
@@ -35710,9 +35716,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
35710
35716
|
password?: string | undefined;
|
|
35711
35717
|
} | undefined;
|
|
35712
35718
|
};
|
|
35713
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35719
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35714
35720
|
}, {
|
|
35715
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35721
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35716
35722
|
workspace: {
|
|
35717
35723
|
id: string;
|
|
35718
35724
|
profile: {
|
|
@@ -35888,7 +35894,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
35888
35894
|
password?: string | undefined;
|
|
35889
35895
|
} | undefined;
|
|
35890
35896
|
};
|
|
35891
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35897
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35892
35898
|
}>;
|
|
35893
35899
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
35894
35900
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -37184,10 +37190,10 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37184
37190
|
password?: string | undefined;
|
|
37185
37191
|
} | undefined;
|
|
37186
37192
|
}>;
|
|
37187
|
-
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
37188
|
-
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
37193
|
+
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
37194
|
+
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
37189
37195
|
}, "strip", z.ZodTypeAny, {
|
|
37190
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37196
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37191
37197
|
workspace: {
|
|
37192
37198
|
id: string;
|
|
37193
37199
|
profile: {
|
|
@@ -37363,9 +37369,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37363
37369
|
password?: string | undefined;
|
|
37364
37370
|
} | undefined;
|
|
37365
37371
|
};
|
|
37366
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37372
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37367
37373
|
}, {
|
|
37368
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37374
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37369
37375
|
workspace: {
|
|
37370
37376
|
id: string;
|
|
37371
37377
|
profile: {
|
|
@@ -37541,11 +37547,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37541
37547
|
password?: string | undefined;
|
|
37542
37548
|
} | undefined;
|
|
37543
37549
|
};
|
|
37544
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37550
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37545
37551
|
}>, "many">;
|
|
37546
37552
|
}, "strip", z.ZodTypeAny, {
|
|
37547
37553
|
membership: {
|
|
37548
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37554
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37549
37555
|
workspace: {
|
|
37550
37556
|
id: string;
|
|
37551
37557
|
profile: {
|
|
@@ -37721,11 +37727,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37721
37727
|
password?: string | undefined;
|
|
37722
37728
|
} | undefined;
|
|
37723
37729
|
};
|
|
37724
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37730
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37725
37731
|
}[];
|
|
37726
37732
|
}, {
|
|
37727
37733
|
membership: {
|
|
37728
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37734
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37729
37735
|
workspace: {
|
|
37730
37736
|
id: string;
|
|
37731
37737
|
profile: {
|
|
@@ -37901,7 +37907,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37901
37907
|
password?: string | undefined;
|
|
37902
37908
|
} | undefined;
|
|
37903
37909
|
};
|
|
37904
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37910
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37905
37911
|
}[];
|
|
37906
37912
|
}>;
|
|
37907
37913
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
package/dist/index.d.ts
CHANGED
|
@@ -20097,6 +20097,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
20097
20097
|
}[];
|
|
20098
20098
|
}[];
|
|
20099
20099
|
} | null | undefined;
|
|
20100
|
+
imageAlt?: string | null | undefined;
|
|
20100
20101
|
numberOfColumns?: number | null | undefined;
|
|
20101
20102
|
designObjectId?: string | null | undefined;
|
|
20102
20103
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -20663,6 +20664,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
20663
20664
|
}[];
|
|
20664
20665
|
}[];
|
|
20665
20666
|
} | null | undefined;
|
|
20667
|
+
imageAlt?: string | null | undefined;
|
|
20666
20668
|
numberOfColumns?: number | null | undefined;
|
|
20667
20669
|
designObjectId?: string | null | undefined;
|
|
20668
20670
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -21453,6 +21455,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
21453
21455
|
}[];
|
|
21454
21456
|
}[];
|
|
21455
21457
|
} | null | undefined;
|
|
21458
|
+
imageAlt?: string | null | undefined;
|
|
21456
21459
|
numberOfColumns?: number | null | undefined;
|
|
21457
21460
|
designObjectId?: string | null | undefined;
|
|
21458
21461
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -21672,6 +21675,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
21672
21675
|
}[];
|
|
21673
21676
|
}[];
|
|
21674
21677
|
} | null | undefined;
|
|
21678
|
+
imageAlt?: string | null | undefined;
|
|
21675
21679
|
numberOfColumns?: number | null | undefined;
|
|
21676
21680
|
designObjectId?: string | null | undefined;
|
|
21677
21681
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -22009,6 +22013,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
22009
22013
|
}[];
|
|
22010
22014
|
}[];
|
|
22011
22015
|
} | null | undefined;
|
|
22016
|
+
imageAlt?: string | null | undefined;
|
|
22012
22017
|
numberOfColumns?: number | null | undefined;
|
|
22013
22018
|
designObjectId?: string | null | undefined;
|
|
22014
22019
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -22228,6 +22233,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
22228
22233
|
}[];
|
|
22229
22234
|
}[];
|
|
22230
22235
|
} | null | undefined;
|
|
22236
|
+
imageAlt?: string | null | undefined;
|
|
22231
22237
|
numberOfColumns?: number | null | undefined;
|
|
22232
22238
|
designObjectId?: string | null | undefined;
|
|
22233
22239
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -34237,7 +34243,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
34237
34243
|
}>;
|
|
34238
34244
|
type DTOIntegrationsGetListResponse = z.infer<typeof DTOIntegrationsGetListResponse>;
|
|
34239
34245
|
|
|
34240
|
-
declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
34246
|
+
declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
34241
34247
|
type DTOWorkspaceRole = z.infer<typeof DTOWorkspaceRole>;
|
|
34242
34248
|
declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
34243
34249
|
workspace: z.ZodObject<{
|
|
@@ -35531,10 +35537,10 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
35531
35537
|
password?: string | undefined;
|
|
35532
35538
|
} | undefined;
|
|
35533
35539
|
}>;
|
|
35534
|
-
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
35535
|
-
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
35540
|
+
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
35541
|
+
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
35536
35542
|
}, "strip", z.ZodTypeAny, {
|
|
35537
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35543
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35538
35544
|
workspace: {
|
|
35539
35545
|
id: string;
|
|
35540
35546
|
profile: {
|
|
@@ -35710,9 +35716,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
35710
35716
|
password?: string | undefined;
|
|
35711
35717
|
} | undefined;
|
|
35712
35718
|
};
|
|
35713
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35719
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35714
35720
|
}, {
|
|
35715
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35721
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35716
35722
|
workspace: {
|
|
35717
35723
|
id: string;
|
|
35718
35724
|
profile: {
|
|
@@ -35888,7 +35894,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
35888
35894
|
password?: string | undefined;
|
|
35889
35895
|
} | undefined;
|
|
35890
35896
|
};
|
|
35891
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
35897
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
35892
35898
|
}>;
|
|
35893
35899
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
35894
35900
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -37184,10 +37190,10 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37184
37190
|
password?: string | undefined;
|
|
37185
37191
|
} | undefined;
|
|
37186
37192
|
}>;
|
|
37187
|
-
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
37188
|
-
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
37193
|
+
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
37194
|
+
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
37189
37195
|
}, "strip", z.ZodTypeAny, {
|
|
37190
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37196
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37191
37197
|
workspace: {
|
|
37192
37198
|
id: string;
|
|
37193
37199
|
profile: {
|
|
@@ -37363,9 +37369,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37363
37369
|
password?: string | undefined;
|
|
37364
37370
|
} | undefined;
|
|
37365
37371
|
};
|
|
37366
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37372
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37367
37373
|
}, {
|
|
37368
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37374
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37369
37375
|
workspace: {
|
|
37370
37376
|
id: string;
|
|
37371
37377
|
profile: {
|
|
@@ -37541,11 +37547,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37541
37547
|
password?: string | undefined;
|
|
37542
37548
|
} | undefined;
|
|
37543
37549
|
};
|
|
37544
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37550
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37545
37551
|
}>, "many">;
|
|
37546
37552
|
}, "strip", z.ZodTypeAny, {
|
|
37547
37553
|
membership: {
|
|
37548
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37554
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37549
37555
|
workspace: {
|
|
37550
37556
|
id: string;
|
|
37551
37557
|
profile: {
|
|
@@ -37721,11 +37727,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37721
37727
|
password?: string | undefined;
|
|
37722
37728
|
} | undefined;
|
|
37723
37729
|
};
|
|
37724
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37730
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37725
37731
|
}[];
|
|
37726
37732
|
}, {
|
|
37727
37733
|
membership: {
|
|
37728
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37734
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37729
37735
|
workspace: {
|
|
37730
37736
|
id: string;
|
|
37731
37737
|
profile: {
|
|
@@ -37901,7 +37907,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
37901
37907
|
password?: string | undefined;
|
|
37902
37908
|
} | undefined;
|
|
37903
37909
|
};
|
|
37904
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
37910
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
37905
37911
|
}[];
|
|
37906
37912
|
}>;
|
|
37907
37913
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
package/dist/index.js
CHANGED
|
@@ -1794,6 +1794,7 @@ var PageBlockBaseV1 = _zod.z.object({
|
|
|
1794
1794
|
// Image
|
|
1795
1795
|
asset: nullishToOptional(PageBlockAsset),
|
|
1796
1796
|
alignment: nullishToOptional(PageBlockAlignment),
|
|
1797
|
+
imageAlt: nullishToOptional(_zod.z.string()),
|
|
1797
1798
|
// Shortcuts block
|
|
1798
1799
|
shortcuts: nullishToOptional(_zod.z.array(PageBlockShortcut)),
|
|
1799
1800
|
// Guidelines
|
|
@@ -4439,7 +4440,7 @@ var NpmPackage = AnyRecord.and(
|
|
|
4439
4440
|
var NpmProxyTokenPayload = _zod.z.object({
|
|
4440
4441
|
npmProxyRegistryConfigId: _zod.z.string()
|
|
4441
4442
|
});
|
|
4442
|
-
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]);
|
|
4443
|
+
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]);
|
|
4443
4444
|
var WorkspaceRole = WorkspaceRoleSchema.enum;
|
|
4444
4445
|
var MAX_MEMBERS_COUNT = 100;
|
|
4445
4446
|
var UserInvite = _zod.z.object({
|
|
@@ -6263,7 +6264,7 @@ var DTOWorkspace = _zod.z.object({
|
|
|
6263
6264
|
});
|
|
6264
6265
|
|
|
6265
6266
|
// src/api/dto/workspaces/membership.ts
|
|
6266
|
-
var DTOWorkspaceRole = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing"]);
|
|
6267
|
+
var DTOWorkspaceRole = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]);
|
|
6267
6268
|
var DTOUserWorkspaceMembership = _zod.z.object({
|
|
6268
6269
|
// Workspace the user is a member of
|
|
6269
6270
|
workspace: DTOWorkspace,
|