@supernova-studio/client 0.57.16 → 0.57.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 +356 -176
- package/dist/index.d.ts +356 -176
- package/dist/index.js +82 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +931 -905
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/contact.ts +11 -0
- package/src/api/dto/design-systems/index.ts +1 -0
- package/src/api/endpoints/design-system/contact.ts +12 -0
- package/src/api/endpoints/design-system/design-systems.ts +3 -0
- package/src/api/endpoints/design-system/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -2538,8 +2538,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2538
2538
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
2539
2539
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
2540
2540
|
}, "strip", z.ZodTypeAny, {
|
|
2541
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2542
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2543
2541
|
workspace: {
|
|
2544
2542
|
id: string;
|
|
2545
2543
|
profile: {
|
|
@@ -2725,9 +2723,9 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2725
2723
|
password?: string | undefined;
|
|
2726
2724
|
} | undefined;
|
|
2727
2725
|
};
|
|
2728
|
-
}, {
|
|
2729
2726
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2730
2727
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2728
|
+
}, {
|
|
2731
2729
|
workspace: {
|
|
2732
2730
|
id: string;
|
|
2733
2731
|
profile: {
|
|
@@ -2913,6 +2911,8 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2913
2911
|
password?: string | undefined;
|
|
2914
2912
|
} | undefined;
|
|
2915
2913
|
};
|
|
2914
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2915
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
2916
2916
|
}>>;
|
|
2917
2917
|
designSystem: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
2918
2918
|
id: z.ZodString;
|
|
@@ -3145,8 +3145,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3145
3145
|
isReadonly: boolean;
|
|
3146
3146
|
} | undefined;
|
|
3147
3147
|
workspaceMembership?: {
|
|
3148
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3149
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3150
3148
|
workspace: {
|
|
3151
3149
|
id: string;
|
|
3152
3150
|
profile: {
|
|
@@ -3332,6 +3330,8 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3332
3330
|
password?: string | undefined;
|
|
3333
3331
|
} | undefined;
|
|
3334
3332
|
};
|
|
3333
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3334
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3335
3335
|
} | undefined;
|
|
3336
3336
|
}, {
|
|
3337
3337
|
brand?: {
|
|
@@ -3386,8 +3386,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3386
3386
|
isReadonly: boolean;
|
|
3387
3387
|
} | undefined;
|
|
3388
3388
|
workspaceMembership?: {
|
|
3389
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3390
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3391
3389
|
workspace: {
|
|
3392
3390
|
id: string;
|
|
3393
3391
|
profile: {
|
|
@@ -3573,6 +3571,8 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3573
3571
|
password?: string | undefined;
|
|
3574
3572
|
} | undefined;
|
|
3575
3573
|
};
|
|
3574
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3575
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
3576
3576
|
} | undefined;
|
|
3577
3577
|
}>;
|
|
3578
3578
|
type DTOAppBootstrapDataResponse = z.infer<typeof DTOAppBootstrapDataResponse>;
|
|
@@ -3959,6 +3959,158 @@ declare const DTOBrandsListResponse: z.ZodObject<{
|
|
|
3959
3959
|
}>;
|
|
3960
3960
|
type DTOBrandsListResponse = z.infer<typeof DTOBrandsListResponse>;
|
|
3961
3961
|
|
|
3962
|
+
declare const DTODesignSystemContactsResponse: z.ZodObject<{
|
|
3963
|
+
contacts: z.ZodObject<{
|
|
3964
|
+
workspace: z.ZodArray<z.ZodObject<{
|
|
3965
|
+
id: z.ZodString;
|
|
3966
|
+
email: z.ZodString;
|
|
3967
|
+
profile: z.ZodObject<{
|
|
3968
|
+
name: z.ZodString;
|
|
3969
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
3970
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
3971
|
+
}, "strip", z.ZodTypeAny, {
|
|
3972
|
+
name: string;
|
|
3973
|
+
nickname?: string | undefined;
|
|
3974
|
+
avatar?: string | undefined;
|
|
3975
|
+
}, {
|
|
3976
|
+
name: string;
|
|
3977
|
+
nickname?: string | undefined;
|
|
3978
|
+
avatar?: string | undefined;
|
|
3979
|
+
}>;
|
|
3980
|
+
}, "strip", z.ZodTypeAny, {
|
|
3981
|
+
id: string;
|
|
3982
|
+
email: string;
|
|
3983
|
+
profile: {
|
|
3984
|
+
name: string;
|
|
3985
|
+
nickname?: string | undefined;
|
|
3986
|
+
avatar?: string | undefined;
|
|
3987
|
+
};
|
|
3988
|
+
}, {
|
|
3989
|
+
id: string;
|
|
3990
|
+
email: string;
|
|
3991
|
+
profile: {
|
|
3992
|
+
name: string;
|
|
3993
|
+
nickname?: string | undefined;
|
|
3994
|
+
avatar?: string | undefined;
|
|
3995
|
+
};
|
|
3996
|
+
}>, "many">;
|
|
3997
|
+
designSystem: z.ZodArray<z.ZodObject<{
|
|
3998
|
+
id: z.ZodString;
|
|
3999
|
+
email: z.ZodString;
|
|
4000
|
+
profile: z.ZodObject<{
|
|
4001
|
+
name: z.ZodString;
|
|
4002
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
4003
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
4004
|
+
}, "strip", z.ZodTypeAny, {
|
|
4005
|
+
name: string;
|
|
4006
|
+
nickname?: string | undefined;
|
|
4007
|
+
avatar?: string | undefined;
|
|
4008
|
+
}, {
|
|
4009
|
+
name: string;
|
|
4010
|
+
nickname?: string | undefined;
|
|
4011
|
+
avatar?: string | undefined;
|
|
4012
|
+
}>;
|
|
4013
|
+
}, "strip", z.ZodTypeAny, {
|
|
4014
|
+
id: string;
|
|
4015
|
+
email: string;
|
|
4016
|
+
profile: {
|
|
4017
|
+
name: string;
|
|
4018
|
+
nickname?: string | undefined;
|
|
4019
|
+
avatar?: string | undefined;
|
|
4020
|
+
};
|
|
4021
|
+
}, {
|
|
4022
|
+
id: string;
|
|
4023
|
+
email: string;
|
|
4024
|
+
profile: {
|
|
4025
|
+
name: string;
|
|
4026
|
+
nickname?: string | undefined;
|
|
4027
|
+
avatar?: string | undefined;
|
|
4028
|
+
};
|
|
4029
|
+
}>, "many">;
|
|
4030
|
+
}, "strip", z.ZodTypeAny, {
|
|
4031
|
+
workspace: {
|
|
4032
|
+
id: string;
|
|
4033
|
+
email: string;
|
|
4034
|
+
profile: {
|
|
4035
|
+
name: string;
|
|
4036
|
+
nickname?: string | undefined;
|
|
4037
|
+
avatar?: string | undefined;
|
|
4038
|
+
};
|
|
4039
|
+
}[];
|
|
4040
|
+
designSystem: {
|
|
4041
|
+
id: string;
|
|
4042
|
+
email: string;
|
|
4043
|
+
profile: {
|
|
4044
|
+
name: string;
|
|
4045
|
+
nickname?: string | undefined;
|
|
4046
|
+
avatar?: string | undefined;
|
|
4047
|
+
};
|
|
4048
|
+
}[];
|
|
4049
|
+
}, {
|
|
4050
|
+
workspace: {
|
|
4051
|
+
id: string;
|
|
4052
|
+
email: string;
|
|
4053
|
+
profile: {
|
|
4054
|
+
name: string;
|
|
4055
|
+
nickname?: string | undefined;
|
|
4056
|
+
avatar?: string | undefined;
|
|
4057
|
+
};
|
|
4058
|
+
}[];
|
|
4059
|
+
designSystem: {
|
|
4060
|
+
id: string;
|
|
4061
|
+
email: string;
|
|
4062
|
+
profile: {
|
|
4063
|
+
name: string;
|
|
4064
|
+
nickname?: string | undefined;
|
|
4065
|
+
avatar?: string | undefined;
|
|
4066
|
+
};
|
|
4067
|
+
}[];
|
|
4068
|
+
}>;
|
|
4069
|
+
}, "strip", z.ZodTypeAny, {
|
|
4070
|
+
contacts: {
|
|
4071
|
+
workspace: {
|
|
4072
|
+
id: string;
|
|
4073
|
+
email: string;
|
|
4074
|
+
profile: {
|
|
4075
|
+
name: string;
|
|
4076
|
+
nickname?: string | undefined;
|
|
4077
|
+
avatar?: string | undefined;
|
|
4078
|
+
};
|
|
4079
|
+
}[];
|
|
4080
|
+
designSystem: {
|
|
4081
|
+
id: string;
|
|
4082
|
+
email: string;
|
|
4083
|
+
profile: {
|
|
4084
|
+
name: string;
|
|
4085
|
+
nickname?: string | undefined;
|
|
4086
|
+
avatar?: string | undefined;
|
|
4087
|
+
};
|
|
4088
|
+
}[];
|
|
4089
|
+
};
|
|
4090
|
+
}, {
|
|
4091
|
+
contacts: {
|
|
4092
|
+
workspace: {
|
|
4093
|
+
id: string;
|
|
4094
|
+
email: string;
|
|
4095
|
+
profile: {
|
|
4096
|
+
name: string;
|
|
4097
|
+
nickname?: string | undefined;
|
|
4098
|
+
avatar?: string | undefined;
|
|
4099
|
+
};
|
|
4100
|
+
}[];
|
|
4101
|
+
designSystem: {
|
|
4102
|
+
id: string;
|
|
4103
|
+
email: string;
|
|
4104
|
+
profile: {
|
|
4105
|
+
name: string;
|
|
4106
|
+
nickname?: string | undefined;
|
|
4107
|
+
avatar?: string | undefined;
|
|
4108
|
+
};
|
|
4109
|
+
}[];
|
|
4110
|
+
};
|
|
4111
|
+
}>;
|
|
4112
|
+
type DTODesignSystemContactsResponse = z.infer<typeof DTODesignSystemContactsResponse>;
|
|
4113
|
+
|
|
3962
4114
|
declare const DTODataSourceFigmaCloud: z.ZodObject<{
|
|
3963
4115
|
fileId: z.ZodString;
|
|
3964
4116
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
@@ -21652,7 +21804,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
21652
21804
|
id: string;
|
|
21653
21805
|
name: string;
|
|
21654
21806
|
description: string;
|
|
21655
|
-
category: "
|
|
21807
|
+
category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
|
|
21656
21808
|
item: {
|
|
21657
21809
|
properties: {
|
|
21658
21810
|
id: string;
|
|
@@ -21725,7 +21877,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
21725
21877
|
id: string;
|
|
21726
21878
|
name: string;
|
|
21727
21879
|
description: string;
|
|
21728
|
-
category: "
|
|
21880
|
+
category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
|
|
21729
21881
|
item: {
|
|
21730
21882
|
properties: {
|
|
21731
21883
|
id: string;
|
|
@@ -44249,8 +44401,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
44249
44401
|
}, "strip", z.ZodTypeAny, {
|
|
44250
44402
|
isPrivate: boolean;
|
|
44251
44403
|
id: string;
|
|
44252
|
-
source: "upload" | "git";
|
|
44253
44404
|
name: string;
|
|
44405
|
+
source: "upload" | "git";
|
|
44254
44406
|
exporterType: "code" | "documentation";
|
|
44255
44407
|
isDefaultDocumentationExporter: boolean;
|
|
44256
44408
|
configurationProperties: {
|
|
@@ -44298,8 +44450,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
44298
44450
|
}, {
|
|
44299
44451
|
isPrivate: boolean;
|
|
44300
44452
|
id: string;
|
|
44301
|
-
source: "upload" | "git";
|
|
44302
44453
|
name: string;
|
|
44454
|
+
source: "upload" | "git";
|
|
44303
44455
|
exporterType: "code" | "documentation";
|
|
44304
44456
|
isDefaultDocumentationExporter: boolean;
|
|
44305
44457
|
configurationProperties: {
|
|
@@ -44525,8 +44677,8 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
44525
44677
|
}, "strip", z.ZodTypeAny, {
|
|
44526
44678
|
isPrivate: boolean;
|
|
44527
44679
|
id: string;
|
|
44528
|
-
source: "upload" | "git";
|
|
44529
44680
|
name: string;
|
|
44681
|
+
source: "upload" | "git";
|
|
44530
44682
|
exporterType: "code" | "documentation";
|
|
44531
44683
|
isDefaultDocumentationExporter: boolean;
|
|
44532
44684
|
configurationProperties: {
|
|
@@ -44574,8 +44726,8 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
44574
44726
|
}, {
|
|
44575
44727
|
isPrivate: boolean;
|
|
44576
44728
|
id: string;
|
|
44577
|
-
source: "upload" | "git";
|
|
44578
44729
|
name: string;
|
|
44730
|
+
source: "upload" | "git";
|
|
44579
44731
|
exporterType: "code" | "documentation";
|
|
44580
44732
|
isDefaultDocumentationExporter: boolean;
|
|
44581
44733
|
configurationProperties: {
|
|
@@ -44643,8 +44795,8 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
44643
44795
|
exporter: {
|
|
44644
44796
|
isPrivate: boolean;
|
|
44645
44797
|
id: string;
|
|
44646
|
-
source: "upload" | "git";
|
|
44647
44798
|
name: string;
|
|
44799
|
+
source: "upload" | "git";
|
|
44648
44800
|
exporterType: "code" | "documentation";
|
|
44649
44801
|
isDefaultDocumentationExporter: boolean;
|
|
44650
44802
|
configurationProperties: {
|
|
@@ -44699,8 +44851,8 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
|
44699
44851
|
exporter: {
|
|
44700
44852
|
isPrivate: boolean;
|
|
44701
44853
|
id: string;
|
|
44702
|
-
source: "upload" | "git";
|
|
44703
44854
|
name: string;
|
|
44855
|
+
source: "upload" | "git";
|
|
44704
44856
|
exporterType: "code" | "documentation";
|
|
44705
44857
|
isDefaultDocumentationExporter: boolean;
|
|
44706
44858
|
configurationProperties: {
|
|
@@ -44913,8 +45065,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
44913
45065
|
}, "strip", z.ZodTypeAny, {
|
|
44914
45066
|
isPrivate: boolean;
|
|
44915
45067
|
id: string;
|
|
44916
|
-
source: "upload" | "git";
|
|
44917
45068
|
name: string;
|
|
45069
|
+
source: "upload" | "git";
|
|
44918
45070
|
exporterType: "code" | "documentation";
|
|
44919
45071
|
isDefaultDocumentationExporter: boolean;
|
|
44920
45072
|
configurationProperties: {
|
|
@@ -44962,8 +45114,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
44962
45114
|
}, {
|
|
44963
45115
|
isPrivate: boolean;
|
|
44964
45116
|
id: string;
|
|
44965
|
-
source: "upload" | "git";
|
|
44966
45117
|
name: string;
|
|
45118
|
+
source: "upload" | "git";
|
|
44967
45119
|
exporterType: "code" | "documentation";
|
|
44968
45120
|
isDefaultDocumentationExporter: boolean;
|
|
44969
45121
|
configurationProperties: {
|
|
@@ -45031,8 +45183,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
45031
45183
|
exporters: {
|
|
45032
45184
|
isPrivate: boolean;
|
|
45033
45185
|
id: string;
|
|
45034
|
-
source: "upload" | "git";
|
|
45035
45186
|
name: string;
|
|
45187
|
+
source: "upload" | "git";
|
|
45036
45188
|
exporterType: "code" | "documentation";
|
|
45037
45189
|
isDefaultDocumentationExporter: boolean;
|
|
45038
45190
|
configurationProperties: {
|
|
@@ -45087,8 +45239,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
45087
45239
|
exporters: {
|
|
45088
45240
|
isPrivate: boolean;
|
|
45089
45241
|
id: string;
|
|
45090
|
-
source: "upload" | "git";
|
|
45091
45242
|
name: string;
|
|
45243
|
+
source: "upload" | "git";
|
|
45092
45244
|
exporterType: "code" | "documentation";
|
|
45093
45245
|
isDefaultDocumentationExporter: boolean;
|
|
45094
45246
|
configurationProperties: {
|
|
@@ -48558,8 +48710,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48558
48710
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
48559
48711
|
}, "strip", z.ZodTypeAny, {
|
|
48560
48712
|
id: string;
|
|
48561
|
-
workspaceId: string;
|
|
48562
48713
|
name: string;
|
|
48714
|
+
workspaceId: string;
|
|
48563
48715
|
designSystemId: string;
|
|
48564
48716
|
exporterId: string;
|
|
48565
48717
|
isEnabled: boolean;
|
|
@@ -48754,8 +48906,8 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
48754
48906
|
} | undefined;
|
|
48755
48907
|
}, {
|
|
48756
48908
|
id: string;
|
|
48757
|
-
workspaceId: string;
|
|
48758
48909
|
name: string;
|
|
48910
|
+
workspaceId: string;
|
|
48759
48911
|
designSystemId: string;
|
|
48760
48912
|
exporterId: string;
|
|
48761
48913
|
isEnabled: boolean;
|
|
@@ -49927,8 +50079,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
49927
50079
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
49928
50080
|
}, "strip", z.ZodTypeAny, {
|
|
49929
50081
|
id: string;
|
|
49930
|
-
workspaceId: string;
|
|
49931
50082
|
name: string;
|
|
50083
|
+
workspaceId: string;
|
|
49932
50084
|
designSystemId: string;
|
|
49933
50085
|
exporterId: string;
|
|
49934
50086
|
isEnabled: boolean;
|
|
@@ -50123,8 +50275,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50123
50275
|
} | undefined;
|
|
50124
50276
|
}, {
|
|
50125
50277
|
id: string;
|
|
50126
|
-
workspaceId: string;
|
|
50127
50278
|
name: string;
|
|
50279
|
+
workspaceId: string;
|
|
50128
50280
|
designSystemId: string;
|
|
50129
50281
|
exporterId: string;
|
|
50130
50282
|
isEnabled: boolean;
|
|
@@ -50321,8 +50473,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50321
50473
|
}, "strip", z.ZodTypeAny, {
|
|
50322
50474
|
pipeline: {
|
|
50323
50475
|
id: string;
|
|
50324
|
-
workspaceId: string;
|
|
50325
50476
|
name: string;
|
|
50477
|
+
workspaceId: string;
|
|
50326
50478
|
designSystemId: string;
|
|
50327
50479
|
exporterId: string;
|
|
50328
50480
|
isEnabled: boolean;
|
|
@@ -50519,8 +50671,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
50519
50671
|
}, {
|
|
50520
50672
|
pipeline: {
|
|
50521
50673
|
id: string;
|
|
50522
|
-
workspaceId: string;
|
|
50523
50674
|
name: string;
|
|
50675
|
+
workspaceId: string;
|
|
50524
50676
|
designSystemId: string;
|
|
50525
50677
|
exporterId: string;
|
|
50526
50678
|
isEnabled: boolean;
|
|
@@ -51693,8 +51845,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51693
51845
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51694
51846
|
}, "strip", z.ZodTypeAny, {
|
|
51695
51847
|
id: string;
|
|
51696
|
-
workspaceId: string;
|
|
51697
51848
|
name: string;
|
|
51849
|
+
workspaceId: string;
|
|
51698
51850
|
designSystemId: string;
|
|
51699
51851
|
exporterId: string;
|
|
51700
51852
|
isEnabled: boolean;
|
|
@@ -51889,8 +52041,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
51889
52041
|
} | undefined;
|
|
51890
52042
|
}, {
|
|
51891
52043
|
id: string;
|
|
51892
|
-
workspaceId: string;
|
|
51893
52044
|
name: string;
|
|
52045
|
+
workspaceId: string;
|
|
51894
52046
|
designSystemId: string;
|
|
51895
52047
|
exporterId: string;
|
|
51896
52048
|
isEnabled: boolean;
|
|
@@ -52087,8 +52239,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
52087
52239
|
}, "strip", z.ZodTypeAny, {
|
|
52088
52240
|
pipelines: {
|
|
52089
52241
|
id: string;
|
|
52090
|
-
workspaceId: string;
|
|
52091
52242
|
name: string;
|
|
52243
|
+
workspaceId: string;
|
|
52092
52244
|
designSystemId: string;
|
|
52093
52245
|
exporterId: string;
|
|
52094
52246
|
isEnabled: boolean;
|
|
@@ -52285,8 +52437,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
52285
52437
|
}, {
|
|
52286
52438
|
pipelines: {
|
|
52287
52439
|
id: string;
|
|
52288
|
-
workspaceId: string;
|
|
52289
52440
|
name: string;
|
|
52441
|
+
workspaceId: string;
|
|
52290
52442
|
designSystemId: string;
|
|
52291
52443
|
exporterId: string;
|
|
52292
52444
|
isEnabled: boolean;
|
|
@@ -70997,8 +71149,8 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
70997
71149
|
}>>;
|
|
70998
71150
|
}>, "strip", z.ZodTypeAny, {
|
|
70999
71151
|
name: string;
|
|
71000
|
-
avatar?: string | undefined;
|
|
71001
71152
|
nickname?: string | undefined;
|
|
71153
|
+
avatar?: string | undefined;
|
|
71002
71154
|
onboarding?: {
|
|
71003
71155
|
companyName?: string | undefined;
|
|
71004
71156
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71013,8 +71165,8 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
71013
71165
|
} | undefined;
|
|
71014
71166
|
}, {
|
|
71015
71167
|
name: string;
|
|
71016
|
-
avatar?: string | undefined;
|
|
71017
71168
|
nickname?: string | undefined;
|
|
71169
|
+
avatar?: string | undefined;
|
|
71018
71170
|
onboarding?: {
|
|
71019
71171
|
companyName?: string | undefined;
|
|
71020
71172
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71038,12 +71190,12 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71038
71190
|
avatar: z.ZodOptional<z.ZodString>;
|
|
71039
71191
|
}, "strip", z.ZodTypeAny, {
|
|
71040
71192
|
name: string;
|
|
71041
|
-
avatar?: string | undefined;
|
|
71042
71193
|
nickname?: string | undefined;
|
|
71194
|
+
avatar?: string | undefined;
|
|
71043
71195
|
}, {
|
|
71044
71196
|
name: string;
|
|
71045
|
-
avatar?: string | undefined;
|
|
71046
71197
|
nickname?: string | undefined;
|
|
71198
|
+
avatar?: string | undefined;
|
|
71047
71199
|
}>;
|
|
71048
71200
|
}, {
|
|
71049
71201
|
profile: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -71087,8 +71239,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71087
71239
|
}>>;
|
|
71088
71240
|
}>, "strip", z.ZodTypeAny, {
|
|
71089
71241
|
name: string;
|
|
71090
|
-
avatar?: string | undefined;
|
|
71091
71242
|
nickname?: string | undefined;
|
|
71243
|
+
avatar?: string | undefined;
|
|
71092
71244
|
onboarding?: {
|
|
71093
71245
|
companyName?: string | undefined;
|
|
71094
71246
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71103,8 +71255,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71103
71255
|
} | undefined;
|
|
71104
71256
|
}, {
|
|
71105
71257
|
name: string;
|
|
71106
|
-
avatar?: string | undefined;
|
|
71107
71258
|
nickname?: string | undefined;
|
|
71259
|
+
avatar?: string | undefined;
|
|
71108
71260
|
onboarding?: {
|
|
71109
71261
|
companyName?: string | undefined;
|
|
71110
71262
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71124,10 +71276,11 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71124
71276
|
}>, "strip", z.ZodTypeAny, {
|
|
71125
71277
|
id: string;
|
|
71126
71278
|
createdAt: Date;
|
|
71279
|
+
email: string;
|
|
71127
71280
|
profile: {
|
|
71128
71281
|
name: string;
|
|
71129
|
-
avatar?: string | undefined;
|
|
71130
71282
|
nickname?: string | undefined;
|
|
71283
|
+
avatar?: string | undefined;
|
|
71131
71284
|
onboarding?: {
|
|
71132
71285
|
companyName?: string | undefined;
|
|
71133
71286
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71141,16 +71294,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71141
71294
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
71142
71295
|
} | undefined;
|
|
71143
71296
|
};
|
|
71144
|
-
email: string;
|
|
71145
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71146
71297
|
loggedOutAt?: Date | undefined;
|
|
71298
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71147
71299
|
}, {
|
|
71148
71300
|
id: string;
|
|
71149
71301
|
createdAt: Date;
|
|
71302
|
+
email: string;
|
|
71150
71303
|
profile: {
|
|
71151
71304
|
name: string;
|
|
71152
|
-
avatar?: string | undefined;
|
|
71153
71305
|
nickname?: string | undefined;
|
|
71306
|
+
avatar?: string | undefined;
|
|
71154
71307
|
onboarding?: {
|
|
71155
71308
|
companyName?: string | undefined;
|
|
71156
71309
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71164,9 +71317,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71164
71317
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
71165
71318
|
} | undefined;
|
|
71166
71319
|
};
|
|
71167
|
-
email: string;
|
|
71168
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71169
71320
|
loggedOutAt?: Date | undefined;
|
|
71321
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71170
71322
|
}>;
|
|
71171
71323
|
type DTOAuthenticatedUser = z.infer<typeof DTOAuthenticatedUser>;
|
|
71172
71324
|
declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
@@ -71179,12 +71331,12 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71179
71331
|
avatar: z.ZodOptional<z.ZodString>;
|
|
71180
71332
|
}, "strip", z.ZodTypeAny, {
|
|
71181
71333
|
name: string;
|
|
71182
|
-
avatar?: string | undefined;
|
|
71183
71334
|
nickname?: string | undefined;
|
|
71335
|
+
avatar?: string | undefined;
|
|
71184
71336
|
}, {
|
|
71185
71337
|
name: string;
|
|
71186
|
-
avatar?: string | undefined;
|
|
71187
71338
|
nickname?: string | undefined;
|
|
71339
|
+
avatar?: string | undefined;
|
|
71188
71340
|
}>;
|
|
71189
71341
|
}, {
|
|
71190
71342
|
profile: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -71228,8 +71380,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71228
71380
|
}>>;
|
|
71229
71381
|
}>, "strip", z.ZodTypeAny, {
|
|
71230
71382
|
name: string;
|
|
71231
|
-
avatar?: string | undefined;
|
|
71232
71383
|
nickname?: string | undefined;
|
|
71384
|
+
avatar?: string | undefined;
|
|
71233
71385
|
onboarding?: {
|
|
71234
71386
|
companyName?: string | undefined;
|
|
71235
71387
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71244,8 +71396,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71244
71396
|
} | undefined;
|
|
71245
71397
|
}, {
|
|
71246
71398
|
name: string;
|
|
71247
|
-
avatar?: string | undefined;
|
|
71248
71399
|
nickname?: string | undefined;
|
|
71400
|
+
avatar?: string | undefined;
|
|
71249
71401
|
onboarding?: {
|
|
71250
71402
|
companyName?: string | undefined;
|
|
71251
71403
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71265,10 +71417,11 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71265
71417
|
}>, "strip", z.ZodTypeAny, {
|
|
71266
71418
|
id: string;
|
|
71267
71419
|
createdAt: Date;
|
|
71420
|
+
email: string;
|
|
71268
71421
|
profile: {
|
|
71269
71422
|
name: string;
|
|
71270
|
-
avatar?: string | undefined;
|
|
71271
71423
|
nickname?: string | undefined;
|
|
71424
|
+
avatar?: string | undefined;
|
|
71272
71425
|
onboarding?: {
|
|
71273
71426
|
companyName?: string | undefined;
|
|
71274
71427
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71282,16 +71435,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71282
71435
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
71283
71436
|
} | undefined;
|
|
71284
71437
|
};
|
|
71285
|
-
email: string;
|
|
71286
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71287
71438
|
loggedOutAt?: Date | undefined;
|
|
71439
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71288
71440
|
}, {
|
|
71289
71441
|
id: string;
|
|
71290
71442
|
createdAt: Date;
|
|
71443
|
+
email: string;
|
|
71291
71444
|
profile: {
|
|
71292
71445
|
name: string;
|
|
71293
|
-
avatar?: string | undefined;
|
|
71294
71446
|
nickname?: string | undefined;
|
|
71447
|
+
avatar?: string | undefined;
|
|
71295
71448
|
onboarding?: {
|
|
71296
71449
|
companyName?: string | undefined;
|
|
71297
71450
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71305,18 +71458,18 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71305
71458
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
71306
71459
|
} | undefined;
|
|
71307
71460
|
};
|
|
71308
|
-
email: string;
|
|
71309
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71310
71461
|
loggedOutAt?: Date | undefined;
|
|
71462
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71311
71463
|
}>;
|
|
71312
71464
|
}, "strip", z.ZodTypeAny, {
|
|
71313
71465
|
user: {
|
|
71314
71466
|
id: string;
|
|
71315
71467
|
createdAt: Date;
|
|
71468
|
+
email: string;
|
|
71316
71469
|
profile: {
|
|
71317
71470
|
name: string;
|
|
71318
|
-
avatar?: string | undefined;
|
|
71319
71471
|
nickname?: string | undefined;
|
|
71472
|
+
avatar?: string | undefined;
|
|
71320
71473
|
onboarding?: {
|
|
71321
71474
|
companyName?: string | undefined;
|
|
71322
71475
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71330,18 +71483,18 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71330
71483
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
71331
71484
|
} | undefined;
|
|
71332
71485
|
};
|
|
71333
|
-
email: string;
|
|
71334
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71335
71486
|
loggedOutAt?: Date | undefined;
|
|
71487
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71336
71488
|
};
|
|
71337
71489
|
}, {
|
|
71338
71490
|
user: {
|
|
71339
71491
|
id: string;
|
|
71340
71492
|
createdAt: Date;
|
|
71493
|
+
email: string;
|
|
71341
71494
|
profile: {
|
|
71342
71495
|
name: string;
|
|
71343
|
-
avatar?: string | undefined;
|
|
71344
71496
|
nickname?: string | undefined;
|
|
71497
|
+
avatar?: string | undefined;
|
|
71345
71498
|
onboarding?: {
|
|
71346
71499
|
companyName?: string | undefined;
|
|
71347
71500
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -71355,9 +71508,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
71355
71508
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
71356
71509
|
} | undefined;
|
|
71357
71510
|
};
|
|
71358
|
-
email: string;
|
|
71359
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71360
71511
|
loggedOutAt?: Date | undefined;
|
|
71512
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
71361
71513
|
};
|
|
71362
71514
|
}>;
|
|
71363
71515
|
type DTOAuthenticatedUserResponse = z.infer<typeof DTOAuthenticatedUserResponse>;
|
|
@@ -71944,12 +72096,12 @@ declare const DTOUserProfile: z.ZodObject<{
|
|
|
71944
72096
|
avatar: z.ZodOptional<z.ZodString>;
|
|
71945
72097
|
}, "strip", z.ZodTypeAny, {
|
|
71946
72098
|
name: string;
|
|
71947
|
-
avatar?: string | undefined;
|
|
71948
72099
|
nickname?: string | undefined;
|
|
72100
|
+
avatar?: string | undefined;
|
|
71949
72101
|
}, {
|
|
71950
72102
|
name: string;
|
|
71951
|
-
avatar?: string | undefined;
|
|
71952
72103
|
nickname?: string | undefined;
|
|
72104
|
+
avatar?: string | undefined;
|
|
71953
72105
|
}>;
|
|
71954
72106
|
type DTOUserProfile = z.infer<typeof DTOUserProfile>;
|
|
71955
72107
|
/**
|
|
@@ -71964,29 +72116,29 @@ declare const DTOUser: z.ZodObject<{
|
|
|
71964
72116
|
avatar: z.ZodOptional<z.ZodString>;
|
|
71965
72117
|
}, "strip", z.ZodTypeAny, {
|
|
71966
72118
|
name: string;
|
|
71967
|
-
avatar?: string | undefined;
|
|
71968
72119
|
nickname?: string | undefined;
|
|
72120
|
+
avatar?: string | undefined;
|
|
71969
72121
|
}, {
|
|
71970
72122
|
name: string;
|
|
71971
|
-
avatar?: string | undefined;
|
|
71972
72123
|
nickname?: string | undefined;
|
|
72124
|
+
avatar?: string | undefined;
|
|
71973
72125
|
}>;
|
|
71974
72126
|
}, "strip", z.ZodTypeAny, {
|
|
71975
72127
|
id: string;
|
|
72128
|
+
email: string;
|
|
71976
72129
|
profile: {
|
|
71977
72130
|
name: string;
|
|
71978
|
-
avatar?: string | undefined;
|
|
71979
72131
|
nickname?: string | undefined;
|
|
72132
|
+
avatar?: string | undefined;
|
|
71980
72133
|
};
|
|
71981
|
-
email: string;
|
|
71982
72134
|
}, {
|
|
71983
72135
|
id: string;
|
|
72136
|
+
email: string;
|
|
71984
72137
|
profile: {
|
|
71985
72138
|
name: string;
|
|
71986
|
-
avatar?: string | undefined;
|
|
71987
72139
|
nickname?: string | undefined;
|
|
72140
|
+
avatar?: string | undefined;
|
|
71988
72141
|
};
|
|
71989
|
-
email: string;
|
|
71990
72142
|
}>;
|
|
71991
72143
|
type DTOUser = z.infer<typeof DTOUser>;
|
|
71992
72144
|
declare const DTOUserGetResponse: z.ZodObject<{
|
|
@@ -71999,49 +72151,49 @@ declare const DTOUserGetResponse: z.ZodObject<{
|
|
|
71999
72151
|
avatar: z.ZodOptional<z.ZodString>;
|
|
72000
72152
|
}, "strip", z.ZodTypeAny, {
|
|
72001
72153
|
name: string;
|
|
72002
|
-
avatar?: string | undefined;
|
|
72003
72154
|
nickname?: string | undefined;
|
|
72155
|
+
avatar?: string | undefined;
|
|
72004
72156
|
}, {
|
|
72005
72157
|
name: string;
|
|
72006
|
-
avatar?: string | undefined;
|
|
72007
72158
|
nickname?: string | undefined;
|
|
72159
|
+
avatar?: string | undefined;
|
|
72008
72160
|
}>;
|
|
72009
72161
|
}, "strip", z.ZodTypeAny, {
|
|
72010
72162
|
id: string;
|
|
72163
|
+
email: string;
|
|
72011
72164
|
profile: {
|
|
72012
72165
|
name: string;
|
|
72013
|
-
avatar?: string | undefined;
|
|
72014
72166
|
nickname?: string | undefined;
|
|
72167
|
+
avatar?: string | undefined;
|
|
72015
72168
|
};
|
|
72016
|
-
email: string;
|
|
72017
72169
|
}, {
|
|
72018
72170
|
id: string;
|
|
72171
|
+
email: string;
|
|
72019
72172
|
profile: {
|
|
72020
72173
|
name: string;
|
|
72021
|
-
avatar?: string | undefined;
|
|
72022
72174
|
nickname?: string | undefined;
|
|
72175
|
+
avatar?: string | undefined;
|
|
72023
72176
|
};
|
|
72024
|
-
email: string;
|
|
72025
72177
|
}>;
|
|
72026
72178
|
}, "strip", z.ZodTypeAny, {
|
|
72027
72179
|
user: {
|
|
72028
72180
|
id: string;
|
|
72181
|
+
email: string;
|
|
72029
72182
|
profile: {
|
|
72030
72183
|
name: string;
|
|
72031
|
-
avatar?: string | undefined;
|
|
72032
72184
|
nickname?: string | undefined;
|
|
72185
|
+
avatar?: string | undefined;
|
|
72033
72186
|
};
|
|
72034
|
-
email: string;
|
|
72035
72187
|
};
|
|
72036
72188
|
}, {
|
|
72037
72189
|
user: {
|
|
72038
72190
|
id: string;
|
|
72191
|
+
email: string;
|
|
72039
72192
|
profile: {
|
|
72040
72193
|
name: string;
|
|
72041
|
-
avatar?: string | undefined;
|
|
72042
72194
|
nickname?: string | undefined;
|
|
72195
|
+
avatar?: string | undefined;
|
|
72043
72196
|
};
|
|
72044
|
-
email: string;
|
|
72045
72197
|
};
|
|
72046
72198
|
}>;
|
|
72047
72199
|
type DTOUserGetResponse = z.infer<typeof DTOUserGetResponse>;
|
|
@@ -72260,7 +72412,6 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72260
72412
|
state: "Active" | "Inactive";
|
|
72261
72413
|
userId: string;
|
|
72262
72414
|
integrationId: string;
|
|
72263
|
-
username?: string | undefined;
|
|
72264
72415
|
profile?: {
|
|
72265
72416
|
id?: string | undefined;
|
|
72266
72417
|
type?: string | undefined;
|
|
@@ -72276,6 +72427,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72276
72427
|
email: string;
|
|
72277
72428
|
avatar?: string | undefined;
|
|
72278
72429
|
} | undefined;
|
|
72430
|
+
username?: string | undefined;
|
|
72279
72431
|
tokenName?: string | undefined;
|
|
72280
72432
|
expiresAt?: Date | undefined;
|
|
72281
72433
|
refreshedAt?: Date | undefined;
|
|
@@ -72288,7 +72440,6 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72288
72440
|
state: "Active" | "Inactive";
|
|
72289
72441
|
userId: string;
|
|
72290
72442
|
integrationId: string;
|
|
72291
|
-
username?: string | undefined;
|
|
72292
72443
|
profile?: {
|
|
72293
72444
|
id?: string | null | undefined;
|
|
72294
72445
|
type?: string | null | undefined;
|
|
@@ -72304,6 +72455,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72304
72455
|
email: string;
|
|
72305
72456
|
avatar?: string | undefined;
|
|
72306
72457
|
} | undefined;
|
|
72458
|
+
username?: string | undefined;
|
|
72307
72459
|
tokenName?: string | undefined;
|
|
72308
72460
|
expiresAt?: Date | undefined;
|
|
72309
72461
|
refreshedAt?: Date | undefined;
|
|
@@ -72341,7 +72493,6 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72341
72493
|
state: "Active" | "Inactive";
|
|
72342
72494
|
userId: string;
|
|
72343
72495
|
integrationId: string;
|
|
72344
|
-
username?: string | undefined;
|
|
72345
72496
|
profile?: {
|
|
72346
72497
|
id?: string | undefined;
|
|
72347
72498
|
type?: string | undefined;
|
|
@@ -72357,6 +72508,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72357
72508
|
email: string;
|
|
72358
72509
|
avatar?: string | undefined;
|
|
72359
72510
|
} | undefined;
|
|
72511
|
+
username?: string | undefined;
|
|
72360
72512
|
tokenName?: string | undefined;
|
|
72361
72513
|
expiresAt?: Date | undefined;
|
|
72362
72514
|
refreshedAt?: Date | undefined;
|
|
@@ -72382,7 +72534,6 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72382
72534
|
state: "Active" | "Inactive";
|
|
72383
72535
|
userId: string;
|
|
72384
72536
|
integrationId: string;
|
|
72385
|
-
username?: string | undefined;
|
|
72386
72537
|
profile?: {
|
|
72387
72538
|
id?: string | null | undefined;
|
|
72388
72539
|
type?: string | null | undefined;
|
|
@@ -72398,6 +72549,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72398
72549
|
email: string;
|
|
72399
72550
|
avatar?: string | undefined;
|
|
72400
72551
|
} | undefined;
|
|
72552
|
+
username?: string | undefined;
|
|
72401
72553
|
tokenName?: string | undefined;
|
|
72402
72554
|
expiresAt?: Date | undefined;
|
|
72403
72555
|
refreshedAt?: Date | undefined;
|
|
@@ -72476,7 +72628,6 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
|
72476
72628
|
state: "Active" | "Inactive";
|
|
72477
72629
|
userId: string;
|
|
72478
72630
|
integrationId: string;
|
|
72479
|
-
username?: string | undefined;
|
|
72480
72631
|
profile?: {
|
|
72481
72632
|
id?: string | undefined;
|
|
72482
72633
|
type?: string | undefined;
|
|
@@ -72492,6 +72643,7 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
|
72492
72643
|
email: string;
|
|
72493
72644
|
avatar?: string | undefined;
|
|
72494
72645
|
} | undefined;
|
|
72646
|
+
username?: string | undefined;
|
|
72495
72647
|
tokenName?: string | undefined;
|
|
72496
72648
|
expiresAt?: Date | undefined;
|
|
72497
72649
|
refreshedAt?: Date | undefined;
|
|
@@ -72504,7 +72656,6 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
|
72504
72656
|
state: "Active" | "Inactive";
|
|
72505
72657
|
userId: string;
|
|
72506
72658
|
integrationId: string;
|
|
72507
|
-
username?: string | undefined;
|
|
72508
72659
|
profile?: {
|
|
72509
72660
|
id?: string | null | undefined;
|
|
72510
72661
|
type?: string | null | undefined;
|
|
@@ -72520,6 +72671,7 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
|
72520
72671
|
email: string;
|
|
72521
72672
|
avatar?: string | undefined;
|
|
72522
72673
|
} | undefined;
|
|
72674
|
+
username?: string | undefined;
|
|
72523
72675
|
tokenName?: string | undefined;
|
|
72524
72676
|
expiresAt?: Date | undefined;
|
|
72525
72677
|
refreshedAt?: Date | undefined;
|
|
@@ -72604,7 +72756,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72604
72756
|
state: "Active" | "Inactive";
|
|
72605
72757
|
userId: string;
|
|
72606
72758
|
integrationId: string;
|
|
72607
|
-
username?: string | undefined;
|
|
72608
72759
|
profile?: {
|
|
72609
72760
|
id?: string | undefined;
|
|
72610
72761
|
type?: string | undefined;
|
|
@@ -72620,6 +72771,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72620
72771
|
email: string;
|
|
72621
72772
|
avatar?: string | undefined;
|
|
72622
72773
|
} | undefined;
|
|
72774
|
+
username?: string | undefined;
|
|
72623
72775
|
tokenName?: string | undefined;
|
|
72624
72776
|
expiresAt?: Date | undefined;
|
|
72625
72777
|
refreshedAt?: Date | undefined;
|
|
@@ -72632,7 +72784,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72632
72784
|
state: "Active" | "Inactive";
|
|
72633
72785
|
userId: string;
|
|
72634
72786
|
integrationId: string;
|
|
72635
|
-
username?: string | undefined;
|
|
72636
72787
|
profile?: {
|
|
72637
72788
|
id?: string | null | undefined;
|
|
72638
72789
|
type?: string | null | undefined;
|
|
@@ -72648,6 +72799,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72648
72799
|
email: string;
|
|
72649
72800
|
avatar?: string | undefined;
|
|
72650
72801
|
} | undefined;
|
|
72802
|
+
username?: string | undefined;
|
|
72651
72803
|
tokenName?: string | undefined;
|
|
72652
72804
|
expiresAt?: Date | undefined;
|
|
72653
72805
|
refreshedAt?: Date | undefined;
|
|
@@ -72685,7 +72837,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72685
72837
|
state: "Active" | "Inactive";
|
|
72686
72838
|
userId: string;
|
|
72687
72839
|
integrationId: string;
|
|
72688
|
-
username?: string | undefined;
|
|
72689
72840
|
profile?: {
|
|
72690
72841
|
id?: string | undefined;
|
|
72691
72842
|
type?: string | undefined;
|
|
@@ -72701,6 +72852,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72701
72852
|
email: string;
|
|
72702
72853
|
avatar?: string | undefined;
|
|
72703
72854
|
} | undefined;
|
|
72855
|
+
username?: string | undefined;
|
|
72704
72856
|
tokenName?: string | undefined;
|
|
72705
72857
|
expiresAt?: Date | undefined;
|
|
72706
72858
|
refreshedAt?: Date | undefined;
|
|
@@ -72726,7 +72878,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72726
72878
|
state: "Active" | "Inactive";
|
|
72727
72879
|
userId: string;
|
|
72728
72880
|
integrationId: string;
|
|
72729
|
-
username?: string | undefined;
|
|
72730
72881
|
profile?: {
|
|
72731
72882
|
id?: string | null | undefined;
|
|
72732
72883
|
type?: string | null | undefined;
|
|
@@ -72742,6 +72893,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72742
72893
|
email: string;
|
|
72743
72894
|
avatar?: string | undefined;
|
|
72744
72895
|
} | undefined;
|
|
72896
|
+
username?: string | undefined;
|
|
72745
72897
|
tokenName?: string | undefined;
|
|
72746
72898
|
expiresAt?: Date | undefined;
|
|
72747
72899
|
refreshedAt?: Date | undefined;
|
|
@@ -72769,7 +72921,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72769
72921
|
state: "Active" | "Inactive";
|
|
72770
72922
|
userId: string;
|
|
72771
72923
|
integrationId: string;
|
|
72772
|
-
username?: string | undefined;
|
|
72773
72924
|
profile?: {
|
|
72774
72925
|
id?: string | undefined;
|
|
72775
72926
|
type?: string | undefined;
|
|
@@ -72785,6 +72936,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72785
72936
|
email: string;
|
|
72786
72937
|
avatar?: string | undefined;
|
|
72787
72938
|
} | undefined;
|
|
72939
|
+
username?: string | undefined;
|
|
72788
72940
|
tokenName?: string | undefined;
|
|
72789
72941
|
expiresAt?: Date | undefined;
|
|
72790
72942
|
refreshedAt?: Date | undefined;
|
|
@@ -72812,7 +72964,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72812
72964
|
state: "Active" | "Inactive";
|
|
72813
72965
|
userId: string;
|
|
72814
72966
|
integrationId: string;
|
|
72815
|
-
username?: string | undefined;
|
|
72816
72967
|
profile?: {
|
|
72817
72968
|
id?: string | null | undefined;
|
|
72818
72969
|
type?: string | null | undefined;
|
|
@@ -72828,6 +72979,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72828
72979
|
email: string;
|
|
72829
72980
|
avatar?: string | undefined;
|
|
72830
72981
|
} | undefined;
|
|
72982
|
+
username?: string | undefined;
|
|
72831
72983
|
tokenName?: string | undefined;
|
|
72832
72984
|
expiresAt?: Date | undefined;
|
|
72833
72985
|
refreshedAt?: Date | undefined;
|
|
@@ -72913,7 +73065,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72913
73065
|
state: "Active" | "Inactive";
|
|
72914
73066
|
userId: string;
|
|
72915
73067
|
integrationId: string;
|
|
72916
|
-
username?: string | undefined;
|
|
72917
73068
|
profile?: {
|
|
72918
73069
|
id?: string | undefined;
|
|
72919
73070
|
type?: string | undefined;
|
|
@@ -72929,6 +73080,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72929
73080
|
email: string;
|
|
72930
73081
|
avatar?: string | undefined;
|
|
72931
73082
|
} | undefined;
|
|
73083
|
+
username?: string | undefined;
|
|
72932
73084
|
tokenName?: string | undefined;
|
|
72933
73085
|
expiresAt?: Date | undefined;
|
|
72934
73086
|
refreshedAt?: Date | undefined;
|
|
@@ -72941,7 +73093,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72941
73093
|
state: "Active" | "Inactive";
|
|
72942
73094
|
userId: string;
|
|
72943
73095
|
integrationId: string;
|
|
72944
|
-
username?: string | undefined;
|
|
72945
73096
|
profile?: {
|
|
72946
73097
|
id?: string | null | undefined;
|
|
72947
73098
|
type?: string | null | undefined;
|
|
@@ -72957,6 +73108,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72957
73108
|
email: string;
|
|
72958
73109
|
avatar?: string | undefined;
|
|
72959
73110
|
} | undefined;
|
|
73111
|
+
username?: string | undefined;
|
|
72960
73112
|
tokenName?: string | undefined;
|
|
72961
73113
|
expiresAt?: Date | undefined;
|
|
72962
73114
|
refreshedAt?: Date | undefined;
|
|
@@ -72994,7 +73146,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72994
73146
|
state: "Active" | "Inactive";
|
|
72995
73147
|
userId: string;
|
|
72996
73148
|
integrationId: string;
|
|
72997
|
-
username?: string | undefined;
|
|
72998
73149
|
profile?: {
|
|
72999
73150
|
id?: string | undefined;
|
|
73000
73151
|
type?: string | undefined;
|
|
@@ -73010,6 +73161,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73010
73161
|
email: string;
|
|
73011
73162
|
avatar?: string | undefined;
|
|
73012
73163
|
} | undefined;
|
|
73164
|
+
username?: string | undefined;
|
|
73013
73165
|
tokenName?: string | undefined;
|
|
73014
73166
|
expiresAt?: Date | undefined;
|
|
73015
73167
|
refreshedAt?: Date | undefined;
|
|
@@ -73035,7 +73187,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73035
73187
|
state: "Active" | "Inactive";
|
|
73036
73188
|
userId: string;
|
|
73037
73189
|
integrationId: string;
|
|
73038
|
-
username?: string | undefined;
|
|
73039
73190
|
profile?: {
|
|
73040
73191
|
id?: string | null | undefined;
|
|
73041
73192
|
type?: string | null | undefined;
|
|
@@ -73051,6 +73202,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73051
73202
|
email: string;
|
|
73052
73203
|
avatar?: string | undefined;
|
|
73053
73204
|
} | undefined;
|
|
73205
|
+
username?: string | undefined;
|
|
73054
73206
|
tokenName?: string | undefined;
|
|
73055
73207
|
expiresAt?: Date | undefined;
|
|
73056
73208
|
refreshedAt?: Date | undefined;
|
|
@@ -73078,7 +73230,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73078
73230
|
state: "Active" | "Inactive";
|
|
73079
73231
|
userId: string;
|
|
73080
73232
|
integrationId: string;
|
|
73081
|
-
username?: string | undefined;
|
|
73082
73233
|
profile?: {
|
|
73083
73234
|
id?: string | undefined;
|
|
73084
73235
|
type?: string | undefined;
|
|
@@ -73094,6 +73245,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73094
73245
|
email: string;
|
|
73095
73246
|
avatar?: string | undefined;
|
|
73096
73247
|
} | undefined;
|
|
73248
|
+
username?: string | undefined;
|
|
73097
73249
|
tokenName?: string | undefined;
|
|
73098
73250
|
expiresAt?: Date | undefined;
|
|
73099
73251
|
refreshedAt?: Date | undefined;
|
|
@@ -73121,7 +73273,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73121
73273
|
state: "Active" | "Inactive";
|
|
73122
73274
|
userId: string;
|
|
73123
73275
|
integrationId: string;
|
|
73124
|
-
username?: string | undefined;
|
|
73125
73276
|
profile?: {
|
|
73126
73277
|
id?: string | null | undefined;
|
|
73127
73278
|
type?: string | null | undefined;
|
|
@@ -73137,6 +73288,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
73137
73288
|
email: string;
|
|
73138
73289
|
avatar?: string | undefined;
|
|
73139
73290
|
} | undefined;
|
|
73291
|
+
username?: string | undefined;
|
|
73140
73292
|
tokenName?: string | undefined;
|
|
73141
73293
|
expiresAt?: Date | undefined;
|
|
73142
73294
|
refreshedAt?: Date | undefined;
|
|
@@ -73158,11 +73310,11 @@ declare const DTOWorkspaceInvitationInput: z.ZodObject<{
|
|
|
73158
73310
|
email: z.ZodString;
|
|
73159
73311
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
73160
73312
|
}, "strip", z.ZodTypeAny, {
|
|
73161
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73162
73313
|
email: string;
|
|
73163
|
-
}, {
|
|
73164
73314
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73315
|
+
}, {
|
|
73165
73316
|
email: string;
|
|
73317
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73166
73318
|
}>;
|
|
73167
73319
|
type DTOWorkspaceInvitationInput = z.infer<typeof DTOWorkspaceInvitationInput>;
|
|
73168
73320
|
declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
|
|
@@ -73170,23 +73322,23 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
|
|
|
73170
73322
|
email: z.ZodString;
|
|
73171
73323
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
73172
73324
|
}, "strip", z.ZodTypeAny, {
|
|
73173
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73174
73325
|
email: string;
|
|
73175
|
-
}, {
|
|
73176
73326
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73327
|
+
}, {
|
|
73177
73328
|
email: string;
|
|
73329
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73178
73330
|
}>, "many">;
|
|
73179
73331
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
73180
73332
|
}, "strip", z.ZodTypeAny, {
|
|
73181
73333
|
invites: {
|
|
73182
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73183
73334
|
email: string;
|
|
73335
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73184
73336
|
}[];
|
|
73185
73337
|
designSystemId?: string | undefined;
|
|
73186
73338
|
}, {
|
|
73187
73339
|
invites: {
|
|
73188
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73189
73340
|
email: string;
|
|
73341
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73190
73342
|
}[];
|
|
73191
73343
|
designSystemId?: string | undefined;
|
|
73192
73344
|
}>;
|
|
@@ -73725,8 +73877,6 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
73725
73877
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
73726
73878
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
73727
73879
|
}, "strip", z.ZodTypeAny, {
|
|
73728
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73729
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73730
73880
|
user: {
|
|
73731
73881
|
id: string;
|
|
73732
73882
|
createdAt: Date;
|
|
@@ -73798,9 +73948,9 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
73798
73948
|
} | undefined;
|
|
73799
73949
|
loggedOutAt?: Date | undefined;
|
|
73800
73950
|
};
|
|
73801
|
-
}, {
|
|
73802
73951
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73803
73952
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73953
|
+
}, {
|
|
73804
73954
|
user: {
|
|
73805
73955
|
id: string;
|
|
73806
73956
|
createdAt: Date;
|
|
@@ -73872,6 +74022,8 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
73872
74022
|
} | undefined;
|
|
73873
74023
|
loggedOutAt?: Date | undefined;
|
|
73874
74024
|
};
|
|
74025
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
74026
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
73875
74027
|
}>;
|
|
73876
74028
|
declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
73877
74029
|
type DTOWorkspaceRole = z.infer<typeof DTOWorkspaceRole>;
|
|
@@ -75256,8 +75408,6 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
75256
75408
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
75257
75409
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
75258
75410
|
}, "strip", z.ZodTypeAny, {
|
|
75259
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
75260
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
75261
75411
|
workspace: {
|
|
75262
75412
|
id: string;
|
|
75263
75413
|
profile: {
|
|
@@ -75443,9 +75593,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
75443
75593
|
password?: string | undefined;
|
|
75444
75594
|
} | undefined;
|
|
75445
75595
|
};
|
|
75446
|
-
}, {
|
|
75447
75596
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
75448
75597
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
75598
|
+
}, {
|
|
75449
75599
|
workspace: {
|
|
75450
75600
|
id: string;
|
|
75451
75601
|
profile: {
|
|
@@ -75631,6 +75781,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
75631
75781
|
password?: string | undefined;
|
|
75632
75782
|
} | undefined;
|
|
75633
75783
|
};
|
|
75784
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
75785
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
75634
75786
|
}>;
|
|
75635
75787
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
75636
75788
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -77015,8 +77167,6 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
77015
77167
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
77016
77168
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
77017
77169
|
}, "strip", z.ZodTypeAny, {
|
|
77018
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77019
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77020
77170
|
workspace: {
|
|
77021
77171
|
id: string;
|
|
77022
77172
|
profile: {
|
|
@@ -77202,9 +77352,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
77202
77352
|
password?: string | undefined;
|
|
77203
77353
|
} | undefined;
|
|
77204
77354
|
};
|
|
77205
|
-
}, {
|
|
77206
77355
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77207
77356
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77357
|
+
}, {
|
|
77208
77358
|
workspace: {
|
|
77209
77359
|
id: string;
|
|
77210
77360
|
profile: {
|
|
@@ -77390,11 +77540,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
77390
77540
|
password?: string | undefined;
|
|
77391
77541
|
} | undefined;
|
|
77392
77542
|
};
|
|
77543
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77544
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77393
77545
|
}>, "many">;
|
|
77394
77546
|
}, "strip", z.ZodTypeAny, {
|
|
77395
77547
|
membership: {
|
|
77396
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77397
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77398
77548
|
workspace: {
|
|
77399
77549
|
id: string;
|
|
77400
77550
|
profile: {
|
|
@@ -77580,11 +77730,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
77580
77730
|
password?: string | undefined;
|
|
77581
77731
|
} | undefined;
|
|
77582
77732
|
};
|
|
77733
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77734
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77583
77735
|
}[];
|
|
77584
77736
|
}, {
|
|
77585
77737
|
membership: {
|
|
77586
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77587
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77588
77738
|
workspace: {
|
|
77589
77739
|
id: string;
|
|
77590
77740
|
profile: {
|
|
@@ -77770,6 +77920,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
77770
77920
|
password?: string | undefined;
|
|
77771
77921
|
} | undefined;
|
|
77772
77922
|
};
|
|
77923
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77924
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
77773
77925
|
}[];
|
|
77774
77926
|
}>;
|
|
77775
77927
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
|
@@ -78203,8 +78355,6 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
78203
78355
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
78204
78356
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
78205
78357
|
}, "strip", z.ZodTypeAny, {
|
|
78206
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78207
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78208
78358
|
user: {
|
|
78209
78359
|
id: string;
|
|
78210
78360
|
createdAt: Date;
|
|
@@ -78276,9 +78426,9 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
78276
78426
|
} | undefined;
|
|
78277
78427
|
loggedOutAt?: Date | undefined;
|
|
78278
78428
|
};
|
|
78279
|
-
}, {
|
|
78280
78429
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78281
78430
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78431
|
+
}, {
|
|
78282
78432
|
user: {
|
|
78283
78433
|
id: string;
|
|
78284
78434
|
createdAt: Date;
|
|
@@ -78350,11 +78500,11 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
78350
78500
|
} | undefined;
|
|
78351
78501
|
loggedOutAt?: Date | undefined;
|
|
78352
78502
|
};
|
|
78503
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78504
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78353
78505
|
}>, "many">;
|
|
78354
78506
|
}, "strip", z.ZodTypeAny, {
|
|
78355
78507
|
members: {
|
|
78356
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78357
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78358
78508
|
user: {
|
|
78359
78509
|
id: string;
|
|
78360
78510
|
createdAt: Date;
|
|
@@ -78426,11 +78576,11 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
78426
78576
|
} | undefined;
|
|
78427
78577
|
loggedOutAt?: Date | undefined;
|
|
78428
78578
|
};
|
|
78579
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78580
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78429
78581
|
}[];
|
|
78430
78582
|
}, {
|
|
78431
78583
|
members: {
|
|
78432
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78433
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78434
78584
|
user: {
|
|
78435
78585
|
id: string;
|
|
78436
78586
|
createdAt: Date;
|
|
@@ -78502,6 +78652,8 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
78502
78652
|
} | undefined;
|
|
78503
78653
|
loggedOutAt?: Date | undefined;
|
|
78504
78654
|
};
|
|
78655
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78656
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
78505
78657
|
}[];
|
|
78506
78658
|
}>;
|
|
78507
78659
|
type DTOWorkspaceMembersListResponse = z.infer<typeof DTOWorkspaceMembersListResponse>;
|
|
@@ -81893,8 +82045,8 @@ declare class ExportersEndpoint {
|
|
|
81893
82045
|
exporters: {
|
|
81894
82046
|
isPrivate: boolean;
|
|
81895
82047
|
id: string;
|
|
81896
|
-
source: "upload" | "git";
|
|
81897
82048
|
name: string;
|
|
82049
|
+
source: "upload" | "git";
|
|
81898
82050
|
exporterType: "code" | "documentation";
|
|
81899
82051
|
isDefaultDocumentationExporter: boolean;
|
|
81900
82052
|
configurationProperties: {
|
|
@@ -82461,7 +82613,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
82461
82613
|
id: string;
|
|
82462
82614
|
name: string;
|
|
82463
82615
|
description: string;
|
|
82464
|
-
category: "
|
|
82616
|
+
category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
|
|
82465
82617
|
item: {
|
|
82466
82618
|
properties: {
|
|
82467
82619
|
id: string;
|
|
@@ -82534,7 +82686,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
82534
82686
|
id: string;
|
|
82535
82687
|
name: string;
|
|
82536
82688
|
description: string;
|
|
82537
|
-
category: "
|
|
82689
|
+
category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
|
|
82538
82690
|
item: {
|
|
82539
82691
|
properties: {
|
|
82540
82692
|
id: string;
|
|
@@ -82609,7 +82761,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
82609
82761
|
id: string;
|
|
82610
82762
|
name: string;
|
|
82611
82763
|
description: string;
|
|
82612
|
-
category: "
|
|
82764
|
+
category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
|
|
82613
82765
|
item: {
|
|
82614
82766
|
properties: {
|
|
82615
82767
|
id: string;
|
|
@@ -82684,7 +82836,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
82684
82836
|
id: string;
|
|
82685
82837
|
name: string;
|
|
82686
82838
|
description: string;
|
|
82687
|
-
category: "
|
|
82839
|
+
category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
|
|
82688
82840
|
item: {
|
|
82689
82841
|
properties: {
|
|
82690
82842
|
id: string;
|
|
@@ -84157,39 +84309,6 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
|
|
|
84157
84309
|
} | null | undefined;
|
|
84158
84310
|
}>>;
|
|
84159
84311
|
}, "strip", z.ZodTypeAny, {
|
|
84160
|
-
ipWhitelist?: {
|
|
84161
|
-
entries?: {
|
|
84162
|
-
name: string;
|
|
84163
|
-
isEnabled: boolean;
|
|
84164
|
-
range: string;
|
|
84165
|
-
}[] | undefined;
|
|
84166
|
-
isEnabledForCloud?: boolean | undefined;
|
|
84167
|
-
isEnabledForDocs?: boolean | undefined;
|
|
84168
|
-
} | undefined;
|
|
84169
|
-
sso?: {
|
|
84170
|
-
providerId?: string | undefined;
|
|
84171
|
-
metadataXml?: string | null | undefined;
|
|
84172
|
-
emailDomains?: string[] | undefined;
|
|
84173
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
84174
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
84175
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
84176
|
-
areInvitesDisabled?: boolean | undefined;
|
|
84177
|
-
isTestMode?: boolean | undefined;
|
|
84178
|
-
} | undefined;
|
|
84179
|
-
npmRegistrySettings?: {
|
|
84180
|
-
enabledScopes?: string[] | undefined;
|
|
84181
|
-
customRegistryUrl?: string | undefined;
|
|
84182
|
-
bypassProxy?: boolean | undefined;
|
|
84183
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
84184
|
-
npmProxyVersion?: number | undefined;
|
|
84185
|
-
registryType?: string | undefined;
|
|
84186
|
-
authType?: string | undefined;
|
|
84187
|
-
authHeaderName?: string | undefined;
|
|
84188
|
-
authHeaderValue?: string | undefined;
|
|
84189
|
-
accessToken?: string | undefined;
|
|
84190
|
-
username?: string | undefined;
|
|
84191
|
-
password?: string | undefined;
|
|
84192
|
-
} | undefined;
|
|
84193
84312
|
profile?: {
|
|
84194
84313
|
name?: string | undefined;
|
|
84195
84314
|
avatar?: string | undefined;
|
|
@@ -84212,7 +84331,6 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
|
|
|
84212
84331
|
poNumber?: string | undefined;
|
|
84213
84332
|
} | undefined;
|
|
84214
84333
|
} | undefined;
|
|
84215
|
-
}, {
|
|
84216
84334
|
ipWhitelist?: {
|
|
84217
84335
|
entries?: {
|
|
84218
84336
|
name: string;
|
|
@@ -84246,6 +84364,7 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
|
|
|
84246
84364
|
username?: string | undefined;
|
|
84247
84365
|
password?: string | undefined;
|
|
84248
84366
|
} | undefined;
|
|
84367
|
+
}, {
|
|
84249
84368
|
profile?: {
|
|
84250
84369
|
name?: string | undefined;
|
|
84251
84370
|
avatar?: string | null | undefined;
|
|
@@ -84268,6 +84387,39 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
|
|
|
84268
84387
|
poNumber?: string | null | undefined;
|
|
84269
84388
|
} | null | undefined;
|
|
84270
84389
|
} | undefined;
|
|
84390
|
+
ipWhitelist?: {
|
|
84391
|
+
entries?: {
|
|
84392
|
+
name: string;
|
|
84393
|
+
isEnabled: boolean;
|
|
84394
|
+
range: string;
|
|
84395
|
+
}[] | undefined;
|
|
84396
|
+
isEnabledForCloud?: boolean | undefined;
|
|
84397
|
+
isEnabledForDocs?: boolean | undefined;
|
|
84398
|
+
} | undefined;
|
|
84399
|
+
sso?: {
|
|
84400
|
+
providerId?: string | undefined;
|
|
84401
|
+
metadataXml?: string | null | undefined;
|
|
84402
|
+
emailDomains?: string[] | undefined;
|
|
84403
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
84404
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
84405
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
84406
|
+
areInvitesDisabled?: boolean | undefined;
|
|
84407
|
+
isTestMode?: boolean | undefined;
|
|
84408
|
+
} | undefined;
|
|
84409
|
+
npmRegistrySettings?: {
|
|
84410
|
+
enabledScopes?: string[] | undefined;
|
|
84411
|
+
customRegistryUrl?: string | undefined;
|
|
84412
|
+
bypassProxy?: boolean | undefined;
|
|
84413
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
84414
|
+
npmProxyVersion?: number | undefined;
|
|
84415
|
+
registryType?: string | undefined;
|
|
84416
|
+
authType?: string | undefined;
|
|
84417
|
+
authHeaderName?: string | undefined;
|
|
84418
|
+
authHeaderValue?: string | undefined;
|
|
84419
|
+
accessToken?: string | undefined;
|
|
84420
|
+
username?: string | undefined;
|
|
84421
|
+
password?: string | undefined;
|
|
84422
|
+
} | undefined;
|
|
84271
84423
|
}>;
|
|
84272
84424
|
type WorkspaceConfigurationPayload = z.infer<typeof WorkspaceConfigurationPayload>;
|
|
84273
84425
|
|
|
@@ -84410,17 +84562,17 @@ declare const DTOWorkspaceIntegrationGetGitObjectsInput: z.ZodObject<{
|
|
|
84410
84562
|
branch: z.ZodOptional<z.ZodString>;
|
|
84411
84563
|
user: z.ZodOptional<z.ZodString>;
|
|
84412
84564
|
}, "strip", z.ZodTypeAny, {
|
|
84565
|
+
user?: string | undefined;
|
|
84413
84566
|
organization?: string | undefined;
|
|
84414
84567
|
project?: string | undefined;
|
|
84415
84568
|
repository?: string | undefined;
|
|
84416
84569
|
branch?: string | undefined;
|
|
84417
|
-
user?: string | undefined;
|
|
84418
84570
|
}, {
|
|
84571
|
+
user?: string | undefined;
|
|
84419
84572
|
organization?: string | undefined;
|
|
84420
84573
|
project?: string | undefined;
|
|
84421
84574
|
repository?: string | undefined;
|
|
84422
84575
|
branch?: string | undefined;
|
|
84423
|
-
user?: string | undefined;
|
|
84424
84576
|
}>;
|
|
84425
84577
|
type DTOWorkspaceIntegrationGetGitObjectsInput = z.infer<typeof DTOWorkspaceIntegrationGetGitObjectsInput>;
|
|
84426
84578
|
|
|
@@ -84430,8 +84582,8 @@ declare class PipelinesEndpoint {
|
|
|
84430
84582
|
list(workspaceId: string, query: DTOPipelineListQuery): Promise<{
|
|
84431
84583
|
pipelines: {
|
|
84432
84584
|
id: string;
|
|
84433
|
-
workspaceId: string;
|
|
84434
84585
|
name: string;
|
|
84586
|
+
workspaceId: string;
|
|
84435
84587
|
designSystemId: string;
|
|
84436
84588
|
exporterId: string;
|
|
84437
84589
|
isEnabled: boolean;
|
|
@@ -84629,8 +84781,8 @@ declare class PipelinesEndpoint {
|
|
|
84629
84781
|
create(workspaceId: string, payload: DTOPipelineCreateBody): Promise<{
|
|
84630
84782
|
pipeline: {
|
|
84631
84783
|
id: string;
|
|
84632
|
-
workspaceId: string;
|
|
84633
84784
|
name: string;
|
|
84785
|
+
workspaceId: string;
|
|
84634
84786
|
designSystemId: string;
|
|
84635
84787
|
exporterId: string;
|
|
84636
84788
|
isEnabled: boolean;
|
|
@@ -86838,12 +86990,40 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86838
86990
|
}>;
|
|
86839
86991
|
}
|
|
86840
86992
|
|
|
86993
|
+
declare class DesignSystemContactsEndpoint {
|
|
86994
|
+
private readonly requestExecutor;
|
|
86995
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86996
|
+
list(dsId: string): Promise<{
|
|
86997
|
+
contacts: {
|
|
86998
|
+
workspace: {
|
|
86999
|
+
id: string;
|
|
87000
|
+
email: string;
|
|
87001
|
+
profile: {
|
|
87002
|
+
name: string;
|
|
87003
|
+
nickname?: string | undefined;
|
|
87004
|
+
avatar?: string | undefined;
|
|
87005
|
+
};
|
|
87006
|
+
}[];
|
|
87007
|
+
designSystem: {
|
|
87008
|
+
id: string;
|
|
87009
|
+
email: string;
|
|
87010
|
+
profile: {
|
|
87011
|
+
name: string;
|
|
87012
|
+
nickname?: string | undefined;
|
|
87013
|
+
avatar?: string | undefined;
|
|
87014
|
+
};
|
|
87015
|
+
}[];
|
|
87016
|
+
};
|
|
87017
|
+
}>;
|
|
87018
|
+
}
|
|
87019
|
+
|
|
86841
87020
|
declare class DesignSystemsEndpoint {
|
|
86842
87021
|
private readonly requestExecutor;
|
|
86843
87022
|
readonly members: DesignSystemMembersEndpoint;
|
|
86844
87023
|
readonly versions: DesignSystemVersionsEndpoint;
|
|
86845
87024
|
readonly bff: DesignSystemBffEndpoint;
|
|
86846
87025
|
readonly sources: DesignSystemSourcesEndpoint;
|
|
87026
|
+
readonly contacts: DesignSystemContactsEndpoint;
|
|
86847
87027
|
constructor(requestExecutor: RequestExecutor);
|
|
86848
87028
|
create(body: DTODesignSystemCreateInput): Promise<{
|
|
86849
87029
|
designSystem: {
|
|
@@ -87227,8 +87407,6 @@ declare class WorkspaceMembersEndpoint {
|
|
|
87227
87407
|
constructor(requestExecutor: RequestExecutor);
|
|
87228
87408
|
list(workspaceId: string): Promise<{
|
|
87229
87409
|
members: {
|
|
87230
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
87231
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
87232
87410
|
user: {
|
|
87233
87411
|
id: string;
|
|
87234
87412
|
createdAt: Date;
|
|
@@ -87300,6 +87478,8 @@ declare class WorkspaceMembersEndpoint {
|
|
|
87300
87478
|
} | undefined;
|
|
87301
87479
|
loggedOutAt?: Date | undefined;
|
|
87302
87480
|
};
|
|
87481
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
87482
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
87303
87483
|
}[];
|
|
87304
87484
|
}>;
|
|
87305
87485
|
update(workspaceId: string, body: UpdateMembershipRolesInput): Promise<{
|
|
@@ -88069,10 +88249,11 @@ declare class UsersEndpoint {
|
|
|
88069
88249
|
user: {
|
|
88070
88250
|
id: string;
|
|
88071
88251
|
createdAt: Date;
|
|
88252
|
+
email: string;
|
|
88072
88253
|
profile: {
|
|
88073
88254
|
name: string;
|
|
88074
|
-
avatar?: string | undefined;
|
|
88075
88255
|
nickname?: string | undefined;
|
|
88256
|
+
avatar?: string | undefined;
|
|
88076
88257
|
onboarding?: {
|
|
88077
88258
|
companyName?: string | undefined;
|
|
88078
88259
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -88086,15 +88267,12 @@ declare class UsersEndpoint {
|
|
|
88086
88267
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
88087
88268
|
} | undefined;
|
|
88088
88269
|
};
|
|
88089
|
-
email: string;
|
|
88090
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88091
88270
|
loggedOutAt?: Date | undefined;
|
|
88271
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88092
88272
|
};
|
|
88093
88273
|
}>;
|
|
88094
88274
|
listWorkspaces(uid: string): Promise<{
|
|
88095
88275
|
membership: {
|
|
88096
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
88097
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
88098
88276
|
workspace: {
|
|
88099
88277
|
id: string;
|
|
88100
88278
|
profile: {
|
|
@@ -88280,16 +88458,19 @@ declare class UsersEndpoint {
|
|
|
88280
88458
|
password?: string | undefined;
|
|
88281
88459
|
} | undefined;
|
|
88282
88460
|
};
|
|
88461
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
88462
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
88283
88463
|
}[];
|
|
88284
88464
|
}>;
|
|
88285
88465
|
delete(uid: string): Promise<{
|
|
88286
88466
|
user: {
|
|
88287
88467
|
id: string;
|
|
88288
88468
|
createdAt: Date;
|
|
88469
|
+
email: string;
|
|
88289
88470
|
profile: {
|
|
88290
88471
|
name: string;
|
|
88291
|
-
avatar?: string | undefined;
|
|
88292
88472
|
nickname?: string | undefined;
|
|
88473
|
+
avatar?: string | undefined;
|
|
88293
88474
|
onboarding?: {
|
|
88294
88475
|
companyName?: string | undefined;
|
|
88295
88476
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -88303,19 +88484,19 @@ declare class UsersEndpoint {
|
|
|
88303
88484
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
88304
88485
|
} | undefined;
|
|
88305
88486
|
};
|
|
88306
|
-
email: string;
|
|
88307
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88308
88487
|
loggedOutAt?: Date | undefined;
|
|
88488
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88309
88489
|
};
|
|
88310
88490
|
}>;
|
|
88311
88491
|
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
88312
88492
|
user: {
|
|
88313
88493
|
id: string;
|
|
88314
88494
|
createdAt: Date;
|
|
88495
|
+
email: string;
|
|
88315
88496
|
profile: {
|
|
88316
88497
|
name: string;
|
|
88317
|
-
avatar?: string | undefined;
|
|
88318
88498
|
nickname?: string | undefined;
|
|
88499
|
+
avatar?: string | undefined;
|
|
88319
88500
|
onboarding?: {
|
|
88320
88501
|
companyName?: string | undefined;
|
|
88321
88502
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -88329,9 +88510,8 @@ declare class UsersEndpoint {
|
|
|
88329
88510
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
88330
88511
|
} | undefined;
|
|
88331
88512
|
};
|
|
88332
|
-
email: string;
|
|
88333
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88334
88513
|
loggedOutAt?: Date | undefined;
|
|
88514
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
88335
88515
|
};
|
|
88336
88516
|
}>;
|
|
88337
88517
|
}
|
|
@@ -90901,4 +91081,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90901
91081
|
|
|
90902
91082
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90903
91083
|
|
|
90904
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenListResponse, DTODesignTokenResponse, 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, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, 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, DTOExporterListQuery, DTOExporterListResponse, 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, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, 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 };
|
|
91084
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenListResponse, DTODesignTokenResponse, 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, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, 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, DTOExporterListQuery, DTOExporterListResponse, 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, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, 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 };
|