@supernova-studio/client 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +123 -3
- package/dist/index.d.ts +123 -3
- package/dist/index.js +18 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -52066,6 +52066,9 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52066
52066
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52067
52067
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52068
52068
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52069
|
+
isDeprecated: z.ZodBoolean;
|
|
52070
|
+
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
52071
|
+
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
52069
52072
|
}, "strip", z.ZodTypeAny, {
|
|
52070
52073
|
isPrivate: boolean;
|
|
52071
52074
|
id: string;
|
|
@@ -52111,6 +52114,7 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52111
52114
|
}[]>;
|
|
52112
52115
|
usesBrands: boolean;
|
|
52113
52116
|
usesThemes: boolean;
|
|
52117
|
+
isDeprecated: boolean;
|
|
52114
52118
|
properties?: ({
|
|
52115
52119
|
options: Record<string, {
|
|
52116
52120
|
description: string;
|
|
@@ -52175,6 +52179,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52175
52179
|
gitUrl?: string | undefined;
|
|
52176
52180
|
gitBranch?: string | undefined;
|
|
52177
52181
|
gitDirectory?: string | undefined;
|
|
52182
|
+
deprecationNote?: string | undefined;
|
|
52183
|
+
replacementExporterId?: string | undefined;
|
|
52178
52184
|
}, {
|
|
52179
52185
|
isPrivate: boolean;
|
|
52180
52186
|
id: string;
|
|
@@ -52220,6 +52226,7 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52220
52226
|
}[]>;
|
|
52221
52227
|
usesBrands: boolean;
|
|
52222
52228
|
usesThemes: boolean;
|
|
52229
|
+
isDeprecated: boolean;
|
|
52223
52230
|
properties?: ({
|
|
52224
52231
|
options: Record<string, {
|
|
52225
52232
|
description: string;
|
|
@@ -52284,6 +52291,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
52284
52291
|
gitUrl?: string | null | undefined;
|
|
52285
52292
|
gitBranch?: string | null | undefined;
|
|
52286
52293
|
gitDirectory?: string | null | undefined;
|
|
52294
|
+
deprecationNote?: string | undefined;
|
|
52295
|
+
replacementExporterId?: string | undefined;
|
|
52287
52296
|
}>;
|
|
52288
52297
|
type DTOExporter = z.infer<typeof DTOExporter>;
|
|
52289
52298
|
declare const DTOExporterMembership: z.ZodObject<{
|
|
@@ -52662,6 +52671,9 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52662
52671
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52663
52672
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52664
52673
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
52674
|
+
isDeprecated: z.ZodBoolean;
|
|
52675
|
+
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
52676
|
+
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
52665
52677
|
}, "strip", z.ZodTypeAny, {
|
|
52666
52678
|
isPrivate: boolean;
|
|
52667
52679
|
id: string;
|
|
@@ -52707,6 +52719,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52707
52719
|
}[]>;
|
|
52708
52720
|
usesBrands: boolean;
|
|
52709
52721
|
usesThemes: boolean;
|
|
52722
|
+
isDeprecated: boolean;
|
|
52710
52723
|
properties?: ({
|
|
52711
52724
|
options: Record<string, {
|
|
52712
52725
|
description: string;
|
|
@@ -52771,6 +52784,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52771
52784
|
gitUrl?: string | undefined;
|
|
52772
52785
|
gitBranch?: string | undefined;
|
|
52773
52786
|
gitDirectory?: string | undefined;
|
|
52787
|
+
deprecationNote?: string | undefined;
|
|
52788
|
+
replacementExporterId?: string | undefined;
|
|
52774
52789
|
}, {
|
|
52775
52790
|
isPrivate: boolean;
|
|
52776
52791
|
id: string;
|
|
@@ -52816,6 +52831,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52816
52831
|
}[]>;
|
|
52817
52832
|
usesBrands: boolean;
|
|
52818
52833
|
usesThemes: boolean;
|
|
52834
|
+
isDeprecated: boolean;
|
|
52819
52835
|
properties?: ({
|
|
52820
52836
|
options: Record<string, {
|
|
52821
52837
|
description: string;
|
|
@@ -52880,6 +52896,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52880
52896
|
gitUrl?: string | null | undefined;
|
|
52881
52897
|
gitBranch?: string | null | undefined;
|
|
52882
52898
|
gitDirectory?: string | null | undefined;
|
|
52899
|
+
deprecationNote?: string | undefined;
|
|
52900
|
+
replacementExporterId?: string | undefined;
|
|
52883
52901
|
}>;
|
|
52884
52902
|
membership: z.ZodObject<{
|
|
52885
52903
|
workspaceId: z.ZodString;
|
|
@@ -52945,6 +52963,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
52945
52963
|
}[]>;
|
|
52946
52964
|
usesBrands: boolean;
|
|
52947
52965
|
usesThemes: boolean;
|
|
52966
|
+
isDeprecated: boolean;
|
|
52948
52967
|
properties?: ({
|
|
52949
52968
|
options: Record<string, {
|
|
52950
52969
|
description: string;
|
|
@@ -53009,6 +53028,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53009
53028
|
gitUrl?: string | undefined;
|
|
53010
53029
|
gitBranch?: string | undefined;
|
|
53011
53030
|
gitDirectory?: string | undefined;
|
|
53031
|
+
deprecationNote?: string | undefined;
|
|
53032
|
+
replacementExporterId?: string | undefined;
|
|
53012
53033
|
};
|
|
53013
53034
|
}, {
|
|
53014
53035
|
membership: {
|
|
@@ -53061,6 +53082,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53061
53082
|
}[]>;
|
|
53062
53083
|
usesBrands: boolean;
|
|
53063
53084
|
usesThemes: boolean;
|
|
53085
|
+
isDeprecated: boolean;
|
|
53064
53086
|
properties?: ({
|
|
53065
53087
|
options: Record<string, {
|
|
53066
53088
|
description: string;
|
|
@@ -53125,6 +53147,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
53125
53147
|
gitUrl?: string | null | undefined;
|
|
53126
53148
|
gitBranch?: string | null | undefined;
|
|
53127
53149
|
gitDirectory?: string | null | undefined;
|
|
53150
|
+
deprecationNote?: string | undefined;
|
|
53151
|
+
replacementExporterId?: string | undefined;
|
|
53128
53152
|
};
|
|
53129
53153
|
}>;
|
|
53130
53154
|
type DTOExporterResponse = z.infer<typeof DTOExporterResponse>;
|
|
@@ -53490,6 +53514,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53490
53514
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
53491
53515
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
53492
53516
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
53517
|
+
isDeprecated: z.ZodBoolean;
|
|
53518
|
+
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
53519
|
+
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
53493
53520
|
}, "strip", z.ZodTypeAny, {
|
|
53494
53521
|
isPrivate: boolean;
|
|
53495
53522
|
id: string;
|
|
@@ -53535,6 +53562,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53535
53562
|
}[]>;
|
|
53536
53563
|
usesBrands: boolean;
|
|
53537
53564
|
usesThemes: boolean;
|
|
53565
|
+
isDeprecated: boolean;
|
|
53538
53566
|
properties?: ({
|
|
53539
53567
|
options: Record<string, {
|
|
53540
53568
|
description: string;
|
|
@@ -53599,6 +53627,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53599
53627
|
gitUrl?: string | undefined;
|
|
53600
53628
|
gitBranch?: string | undefined;
|
|
53601
53629
|
gitDirectory?: string | undefined;
|
|
53630
|
+
deprecationNote?: string | undefined;
|
|
53631
|
+
replacementExporterId?: string | undefined;
|
|
53602
53632
|
}, {
|
|
53603
53633
|
isPrivate: boolean;
|
|
53604
53634
|
id: string;
|
|
@@ -53644,6 +53674,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53644
53674
|
}[]>;
|
|
53645
53675
|
usesBrands: boolean;
|
|
53646
53676
|
usesThemes: boolean;
|
|
53677
|
+
isDeprecated: boolean;
|
|
53647
53678
|
properties?: ({
|
|
53648
53679
|
options: Record<string, {
|
|
53649
53680
|
description: string;
|
|
@@ -53708,6 +53739,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53708
53739
|
gitUrl?: string | null | undefined;
|
|
53709
53740
|
gitBranch?: string | null | undefined;
|
|
53710
53741
|
gitDirectory?: string | null | undefined;
|
|
53742
|
+
deprecationNote?: string | undefined;
|
|
53743
|
+
replacementExporterId?: string | undefined;
|
|
53711
53744
|
}>, "many">;
|
|
53712
53745
|
membership: z.ZodArray<z.ZodObject<{
|
|
53713
53746
|
workspaceId: z.ZodString;
|
|
@@ -53773,6 +53806,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53773
53806
|
}[]>;
|
|
53774
53807
|
usesBrands: boolean;
|
|
53775
53808
|
usesThemes: boolean;
|
|
53809
|
+
isDeprecated: boolean;
|
|
53776
53810
|
properties?: ({
|
|
53777
53811
|
options: Record<string, {
|
|
53778
53812
|
description: string;
|
|
@@ -53837,6 +53871,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53837
53871
|
gitUrl?: string | undefined;
|
|
53838
53872
|
gitBranch?: string | undefined;
|
|
53839
53873
|
gitDirectory?: string | undefined;
|
|
53874
|
+
deprecationNote?: string | undefined;
|
|
53875
|
+
replacementExporterId?: string | undefined;
|
|
53840
53876
|
}[];
|
|
53841
53877
|
}, {
|
|
53842
53878
|
membership: {
|
|
@@ -53889,6 +53925,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53889
53925
|
}[]>;
|
|
53890
53926
|
usesBrands: boolean;
|
|
53891
53927
|
usesThemes: boolean;
|
|
53928
|
+
isDeprecated: boolean;
|
|
53892
53929
|
properties?: ({
|
|
53893
53930
|
options: Record<string, {
|
|
53894
53931
|
description: string;
|
|
@@ -53953,6 +53990,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
53953
53990
|
gitUrl?: string | null | undefined;
|
|
53954
53991
|
gitBranch?: string | null | undefined;
|
|
53955
53992
|
gitDirectory?: string | null | undefined;
|
|
53993
|
+
deprecationNote?: string | undefined;
|
|
53994
|
+
replacementExporterId?: string | undefined;
|
|
53956
53995
|
}[];
|
|
53957
53996
|
}>;
|
|
53958
53997
|
type DTOExporterListResponse = z.infer<typeof DTOExporterListResponse>;
|
|
@@ -53977,6 +54016,20 @@ declare const DTOExporterUpdateInput: z.ZodObject<{
|
|
|
53977
54016
|
url?: string | undefined;
|
|
53978
54017
|
}>;
|
|
53979
54018
|
type DTOExporterUpdateInput = z.infer<typeof DTOExporterUpdateInput>;
|
|
54019
|
+
declare const DTOExporterDeprecationInput: z.ZodObject<{
|
|
54020
|
+
isDeprecated: z.ZodBoolean;
|
|
54021
|
+
deprecationNote: z.ZodOptional<z.ZodString>;
|
|
54022
|
+
replacementExporterId: z.ZodOptional<z.ZodString>;
|
|
54023
|
+
}, "strip", z.ZodTypeAny, {
|
|
54024
|
+
isDeprecated: boolean;
|
|
54025
|
+
deprecationNote?: string | undefined;
|
|
54026
|
+
replacementExporterId?: string | undefined;
|
|
54027
|
+
}, {
|
|
54028
|
+
isDeprecated: boolean;
|
|
54029
|
+
deprecationNote?: string | undefined;
|
|
54030
|
+
replacementExporterId?: string | undefined;
|
|
54031
|
+
}>;
|
|
54032
|
+
type DTOExporterDeprecationInput = z.infer<typeof DTOExporterDeprecationInput>;
|
|
53980
54033
|
|
|
53981
54034
|
declare const DTOExportJobsListFilter: z.ZodObject<{
|
|
53982
54035
|
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
@@ -57670,6 +57723,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
57670
57723
|
}[] | null | undefined;
|
|
57671
57724
|
} | undefined;
|
|
57672
57725
|
}>, "many">;
|
|
57726
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
57673
57727
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
57674
57728
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
57675
57729
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -57988,6 +58042,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
57988
58042
|
}[] | undefined;
|
|
57989
58043
|
} | undefined;
|
|
57990
58044
|
}[];
|
|
58045
|
+
isExporterDeprecated: boolean;
|
|
57991
58046
|
brandPersistentId?: string | undefined;
|
|
57992
58047
|
themePersistentId?: string | undefined;
|
|
57993
58048
|
themePersistentIds?: string[] | undefined;
|
|
@@ -58186,6 +58241,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
58186
58241
|
}[] | null | undefined;
|
|
58187
58242
|
} | undefined;
|
|
58188
58243
|
}[];
|
|
58244
|
+
isExporterDeprecated: boolean;
|
|
58189
58245
|
brandPersistentId?: string | undefined;
|
|
58190
58246
|
themePersistentId?: string | undefined;
|
|
58191
58247
|
themePersistentIds?: string[] | undefined;
|
|
@@ -59047,6 +59103,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
59047
59103
|
}[] | null | undefined;
|
|
59048
59104
|
} | undefined;
|
|
59049
59105
|
}>, "many">;
|
|
59106
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
59050
59107
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
59051
59108
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
59052
59109
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -59365,6 +59422,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
59365
59422
|
}[] | undefined;
|
|
59366
59423
|
} | undefined;
|
|
59367
59424
|
}[];
|
|
59425
|
+
isExporterDeprecated: boolean;
|
|
59368
59426
|
brandPersistentId?: string | undefined;
|
|
59369
59427
|
themePersistentId?: string | undefined;
|
|
59370
59428
|
themePersistentIds?: string[] | undefined;
|
|
@@ -59563,6 +59621,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
59563
59621
|
}[] | null | undefined;
|
|
59564
59622
|
} | undefined;
|
|
59565
59623
|
}[];
|
|
59624
|
+
isExporterDeprecated: boolean;
|
|
59566
59625
|
brandPersistentId?: string | undefined;
|
|
59567
59626
|
themePersistentId?: string | undefined;
|
|
59568
59627
|
themePersistentIds?: string[] | undefined;
|
|
@@ -59763,6 +59822,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
59763
59822
|
}[] | undefined;
|
|
59764
59823
|
} | undefined;
|
|
59765
59824
|
}[];
|
|
59825
|
+
isExporterDeprecated: boolean;
|
|
59766
59826
|
brandPersistentId?: string | undefined;
|
|
59767
59827
|
themePersistentId?: string | undefined;
|
|
59768
59828
|
themePersistentIds?: string[] | undefined;
|
|
@@ -59963,6 +60023,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
59963
60023
|
}[] | null | undefined;
|
|
59964
60024
|
} | undefined;
|
|
59965
60025
|
}[];
|
|
60026
|
+
isExporterDeprecated: boolean;
|
|
59966
60027
|
brandPersistentId?: string | undefined;
|
|
59967
60028
|
themePersistentId?: string | undefined;
|
|
59968
60029
|
themePersistentIds?: string[] | undefined;
|
|
@@ -60825,6 +60886,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60825
60886
|
}[] | null | undefined;
|
|
60826
60887
|
} | undefined;
|
|
60827
60888
|
}>, "many">;
|
|
60889
|
+
isExporterDeprecated: z.ZodBoolean;
|
|
60828
60890
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
60829
60891
|
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
60830
60892
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -61143,6 +61205,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
61143
61205
|
}[] | undefined;
|
|
61144
61206
|
} | undefined;
|
|
61145
61207
|
}[];
|
|
61208
|
+
isExporterDeprecated: boolean;
|
|
61146
61209
|
brandPersistentId?: string | undefined;
|
|
61147
61210
|
themePersistentId?: string | undefined;
|
|
61148
61211
|
themePersistentIds?: string[] | undefined;
|
|
@@ -61341,6 +61404,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
61341
61404
|
}[] | null | undefined;
|
|
61342
61405
|
} | undefined;
|
|
61343
61406
|
}[];
|
|
61407
|
+
isExporterDeprecated: boolean;
|
|
61344
61408
|
brandPersistentId?: string | undefined;
|
|
61345
61409
|
themePersistentId?: string | undefined;
|
|
61346
61410
|
themePersistentIds?: string[] | undefined;
|
|
@@ -61541,6 +61605,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
61541
61605
|
}[] | undefined;
|
|
61542
61606
|
} | undefined;
|
|
61543
61607
|
}[];
|
|
61608
|
+
isExporterDeprecated: boolean;
|
|
61544
61609
|
brandPersistentId?: string | undefined;
|
|
61545
61610
|
themePersistentId?: string | undefined;
|
|
61546
61611
|
themePersistentIds?: string[] | undefined;
|
|
@@ -61741,6 +61806,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
61741
61806
|
}[] | null | undefined;
|
|
61742
61807
|
} | undefined;
|
|
61743
61808
|
}[];
|
|
61809
|
+
isExporterDeprecated: boolean;
|
|
61744
61810
|
brandPersistentId?: string | undefined;
|
|
61745
61811
|
themePersistentId?: string | undefined;
|
|
61746
61812
|
themePersistentIds?: string[] | undefined;
|
|
@@ -91868,6 +91934,7 @@ declare class ExportersEndpoint {
|
|
|
91868
91934
|
}[]>;
|
|
91869
91935
|
usesBrands: boolean;
|
|
91870
91936
|
usesThemes: boolean;
|
|
91937
|
+
isDeprecated: boolean;
|
|
91871
91938
|
properties?: ({
|
|
91872
91939
|
options: Record<string, {
|
|
91873
91940
|
description: string;
|
|
@@ -91932,6 +91999,8 @@ declare class ExportersEndpoint {
|
|
|
91932
91999
|
gitUrl?: string | undefined;
|
|
91933
92000
|
gitBranch?: string | undefined;
|
|
91934
92001
|
gitDirectory?: string | undefined;
|
|
92002
|
+
deprecationNote?: string | undefined;
|
|
92003
|
+
replacementExporterId?: string | undefined;
|
|
91935
92004
|
};
|
|
91936
92005
|
}>;
|
|
91937
92006
|
list(workspaceId: string, query: DTOExporterListQuery): Promise<{
|
|
@@ -91985,6 +92054,7 @@ declare class ExportersEndpoint {
|
|
|
91985
92054
|
}[]>;
|
|
91986
92055
|
usesBrands: boolean;
|
|
91987
92056
|
usesThemes: boolean;
|
|
92057
|
+
isDeprecated: boolean;
|
|
91988
92058
|
properties?: ({
|
|
91989
92059
|
options: Record<string, {
|
|
91990
92060
|
description: string;
|
|
@@ -92049,6 +92119,8 @@ declare class ExportersEndpoint {
|
|
|
92049
92119
|
gitUrl?: string | undefined;
|
|
92050
92120
|
gitBranch?: string | undefined;
|
|
92051
92121
|
gitDirectory?: string | undefined;
|
|
92122
|
+
deprecationNote?: string | undefined;
|
|
92123
|
+
replacementExporterId?: string | undefined;
|
|
92052
92124
|
}[];
|
|
92053
92125
|
}>;
|
|
92054
92126
|
get(workspaceId: string, exporterId: string): Promise<{
|
|
@@ -92102,6 +92174,7 @@ declare class ExportersEndpoint {
|
|
|
92102
92174
|
}[]>;
|
|
92103
92175
|
usesBrands: boolean;
|
|
92104
92176
|
usesThemes: boolean;
|
|
92177
|
+
isDeprecated: boolean;
|
|
92105
92178
|
properties?: ({
|
|
92106
92179
|
options: Record<string, {
|
|
92107
92180
|
description: string;
|
|
@@ -92166,6 +92239,8 @@ declare class ExportersEndpoint {
|
|
|
92166
92239
|
gitUrl?: string | undefined;
|
|
92167
92240
|
gitBranch?: string | undefined;
|
|
92168
92241
|
gitDirectory?: string | undefined;
|
|
92242
|
+
deprecationNote?: string | undefined;
|
|
92243
|
+
replacementExporterId?: string | undefined;
|
|
92169
92244
|
};
|
|
92170
92245
|
}>;
|
|
92171
92246
|
}
|
|
@@ -94831,6 +94906,7 @@ declare class PipelinesEndpoint {
|
|
|
94831
94906
|
}[] | undefined;
|
|
94832
94907
|
} | undefined;
|
|
94833
94908
|
}[];
|
|
94909
|
+
isExporterDeprecated: boolean;
|
|
94834
94910
|
brandPersistentId?: string | undefined;
|
|
94835
94911
|
themePersistentId?: string | undefined;
|
|
94836
94912
|
themePersistentIds?: string[] | undefined;
|
|
@@ -95032,6 +95108,7 @@ declare class PipelinesEndpoint {
|
|
|
95032
95108
|
}[] | undefined;
|
|
95033
95109
|
} | undefined;
|
|
95034
95110
|
}[];
|
|
95111
|
+
isExporterDeprecated: boolean;
|
|
95035
95112
|
brandPersistentId?: string | undefined;
|
|
95036
95113
|
themePersistentId?: string | undefined;
|
|
95037
95114
|
themePersistentIds?: string[] | undefined;
|
|
@@ -95233,6 +95310,7 @@ declare class PipelinesEndpoint {
|
|
|
95233
95310
|
}[] | undefined;
|
|
95234
95311
|
} | undefined;
|
|
95235
95312
|
}[];
|
|
95313
|
+
isExporterDeprecated: boolean;
|
|
95236
95314
|
brandPersistentId?: string | undefined;
|
|
95237
95315
|
themePersistentId?: string | undefined;
|
|
95238
95316
|
themePersistentIds?: string[] | undefined;
|
|
@@ -102737,7 +102815,7 @@ declare class VersionRoomBaseYDoc {
|
|
|
102737
102815
|
type DocsPage = VersionRoomDocsPage | LocalDocsPage;
|
|
102738
102816
|
type DocsPageGroup = VersionRoomDocsPageGroup | LocalDocsPageGroup;
|
|
102739
102817
|
type Approval = VersionRoomApproval | LocalApproval;
|
|
102740
|
-
type Input = {
|
|
102818
|
+
type Input$1 = {
|
|
102741
102819
|
pages: DocsPage[];
|
|
102742
102820
|
pageSnapshots: DocumentationPageSnapshot[];
|
|
102743
102821
|
pageContentHashes: Record<string, string>;
|
|
@@ -102747,7 +102825,7 @@ type Input = {
|
|
|
102747
102825
|
approvals: Approval[];
|
|
102748
102826
|
settings: DocumentationHierarchySettings;
|
|
102749
102827
|
};
|
|
102750
|
-
declare function computeDocsHierarchy(input: Input, options?: {
|
|
102828
|
+
declare function computeDocsHierarchy(input: Input$1, options?: {
|
|
102751
102829
|
includeDeletedContent?: boolean;
|
|
102752
102830
|
debug?: boolean;
|
|
102753
102831
|
}): DTODocumentationHierarchyV2;
|
|
@@ -102820,6 +102898,48 @@ declare class DocsStructureRepository<T> {
|
|
|
102820
102898
|
private onYUpdate;
|
|
102821
102899
|
}
|
|
102822
102900
|
|
|
102901
|
+
type Page = LocalDocsPage | VersionRoomDocsPage;
|
|
102902
|
+
type Group = LocalDocsPageGroup | VersionRoomDocsPageGroup;
|
|
102903
|
+
type ApprovalState = LocalApproval | VersionRoomApproval;
|
|
102904
|
+
type Input = LocalExecutorConfig & {
|
|
102905
|
+
actions: DTOElementActionInput[];
|
|
102906
|
+
};
|
|
102907
|
+
declare function applyActionsLocally(input: Input): {
|
|
102908
|
+
pages: Page[];
|
|
102909
|
+
groups: Group[];
|
|
102910
|
+
approvals: ApprovalState[];
|
|
102911
|
+
};
|
|
102912
|
+
type LocalExecutorConfig = {
|
|
102913
|
+
userId: string;
|
|
102914
|
+
designSystemVersionId: string;
|
|
102915
|
+
remoteState: VersionRoomBaseYDocState;
|
|
102916
|
+
};
|
|
102917
|
+
declare class LocalDocsElementActionExecutor {
|
|
102918
|
+
private readonly userId;
|
|
102919
|
+
private readonly designSystemVersionId;
|
|
102920
|
+
private readonly pages;
|
|
102921
|
+
private readonly groups;
|
|
102922
|
+
private readonly approvalStates;
|
|
102923
|
+
constructor(config: LocalExecutorConfig);
|
|
102924
|
+
get localState(): {
|
|
102925
|
+
pages: Page[];
|
|
102926
|
+
groups: Group[];
|
|
102927
|
+
approvals: ApprovalState[];
|
|
102928
|
+
};
|
|
102929
|
+
applyActions(trx: DTOElementActionInput[]): void;
|
|
102930
|
+
applyTransaction(trx: DTOElementActionInput): void;
|
|
102931
|
+
private documentationPageCreate;
|
|
102932
|
+
private documentationPageUpdate;
|
|
102933
|
+
private documentationPageMove;
|
|
102934
|
+
private documentationPageDelete;
|
|
102935
|
+
private documentationGroupCreate;
|
|
102936
|
+
private documentationGroupUpdate;
|
|
102937
|
+
private documentationGroupMove;
|
|
102938
|
+
private documentationGroupDelete;
|
|
102939
|
+
private documentationApprovalStateUpdate;
|
|
102940
|
+
private calculateSortOrder;
|
|
102941
|
+
}
|
|
102942
|
+
|
|
102823
102943
|
declare enum ParsedFigmaFileURLError {
|
|
102824
102944
|
InvalidUrl = "InvalidUrl",
|
|
102825
102945
|
InvalidFigmaFileId = "InvalidFigmaFileId"
|
|
@@ -102881,4 +103001,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
102881
103001
|
reason: ValidationErrorReason | undefined;
|
|
102882
103002
|
};
|
|
102883
103003
|
|
|
102884
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, 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, 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, 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, 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, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, 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, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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, yjsToItemConfiguration };
|
|
103004
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, 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, 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, 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, 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, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, 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, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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, yjsToItemConfiguration };
|