@supernova-studio/client 1.31.6 → 1.32.1
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 +168 -36
- package/dist/index.d.ts +168 -36
- package/dist/index.js +62 -48
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -47
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -448,6 +448,9 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
448
448
|
customRegistryUrl?: string | undefined;
|
|
449
449
|
password?: string | undefined;
|
|
450
450
|
}>>;
|
|
451
|
+
aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
452
|
+
aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
453
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
451
454
|
}, "strip", z$1.ZodTypeAny, {
|
|
452
455
|
id: string;
|
|
453
456
|
profile: {
|
|
@@ -496,6 +499,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
496
499
|
cancelAt?: string | undefined;
|
|
497
500
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
498
501
|
};
|
|
502
|
+
aiFeaturesEnabled: boolean;
|
|
503
|
+
aiAskFeaturesEnabled: boolean;
|
|
499
504
|
npmRegistry?: {
|
|
500
505
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
501
506
|
registryUrl: string;
|
|
@@ -508,6 +513,7 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
508
513
|
customRegistryUrl?: string | undefined;
|
|
509
514
|
password?: string | undefined;
|
|
510
515
|
} | undefined;
|
|
516
|
+
aiCustomInstruction?: string | undefined;
|
|
511
517
|
}, {
|
|
512
518
|
id: string;
|
|
513
519
|
profile: {
|
|
@@ -568,6 +574,9 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
568
574
|
customRegistryUrl?: string | undefined;
|
|
569
575
|
password?: string | undefined;
|
|
570
576
|
} | undefined;
|
|
577
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
578
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
579
|
+
aiCustomInstruction?: string | undefined;
|
|
571
580
|
}>;
|
|
572
581
|
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
573
582
|
effectiveRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
@@ -622,6 +631,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
622
631
|
cancelAt?: string | undefined;
|
|
623
632
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
624
633
|
};
|
|
634
|
+
aiFeaturesEnabled: boolean;
|
|
635
|
+
aiAskFeaturesEnabled: boolean;
|
|
625
636
|
npmRegistry?: {
|
|
626
637
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
627
638
|
registryUrl: string;
|
|
@@ -634,6 +645,7 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
634
645
|
customRegistryUrl?: string | undefined;
|
|
635
646
|
password?: string | undefined;
|
|
636
647
|
} | undefined;
|
|
648
|
+
aiCustomInstruction?: string | undefined;
|
|
637
649
|
};
|
|
638
650
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
639
651
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -700,6 +712,9 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
700
712
|
customRegistryUrl?: string | undefined;
|
|
701
713
|
password?: string | undefined;
|
|
702
714
|
} | undefined;
|
|
715
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
716
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
717
|
+
aiCustomInstruction?: string | undefined;
|
|
703
718
|
};
|
|
704
719
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
705
720
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -985,6 +1000,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
985
1000
|
cancelAt?: string | undefined;
|
|
986
1001
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
987
1002
|
};
|
|
1003
|
+
aiFeaturesEnabled: boolean;
|
|
1004
|
+
aiAskFeaturesEnabled: boolean;
|
|
988
1005
|
npmRegistry?: {
|
|
989
1006
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
990
1007
|
registryUrl: string;
|
|
@@ -997,6 +1014,7 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
997
1014
|
customRegistryUrl?: string | undefined;
|
|
998
1015
|
password?: string | undefined;
|
|
999
1016
|
} | undefined;
|
|
1017
|
+
aiCustomInstruction?: string | undefined;
|
|
1000
1018
|
};
|
|
1001
1019
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
1002
1020
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -1116,6 +1134,9 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
1116
1134
|
customRegistryUrl?: string | undefined;
|
|
1117
1135
|
password?: string | undefined;
|
|
1118
1136
|
} | undefined;
|
|
1137
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
1138
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
1139
|
+
aiCustomInstruction?: string | undefined;
|
|
1119
1140
|
};
|
|
1120
1141
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
1121
1142
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -10060,6 +10081,9 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10060
10081
|
customRegistryUrl?: string | undefined;
|
|
10061
10082
|
password?: string | undefined;
|
|
10062
10083
|
}>>;
|
|
10084
|
+
aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
10085
|
+
aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
10086
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
10063
10087
|
}, "strip", z$1.ZodTypeAny, {
|
|
10064
10088
|
id: string;
|
|
10065
10089
|
profile: {
|
|
@@ -10108,6 +10132,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10108
10132
|
cancelAt?: string | undefined;
|
|
10109
10133
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10110
10134
|
};
|
|
10135
|
+
aiFeaturesEnabled: boolean;
|
|
10136
|
+
aiAskFeaturesEnabled: boolean;
|
|
10111
10137
|
npmRegistry?: {
|
|
10112
10138
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
10113
10139
|
registryUrl: string;
|
|
@@ -10120,6 +10146,7 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10120
10146
|
customRegistryUrl?: string | undefined;
|
|
10121
10147
|
password?: string | undefined;
|
|
10122
10148
|
} | undefined;
|
|
10149
|
+
aiCustomInstruction?: string | undefined;
|
|
10123
10150
|
}, {
|
|
10124
10151
|
id: string;
|
|
10125
10152
|
profile: {
|
|
@@ -10180,6 +10207,9 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10180
10207
|
customRegistryUrl?: string | undefined;
|
|
10181
10208
|
password?: string | undefined;
|
|
10182
10209
|
} | undefined;
|
|
10210
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
10211
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
10212
|
+
aiCustomInstruction?: string | undefined;
|
|
10183
10213
|
}>, "many">;
|
|
10184
10214
|
}, "strip", z$1.ZodTypeAny, {
|
|
10185
10215
|
designSystems: {
|
|
@@ -10260,6 +10290,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10260
10290
|
cancelAt?: string | undefined;
|
|
10261
10291
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10262
10292
|
};
|
|
10293
|
+
aiFeaturesEnabled: boolean;
|
|
10294
|
+
aiAskFeaturesEnabled: boolean;
|
|
10263
10295
|
npmRegistry?: {
|
|
10264
10296
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
10265
10297
|
registryUrl: string;
|
|
@@ -10272,6 +10304,7 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10272
10304
|
customRegistryUrl?: string | undefined;
|
|
10273
10305
|
password?: string | undefined;
|
|
10274
10306
|
} | undefined;
|
|
10307
|
+
aiCustomInstruction?: string | undefined;
|
|
10275
10308
|
}[];
|
|
10276
10309
|
}, {
|
|
10277
10310
|
designSystems: {
|
|
@@ -10364,6 +10397,9 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10364
10397
|
customRegistryUrl?: string | undefined;
|
|
10365
10398
|
password?: string | undefined;
|
|
10366
10399
|
} | undefined;
|
|
10400
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
10401
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
10402
|
+
aiCustomInstruction?: string | undefined;
|
|
10367
10403
|
}[];
|
|
10368
10404
|
}>;
|
|
10369
10405
|
type DTOUserDesignSystemsResponse = z$1.infer<typeof DTOUserDesignSystemsResponse>;
|
|
@@ -123947,6 +123983,9 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
123947
123983
|
customRegistryUrl?: string | undefined;
|
|
123948
123984
|
password?: string | undefined;
|
|
123949
123985
|
}>>;
|
|
123986
|
+
aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
123987
|
+
aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
123988
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
123950
123989
|
}, "strip", z$1.ZodTypeAny, {
|
|
123951
123990
|
id: string;
|
|
123952
123991
|
profile: {
|
|
@@ -123995,6 +124034,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
123995
124034
|
cancelAt?: string | undefined;
|
|
123996
124035
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
123997
124036
|
};
|
|
124037
|
+
aiFeaturesEnabled: boolean;
|
|
124038
|
+
aiAskFeaturesEnabled: boolean;
|
|
123998
124039
|
npmRegistry?: {
|
|
123999
124040
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
124000
124041
|
registryUrl: string;
|
|
@@ -124007,6 +124048,7 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
124007
124048
|
customRegistryUrl?: string | undefined;
|
|
124008
124049
|
password?: string | undefined;
|
|
124009
124050
|
} | undefined;
|
|
124051
|
+
aiCustomInstruction?: string | undefined;
|
|
124010
124052
|
}, {
|
|
124011
124053
|
id: string;
|
|
124012
124054
|
profile: {
|
|
@@ -124067,6 +124109,9 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
124067
124109
|
customRegistryUrl?: string | undefined;
|
|
124068
124110
|
password?: string | undefined;
|
|
124069
124111
|
} | undefined;
|
|
124112
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
124113
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
124114
|
+
aiCustomInstruction?: string | undefined;
|
|
124070
124115
|
}>;
|
|
124071
124116
|
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
124072
124117
|
effectiveRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
@@ -124121,6 +124166,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
124121
124166
|
cancelAt?: string | undefined;
|
|
124122
124167
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
124123
124168
|
};
|
|
124169
|
+
aiFeaturesEnabled: boolean;
|
|
124170
|
+
aiAskFeaturesEnabled: boolean;
|
|
124124
124171
|
npmRegistry?: {
|
|
124125
124172
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
124126
124173
|
registryUrl: string;
|
|
@@ -124133,6 +124180,7 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
124133
124180
|
customRegistryUrl?: string | undefined;
|
|
124134
124181
|
password?: string | undefined;
|
|
124135
124182
|
} | undefined;
|
|
124183
|
+
aiCustomInstruction?: string | undefined;
|
|
124136
124184
|
};
|
|
124137
124185
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
124138
124186
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -124199,6 +124247,9 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
124199
124247
|
customRegistryUrl?: string | undefined;
|
|
124200
124248
|
password?: string | undefined;
|
|
124201
124249
|
} | undefined;
|
|
124250
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
124251
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
124252
|
+
aiCustomInstruction?: string | undefined;
|
|
124202
124253
|
};
|
|
124203
124254
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
124204
124255
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -124834,6 +124885,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
124834
124885
|
customRegistryUrl?: string | undefined;
|
|
124835
124886
|
password?: string | undefined;
|
|
124836
124887
|
}>>;
|
|
124888
|
+
aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
124889
|
+
aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
124890
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
124837
124891
|
}, "strip", z$1.ZodTypeAny, {
|
|
124838
124892
|
id: string;
|
|
124839
124893
|
profile: {
|
|
@@ -124882,6 +124936,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
124882
124936
|
cancelAt?: string | undefined;
|
|
124883
124937
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
124884
124938
|
};
|
|
124939
|
+
aiFeaturesEnabled: boolean;
|
|
124940
|
+
aiAskFeaturesEnabled: boolean;
|
|
124885
124941
|
npmRegistry?: {
|
|
124886
124942
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
124887
124943
|
registryUrl: string;
|
|
@@ -124894,6 +124950,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
124894
124950
|
customRegistryUrl?: string | undefined;
|
|
124895
124951
|
password?: string | undefined;
|
|
124896
124952
|
} | undefined;
|
|
124953
|
+
aiCustomInstruction?: string | undefined;
|
|
124897
124954
|
}, {
|
|
124898
124955
|
id: string;
|
|
124899
124956
|
profile: {
|
|
@@ -124954,6 +125011,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
124954
125011
|
customRegistryUrl?: string | undefined;
|
|
124955
125012
|
password?: string | undefined;
|
|
124956
125013
|
} | undefined;
|
|
125014
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
125015
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
125016
|
+
aiCustomInstruction?: string | undefined;
|
|
124957
125017
|
}>;
|
|
124958
125018
|
role: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
124959
125019
|
effectiveRole: z$1.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
@@ -125008,6 +125068,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
125008
125068
|
cancelAt?: string | undefined;
|
|
125009
125069
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
125010
125070
|
};
|
|
125071
|
+
aiFeaturesEnabled: boolean;
|
|
125072
|
+
aiAskFeaturesEnabled: boolean;
|
|
125011
125073
|
npmRegistry?: {
|
|
125012
125074
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
125013
125075
|
registryUrl: string;
|
|
@@ -125020,6 +125082,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
125020
125082
|
customRegistryUrl?: string | undefined;
|
|
125021
125083
|
password?: string | undefined;
|
|
125022
125084
|
} | undefined;
|
|
125085
|
+
aiCustomInstruction?: string | undefined;
|
|
125023
125086
|
};
|
|
125024
125087
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
125025
125088
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -125086,6 +125149,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
125086
125149
|
customRegistryUrl?: string | undefined;
|
|
125087
125150
|
password?: string | undefined;
|
|
125088
125151
|
} | undefined;
|
|
125152
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
125153
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
125154
|
+
aiCustomInstruction?: string | undefined;
|
|
125089
125155
|
};
|
|
125090
125156
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
125091
125157
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -125142,6 +125208,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
125142
125208
|
cancelAt?: string | undefined;
|
|
125143
125209
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
125144
125210
|
};
|
|
125211
|
+
aiFeaturesEnabled: boolean;
|
|
125212
|
+
aiAskFeaturesEnabled: boolean;
|
|
125145
125213
|
npmRegistry?: {
|
|
125146
125214
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
125147
125215
|
registryUrl: string;
|
|
@@ -125154,6 +125222,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
125154
125222
|
customRegistryUrl?: string | undefined;
|
|
125155
125223
|
password?: string | undefined;
|
|
125156
125224
|
} | undefined;
|
|
125225
|
+
aiCustomInstruction?: string | undefined;
|
|
125157
125226
|
};
|
|
125158
125227
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
125159
125228
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -125222,6 +125291,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
125222
125291
|
customRegistryUrl?: string | undefined;
|
|
125223
125292
|
password?: string | undefined;
|
|
125224
125293
|
} | undefined;
|
|
125294
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
125295
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
125296
|
+
aiCustomInstruction?: string | undefined;
|
|
125225
125297
|
};
|
|
125226
125298
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
125227
125299
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -129135,6 +129207,9 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
129135
129207
|
customRegistryUrl?: string | undefined;
|
|
129136
129208
|
password?: string | undefined;
|
|
129137
129209
|
}>>;
|
|
129210
|
+
aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
129211
|
+
aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
129212
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
129138
129213
|
}, "strip", z$1.ZodTypeAny, {
|
|
129139
129214
|
id: string;
|
|
129140
129215
|
profile: {
|
|
@@ -129183,6 +129258,8 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
129183
129258
|
cancelAt?: string | undefined;
|
|
129184
129259
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
129185
129260
|
};
|
|
129261
|
+
aiFeaturesEnabled: boolean;
|
|
129262
|
+
aiAskFeaturesEnabled: boolean;
|
|
129186
129263
|
npmRegistry?: {
|
|
129187
129264
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
129188
129265
|
registryUrl: string;
|
|
@@ -129195,6 +129272,7 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
129195
129272
|
customRegistryUrl?: string | undefined;
|
|
129196
129273
|
password?: string | undefined;
|
|
129197
129274
|
} | undefined;
|
|
129275
|
+
aiCustomInstruction?: string | undefined;
|
|
129198
129276
|
}, {
|
|
129199
129277
|
id: string;
|
|
129200
129278
|
profile: {
|
|
@@ -129255,6 +129333,9 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
129255
129333
|
customRegistryUrl?: string | undefined;
|
|
129256
129334
|
password?: string | undefined;
|
|
129257
129335
|
} | undefined;
|
|
129336
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
129337
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
129338
|
+
aiCustomInstruction?: string | undefined;
|
|
129258
129339
|
}>;
|
|
129259
129340
|
type DTOWorkspace = z$1.infer<typeof DTOWorkspace>;
|
|
129260
129341
|
declare const DTOWorkspaceCreateInput: z$1.ZodObject<{
|
|
@@ -129502,6 +129583,9 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129502
129583
|
customRegistryUrl?: string | undefined;
|
|
129503
129584
|
password?: string | undefined;
|
|
129504
129585
|
}>>;
|
|
129586
|
+
aiFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
129587
|
+
aiAskFeaturesEnabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
129588
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
129505
129589
|
}, "strip", z$1.ZodTypeAny, {
|
|
129506
129590
|
id: string;
|
|
129507
129591
|
profile: {
|
|
@@ -129550,6 +129634,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129550
129634
|
cancelAt?: string | undefined;
|
|
129551
129635
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
129552
129636
|
};
|
|
129637
|
+
aiFeaturesEnabled: boolean;
|
|
129638
|
+
aiAskFeaturesEnabled: boolean;
|
|
129553
129639
|
npmRegistry?: {
|
|
129554
129640
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
129555
129641
|
registryUrl: string;
|
|
@@ -129562,6 +129648,7 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129562
129648
|
customRegistryUrl?: string | undefined;
|
|
129563
129649
|
password?: string | undefined;
|
|
129564
129650
|
} | undefined;
|
|
129651
|
+
aiCustomInstruction?: string | undefined;
|
|
129565
129652
|
}, {
|
|
129566
129653
|
id: string;
|
|
129567
129654
|
profile: {
|
|
@@ -129622,6 +129709,9 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129622
129709
|
customRegistryUrl?: string | undefined;
|
|
129623
129710
|
password?: string | undefined;
|
|
129624
129711
|
} | undefined;
|
|
129712
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
129713
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
129714
|
+
aiCustomInstruction?: string | undefined;
|
|
129625
129715
|
}>;
|
|
129626
129716
|
}, "strip", z$1.ZodTypeAny, {
|
|
129627
129717
|
workspace: {
|
|
@@ -129672,6 +129762,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129672
129762
|
cancelAt?: string | undefined;
|
|
129673
129763
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
129674
129764
|
};
|
|
129765
|
+
aiFeaturesEnabled: boolean;
|
|
129766
|
+
aiAskFeaturesEnabled: boolean;
|
|
129675
129767
|
npmRegistry?: {
|
|
129676
129768
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
129677
129769
|
registryUrl: string;
|
|
@@ -129684,6 +129776,7 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129684
129776
|
customRegistryUrl?: string | undefined;
|
|
129685
129777
|
password?: string | undefined;
|
|
129686
129778
|
} | undefined;
|
|
129779
|
+
aiCustomInstruction?: string | undefined;
|
|
129687
129780
|
};
|
|
129688
129781
|
}, {
|
|
129689
129782
|
workspace: {
|
|
@@ -129746,6 +129839,9 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
129746
129839
|
customRegistryUrl?: string | undefined;
|
|
129747
129840
|
password?: string | undefined;
|
|
129748
129841
|
} | undefined;
|
|
129842
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
129843
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
129844
|
+
aiCustomInstruction?: string | undefined;
|
|
129749
129845
|
};
|
|
129750
129846
|
}>;
|
|
129751
129847
|
type DTOWorkspaceResponse = z$1.infer<typeof DTOWorkspaceResponse>;
|
|
@@ -134200,6 +134296,9 @@ declare const WorkspaceConfigurationPayload: z$1.ZodObject<{
|
|
|
134200
134296
|
poNumber?: string | null | undefined;
|
|
134201
134297
|
} | null | undefined;
|
|
134202
134298
|
}>>;
|
|
134299
|
+
aiFeaturesEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
134300
|
+
aiAskFeaturesEnabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
134301
|
+
aiCustomInstruction: z$1.ZodOptional<z$1.ZodString>;
|
|
134203
134302
|
}, "strip", z$1.ZodTypeAny, {
|
|
134204
134303
|
profile?: {
|
|
134205
134304
|
name?: string | undefined;
|
|
@@ -134237,6 +134336,9 @@ declare const WorkspaceConfigurationPayload: z$1.ZodObject<{
|
|
|
134237
134336
|
authHeaderValue?: string | undefined;
|
|
134238
134337
|
npmProxyRegistryConfigId?: string | undefined;
|
|
134239
134338
|
} | undefined;
|
|
134339
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
134340
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
134341
|
+
aiCustomInstruction?: string | undefined;
|
|
134240
134342
|
ipWhitelist?: {
|
|
134241
134343
|
entries?: {
|
|
134242
134344
|
name: string;
|
|
@@ -134293,6 +134395,9 @@ declare const WorkspaceConfigurationPayload: z$1.ZodObject<{
|
|
|
134293
134395
|
authHeaderValue?: string | undefined;
|
|
134294
134396
|
npmProxyRegistryConfigId?: string | undefined;
|
|
134295
134397
|
} | undefined;
|
|
134398
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
134399
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
134400
|
+
aiCustomInstruction?: string | undefined;
|
|
134296
134401
|
ipWhitelist?: {
|
|
134297
134402
|
entries?: {
|
|
134298
134403
|
name: string;
|
|
@@ -140482,6 +140587,8 @@ declare class DesignSystemsEndpoint {
|
|
|
140482
140587
|
cancelAt?: string | undefined;
|
|
140483
140588
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
140484
140589
|
};
|
|
140590
|
+
aiFeaturesEnabled: boolean;
|
|
140591
|
+
aiAskFeaturesEnabled: boolean;
|
|
140485
140592
|
npmRegistry?: {
|
|
140486
140593
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
140487
140594
|
registryUrl: string;
|
|
@@ -140494,6 +140601,7 @@ declare class DesignSystemsEndpoint {
|
|
|
140494
140601
|
customRegistryUrl?: string | undefined;
|
|
140495
140602
|
password?: string | undefined;
|
|
140496
140603
|
} | undefined;
|
|
140604
|
+
aiCustomInstruction?: string | undefined;
|
|
140497
140605
|
}[];
|
|
140498
140606
|
}>;
|
|
140499
140607
|
get(dsId: string): Promise<{
|
|
@@ -140782,6 +140890,41 @@ declare class ForgeArtifactsEndpoint {
|
|
|
140782
140890
|
}>;
|
|
140783
140891
|
}
|
|
140784
140892
|
|
|
140893
|
+
declare class ForgeFeatureArtifactsEndpoint {
|
|
140894
|
+
private readonly requestExecutor;
|
|
140895
|
+
constructor(requestExecutor: RequestExecutor);
|
|
140896
|
+
list(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
140897
|
+
artifacts: {
|
|
140898
|
+
id: string;
|
|
140899
|
+
createdAt: string;
|
|
140900
|
+
url: string;
|
|
140901
|
+
updatedAt: string;
|
|
140902
|
+
fileId: string;
|
|
140903
|
+
key: string;
|
|
140904
|
+
iterationId?: string | undefined;
|
|
140905
|
+
}[];
|
|
140906
|
+
}>;
|
|
140907
|
+
}
|
|
140908
|
+
|
|
140909
|
+
declare class ForgeFeatureIterationsEndpoint {
|
|
140910
|
+
private readonly requestExecutor;
|
|
140911
|
+
constructor(requestExecutor: RequestExecutor);
|
|
140912
|
+
list(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
140913
|
+
iterations: {
|
|
140914
|
+
id: string;
|
|
140915
|
+
createdAt: string;
|
|
140916
|
+
name: string;
|
|
140917
|
+
startedFromMessageId: string;
|
|
140918
|
+
updatedAt?: string | undefined;
|
|
140919
|
+
baseIterationId?: string | undefined;
|
|
140920
|
+
isInProgress?: boolean | undefined;
|
|
140921
|
+
staticPreviewUrl?: string | undefined;
|
|
140922
|
+
isBookmarked?: boolean | undefined;
|
|
140923
|
+
}[];
|
|
140924
|
+
}>;
|
|
140925
|
+
updateArtifacts(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureIterationUpdateArtifactsInput): Promise<any>;
|
|
140926
|
+
}
|
|
140927
|
+
|
|
140785
140928
|
declare class ForgeFeatureMessagesEndpoint {
|
|
140786
140929
|
private readonly requestExecutor;
|
|
140787
140930
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -140860,41 +141003,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
140860
141003
|
}>;
|
|
140861
141004
|
}
|
|
140862
141005
|
|
|
140863
|
-
declare class ForgeFeatureArtifactsEndpoint {
|
|
140864
|
-
private readonly requestExecutor;
|
|
140865
|
-
constructor(requestExecutor: RequestExecutor);
|
|
140866
|
-
list(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
140867
|
-
artifacts: {
|
|
140868
|
-
id: string;
|
|
140869
|
-
createdAt: string;
|
|
140870
|
-
url: string;
|
|
140871
|
-
updatedAt: string;
|
|
140872
|
-
fileId: string;
|
|
140873
|
-
key: string;
|
|
140874
|
-
iterationId?: string | undefined;
|
|
140875
|
-
}[];
|
|
140876
|
-
}>;
|
|
140877
|
-
}
|
|
140878
|
-
|
|
140879
|
-
declare class ForgeFeatureIterationsEndpoint {
|
|
140880
|
-
private readonly requestExecutor;
|
|
140881
|
-
constructor(requestExecutor: RequestExecutor);
|
|
140882
|
-
list(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
140883
|
-
iterations: {
|
|
140884
|
-
id: string;
|
|
140885
|
-
createdAt: string;
|
|
140886
|
-
name: string;
|
|
140887
|
-
startedFromMessageId: string;
|
|
140888
|
-
updatedAt?: string | undefined;
|
|
140889
|
-
baseIterationId?: string | undefined;
|
|
140890
|
-
isInProgress?: boolean | undefined;
|
|
140891
|
-
staticPreviewUrl?: string | undefined;
|
|
140892
|
-
isBookmarked?: boolean | undefined;
|
|
140893
|
-
}[];
|
|
140894
|
-
}>;
|
|
140895
|
-
updateArtifacts(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureIterationUpdateArtifactsInput): Promise<any>;
|
|
140896
|
-
}
|
|
140897
|
-
|
|
140898
141006
|
declare class ForgeProjectFeaturesEndpoint {
|
|
140899
141007
|
private readonly requestExecutor;
|
|
140900
141008
|
readonly messages: ForgeFeatureMessagesEndpoint;
|
|
@@ -142192,6 +142300,8 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
142192
142300
|
cancelAt?: string | undefined;
|
|
142193
142301
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142194
142302
|
};
|
|
142303
|
+
aiFeaturesEnabled: boolean;
|
|
142304
|
+
aiAskFeaturesEnabled: boolean;
|
|
142195
142305
|
npmRegistry?: {
|
|
142196
142306
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142197
142307
|
registryUrl: string;
|
|
@@ -142204,6 +142314,7 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
142204
142314
|
customRegistryUrl?: string | undefined;
|
|
142205
142315
|
password?: string | undefined;
|
|
142206
142316
|
} | undefined;
|
|
142317
|
+
aiCustomInstruction?: string | undefined;
|
|
142207
142318
|
};
|
|
142208
142319
|
}>;
|
|
142209
142320
|
}
|
|
@@ -142315,6 +142426,8 @@ declare class WorkspaceMembersEndpoint {
|
|
|
142315
142426
|
cancelAt?: string | undefined;
|
|
142316
142427
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142317
142428
|
};
|
|
142429
|
+
aiFeaturesEnabled: boolean;
|
|
142430
|
+
aiAskFeaturesEnabled: boolean;
|
|
142318
142431
|
npmRegistry?: {
|
|
142319
142432
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142320
142433
|
registryUrl: string;
|
|
@@ -142327,6 +142440,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
142327
142440
|
customRegistryUrl?: string | undefined;
|
|
142328
142441
|
password?: string | undefined;
|
|
142329
142442
|
} | undefined;
|
|
142443
|
+
aiCustomInstruction?: string | undefined;
|
|
142330
142444
|
};
|
|
142331
142445
|
}>;
|
|
142332
142446
|
invite(workspaceId: string, body: DTOWorkspaceInvitationsListInput): Promise<any>;
|
|
@@ -142379,6 +142493,8 @@ declare class WorkspaceMembersEndpoint {
|
|
|
142379
142493
|
cancelAt?: string | undefined;
|
|
142380
142494
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142381
142495
|
};
|
|
142496
|
+
aiFeaturesEnabled: boolean;
|
|
142497
|
+
aiAskFeaturesEnabled: boolean;
|
|
142382
142498
|
npmRegistry?: {
|
|
142383
142499
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142384
142500
|
registryUrl: string;
|
|
@@ -142391,6 +142507,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
142391
142507
|
customRegistryUrl?: string | undefined;
|
|
142392
142508
|
password?: string | undefined;
|
|
142393
142509
|
} | undefined;
|
|
142510
|
+
aiCustomInstruction?: string | undefined;
|
|
142394
142511
|
};
|
|
142395
142512
|
}>;
|
|
142396
142513
|
}
|
|
@@ -142476,6 +142593,8 @@ declare class WorkspacesEndpoint {
|
|
|
142476
142593
|
cancelAt?: string | undefined;
|
|
142477
142594
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142478
142595
|
};
|
|
142596
|
+
aiFeaturesEnabled: boolean;
|
|
142597
|
+
aiAskFeaturesEnabled: boolean;
|
|
142479
142598
|
npmRegistry?: {
|
|
142480
142599
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142481
142600
|
registryUrl: string;
|
|
@@ -142488,6 +142607,7 @@ declare class WorkspacesEndpoint {
|
|
|
142488
142607
|
customRegistryUrl?: string | undefined;
|
|
142489
142608
|
password?: string | undefined;
|
|
142490
142609
|
} | undefined;
|
|
142610
|
+
aiCustomInstruction?: string | undefined;
|
|
142491
142611
|
};
|
|
142492
142612
|
}>;
|
|
142493
142613
|
list(): Promise<{
|
|
@@ -142540,6 +142660,8 @@ declare class WorkspacesEndpoint {
|
|
|
142540
142660
|
cancelAt?: string | undefined;
|
|
142541
142661
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142542
142662
|
};
|
|
142663
|
+
aiFeaturesEnabled: boolean;
|
|
142664
|
+
aiAskFeaturesEnabled: boolean;
|
|
142543
142665
|
npmRegistry?: {
|
|
142544
142666
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142545
142667
|
registryUrl: string;
|
|
@@ -142552,6 +142674,7 @@ declare class WorkspacesEndpoint {
|
|
|
142552
142674
|
customRegistryUrl?: string | undefined;
|
|
142553
142675
|
password?: string | undefined;
|
|
142554
142676
|
} | undefined;
|
|
142677
|
+
aiCustomInstruction?: string | undefined;
|
|
142555
142678
|
};
|
|
142556
142679
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
142557
142680
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -142608,6 +142731,8 @@ declare class WorkspacesEndpoint {
|
|
|
142608
142731
|
cancelAt?: string | undefined;
|
|
142609
142732
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142610
142733
|
};
|
|
142734
|
+
aiFeaturesEnabled: boolean;
|
|
142735
|
+
aiAskFeaturesEnabled: boolean;
|
|
142611
142736
|
npmRegistry?: {
|
|
142612
142737
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142613
142738
|
registryUrl: string;
|
|
@@ -142620,6 +142745,7 @@ declare class WorkspacesEndpoint {
|
|
|
142620
142745
|
customRegistryUrl?: string | undefined;
|
|
142621
142746
|
password?: string | undefined;
|
|
142622
142747
|
} | undefined;
|
|
142748
|
+
aiCustomInstruction?: string | undefined;
|
|
142623
142749
|
};
|
|
142624
142750
|
}>;
|
|
142625
142751
|
delete(workspaceId: string): Promise<any>;
|
|
@@ -142729,6 +142855,8 @@ declare class WorkspacesEndpoint {
|
|
|
142729
142855
|
cancelAt?: string | undefined;
|
|
142730
142856
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142731
142857
|
};
|
|
142858
|
+
aiFeaturesEnabled: boolean;
|
|
142859
|
+
aiAskFeaturesEnabled: boolean;
|
|
142732
142860
|
npmRegistry?: {
|
|
142733
142861
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142734
142862
|
registryUrl: string;
|
|
@@ -142741,6 +142869,7 @@ declare class WorkspacesEndpoint {
|
|
|
142741
142869
|
customRegistryUrl?: string | undefined;
|
|
142742
142870
|
password?: string | undefined;
|
|
142743
142871
|
} | undefined;
|
|
142872
|
+
aiCustomInstruction?: string | undefined;
|
|
142744
142873
|
};
|
|
142745
142874
|
}>;
|
|
142746
142875
|
}
|
|
@@ -142842,6 +142971,8 @@ declare class UsersEndpoint {
|
|
|
142842
142971
|
cancelAt?: string | undefined;
|
|
142843
142972
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
142844
142973
|
};
|
|
142974
|
+
aiFeaturesEnabled: boolean;
|
|
142975
|
+
aiAskFeaturesEnabled: boolean;
|
|
142845
142976
|
npmRegistry?: {
|
|
142846
142977
|
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
142847
142978
|
registryUrl: string;
|
|
@@ -142854,6 +142985,7 @@ declare class UsersEndpoint {
|
|
|
142854
142985
|
customRegistryUrl?: string | undefined;
|
|
142855
142986
|
password?: string | undefined;
|
|
142856
142987
|
} | undefined;
|
|
142988
|
+
aiCustomInstruction?: string | undefined;
|
|
142857
142989
|
};
|
|
142858
142990
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
142859
142991
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
@@ -145400,4 +145532,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
145400
145532
|
reason: ValidationErrorReason | undefined;
|
|
145401
145533
|
};
|
|
145402
145534
|
|
|
145403
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, 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, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
145535
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, 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, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|