@supernova-studio/client 0.58.8 → 0.58.9
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 +821 -90
- package/dist/index.d.ts +821 -90
- package/dist/index.js +123 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +124 -32
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/data-source.ts +28 -3
- package/src/api/endpoints/design-system/sources.ts +21 -1
- package/src/api/endpoints/design-system/versions/elements-action.ts +1 -3
- package/src/api/endpoints/design-system/versions/index.ts +0 -1
- package/src/api/endpoints/design-system/versions/versions.ts +3 -3
- package/src/api/endpoints/design-system/versions/elements-actions.ts +0 -20
package/dist/index.d.ts
CHANGED
|
@@ -5780,7 +5780,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5780
5780
|
themeId?: string | null | undefined;
|
|
5781
5781
|
}>]>;
|
|
5782
5782
|
type DTODataSource = z.infer<typeof DTODataSource>;
|
|
5783
|
-
declare const
|
|
5783
|
+
declare const DTODataSourceResponse: z.ZodObject<{
|
|
5784
5784
|
source: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5785
5785
|
id: z.ZodString;
|
|
5786
5786
|
type: z.ZodLiteral<"Figma">;
|
|
@@ -6682,7 +6682,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6682
6682
|
};
|
|
6683
6683
|
};
|
|
6684
6684
|
}>;
|
|
6685
|
-
type
|
|
6685
|
+
type DTODataSourceResponse = z.infer<typeof DTODataSourceResponse>;
|
|
6686
6686
|
declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
6687
6687
|
sources: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6688
6688
|
id: z.ZodString;
|
|
@@ -7586,6 +7586,89 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7586
7586
|
})[];
|
|
7587
7587
|
}>;
|
|
7588
7588
|
type DTODataSourcesListResponse = z.infer<typeof DTODataSourcesListResponse>;
|
|
7589
|
+
declare const DTODataSourceFigmaScope: z.ZodObject<{
|
|
7590
|
+
assets: z.ZodBoolean;
|
|
7591
|
+
components: z.ZodBoolean;
|
|
7592
|
+
documentationFrames: z.ZodBoolean;
|
|
7593
|
+
tokens: z.ZodBoolean;
|
|
7594
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
7595
|
+
isUnpublishedContentFallbackEnabled: z.ZodBoolean;
|
|
7596
|
+
}, "strip", z.ZodTypeAny, {
|
|
7597
|
+
assets: boolean;
|
|
7598
|
+
components: boolean;
|
|
7599
|
+
tokens: boolean;
|
|
7600
|
+
documentationFrames: boolean;
|
|
7601
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
7602
|
+
themePersistentId?: string | undefined;
|
|
7603
|
+
}, {
|
|
7604
|
+
assets: boolean;
|
|
7605
|
+
components: boolean;
|
|
7606
|
+
tokens: boolean;
|
|
7607
|
+
documentationFrames: boolean;
|
|
7608
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
7609
|
+
themePersistentId?: string | undefined;
|
|
7610
|
+
}>;
|
|
7611
|
+
type DTODataSourceFigmaScope = z.infer<typeof DTODataSourceFigmaScope>;
|
|
7612
|
+
declare const DTODataSourceFigmaCreatePayload: z.ZodObject<{
|
|
7613
|
+
brandPersistentId: z.ZodString;
|
|
7614
|
+
figmaFileUrl: z.ZodString;
|
|
7615
|
+
scope: z.ZodObject<{
|
|
7616
|
+
assets: z.ZodBoolean;
|
|
7617
|
+
components: z.ZodBoolean;
|
|
7618
|
+
documentationFrames: z.ZodBoolean;
|
|
7619
|
+
tokens: z.ZodBoolean;
|
|
7620
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
7621
|
+
isUnpublishedContentFallbackEnabled: z.ZodBoolean;
|
|
7622
|
+
}, "strip", z.ZodTypeAny, {
|
|
7623
|
+
assets: boolean;
|
|
7624
|
+
components: boolean;
|
|
7625
|
+
tokens: boolean;
|
|
7626
|
+
documentationFrames: boolean;
|
|
7627
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
7628
|
+
themePersistentId?: string | undefined;
|
|
7629
|
+
}, {
|
|
7630
|
+
assets: boolean;
|
|
7631
|
+
components: boolean;
|
|
7632
|
+
tokens: boolean;
|
|
7633
|
+
documentationFrames: boolean;
|
|
7634
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
7635
|
+
themePersistentId?: string | undefined;
|
|
7636
|
+
}>;
|
|
7637
|
+
autoImportMode: z.ZodEnum<["Never", "Hourly"]>;
|
|
7638
|
+
}, "strip", z.ZodTypeAny, {
|
|
7639
|
+
brandPersistentId: string;
|
|
7640
|
+
autoImportMode: "Never" | "Hourly";
|
|
7641
|
+
scope: {
|
|
7642
|
+
assets: boolean;
|
|
7643
|
+
components: boolean;
|
|
7644
|
+
tokens: boolean;
|
|
7645
|
+
documentationFrames: boolean;
|
|
7646
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
7647
|
+
themePersistentId?: string | undefined;
|
|
7648
|
+
};
|
|
7649
|
+
figmaFileUrl: string;
|
|
7650
|
+
}, {
|
|
7651
|
+
brandPersistentId: string;
|
|
7652
|
+
autoImportMode: "Never" | "Hourly";
|
|
7653
|
+
scope: {
|
|
7654
|
+
assets: boolean;
|
|
7655
|
+
components: boolean;
|
|
7656
|
+
tokens: boolean;
|
|
7657
|
+
documentationFrames: boolean;
|
|
7658
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
7659
|
+
themePersistentId?: string | undefined;
|
|
7660
|
+
};
|
|
7661
|
+
figmaFileUrl: string;
|
|
7662
|
+
}>;
|
|
7663
|
+
type DTODataSourceFigmaCreatePayload = z.infer<typeof DTODataSourceFigmaCreatePayload>;
|
|
7664
|
+
declare const DTODataSourceFigmaImportPayload: z.ZodObject<{
|
|
7665
|
+
sourceIds: z.ZodArray<z.ZodString, "many">;
|
|
7666
|
+
}, "strip", z.ZodTypeAny, {
|
|
7667
|
+
sourceIds: string[];
|
|
7668
|
+
}, {
|
|
7669
|
+
sourceIds: string[];
|
|
7670
|
+
}>;
|
|
7671
|
+
type DTODataSourceFigmaImportPayload = z.infer<typeof DTODataSourceFigmaImportPayload>;
|
|
7589
7672
|
|
|
7590
7673
|
declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
7591
7674
|
id: z.ZodString;
|
|
@@ -9164,19 +9247,19 @@ declare const DTOImportJob: z.ZodObject<{
|
|
|
9164
9247
|
designSystemVersionId: string;
|
|
9165
9248
|
createdAt: Date;
|
|
9166
9249
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
9250
|
+
sourceIds: string[];
|
|
9167
9251
|
designSystemId: string;
|
|
9168
9252
|
operation: "Import";
|
|
9169
9253
|
stateChangedAt: Date;
|
|
9170
|
-
sourceIds: string[];
|
|
9171
9254
|
}, {
|
|
9172
9255
|
id: string;
|
|
9173
9256
|
designSystemVersionId: string;
|
|
9174
9257
|
createdAt: Date;
|
|
9175
9258
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
9259
|
+
sourceIds: string[];
|
|
9176
9260
|
designSystemId: string;
|
|
9177
9261
|
operation: "Import";
|
|
9178
9262
|
stateChangedAt: Date;
|
|
9179
|
-
sourceIds: string[];
|
|
9180
9263
|
}>;
|
|
9181
9264
|
type DTOImportJob = z.infer<typeof DTOImportJob>;
|
|
9182
9265
|
declare const DTOImportJobResponse: z.ZodObject<{
|
|
@@ -9194,19 +9277,19 @@ declare const DTOImportJobResponse: z.ZodObject<{
|
|
|
9194
9277
|
designSystemVersionId: string;
|
|
9195
9278
|
createdAt: Date;
|
|
9196
9279
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
9280
|
+
sourceIds: string[];
|
|
9197
9281
|
designSystemId: string;
|
|
9198
9282
|
operation: "Import";
|
|
9199
9283
|
stateChangedAt: Date;
|
|
9200
|
-
sourceIds: string[];
|
|
9201
9284
|
}, {
|
|
9202
9285
|
id: string;
|
|
9203
9286
|
designSystemVersionId: string;
|
|
9204
9287
|
createdAt: Date;
|
|
9205
9288
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
9289
|
+
sourceIds: string[];
|
|
9206
9290
|
designSystemId: string;
|
|
9207
9291
|
operation: "Import";
|
|
9208
9292
|
stateChangedAt: Date;
|
|
9209
|
-
sourceIds: string[];
|
|
9210
9293
|
}>;
|
|
9211
9294
|
}, "strip", z.ZodTypeAny, {
|
|
9212
9295
|
job: {
|
|
@@ -9214,10 +9297,10 @@ declare const DTOImportJobResponse: z.ZodObject<{
|
|
|
9214
9297
|
designSystemVersionId: string;
|
|
9215
9298
|
createdAt: Date;
|
|
9216
9299
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
9300
|
+
sourceIds: string[];
|
|
9217
9301
|
designSystemId: string;
|
|
9218
9302
|
operation: "Import";
|
|
9219
9303
|
stateChangedAt: Date;
|
|
9220
|
-
sourceIds: string[];
|
|
9221
9304
|
};
|
|
9222
9305
|
}, {
|
|
9223
9306
|
job: {
|
|
@@ -9225,10 +9308,10 @@ declare const DTOImportJobResponse: z.ZodObject<{
|
|
|
9225
9308
|
designSystemVersionId: string;
|
|
9226
9309
|
createdAt: Date;
|
|
9227
9310
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
9311
|
+
sourceIds: string[];
|
|
9228
9312
|
designSystemId: string;
|
|
9229
9313
|
operation: "Import";
|
|
9230
9314
|
stateChangedAt: Date;
|
|
9231
|
-
sourceIds: string[];
|
|
9232
9315
|
};
|
|
9233
9316
|
}>;
|
|
9234
9317
|
type DTOImportJobResponse = z.infer<typeof DTOImportJobResponse>;
|
|
@@ -72007,7 +72090,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72007
72090
|
createdAt: z.ZodDate;
|
|
72008
72091
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
72009
72092
|
id: z.ZodString;
|
|
72010
|
-
type: z.ZodEnum<["OAuth2", "PAT"
|
|
72093
|
+
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
72011
72094
|
integrationId: z.ZodString;
|
|
72012
72095
|
accessToken: z.ZodString;
|
|
72013
72096
|
userId: z.ZodString;
|
|
@@ -72062,7 +72145,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72062
72145
|
avatar?: string | undefined;
|
|
72063
72146
|
}>>;
|
|
72064
72147
|
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
72065
|
-
type: "OAuth2" | "PAT"
|
|
72148
|
+
type: "OAuth2" | "PAT";
|
|
72066
72149
|
id: string;
|
|
72067
72150
|
createdAt: Date;
|
|
72068
72151
|
state: "Active" | "Inactive";
|
|
@@ -72090,7 +72173,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72090
72173
|
appInstallationId?: string | undefined;
|
|
72091
72174
|
customUrl?: string | undefined;
|
|
72092
72175
|
}, {
|
|
72093
|
-
type: "OAuth2" | "PAT"
|
|
72176
|
+
type: "OAuth2" | "PAT";
|
|
72094
72177
|
id: string;
|
|
72095
72178
|
createdAt: Date;
|
|
72096
72179
|
state: "Active" | "Inactive";
|
|
@@ -72143,7 +72226,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72143
72226
|
createdAt: Date;
|
|
72144
72227
|
workspaceId: string;
|
|
72145
72228
|
integrationCredentials?: {
|
|
72146
|
-
type: "OAuth2" | "PAT"
|
|
72229
|
+
type: "OAuth2" | "PAT";
|
|
72147
72230
|
id: string;
|
|
72148
72231
|
createdAt: Date;
|
|
72149
72232
|
state: "Active" | "Inactive";
|
|
@@ -72184,7 +72267,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72184
72267
|
createdAt: Date;
|
|
72185
72268
|
workspaceId: string;
|
|
72186
72269
|
integrationCredentials?: {
|
|
72187
|
-
type: "OAuth2" | "PAT"
|
|
72270
|
+
type: "OAuth2" | "PAT";
|
|
72188
72271
|
id: string;
|
|
72189
72272
|
createdAt: Date;
|
|
72190
72273
|
state: "Active" | "Inactive";
|
|
@@ -72223,7 +72306,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
72223
72306
|
type DTOIntegration = z.infer<typeof DTOIntegration>;
|
|
72224
72307
|
declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
72225
72308
|
id: z.ZodString;
|
|
72226
|
-
type: z.ZodEnum<["OAuth2", "PAT"
|
|
72309
|
+
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
72227
72310
|
integrationId: z.ZodString;
|
|
72228
72311
|
accessToken: z.ZodString;
|
|
72229
72312
|
userId: z.ZodString;
|
|
@@ -72278,7 +72361,7 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
|
72278
72361
|
avatar?: string | undefined;
|
|
72279
72362
|
}>>;
|
|
72280
72363
|
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
72281
|
-
type: "OAuth2" | "PAT"
|
|
72364
|
+
type: "OAuth2" | "PAT";
|
|
72282
72365
|
id: string;
|
|
72283
72366
|
createdAt: Date;
|
|
72284
72367
|
state: "Active" | "Inactive";
|
|
@@ -72306,7 +72389,7 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
|
72306
72389
|
appInstallationId?: string | undefined;
|
|
72307
72390
|
customUrl?: string | undefined;
|
|
72308
72391
|
}, {
|
|
72309
|
-
type: "OAuth2" | "PAT"
|
|
72392
|
+
type: "OAuth2" | "PAT";
|
|
72310
72393
|
id: string;
|
|
72311
72394
|
createdAt: Date;
|
|
72312
72395
|
state: "Active" | "Inactive";
|
|
@@ -72351,7 +72434,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72351
72434
|
createdAt: z.ZodDate;
|
|
72352
72435
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
72353
72436
|
id: z.ZodString;
|
|
72354
|
-
type: z.ZodEnum<["OAuth2", "PAT"
|
|
72437
|
+
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
72355
72438
|
integrationId: z.ZodString;
|
|
72356
72439
|
accessToken: z.ZodString;
|
|
72357
72440
|
userId: z.ZodString;
|
|
@@ -72406,7 +72489,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72406
72489
|
avatar?: string | undefined;
|
|
72407
72490
|
}>>;
|
|
72408
72491
|
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
72409
|
-
type: "OAuth2" | "PAT"
|
|
72492
|
+
type: "OAuth2" | "PAT";
|
|
72410
72493
|
id: string;
|
|
72411
72494
|
createdAt: Date;
|
|
72412
72495
|
state: "Active" | "Inactive";
|
|
@@ -72434,7 +72517,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72434
72517
|
appInstallationId?: string | undefined;
|
|
72435
72518
|
customUrl?: string | undefined;
|
|
72436
72519
|
}, {
|
|
72437
|
-
type: "OAuth2" | "PAT"
|
|
72520
|
+
type: "OAuth2" | "PAT";
|
|
72438
72521
|
id: string;
|
|
72439
72522
|
createdAt: Date;
|
|
72440
72523
|
state: "Active" | "Inactive";
|
|
@@ -72487,7 +72570,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72487
72570
|
createdAt: Date;
|
|
72488
72571
|
workspaceId: string;
|
|
72489
72572
|
integrationCredentials?: {
|
|
72490
|
-
type: "OAuth2" | "PAT"
|
|
72573
|
+
type: "OAuth2" | "PAT";
|
|
72491
72574
|
id: string;
|
|
72492
72575
|
createdAt: Date;
|
|
72493
72576
|
state: "Active" | "Inactive";
|
|
@@ -72528,7 +72611,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72528
72611
|
createdAt: Date;
|
|
72529
72612
|
workspaceId: string;
|
|
72530
72613
|
integrationCredentials?: {
|
|
72531
|
-
type: "OAuth2" | "PAT"
|
|
72614
|
+
type: "OAuth2" | "PAT";
|
|
72532
72615
|
id: string;
|
|
72533
72616
|
createdAt: Date;
|
|
72534
72617
|
state: "Active" | "Inactive";
|
|
@@ -72571,7 +72654,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72571
72654
|
createdAt: Date;
|
|
72572
72655
|
workspaceId: string;
|
|
72573
72656
|
integrationCredentials?: {
|
|
72574
|
-
type: "OAuth2" | "PAT"
|
|
72657
|
+
type: "OAuth2" | "PAT";
|
|
72575
72658
|
id: string;
|
|
72576
72659
|
createdAt: Date;
|
|
72577
72660
|
state: "Active" | "Inactive";
|
|
@@ -72614,7 +72697,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
72614
72697
|
createdAt: Date;
|
|
72615
72698
|
workspaceId: string;
|
|
72616
72699
|
integrationCredentials?: {
|
|
72617
|
-
type: "OAuth2" | "PAT"
|
|
72700
|
+
type: "OAuth2" | "PAT";
|
|
72618
72701
|
id: string;
|
|
72619
72702
|
createdAt: Date;
|
|
72620
72703
|
state: "Active" | "Inactive";
|
|
@@ -72660,7 +72743,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72660
72743
|
createdAt: z.ZodDate;
|
|
72661
72744
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
72662
72745
|
id: z.ZodString;
|
|
72663
|
-
type: z.ZodEnum<["OAuth2", "PAT"
|
|
72746
|
+
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
72664
72747
|
integrationId: z.ZodString;
|
|
72665
72748
|
accessToken: z.ZodString;
|
|
72666
72749
|
userId: z.ZodString;
|
|
@@ -72715,7 +72798,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72715
72798
|
avatar?: string | undefined;
|
|
72716
72799
|
}>>;
|
|
72717
72800
|
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
72718
|
-
type: "OAuth2" | "PAT"
|
|
72801
|
+
type: "OAuth2" | "PAT";
|
|
72719
72802
|
id: string;
|
|
72720
72803
|
createdAt: Date;
|
|
72721
72804
|
state: "Active" | "Inactive";
|
|
@@ -72743,7 +72826,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72743
72826
|
appInstallationId?: string | undefined;
|
|
72744
72827
|
customUrl?: string | undefined;
|
|
72745
72828
|
}, {
|
|
72746
|
-
type: "OAuth2" | "PAT"
|
|
72829
|
+
type: "OAuth2" | "PAT";
|
|
72747
72830
|
id: string;
|
|
72748
72831
|
createdAt: Date;
|
|
72749
72832
|
state: "Active" | "Inactive";
|
|
@@ -72796,7 +72879,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72796
72879
|
createdAt: Date;
|
|
72797
72880
|
workspaceId: string;
|
|
72798
72881
|
integrationCredentials?: {
|
|
72799
|
-
type: "OAuth2" | "PAT"
|
|
72882
|
+
type: "OAuth2" | "PAT";
|
|
72800
72883
|
id: string;
|
|
72801
72884
|
createdAt: Date;
|
|
72802
72885
|
state: "Active" | "Inactive";
|
|
@@ -72837,7 +72920,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72837
72920
|
createdAt: Date;
|
|
72838
72921
|
workspaceId: string;
|
|
72839
72922
|
integrationCredentials?: {
|
|
72840
|
-
type: "OAuth2" | "PAT"
|
|
72923
|
+
type: "OAuth2" | "PAT";
|
|
72841
72924
|
id: string;
|
|
72842
72925
|
createdAt: Date;
|
|
72843
72926
|
state: "Active" | "Inactive";
|
|
@@ -72880,7 +72963,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72880
72963
|
createdAt: Date;
|
|
72881
72964
|
workspaceId: string;
|
|
72882
72965
|
integrationCredentials?: {
|
|
72883
|
-
type: "OAuth2" | "PAT"
|
|
72966
|
+
type: "OAuth2" | "PAT";
|
|
72884
72967
|
id: string;
|
|
72885
72968
|
createdAt: Date;
|
|
72886
72969
|
state: "Active" | "Inactive";
|
|
@@ -72923,7 +73006,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
72923
73006
|
createdAt: Date;
|
|
72924
73007
|
workspaceId: string;
|
|
72925
73008
|
integrationCredentials?: {
|
|
72926
|
-
type: "OAuth2" | "PAT"
|
|
73009
|
+
type: "OAuth2" | "PAT";
|
|
72927
73010
|
id: string;
|
|
72928
73011
|
createdAt: Date;
|
|
72929
73012
|
state: "Active" | "Inactive";
|
|
@@ -84823,7 +84906,62 @@ declare class DesignSystemComponentEndpoint {
|
|
|
84823
84906
|
create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<any>;
|
|
84824
84907
|
}
|
|
84825
84908
|
|
|
84826
|
-
declare class
|
|
84909
|
+
declare class DocumentationEndpoint {
|
|
84910
|
+
private readonly requestExecutor;
|
|
84911
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84912
|
+
getStructure(designSystemId: string, versionId: string): Promise<{
|
|
84913
|
+
items: ({
|
|
84914
|
+
type: "Group";
|
|
84915
|
+
id: string;
|
|
84916
|
+
persistentId: string;
|
|
84917
|
+
designSystemVersionId: string;
|
|
84918
|
+
createdAt: Date;
|
|
84919
|
+
updatedAt: Date;
|
|
84920
|
+
shortPersistentId: string;
|
|
84921
|
+
title: string;
|
|
84922
|
+
isRoot: boolean;
|
|
84923
|
+
childrenIds: string[];
|
|
84924
|
+
groupBehavior: string;
|
|
84925
|
+
} | {
|
|
84926
|
+
path: string;
|
|
84927
|
+
type: "Page";
|
|
84928
|
+
id: string;
|
|
84929
|
+
persistentId: string;
|
|
84930
|
+
designSystemVersionId: string;
|
|
84931
|
+
createdAt: Date;
|
|
84932
|
+
updatedAt: Date;
|
|
84933
|
+
shortPersistentId: string;
|
|
84934
|
+
title: string;
|
|
84935
|
+
})[];
|
|
84936
|
+
}>;
|
|
84937
|
+
getDocStructure(dsId: string, vId: string): Promise<{
|
|
84938
|
+
items: ({
|
|
84939
|
+
type: "Group";
|
|
84940
|
+
id: string;
|
|
84941
|
+
persistentId: string;
|
|
84942
|
+
designSystemVersionId: string;
|
|
84943
|
+
createdAt: Date;
|
|
84944
|
+
updatedAt: Date;
|
|
84945
|
+
shortPersistentId: string;
|
|
84946
|
+
title: string;
|
|
84947
|
+
isRoot: boolean;
|
|
84948
|
+
childrenIds: string[];
|
|
84949
|
+
groupBehavior: string;
|
|
84950
|
+
} | {
|
|
84951
|
+
path: string;
|
|
84952
|
+
type: "Page";
|
|
84953
|
+
id: string;
|
|
84954
|
+
persistentId: string;
|
|
84955
|
+
designSystemVersionId: string;
|
|
84956
|
+
createdAt: Date;
|
|
84957
|
+
updatedAt: Date;
|
|
84958
|
+
shortPersistentId: string;
|
|
84959
|
+
title: string;
|
|
84960
|
+
})[];
|
|
84961
|
+
}>;
|
|
84962
|
+
}
|
|
84963
|
+
|
|
84964
|
+
declare class ElementsActionEndpoint {
|
|
84827
84965
|
private readonly requestExecutor;
|
|
84828
84966
|
constructor(requestExecutor: RequestExecutor);
|
|
84829
84967
|
createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
|
|
@@ -84930,6 +85068,526 @@ declare class ElementsActionsEndpoint {
|
|
|
84930
85068
|
};
|
|
84931
85069
|
}[];
|
|
84932
85070
|
}>;
|
|
85071
|
+
createDocGroup(dsId: string, vId: string, input: DTOCreateDocumentationGroupInput): Promise<{
|
|
85072
|
+
type: "DocumentationGroupCreate";
|
|
85073
|
+
output: {
|
|
85074
|
+
success: true;
|
|
85075
|
+
};
|
|
85076
|
+
} | {
|
|
85077
|
+
type: "DocumentationTabCreate";
|
|
85078
|
+
output: {
|
|
85079
|
+
success: true;
|
|
85080
|
+
};
|
|
85081
|
+
} | {
|
|
85082
|
+
type: "DocumentationGroupUpdate";
|
|
85083
|
+
output: {
|
|
85084
|
+
success: true;
|
|
85085
|
+
};
|
|
85086
|
+
} | {
|
|
85087
|
+
type: "DocumentationGroupMove";
|
|
85088
|
+
output: {
|
|
85089
|
+
success: true;
|
|
85090
|
+
};
|
|
85091
|
+
} | {
|
|
85092
|
+
type: "DocumentationGroupDuplicate";
|
|
85093
|
+
output: {
|
|
85094
|
+
success: true;
|
|
85095
|
+
};
|
|
85096
|
+
} | {
|
|
85097
|
+
type: "DocumentationGroupDelete";
|
|
85098
|
+
output: {
|
|
85099
|
+
success: true;
|
|
85100
|
+
};
|
|
85101
|
+
} | {
|
|
85102
|
+
type: "DocumentationTabGroupDelete";
|
|
85103
|
+
output: {
|
|
85104
|
+
success: true;
|
|
85105
|
+
};
|
|
85106
|
+
} | {
|
|
85107
|
+
type: "DocumentationPageCreate";
|
|
85108
|
+
output: {
|
|
85109
|
+
success: true;
|
|
85110
|
+
};
|
|
85111
|
+
} | {
|
|
85112
|
+
type: "DocumentationPageUpdate";
|
|
85113
|
+
output: {
|
|
85114
|
+
success: true;
|
|
85115
|
+
};
|
|
85116
|
+
} | {
|
|
85117
|
+
type: "DocumentationPageMove";
|
|
85118
|
+
output: {
|
|
85119
|
+
success: true;
|
|
85120
|
+
};
|
|
85121
|
+
} | {
|
|
85122
|
+
type: "DocumentationPageDuplicate";
|
|
85123
|
+
output: {
|
|
85124
|
+
success: true;
|
|
85125
|
+
};
|
|
85126
|
+
} | {
|
|
85127
|
+
type: "DocumentationPageDelete";
|
|
85128
|
+
output: {
|
|
85129
|
+
success: true;
|
|
85130
|
+
};
|
|
85131
|
+
} | {
|
|
85132
|
+
type: "DocumentationPageRestore";
|
|
85133
|
+
output: {
|
|
85134
|
+
success: true;
|
|
85135
|
+
};
|
|
85136
|
+
} | {
|
|
85137
|
+
type: "DocumentationGroupRestore";
|
|
85138
|
+
output: {
|
|
85139
|
+
success: true;
|
|
85140
|
+
};
|
|
85141
|
+
} | {
|
|
85142
|
+
type: "DocumentationPageApprovalStateChange";
|
|
85143
|
+
output: {
|
|
85144
|
+
success: true;
|
|
85145
|
+
};
|
|
85146
|
+
} | {
|
|
85147
|
+
type: "FigmaNodeRender";
|
|
85148
|
+
figmaNodes: {
|
|
85149
|
+
id: string;
|
|
85150
|
+
persistentId: string;
|
|
85151
|
+
meta: {
|
|
85152
|
+
name: string;
|
|
85153
|
+
description?: string | undefined;
|
|
85154
|
+
};
|
|
85155
|
+
designSystemVersionId: string;
|
|
85156
|
+
createdAt: Date;
|
|
85157
|
+
updatedAt: Date;
|
|
85158
|
+
data: {
|
|
85159
|
+
figmaNodeId: string;
|
|
85160
|
+
isValid: boolean;
|
|
85161
|
+
assetId: string;
|
|
85162
|
+
assetUrl: string;
|
|
85163
|
+
assetFormat: "Png" | "Svg";
|
|
85164
|
+
assetScale: number;
|
|
85165
|
+
assetWidth?: number | undefined;
|
|
85166
|
+
assetHeight?: number | undefined;
|
|
85167
|
+
};
|
|
85168
|
+
origin: {
|
|
85169
|
+
sourceId: string;
|
|
85170
|
+
fileId?: string | undefined;
|
|
85171
|
+
parentName?: string | undefined;
|
|
85172
|
+
};
|
|
85173
|
+
}[];
|
|
85174
|
+
}>;
|
|
85175
|
+
moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
|
|
85176
|
+
type: "DocumentationGroupCreate";
|
|
85177
|
+
output: {
|
|
85178
|
+
success: true;
|
|
85179
|
+
};
|
|
85180
|
+
} | {
|
|
85181
|
+
type: "DocumentationTabCreate";
|
|
85182
|
+
output: {
|
|
85183
|
+
success: true;
|
|
85184
|
+
};
|
|
85185
|
+
} | {
|
|
85186
|
+
type: "DocumentationGroupUpdate";
|
|
85187
|
+
output: {
|
|
85188
|
+
success: true;
|
|
85189
|
+
};
|
|
85190
|
+
} | {
|
|
85191
|
+
type: "DocumentationGroupMove";
|
|
85192
|
+
output: {
|
|
85193
|
+
success: true;
|
|
85194
|
+
};
|
|
85195
|
+
} | {
|
|
85196
|
+
type: "DocumentationGroupDuplicate";
|
|
85197
|
+
output: {
|
|
85198
|
+
success: true;
|
|
85199
|
+
};
|
|
85200
|
+
} | {
|
|
85201
|
+
type: "DocumentationGroupDelete";
|
|
85202
|
+
output: {
|
|
85203
|
+
success: true;
|
|
85204
|
+
};
|
|
85205
|
+
} | {
|
|
85206
|
+
type: "DocumentationTabGroupDelete";
|
|
85207
|
+
output: {
|
|
85208
|
+
success: true;
|
|
85209
|
+
};
|
|
85210
|
+
} | {
|
|
85211
|
+
type: "DocumentationPageCreate";
|
|
85212
|
+
output: {
|
|
85213
|
+
success: true;
|
|
85214
|
+
};
|
|
85215
|
+
} | {
|
|
85216
|
+
type: "DocumentationPageUpdate";
|
|
85217
|
+
output: {
|
|
85218
|
+
success: true;
|
|
85219
|
+
};
|
|
85220
|
+
} | {
|
|
85221
|
+
type: "DocumentationPageMove";
|
|
85222
|
+
output: {
|
|
85223
|
+
success: true;
|
|
85224
|
+
};
|
|
85225
|
+
} | {
|
|
85226
|
+
type: "DocumentationPageDuplicate";
|
|
85227
|
+
output: {
|
|
85228
|
+
success: true;
|
|
85229
|
+
};
|
|
85230
|
+
} | {
|
|
85231
|
+
type: "DocumentationPageDelete";
|
|
85232
|
+
output: {
|
|
85233
|
+
success: true;
|
|
85234
|
+
};
|
|
85235
|
+
} | {
|
|
85236
|
+
type: "DocumentationPageRestore";
|
|
85237
|
+
output: {
|
|
85238
|
+
success: true;
|
|
85239
|
+
};
|
|
85240
|
+
} | {
|
|
85241
|
+
type: "DocumentationGroupRestore";
|
|
85242
|
+
output: {
|
|
85243
|
+
success: true;
|
|
85244
|
+
};
|
|
85245
|
+
} | {
|
|
85246
|
+
type: "DocumentationPageApprovalStateChange";
|
|
85247
|
+
output: {
|
|
85248
|
+
success: true;
|
|
85249
|
+
};
|
|
85250
|
+
} | {
|
|
85251
|
+
type: "FigmaNodeRender";
|
|
85252
|
+
figmaNodes: {
|
|
85253
|
+
id: string;
|
|
85254
|
+
persistentId: string;
|
|
85255
|
+
meta: {
|
|
85256
|
+
name: string;
|
|
85257
|
+
description?: string | undefined;
|
|
85258
|
+
};
|
|
85259
|
+
designSystemVersionId: string;
|
|
85260
|
+
createdAt: Date;
|
|
85261
|
+
updatedAt: Date;
|
|
85262
|
+
data: {
|
|
85263
|
+
figmaNodeId: string;
|
|
85264
|
+
isValid: boolean;
|
|
85265
|
+
assetId: string;
|
|
85266
|
+
assetUrl: string;
|
|
85267
|
+
assetFormat: "Png" | "Svg";
|
|
85268
|
+
assetScale: number;
|
|
85269
|
+
assetWidth?: number | undefined;
|
|
85270
|
+
assetHeight?: number | undefined;
|
|
85271
|
+
};
|
|
85272
|
+
origin: {
|
|
85273
|
+
sourceId: string;
|
|
85274
|
+
fileId?: string | undefined;
|
|
85275
|
+
parentName?: string | undefined;
|
|
85276
|
+
};
|
|
85277
|
+
}[];
|
|
85278
|
+
}>;
|
|
85279
|
+
updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
|
|
85280
|
+
type: "DocumentationGroupCreate";
|
|
85281
|
+
output: {
|
|
85282
|
+
success: true;
|
|
85283
|
+
};
|
|
85284
|
+
} | {
|
|
85285
|
+
type: "DocumentationTabCreate";
|
|
85286
|
+
output: {
|
|
85287
|
+
success: true;
|
|
85288
|
+
};
|
|
85289
|
+
} | {
|
|
85290
|
+
type: "DocumentationGroupUpdate";
|
|
85291
|
+
output: {
|
|
85292
|
+
success: true;
|
|
85293
|
+
};
|
|
85294
|
+
} | {
|
|
85295
|
+
type: "DocumentationGroupMove";
|
|
85296
|
+
output: {
|
|
85297
|
+
success: true;
|
|
85298
|
+
};
|
|
85299
|
+
} | {
|
|
85300
|
+
type: "DocumentationGroupDuplicate";
|
|
85301
|
+
output: {
|
|
85302
|
+
success: true;
|
|
85303
|
+
};
|
|
85304
|
+
} | {
|
|
85305
|
+
type: "DocumentationGroupDelete";
|
|
85306
|
+
output: {
|
|
85307
|
+
success: true;
|
|
85308
|
+
};
|
|
85309
|
+
} | {
|
|
85310
|
+
type: "DocumentationTabGroupDelete";
|
|
85311
|
+
output: {
|
|
85312
|
+
success: true;
|
|
85313
|
+
};
|
|
85314
|
+
} | {
|
|
85315
|
+
type: "DocumentationPageCreate";
|
|
85316
|
+
output: {
|
|
85317
|
+
success: true;
|
|
85318
|
+
};
|
|
85319
|
+
} | {
|
|
85320
|
+
type: "DocumentationPageUpdate";
|
|
85321
|
+
output: {
|
|
85322
|
+
success: true;
|
|
85323
|
+
};
|
|
85324
|
+
} | {
|
|
85325
|
+
type: "DocumentationPageMove";
|
|
85326
|
+
output: {
|
|
85327
|
+
success: true;
|
|
85328
|
+
};
|
|
85329
|
+
} | {
|
|
85330
|
+
type: "DocumentationPageDuplicate";
|
|
85331
|
+
output: {
|
|
85332
|
+
success: true;
|
|
85333
|
+
};
|
|
85334
|
+
} | {
|
|
85335
|
+
type: "DocumentationPageDelete";
|
|
85336
|
+
output: {
|
|
85337
|
+
success: true;
|
|
85338
|
+
};
|
|
85339
|
+
} | {
|
|
85340
|
+
type: "DocumentationPageRestore";
|
|
85341
|
+
output: {
|
|
85342
|
+
success: true;
|
|
85343
|
+
};
|
|
85344
|
+
} | {
|
|
85345
|
+
type: "DocumentationGroupRestore";
|
|
85346
|
+
output: {
|
|
85347
|
+
success: true;
|
|
85348
|
+
};
|
|
85349
|
+
} | {
|
|
85350
|
+
type: "DocumentationPageApprovalStateChange";
|
|
85351
|
+
output: {
|
|
85352
|
+
success: true;
|
|
85353
|
+
};
|
|
85354
|
+
} | {
|
|
85355
|
+
type: "FigmaNodeRender";
|
|
85356
|
+
figmaNodes: {
|
|
85357
|
+
id: string;
|
|
85358
|
+
persistentId: string;
|
|
85359
|
+
meta: {
|
|
85360
|
+
name: string;
|
|
85361
|
+
description?: string | undefined;
|
|
85362
|
+
};
|
|
85363
|
+
designSystemVersionId: string;
|
|
85364
|
+
createdAt: Date;
|
|
85365
|
+
updatedAt: Date;
|
|
85366
|
+
data: {
|
|
85367
|
+
figmaNodeId: string;
|
|
85368
|
+
isValid: boolean;
|
|
85369
|
+
assetId: string;
|
|
85370
|
+
assetUrl: string;
|
|
85371
|
+
assetFormat: "Png" | "Svg";
|
|
85372
|
+
assetScale: number;
|
|
85373
|
+
assetWidth?: number | undefined;
|
|
85374
|
+
assetHeight?: number | undefined;
|
|
85375
|
+
};
|
|
85376
|
+
origin: {
|
|
85377
|
+
sourceId: string;
|
|
85378
|
+
fileId?: string | undefined;
|
|
85379
|
+
parentName?: string | undefined;
|
|
85380
|
+
};
|
|
85381
|
+
}[];
|
|
85382
|
+
}>;
|
|
85383
|
+
updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
|
|
85384
|
+
type: "DocumentationGroupCreate";
|
|
85385
|
+
output: {
|
|
85386
|
+
success: true;
|
|
85387
|
+
};
|
|
85388
|
+
} | {
|
|
85389
|
+
type: "DocumentationTabCreate";
|
|
85390
|
+
output: {
|
|
85391
|
+
success: true;
|
|
85392
|
+
};
|
|
85393
|
+
} | {
|
|
85394
|
+
type: "DocumentationGroupUpdate";
|
|
85395
|
+
output: {
|
|
85396
|
+
success: true;
|
|
85397
|
+
};
|
|
85398
|
+
} | {
|
|
85399
|
+
type: "DocumentationGroupMove";
|
|
85400
|
+
output: {
|
|
85401
|
+
success: true;
|
|
85402
|
+
};
|
|
85403
|
+
} | {
|
|
85404
|
+
type: "DocumentationGroupDuplicate";
|
|
85405
|
+
output: {
|
|
85406
|
+
success: true;
|
|
85407
|
+
};
|
|
85408
|
+
} | {
|
|
85409
|
+
type: "DocumentationGroupDelete";
|
|
85410
|
+
output: {
|
|
85411
|
+
success: true;
|
|
85412
|
+
};
|
|
85413
|
+
} | {
|
|
85414
|
+
type: "DocumentationTabGroupDelete";
|
|
85415
|
+
output: {
|
|
85416
|
+
success: true;
|
|
85417
|
+
};
|
|
85418
|
+
} | {
|
|
85419
|
+
type: "DocumentationPageCreate";
|
|
85420
|
+
output: {
|
|
85421
|
+
success: true;
|
|
85422
|
+
};
|
|
85423
|
+
} | {
|
|
85424
|
+
type: "DocumentationPageUpdate";
|
|
85425
|
+
output: {
|
|
85426
|
+
success: true;
|
|
85427
|
+
};
|
|
85428
|
+
} | {
|
|
85429
|
+
type: "DocumentationPageMove";
|
|
85430
|
+
output: {
|
|
85431
|
+
success: true;
|
|
85432
|
+
};
|
|
85433
|
+
} | {
|
|
85434
|
+
type: "DocumentationPageDuplicate";
|
|
85435
|
+
output: {
|
|
85436
|
+
success: true;
|
|
85437
|
+
};
|
|
85438
|
+
} | {
|
|
85439
|
+
type: "DocumentationPageDelete";
|
|
85440
|
+
output: {
|
|
85441
|
+
success: true;
|
|
85442
|
+
};
|
|
85443
|
+
} | {
|
|
85444
|
+
type: "DocumentationPageRestore";
|
|
85445
|
+
output: {
|
|
85446
|
+
success: true;
|
|
85447
|
+
};
|
|
85448
|
+
} | {
|
|
85449
|
+
type: "DocumentationGroupRestore";
|
|
85450
|
+
output: {
|
|
85451
|
+
success: true;
|
|
85452
|
+
};
|
|
85453
|
+
} | {
|
|
85454
|
+
type: "DocumentationPageApprovalStateChange";
|
|
85455
|
+
output: {
|
|
85456
|
+
success: true;
|
|
85457
|
+
};
|
|
85458
|
+
} | {
|
|
85459
|
+
type: "FigmaNodeRender";
|
|
85460
|
+
figmaNodes: {
|
|
85461
|
+
id: string;
|
|
85462
|
+
persistentId: string;
|
|
85463
|
+
meta: {
|
|
85464
|
+
name: string;
|
|
85465
|
+
description?: string | undefined;
|
|
85466
|
+
};
|
|
85467
|
+
designSystemVersionId: string;
|
|
85468
|
+
createdAt: Date;
|
|
85469
|
+
updatedAt: Date;
|
|
85470
|
+
data: {
|
|
85471
|
+
figmaNodeId: string;
|
|
85472
|
+
isValid: boolean;
|
|
85473
|
+
assetId: string;
|
|
85474
|
+
assetUrl: string;
|
|
85475
|
+
assetFormat: "Png" | "Svg";
|
|
85476
|
+
assetScale: number;
|
|
85477
|
+
assetWidth?: number | undefined;
|
|
85478
|
+
assetHeight?: number | undefined;
|
|
85479
|
+
};
|
|
85480
|
+
origin: {
|
|
85481
|
+
sourceId: string;
|
|
85482
|
+
fileId?: string | undefined;
|
|
85483
|
+
parentName?: string | undefined;
|
|
85484
|
+
};
|
|
85485
|
+
}[];
|
|
85486
|
+
}>;
|
|
85487
|
+
createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
|
|
85488
|
+
type: "DocumentationGroupCreate";
|
|
85489
|
+
output: {
|
|
85490
|
+
success: true;
|
|
85491
|
+
};
|
|
85492
|
+
} | {
|
|
85493
|
+
type: "DocumentationTabCreate";
|
|
85494
|
+
output: {
|
|
85495
|
+
success: true;
|
|
85496
|
+
};
|
|
85497
|
+
} | {
|
|
85498
|
+
type: "DocumentationGroupUpdate";
|
|
85499
|
+
output: {
|
|
85500
|
+
success: true;
|
|
85501
|
+
};
|
|
85502
|
+
} | {
|
|
85503
|
+
type: "DocumentationGroupMove";
|
|
85504
|
+
output: {
|
|
85505
|
+
success: true;
|
|
85506
|
+
};
|
|
85507
|
+
} | {
|
|
85508
|
+
type: "DocumentationGroupDuplicate";
|
|
85509
|
+
output: {
|
|
85510
|
+
success: true;
|
|
85511
|
+
};
|
|
85512
|
+
} | {
|
|
85513
|
+
type: "DocumentationGroupDelete";
|
|
85514
|
+
output: {
|
|
85515
|
+
success: true;
|
|
85516
|
+
};
|
|
85517
|
+
} | {
|
|
85518
|
+
type: "DocumentationTabGroupDelete";
|
|
85519
|
+
output: {
|
|
85520
|
+
success: true;
|
|
85521
|
+
};
|
|
85522
|
+
} | {
|
|
85523
|
+
type: "DocumentationPageCreate";
|
|
85524
|
+
output: {
|
|
85525
|
+
success: true;
|
|
85526
|
+
};
|
|
85527
|
+
} | {
|
|
85528
|
+
type: "DocumentationPageUpdate";
|
|
85529
|
+
output: {
|
|
85530
|
+
success: true;
|
|
85531
|
+
};
|
|
85532
|
+
} | {
|
|
85533
|
+
type: "DocumentationPageMove";
|
|
85534
|
+
output: {
|
|
85535
|
+
success: true;
|
|
85536
|
+
};
|
|
85537
|
+
} | {
|
|
85538
|
+
type: "DocumentationPageDuplicate";
|
|
85539
|
+
output: {
|
|
85540
|
+
success: true;
|
|
85541
|
+
};
|
|
85542
|
+
} | {
|
|
85543
|
+
type: "DocumentationPageDelete";
|
|
85544
|
+
output: {
|
|
85545
|
+
success: true;
|
|
85546
|
+
};
|
|
85547
|
+
} | {
|
|
85548
|
+
type: "DocumentationPageRestore";
|
|
85549
|
+
output: {
|
|
85550
|
+
success: true;
|
|
85551
|
+
};
|
|
85552
|
+
} | {
|
|
85553
|
+
type: "DocumentationGroupRestore";
|
|
85554
|
+
output: {
|
|
85555
|
+
success: true;
|
|
85556
|
+
};
|
|
85557
|
+
} | {
|
|
85558
|
+
type: "DocumentationPageApprovalStateChange";
|
|
85559
|
+
output: {
|
|
85560
|
+
success: true;
|
|
85561
|
+
};
|
|
85562
|
+
} | {
|
|
85563
|
+
type: "FigmaNodeRender";
|
|
85564
|
+
figmaNodes: {
|
|
85565
|
+
id: string;
|
|
85566
|
+
persistentId: string;
|
|
85567
|
+
meta: {
|
|
85568
|
+
name: string;
|
|
85569
|
+
description?: string | undefined;
|
|
85570
|
+
};
|
|
85571
|
+
designSystemVersionId: string;
|
|
85572
|
+
createdAt: Date;
|
|
85573
|
+
updatedAt: Date;
|
|
85574
|
+
data: {
|
|
85575
|
+
figmaNodeId: string;
|
|
85576
|
+
isValid: boolean;
|
|
85577
|
+
assetId: string;
|
|
85578
|
+
assetUrl: string;
|
|
85579
|
+
assetFormat: "Png" | "Svg";
|
|
85580
|
+
assetScale: number;
|
|
85581
|
+
assetWidth?: number | undefined;
|
|
85582
|
+
assetHeight?: number | undefined;
|
|
85583
|
+
};
|
|
85584
|
+
origin: {
|
|
85585
|
+
sourceId: string;
|
|
85586
|
+
fileId?: string | undefined;
|
|
85587
|
+
parentName?: string | undefined;
|
|
85588
|
+
};
|
|
85589
|
+
}[];
|
|
85590
|
+
}>;
|
|
84933
85591
|
}
|
|
84934
85592
|
|
|
84935
85593
|
declare class ImportJobsEndpoint {
|
|
@@ -84941,10 +85599,10 @@ declare class ImportJobsEndpoint {
|
|
|
84941
85599
|
designSystemVersionId: string;
|
|
84942
85600
|
createdAt: Date;
|
|
84943
85601
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
85602
|
+
sourceIds: string[];
|
|
84944
85603
|
designSystemId: string;
|
|
84945
85604
|
operation: "Import";
|
|
84946
85605
|
stateChangedAt: Date;
|
|
84947
|
-
sourceIds: string[];
|
|
84948
85606
|
};
|
|
84949
85607
|
}>;
|
|
84950
85608
|
}
|
|
@@ -86651,61 +87309,6 @@ declare class TokensEndpoint {
|
|
|
86651
87309
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
86652
87310
|
}
|
|
86653
87311
|
|
|
86654
|
-
declare class DocumentationEndpoint {
|
|
86655
|
-
private readonly requestExecutor;
|
|
86656
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86657
|
-
getStructure(designSystemId: string, versionId: string): Promise<{
|
|
86658
|
-
items: ({
|
|
86659
|
-
type: "Group";
|
|
86660
|
-
id: string;
|
|
86661
|
-
persistentId: string;
|
|
86662
|
-
designSystemVersionId: string;
|
|
86663
|
-
createdAt: Date;
|
|
86664
|
-
updatedAt: Date;
|
|
86665
|
-
shortPersistentId: string;
|
|
86666
|
-
title: string;
|
|
86667
|
-
isRoot: boolean;
|
|
86668
|
-
childrenIds: string[];
|
|
86669
|
-
groupBehavior: string;
|
|
86670
|
-
} | {
|
|
86671
|
-
path: string;
|
|
86672
|
-
type: "Page";
|
|
86673
|
-
id: string;
|
|
86674
|
-
persistentId: string;
|
|
86675
|
-
designSystemVersionId: string;
|
|
86676
|
-
createdAt: Date;
|
|
86677
|
-
updatedAt: Date;
|
|
86678
|
-
shortPersistentId: string;
|
|
86679
|
-
title: string;
|
|
86680
|
-
})[];
|
|
86681
|
-
}>;
|
|
86682
|
-
getDocStructure(dsId: string, vId: string): Promise<{
|
|
86683
|
-
items: ({
|
|
86684
|
-
type: "Group";
|
|
86685
|
-
id: string;
|
|
86686
|
-
persistentId: string;
|
|
86687
|
-
designSystemVersionId: string;
|
|
86688
|
-
createdAt: Date;
|
|
86689
|
-
updatedAt: Date;
|
|
86690
|
-
shortPersistentId: string;
|
|
86691
|
-
title: string;
|
|
86692
|
-
isRoot: boolean;
|
|
86693
|
-
childrenIds: string[];
|
|
86694
|
-
groupBehavior: string;
|
|
86695
|
-
} | {
|
|
86696
|
-
path: string;
|
|
86697
|
-
type: "Page";
|
|
86698
|
-
id: string;
|
|
86699
|
-
persistentId: string;
|
|
86700
|
-
designSystemVersionId: string;
|
|
86701
|
-
createdAt: Date;
|
|
86702
|
-
updatedAt: Date;
|
|
86703
|
-
shortPersistentId: string;
|
|
86704
|
-
title: string;
|
|
86705
|
-
})[];
|
|
86706
|
-
}>;
|
|
86707
|
-
}
|
|
86708
|
-
|
|
86709
87312
|
declare class DesignSystemVersionsEndpoint {
|
|
86710
87313
|
private readonly requestExecutor;
|
|
86711
87314
|
readonly themes: ThemesEndpoint;
|
|
@@ -86717,7 +87320,7 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
86717
87320
|
readonly stats: VersionStatsEndpoint;
|
|
86718
87321
|
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86719
87322
|
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86720
|
-
readonly
|
|
87323
|
+
readonly elementsAction: ElementsActionEndpoint;
|
|
86721
87324
|
readonly designSystemComponents: DesignSystemComponentEndpoint;
|
|
86722
87325
|
readonly documentation: DocumentationEndpoint;
|
|
86723
87326
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -86767,10 +87370,10 @@ declare class DesignSystemBffEndpoint {
|
|
|
86767
87370
|
designSystemVersionId: string;
|
|
86768
87371
|
createdAt: Date;
|
|
86769
87372
|
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
87373
|
+
sourceIds: string[];
|
|
86770
87374
|
designSystemId: string;
|
|
86771
87375
|
operation: "Import";
|
|
86772
87376
|
stateChangedAt: Date;
|
|
86773
|
-
sourceIds: string[];
|
|
86774
87377
|
};
|
|
86775
87378
|
}>;
|
|
86776
87379
|
}
|
|
@@ -86824,6 +87427,122 @@ declare class DesignSystemMembersEndpoint {
|
|
|
86824
87427
|
declare class DesignSystemSourcesEndpoint {
|
|
86825
87428
|
private readonly requestExecutor;
|
|
86826
87429
|
constructor(requestExecutor: RequestExecutor);
|
|
87430
|
+
create(dsId: string, payload: DTODataSourceFigmaCreatePayload): Promise<{
|
|
87431
|
+
source: {
|
|
87432
|
+
type: "Figma";
|
|
87433
|
+
id: string;
|
|
87434
|
+
brandId: string;
|
|
87435
|
+
fileName: string;
|
|
87436
|
+
scope: {
|
|
87437
|
+
assets: boolean;
|
|
87438
|
+
components: boolean;
|
|
87439
|
+
tokens: boolean;
|
|
87440
|
+
documentationFrames: boolean;
|
|
87441
|
+
isUnpublishedContentFallbackEnabled: boolean;
|
|
87442
|
+
themePersistentId?: string | undefined;
|
|
87443
|
+
};
|
|
87444
|
+
themeId?: string | null | undefined;
|
|
87445
|
+
cloud?: {
|
|
87446
|
+
fileId: string;
|
|
87447
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
87448
|
+
autoImportMode: "Never" | "Hourly";
|
|
87449
|
+
ownerId: string;
|
|
87450
|
+
stats: {
|
|
87451
|
+
assets: number;
|
|
87452
|
+
components: number;
|
|
87453
|
+
frames: number;
|
|
87454
|
+
tokens: number;
|
|
87455
|
+
};
|
|
87456
|
+
fileThumbnailUrl?: string | undefined;
|
|
87457
|
+
lastImportResult?: {
|
|
87458
|
+
components: number;
|
|
87459
|
+
componentSets: number;
|
|
87460
|
+
frames: number;
|
|
87461
|
+
tokensCreated: number;
|
|
87462
|
+
tokensUpdated: number;
|
|
87463
|
+
tokensDeleted: number;
|
|
87464
|
+
tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
|
|
87465
|
+
tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
|
|
87466
|
+
tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
|
|
87467
|
+
componentsCreated: number;
|
|
87468
|
+
componentsUpdated: number;
|
|
87469
|
+
componentsDeleted: number;
|
|
87470
|
+
componentAssetsCreated: number;
|
|
87471
|
+
componentAssetsUpdated: number;
|
|
87472
|
+
componentAssetsDeleted: number;
|
|
87473
|
+
isFailed: boolean;
|
|
87474
|
+
warnings: {
|
|
87475
|
+
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
87476
|
+
componentId?: string | undefined;
|
|
87477
|
+
componentName?: string | undefined;
|
|
87478
|
+
styleId?: string | undefined;
|
|
87479
|
+
styleName?: string | undefined;
|
|
87480
|
+
unsupportedStyleValueType?: string | undefined;
|
|
87481
|
+
referenceId?: string | undefined;
|
|
87482
|
+
}[];
|
|
87483
|
+
error?: any;
|
|
87484
|
+
sourceId?: string | undefined;
|
|
87485
|
+
brandId?: string | undefined;
|
|
87486
|
+
versionId?: string | undefined;
|
|
87487
|
+
} | null | undefined;
|
|
87488
|
+
lastImportedAt?: Date | null | undefined;
|
|
87489
|
+
lastImportedVersion?: {
|
|
87490
|
+
description: string;
|
|
87491
|
+
id: string;
|
|
87492
|
+
created_at: Date;
|
|
87493
|
+
label: string;
|
|
87494
|
+
} | null | undefined;
|
|
87495
|
+
lastUpdatesCheckedAt?: Date | null | undefined;
|
|
87496
|
+
ownerUserName?: string | undefined;
|
|
87497
|
+
preferredCredentialId?: string | undefined;
|
|
87498
|
+
} | null | undefined;
|
|
87499
|
+
} | {
|
|
87500
|
+
type: "TokenStudio";
|
|
87501
|
+
id: string;
|
|
87502
|
+
brandId: string;
|
|
87503
|
+
fileName: string;
|
|
87504
|
+
tokenStudio: {
|
|
87505
|
+
lastImportedAt: Date;
|
|
87506
|
+
settings: {
|
|
87507
|
+
dryRun: boolean;
|
|
87508
|
+
verbose: boolean;
|
|
87509
|
+
preciseCopy: boolean;
|
|
87510
|
+
};
|
|
87511
|
+
connectionName: string;
|
|
87512
|
+
lastImportedResults: {
|
|
87513
|
+
mapping: {
|
|
87514
|
+
tokenSets: string[];
|
|
87515
|
+
supernovaBrand: string;
|
|
87516
|
+
supernovaTheme?: string | undefined;
|
|
87517
|
+
};
|
|
87518
|
+
isFailed: boolean;
|
|
87519
|
+
tokensCreated: number;
|
|
87520
|
+
tokensDeleted: number;
|
|
87521
|
+
tokensUpdated: number;
|
|
87522
|
+
}[];
|
|
87523
|
+
};
|
|
87524
|
+
themeId?: string | null | undefined;
|
|
87525
|
+
} | {
|
|
87526
|
+
type: "FigmaVariablesPlugin";
|
|
87527
|
+
id: string;
|
|
87528
|
+
brandId: string;
|
|
87529
|
+
fileName: string;
|
|
87530
|
+
upload: {
|
|
87531
|
+
remoteId: string;
|
|
87532
|
+
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
87533
|
+
isTokenTypeSplitEnabled: boolean;
|
|
87534
|
+
lastImportedAt?: Date | undefined;
|
|
87535
|
+
lastImportMetadata?: Record<string, any> | undefined;
|
|
87536
|
+
};
|
|
87537
|
+
figmaVariablesPlugin: {
|
|
87538
|
+
fileId: string;
|
|
87539
|
+
isTokenTypeSplitEnabled: boolean;
|
|
87540
|
+
isCollectionsMigrationCompleted: boolean;
|
|
87541
|
+
lastImportedAt?: Date | undefined;
|
|
87542
|
+
lastImportMetadata?: Record<string, any> | undefined;
|
|
87543
|
+
};
|
|
87544
|
+
};
|
|
87545
|
+
}>;
|
|
86827
87546
|
list(dsId: string): Promise<{
|
|
86828
87547
|
sources: ({
|
|
86829
87548
|
type: "Figma";
|
|
@@ -86941,6 +87660,18 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86941
87660
|
})[];
|
|
86942
87661
|
}>;
|
|
86943
87662
|
delete(dsId: string, sourceId: string): Promise<any>;
|
|
87663
|
+
figmaImport(dsId: string, payload: DTODataSourceFigmaImportPayload): Promise<{
|
|
87664
|
+
job: {
|
|
87665
|
+
id: string;
|
|
87666
|
+
designSystemVersionId: string;
|
|
87667
|
+
createdAt: Date;
|
|
87668
|
+
state: "PendingInput" | "Queued" | "InProgress" | "Failed" | "Success";
|
|
87669
|
+
sourceIds: string[];
|
|
87670
|
+
designSystemId: string;
|
|
87671
|
+
operation: "Import";
|
|
87672
|
+
stateChangedAt: Date;
|
|
87673
|
+
};
|
|
87674
|
+
}>;
|
|
86944
87675
|
}
|
|
86945
87676
|
|
|
86946
87677
|
declare class DesignSystemsEndpoint {
|
|
@@ -91194,4 +91925,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
91194
91925
|
|
|
91195
91926
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
91196
91927
|
|
|
91197
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, 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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
91928
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, 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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|