@supernova-studio/client 0.59.19 → 0.59.20
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 +505 -63
- package/dist/index.d.ts +505 -63
- package/dist/index.js +27 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -17
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/export/pipeline.ts +1 -1
- package/src/api/dto/export/exporter-property.ts +4 -4
- package/src/api/dto/export/job.ts +19 -2
- package/src/api/dto/export/pipeline.ts +2 -2
- package/src/api/payloads/export/pipeline.ts +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -24508,7 +24508,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
24508
24508
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
24509
24509
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
24510
24510
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24511
|
-
|
|
24511
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
24512
24512
|
}, "strip", z.ZodTypeAny, {
|
|
24513
24513
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
24514
24514
|
id: string;
|
|
@@ -24594,7 +24594,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
24594
24594
|
brandPersistentId?: string | undefined;
|
|
24595
24595
|
themePersistentId?: string | undefined;
|
|
24596
24596
|
themePersistentIds?: string[] | undefined;
|
|
24597
|
-
|
|
24597
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
24598
24598
|
finishedAt?: Date | undefined;
|
|
24599
24599
|
index?: number | undefined;
|
|
24600
24600
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24720,7 +24720,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
24720
24720
|
brandPersistentId?: string | undefined;
|
|
24721
24721
|
themePersistentId?: string | undefined;
|
|
24722
24722
|
themePersistentIds?: string[] | undefined;
|
|
24723
|
-
|
|
24723
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
24724
24724
|
finishedAt?: Date | undefined;
|
|
24725
24725
|
index?: number | undefined;
|
|
24726
24726
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24848,7 +24848,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
24848
24848
|
brandPersistentId?: string | undefined;
|
|
24849
24849
|
themePersistentId?: string | undefined;
|
|
24850
24850
|
themePersistentIds?: string[] | undefined;
|
|
24851
|
-
|
|
24851
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
24852
24852
|
finishedAt?: Date | undefined;
|
|
24853
24853
|
index?: number | undefined;
|
|
24854
24854
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24976,7 +24976,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
24976
24976
|
brandPersistentId?: string | undefined;
|
|
24977
24977
|
themePersistentId?: string | undefined;
|
|
24978
24978
|
themePersistentIds?: string[] | undefined;
|
|
24979
|
-
|
|
24979
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
24980
24980
|
finishedAt?: Date | undefined;
|
|
24981
24981
|
index?: number | undefined;
|
|
24982
24982
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -50261,8 +50261,8 @@ type DTOElementsGetQueryParsed = z.output<typeof DTOElementsGetQuerySchema>;
|
|
|
50261
50261
|
declare const DTOElementsGetTypeFilter: z.ZodEnum<["FigmaNode"]>;
|
|
50262
50262
|
type DTOElementsGetTypeFilter = z.infer<typeof DTOElementsGetTypeFilter>;
|
|
50263
50263
|
|
|
50264
|
-
declare const
|
|
50265
|
-
type DTOExporterPropertyDefinitionValue = z.infer<typeof
|
|
50264
|
+
declare const DTOExporterPropertyValue: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
50265
|
+
type DTOExporterPropertyDefinitionValue = z.infer<typeof DTOExporterPropertyValue>;
|
|
50266
50266
|
declare const DTOExporterPropertyType: z.ZodEnum<["Enum", "Boolean", "String", "Number", "Array", "Object"]>;
|
|
50267
50267
|
type DTOExporterPropertyType = z.infer<typeof DTOExporterPropertyType>;
|
|
50268
50268
|
declare const PropertyDefinitionBase: z.ZodObject<{
|
|
@@ -51033,8 +51033,8 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
51033
51033
|
})[];
|
|
51034
51034
|
}>;
|
|
51035
51035
|
type DTOExporterPropertyDefinitionsResponse = z.infer<typeof DTOExporterPropertyDefinitionsResponse>;
|
|
51036
|
-
declare const
|
|
51037
|
-
type
|
|
51036
|
+
declare const DTOExporterPropertyValueMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>;
|
|
51037
|
+
type DTOExporterPropertyValueMap = z.infer<typeof DTOExporterPropertyValueMap>;
|
|
51038
51038
|
|
|
51039
51039
|
declare const DTOExporterListQuery: z.ZodObject<{
|
|
51040
51040
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -54455,7 +54455,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
54455
54455
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
54456
54456
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
54457
54457
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54458
|
-
|
|
54458
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
54459
54459
|
}, "strip", z.ZodTypeAny, {
|
|
54460
54460
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
54461
54461
|
id: string;
|
|
@@ -54541,7 +54541,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
54541
54541
|
brandPersistentId?: string | undefined;
|
|
54542
54542
|
themePersistentId?: string | undefined;
|
|
54543
54543
|
themePersistentIds?: string[] | undefined;
|
|
54544
|
-
|
|
54544
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54545
54545
|
finishedAt?: Date | undefined;
|
|
54546
54546
|
index?: number | undefined;
|
|
54547
54547
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -54667,7 +54667,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
54667
54667
|
brandPersistentId?: string | undefined;
|
|
54668
54668
|
themePersistentId?: string | undefined;
|
|
54669
54669
|
themePersistentIds?: string[] | undefined;
|
|
54670
|
-
|
|
54670
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54671
54671
|
finishedAt?: Date | undefined;
|
|
54672
54672
|
index?: number | undefined;
|
|
54673
54673
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -55251,7 +55251,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
55251
55251
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
55252
55252
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
55253
55253
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55254
|
-
|
|
55254
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
55255
55255
|
}, "strip", z.ZodTypeAny, {
|
|
55256
55256
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
55257
55257
|
id: string;
|
|
@@ -55337,7 +55337,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
55337
55337
|
brandPersistentId?: string | undefined;
|
|
55338
55338
|
themePersistentId?: string | undefined;
|
|
55339
55339
|
themePersistentIds?: string[] | undefined;
|
|
55340
|
-
|
|
55340
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
55341
55341
|
finishedAt?: Date | undefined;
|
|
55342
55342
|
index?: number | undefined;
|
|
55343
55343
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -55463,7 +55463,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
55463
55463
|
brandPersistentId?: string | undefined;
|
|
55464
55464
|
themePersistentId?: string | undefined;
|
|
55465
55465
|
themePersistentIds?: string[] | undefined;
|
|
55466
|
-
|
|
55466
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
55467
55467
|
finishedAt?: Date | undefined;
|
|
55468
55468
|
index?: number | undefined;
|
|
55469
55469
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -55591,7 +55591,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
55591
55591
|
brandPersistentId?: string | undefined;
|
|
55592
55592
|
themePersistentId?: string | undefined;
|
|
55593
55593
|
themePersistentIds?: string[] | undefined;
|
|
55594
|
-
|
|
55594
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
55595
55595
|
finishedAt?: Date | undefined;
|
|
55596
55596
|
index?: number | undefined;
|
|
55597
55597
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -55719,7 +55719,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
55719
55719
|
brandPersistentId?: string | undefined;
|
|
55720
55720
|
themePersistentId?: string | undefined;
|
|
55721
55721
|
themePersistentIds?: string[] | undefined;
|
|
55722
|
-
|
|
55722
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
55723
55723
|
finishedAt?: Date | undefined;
|
|
55724
55724
|
index?: number | undefined;
|
|
55725
55725
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -55763,6 +55763,448 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
55763
55763
|
};
|
|
55764
55764
|
}>;
|
|
55765
55765
|
type DTOExportJobResponse = z.infer<typeof DTOExportJobResponse>;
|
|
55766
|
+
declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
55767
|
+
designSystemId: z.ZodString;
|
|
55768
|
+
designSystemVersionId: z.ZodString;
|
|
55769
|
+
exporterId: z.ZodString;
|
|
55770
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
55771
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
55772
|
+
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55773
|
+
destinations: z.ZodObject<{
|
|
55774
|
+
s3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
55775
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
55776
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
55777
|
+
organizationId: z.ZodString;
|
|
55778
|
+
projectId: z.ZodString;
|
|
55779
|
+
repositoryId: z.ZodString;
|
|
55780
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55781
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55782
|
+
branch: z.ZodString;
|
|
55783
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55784
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
55785
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55786
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55787
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
55788
|
+
}, "strip", z.ZodTypeAny, {
|
|
55789
|
+
branch: string;
|
|
55790
|
+
organizationId: string;
|
|
55791
|
+
projectId: string;
|
|
55792
|
+
repositoryId: string;
|
|
55793
|
+
url?: string | undefined;
|
|
55794
|
+
userId?: number | undefined;
|
|
55795
|
+
credentialId?: string | undefined;
|
|
55796
|
+
relativePath?: string | undefined;
|
|
55797
|
+
purgeDirectory?: boolean | undefined;
|
|
55798
|
+
commitAuthorName?: string | undefined;
|
|
55799
|
+
commitAuthorEmail?: string | undefined;
|
|
55800
|
+
connectionId?: string | undefined;
|
|
55801
|
+
}, {
|
|
55802
|
+
branch: string;
|
|
55803
|
+
organizationId: string;
|
|
55804
|
+
projectId: string;
|
|
55805
|
+
repositoryId: string;
|
|
55806
|
+
url?: string | null | undefined;
|
|
55807
|
+
userId?: number | null | undefined;
|
|
55808
|
+
credentialId?: string | undefined;
|
|
55809
|
+
relativePath?: string | null | undefined;
|
|
55810
|
+
purgeDirectory?: boolean | null | undefined;
|
|
55811
|
+
commitAuthorName?: string | null | undefined;
|
|
55812
|
+
commitAuthorEmail?: string | null | undefined;
|
|
55813
|
+
connectionId?: string | null | undefined;
|
|
55814
|
+
}>>;
|
|
55815
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
55816
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
55817
|
+
workspaceSlug: z.ZodString;
|
|
55818
|
+
projectKey: z.ZodString;
|
|
55819
|
+
repoSlug: z.ZodString;
|
|
55820
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55821
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55822
|
+
branch: z.ZodString;
|
|
55823
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55824
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
55825
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55826
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
55827
|
+
}, "strip", z.ZodTypeAny, {
|
|
55828
|
+
branch: string;
|
|
55829
|
+
workspaceSlug: string;
|
|
55830
|
+
projectKey: string;
|
|
55831
|
+
repoSlug: string;
|
|
55832
|
+
userId?: number | undefined;
|
|
55833
|
+
credentialId?: string | undefined;
|
|
55834
|
+
relativePath?: string | undefined;
|
|
55835
|
+
purgeDirectory?: boolean | undefined;
|
|
55836
|
+
commitAuthorName?: string | undefined;
|
|
55837
|
+
commitAuthorEmail?: string | undefined;
|
|
55838
|
+
connectionId?: string | undefined;
|
|
55839
|
+
}, {
|
|
55840
|
+
branch: string;
|
|
55841
|
+
workspaceSlug: string;
|
|
55842
|
+
projectKey: string;
|
|
55843
|
+
repoSlug: string;
|
|
55844
|
+
userId?: number | null | undefined;
|
|
55845
|
+
credentialId?: string | undefined;
|
|
55846
|
+
relativePath?: string | null | undefined;
|
|
55847
|
+
purgeDirectory?: boolean | null | undefined;
|
|
55848
|
+
commitAuthorName?: string | null | undefined;
|
|
55849
|
+
commitAuthorEmail?: string | null | undefined;
|
|
55850
|
+
connectionId?: string | null | undefined;
|
|
55851
|
+
}>>;
|
|
55852
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
55853
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
55854
|
+
url: z.ZodString;
|
|
55855
|
+
branch: z.ZodString;
|
|
55856
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55857
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
55858
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55859
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55860
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55861
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
55862
|
+
}, "strip", z.ZodTypeAny, {
|
|
55863
|
+
url: string;
|
|
55864
|
+
branch: string;
|
|
55865
|
+
userId?: number | undefined;
|
|
55866
|
+
credentialId?: string | undefined;
|
|
55867
|
+
relativePath?: string | undefined;
|
|
55868
|
+
purgeDirectory?: boolean | undefined;
|
|
55869
|
+
commitAuthorName?: string | undefined;
|
|
55870
|
+
commitAuthorEmail?: string | undefined;
|
|
55871
|
+
connectionId?: string | undefined;
|
|
55872
|
+
}, {
|
|
55873
|
+
url: string;
|
|
55874
|
+
branch: string;
|
|
55875
|
+
userId?: number | null | undefined;
|
|
55876
|
+
credentialId?: string | undefined;
|
|
55877
|
+
relativePath?: string | null | undefined;
|
|
55878
|
+
purgeDirectory?: boolean | null | undefined;
|
|
55879
|
+
commitAuthorName?: string | null | undefined;
|
|
55880
|
+
commitAuthorEmail?: string | null | undefined;
|
|
55881
|
+
connectionId?: string | null | undefined;
|
|
55882
|
+
}>>;
|
|
55883
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
55884
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
55885
|
+
projectId: z.ZodString;
|
|
55886
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55887
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55888
|
+
branch: z.ZodString;
|
|
55889
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55890
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
55891
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55892
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55893
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
55894
|
+
}, "strip", z.ZodTypeAny, {
|
|
55895
|
+
branch: string;
|
|
55896
|
+
projectId: string;
|
|
55897
|
+
url?: string | undefined;
|
|
55898
|
+
userId?: number | undefined;
|
|
55899
|
+
credentialId?: string | undefined;
|
|
55900
|
+
relativePath?: string | undefined;
|
|
55901
|
+
purgeDirectory?: boolean | undefined;
|
|
55902
|
+
commitAuthorName?: string | undefined;
|
|
55903
|
+
commitAuthorEmail?: string | undefined;
|
|
55904
|
+
connectionId?: string | undefined;
|
|
55905
|
+
}, {
|
|
55906
|
+
branch: string;
|
|
55907
|
+
projectId: string;
|
|
55908
|
+
url?: string | null | undefined;
|
|
55909
|
+
userId?: number | null | undefined;
|
|
55910
|
+
credentialId?: string | undefined;
|
|
55911
|
+
relativePath?: string | null | undefined;
|
|
55912
|
+
purgeDirectory?: boolean | null | undefined;
|
|
55913
|
+
commitAuthorName?: string | null | undefined;
|
|
55914
|
+
commitAuthorEmail?: string | null | undefined;
|
|
55915
|
+
connectionId?: string | null | undefined;
|
|
55916
|
+
}>>;
|
|
55917
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
55918
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
55919
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
55920
|
+
pagePersistentIds: string[];
|
|
55921
|
+
groupPersistentIds: string[];
|
|
55922
|
+
}, z.ZodTypeDef, {
|
|
55923
|
+
pagePersistentIds: string[];
|
|
55924
|
+
groupPersistentIds: string[];
|
|
55925
|
+
}>>>, {
|
|
55926
|
+
pagePersistentIds: string[];
|
|
55927
|
+
groupPersistentIds: string[];
|
|
55928
|
+
} | undefined, {
|
|
55929
|
+
pagePersistentIds: string[];
|
|
55930
|
+
groupPersistentIds: string[];
|
|
55931
|
+
} | null | undefined>;
|
|
55932
|
+
}, "strip", z.ZodTypeAny, {
|
|
55933
|
+
environment: "Live" | "Preview";
|
|
55934
|
+
changes?: {
|
|
55935
|
+
pagePersistentIds: string[];
|
|
55936
|
+
groupPersistentIds: string[];
|
|
55937
|
+
} | undefined;
|
|
55938
|
+
}, {
|
|
55939
|
+
environment: "Live" | "Preview";
|
|
55940
|
+
changes?: {
|
|
55941
|
+
pagePersistentIds: string[];
|
|
55942
|
+
groupPersistentIds: string[];
|
|
55943
|
+
} | null | undefined;
|
|
55944
|
+
}>>;
|
|
55945
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
55946
|
+
}, "strip", z.ZodTypeAny, {
|
|
55947
|
+
s3?: {} | undefined;
|
|
55948
|
+
azure?: {
|
|
55949
|
+
branch: string;
|
|
55950
|
+
organizationId: string;
|
|
55951
|
+
projectId: string;
|
|
55952
|
+
repositoryId: string;
|
|
55953
|
+
url?: string | undefined;
|
|
55954
|
+
userId?: number | undefined;
|
|
55955
|
+
credentialId?: string | undefined;
|
|
55956
|
+
relativePath?: string | undefined;
|
|
55957
|
+
purgeDirectory?: boolean | undefined;
|
|
55958
|
+
commitAuthorName?: string | undefined;
|
|
55959
|
+
commitAuthorEmail?: string | undefined;
|
|
55960
|
+
connectionId?: string | undefined;
|
|
55961
|
+
} | undefined;
|
|
55962
|
+
bitbucket?: {
|
|
55963
|
+
branch: string;
|
|
55964
|
+
workspaceSlug: string;
|
|
55965
|
+
projectKey: string;
|
|
55966
|
+
repoSlug: string;
|
|
55967
|
+
userId?: number | undefined;
|
|
55968
|
+
credentialId?: string | undefined;
|
|
55969
|
+
relativePath?: string | undefined;
|
|
55970
|
+
purgeDirectory?: boolean | undefined;
|
|
55971
|
+
commitAuthorName?: string | undefined;
|
|
55972
|
+
commitAuthorEmail?: string | undefined;
|
|
55973
|
+
connectionId?: string | undefined;
|
|
55974
|
+
} | undefined;
|
|
55975
|
+
github?: {
|
|
55976
|
+
url: string;
|
|
55977
|
+
branch: string;
|
|
55978
|
+
userId?: number | undefined;
|
|
55979
|
+
credentialId?: string | undefined;
|
|
55980
|
+
relativePath?: string | undefined;
|
|
55981
|
+
purgeDirectory?: boolean | undefined;
|
|
55982
|
+
commitAuthorName?: string | undefined;
|
|
55983
|
+
commitAuthorEmail?: string | undefined;
|
|
55984
|
+
connectionId?: string | undefined;
|
|
55985
|
+
} | undefined;
|
|
55986
|
+
gitlab?: {
|
|
55987
|
+
branch: string;
|
|
55988
|
+
projectId: string;
|
|
55989
|
+
url?: string | undefined;
|
|
55990
|
+
userId?: number | undefined;
|
|
55991
|
+
credentialId?: string | undefined;
|
|
55992
|
+
relativePath?: string | undefined;
|
|
55993
|
+
purgeDirectory?: boolean | undefined;
|
|
55994
|
+
commitAuthorName?: string | undefined;
|
|
55995
|
+
commitAuthorEmail?: string | undefined;
|
|
55996
|
+
connectionId?: string | undefined;
|
|
55997
|
+
} | undefined;
|
|
55998
|
+
documentation?: {
|
|
55999
|
+
environment: "Live" | "Preview";
|
|
56000
|
+
changes?: {
|
|
56001
|
+
pagePersistentIds: string[];
|
|
56002
|
+
groupPersistentIds: string[];
|
|
56003
|
+
} | undefined;
|
|
56004
|
+
} | undefined;
|
|
56005
|
+
webhookUrl?: string | undefined;
|
|
56006
|
+
}, {
|
|
56007
|
+
s3?: {} | undefined;
|
|
56008
|
+
azure?: {
|
|
56009
|
+
branch: string;
|
|
56010
|
+
organizationId: string;
|
|
56011
|
+
projectId: string;
|
|
56012
|
+
repositoryId: string;
|
|
56013
|
+
url?: string | null | undefined;
|
|
56014
|
+
userId?: number | null | undefined;
|
|
56015
|
+
credentialId?: string | undefined;
|
|
56016
|
+
relativePath?: string | null | undefined;
|
|
56017
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56018
|
+
commitAuthorName?: string | null | undefined;
|
|
56019
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56020
|
+
connectionId?: string | null | undefined;
|
|
56021
|
+
} | undefined;
|
|
56022
|
+
bitbucket?: {
|
|
56023
|
+
branch: string;
|
|
56024
|
+
workspaceSlug: string;
|
|
56025
|
+
projectKey: string;
|
|
56026
|
+
repoSlug: string;
|
|
56027
|
+
userId?: number | null | undefined;
|
|
56028
|
+
credentialId?: string | undefined;
|
|
56029
|
+
relativePath?: string | null | undefined;
|
|
56030
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56031
|
+
commitAuthorName?: string | null | undefined;
|
|
56032
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56033
|
+
connectionId?: string | null | undefined;
|
|
56034
|
+
} | undefined;
|
|
56035
|
+
github?: {
|
|
56036
|
+
url: string;
|
|
56037
|
+
branch: string;
|
|
56038
|
+
userId?: number | null | undefined;
|
|
56039
|
+
credentialId?: string | undefined;
|
|
56040
|
+
relativePath?: string | null | undefined;
|
|
56041
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56042
|
+
commitAuthorName?: string | null | undefined;
|
|
56043
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56044
|
+
connectionId?: string | null | undefined;
|
|
56045
|
+
} | undefined;
|
|
56046
|
+
gitlab?: {
|
|
56047
|
+
branch: string;
|
|
56048
|
+
projectId: string;
|
|
56049
|
+
url?: string | null | undefined;
|
|
56050
|
+
userId?: number | null | undefined;
|
|
56051
|
+
credentialId?: string | undefined;
|
|
56052
|
+
relativePath?: string | null | undefined;
|
|
56053
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56054
|
+
commitAuthorName?: string | null | undefined;
|
|
56055
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56056
|
+
connectionId?: string | null | undefined;
|
|
56057
|
+
} | undefined;
|
|
56058
|
+
documentation?: {
|
|
56059
|
+
environment: "Live" | "Preview";
|
|
56060
|
+
changes?: {
|
|
56061
|
+
pagePersistentIds: string[];
|
|
56062
|
+
groupPersistentIds: string[];
|
|
56063
|
+
} | null | undefined;
|
|
56064
|
+
} | undefined;
|
|
56065
|
+
webhookUrl?: string | undefined;
|
|
56066
|
+
}>;
|
|
56067
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
56068
|
+
}, "strip", z.ZodTypeAny, {
|
|
56069
|
+
designSystemVersionId: string;
|
|
56070
|
+
designSystemId: string;
|
|
56071
|
+
exporterId: string;
|
|
56072
|
+
destinations: {
|
|
56073
|
+
s3?: {} | undefined;
|
|
56074
|
+
azure?: {
|
|
56075
|
+
branch: string;
|
|
56076
|
+
organizationId: string;
|
|
56077
|
+
projectId: string;
|
|
56078
|
+
repositoryId: string;
|
|
56079
|
+
url?: string | undefined;
|
|
56080
|
+
userId?: number | undefined;
|
|
56081
|
+
credentialId?: string | undefined;
|
|
56082
|
+
relativePath?: string | undefined;
|
|
56083
|
+
purgeDirectory?: boolean | undefined;
|
|
56084
|
+
commitAuthorName?: string | undefined;
|
|
56085
|
+
commitAuthorEmail?: string | undefined;
|
|
56086
|
+
connectionId?: string | undefined;
|
|
56087
|
+
} | undefined;
|
|
56088
|
+
bitbucket?: {
|
|
56089
|
+
branch: string;
|
|
56090
|
+
workspaceSlug: string;
|
|
56091
|
+
projectKey: string;
|
|
56092
|
+
repoSlug: string;
|
|
56093
|
+
userId?: number | undefined;
|
|
56094
|
+
credentialId?: string | undefined;
|
|
56095
|
+
relativePath?: string | undefined;
|
|
56096
|
+
purgeDirectory?: boolean | undefined;
|
|
56097
|
+
commitAuthorName?: string | undefined;
|
|
56098
|
+
commitAuthorEmail?: string | undefined;
|
|
56099
|
+
connectionId?: string | undefined;
|
|
56100
|
+
} | undefined;
|
|
56101
|
+
github?: {
|
|
56102
|
+
url: string;
|
|
56103
|
+
branch: string;
|
|
56104
|
+
userId?: number | undefined;
|
|
56105
|
+
credentialId?: string | undefined;
|
|
56106
|
+
relativePath?: string | undefined;
|
|
56107
|
+
purgeDirectory?: boolean | undefined;
|
|
56108
|
+
commitAuthorName?: string | undefined;
|
|
56109
|
+
commitAuthorEmail?: string | undefined;
|
|
56110
|
+
connectionId?: string | undefined;
|
|
56111
|
+
} | undefined;
|
|
56112
|
+
gitlab?: {
|
|
56113
|
+
branch: string;
|
|
56114
|
+
projectId: string;
|
|
56115
|
+
url?: string | undefined;
|
|
56116
|
+
userId?: number | undefined;
|
|
56117
|
+
credentialId?: string | undefined;
|
|
56118
|
+
relativePath?: string | undefined;
|
|
56119
|
+
purgeDirectory?: boolean | undefined;
|
|
56120
|
+
commitAuthorName?: string | undefined;
|
|
56121
|
+
commitAuthorEmail?: string | undefined;
|
|
56122
|
+
connectionId?: string | undefined;
|
|
56123
|
+
} | undefined;
|
|
56124
|
+
documentation?: {
|
|
56125
|
+
environment: "Live" | "Preview";
|
|
56126
|
+
changes?: {
|
|
56127
|
+
pagePersistentIds: string[];
|
|
56128
|
+
groupPersistentIds: string[];
|
|
56129
|
+
} | undefined;
|
|
56130
|
+
} | undefined;
|
|
56131
|
+
webhookUrl?: string | undefined;
|
|
56132
|
+
};
|
|
56133
|
+
brandId?: string | undefined;
|
|
56134
|
+
themeId?: string | undefined;
|
|
56135
|
+
themePersistentIds?: string[] | undefined;
|
|
56136
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
56137
|
+
}, {
|
|
56138
|
+
designSystemVersionId: string;
|
|
56139
|
+
designSystemId: string;
|
|
56140
|
+
exporterId: string;
|
|
56141
|
+
destinations: {
|
|
56142
|
+
s3?: {} | undefined;
|
|
56143
|
+
azure?: {
|
|
56144
|
+
branch: string;
|
|
56145
|
+
organizationId: string;
|
|
56146
|
+
projectId: string;
|
|
56147
|
+
repositoryId: string;
|
|
56148
|
+
url?: string | null | undefined;
|
|
56149
|
+
userId?: number | null | undefined;
|
|
56150
|
+
credentialId?: string | undefined;
|
|
56151
|
+
relativePath?: string | null | undefined;
|
|
56152
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56153
|
+
commitAuthorName?: string | null | undefined;
|
|
56154
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56155
|
+
connectionId?: string | null | undefined;
|
|
56156
|
+
} | undefined;
|
|
56157
|
+
bitbucket?: {
|
|
56158
|
+
branch: string;
|
|
56159
|
+
workspaceSlug: string;
|
|
56160
|
+
projectKey: string;
|
|
56161
|
+
repoSlug: string;
|
|
56162
|
+
userId?: number | null | undefined;
|
|
56163
|
+
credentialId?: string | undefined;
|
|
56164
|
+
relativePath?: string | null | undefined;
|
|
56165
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56166
|
+
commitAuthorName?: string | null | undefined;
|
|
56167
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56168
|
+
connectionId?: string | null | undefined;
|
|
56169
|
+
} | undefined;
|
|
56170
|
+
github?: {
|
|
56171
|
+
url: string;
|
|
56172
|
+
branch: string;
|
|
56173
|
+
userId?: number | null | undefined;
|
|
56174
|
+
credentialId?: string | undefined;
|
|
56175
|
+
relativePath?: string | null | undefined;
|
|
56176
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56177
|
+
commitAuthorName?: string | null | undefined;
|
|
56178
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56179
|
+
connectionId?: string | null | undefined;
|
|
56180
|
+
} | undefined;
|
|
56181
|
+
gitlab?: {
|
|
56182
|
+
branch: string;
|
|
56183
|
+
projectId: string;
|
|
56184
|
+
url?: string | null | undefined;
|
|
56185
|
+
userId?: number | null | undefined;
|
|
56186
|
+
credentialId?: string | undefined;
|
|
56187
|
+
relativePath?: string | null | undefined;
|
|
56188
|
+
purgeDirectory?: boolean | null | undefined;
|
|
56189
|
+
commitAuthorName?: string | null | undefined;
|
|
56190
|
+
commitAuthorEmail?: string | null | undefined;
|
|
56191
|
+
connectionId?: string | null | undefined;
|
|
56192
|
+
} | undefined;
|
|
56193
|
+
documentation?: {
|
|
56194
|
+
environment: "Live" | "Preview";
|
|
56195
|
+
changes?: {
|
|
56196
|
+
pagePersistentIds: string[];
|
|
56197
|
+
groupPersistentIds: string[];
|
|
56198
|
+
} | null | undefined;
|
|
56199
|
+
} | undefined;
|
|
56200
|
+
webhookUrl?: string | undefined;
|
|
56201
|
+
};
|
|
56202
|
+
brandId?: string | undefined;
|
|
56203
|
+
themeId?: string | undefined;
|
|
56204
|
+
themePersistentIds?: string[] | undefined;
|
|
56205
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
56206
|
+
}>;
|
|
56207
|
+
type DTOExportJobCreateInput = z.infer<typeof DTOExportJobCreateInput>;
|
|
55766
56208
|
|
|
55767
56209
|
declare const DTOPipelineListQuery: z.ZodObject<{
|
|
55768
56210
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
@@ -56319,7 +56761,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
56319
56761
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
56320
56762
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
56321
56763
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
56322
|
-
|
|
56764
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
56323
56765
|
}, "strip", z.ZodTypeAny, {
|
|
56324
56766
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
56325
56767
|
id: string;
|
|
@@ -56405,7 +56847,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
56405
56847
|
brandPersistentId?: string | undefined;
|
|
56406
56848
|
themePersistentId?: string | undefined;
|
|
56407
56849
|
themePersistentIds?: string[] | undefined;
|
|
56408
|
-
|
|
56850
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
56409
56851
|
finishedAt?: Date | undefined;
|
|
56410
56852
|
index?: number | undefined;
|
|
56411
56853
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -56531,7 +56973,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
56531
56973
|
brandPersistentId?: string | undefined;
|
|
56532
56974
|
themePersistentId?: string | undefined;
|
|
56533
56975
|
themePersistentIds?: string[] | undefined;
|
|
56534
|
-
|
|
56976
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
56535
56977
|
finishedAt?: Date | undefined;
|
|
56536
56978
|
index?: number | undefined;
|
|
56537
56979
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -56755,7 +57197,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
56755
57197
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
56756
57198
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
56757
57199
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
56758
|
-
|
|
57200
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
56759
57201
|
}, "strip", z.ZodTypeAny, {
|
|
56760
57202
|
id: string;
|
|
56761
57203
|
name: string;
|
|
@@ -56849,7 +57291,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
56849
57291
|
brandPersistentId?: string | undefined;
|
|
56850
57292
|
themePersistentId?: string | undefined;
|
|
56851
57293
|
themePersistentIds?: string[] | undefined;
|
|
56852
|
-
|
|
57294
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
56853
57295
|
finishedAt?: Date | undefined;
|
|
56854
57296
|
index?: number | undefined;
|
|
56855
57297
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -56894,7 +57336,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
56894
57336
|
brandPersistentId?: string | undefined;
|
|
56895
57337
|
themePersistentId?: string | undefined;
|
|
56896
57338
|
themePersistentIds?: string[] | undefined;
|
|
56897
|
-
|
|
57339
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
56898
57340
|
webhookUrl?: string | undefined;
|
|
56899
57341
|
destinationSnDocs?: {
|
|
56900
57342
|
environment: "Live" | "Preview";
|
|
@@ -57047,7 +57489,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
57047
57489
|
brandPersistentId?: string | undefined;
|
|
57048
57490
|
themePersistentId?: string | undefined;
|
|
57049
57491
|
themePersistentIds?: string[] | undefined;
|
|
57050
|
-
|
|
57492
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
57051
57493
|
finishedAt?: Date | undefined;
|
|
57052
57494
|
index?: number | undefined;
|
|
57053
57495
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -57092,7 +57534,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
57092
57534
|
brandPersistentId?: string | undefined;
|
|
57093
57535
|
themePersistentId?: string | undefined;
|
|
57094
57536
|
themePersistentIds?: string[] | undefined;
|
|
57095
|
-
|
|
57537
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
57096
57538
|
webhookUrl?: string | undefined;
|
|
57097
57539
|
destinationSnDocs?: {
|
|
57098
57540
|
environment: "Live" | "Preview";
|
|
@@ -57696,7 +58138,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
57696
58138
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
57697
58139
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
57698
58140
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
57699
|
-
|
|
58141
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
57700
58142
|
}, "strip", z.ZodTypeAny, {
|
|
57701
58143
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
57702
58144
|
id: string;
|
|
@@ -57782,7 +58224,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
57782
58224
|
brandPersistentId?: string | undefined;
|
|
57783
58225
|
themePersistentId?: string | undefined;
|
|
57784
58226
|
themePersistentIds?: string[] | undefined;
|
|
57785
|
-
|
|
58227
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
57786
58228
|
finishedAt?: Date | undefined;
|
|
57787
58229
|
index?: number | undefined;
|
|
57788
58230
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -57908,7 +58350,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
57908
58350
|
brandPersistentId?: string | undefined;
|
|
57909
58351
|
themePersistentId?: string | undefined;
|
|
57910
58352
|
themePersistentIds?: string[] | undefined;
|
|
57911
|
-
|
|
58353
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
57912
58354
|
finishedAt?: Date | undefined;
|
|
57913
58355
|
index?: number | undefined;
|
|
57914
58356
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58132,7 +58574,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58132
58574
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
58133
58575
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
58134
58576
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
58135
|
-
|
|
58577
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
58136
58578
|
}, "strip", z.ZodTypeAny, {
|
|
58137
58579
|
id: string;
|
|
58138
58580
|
name: string;
|
|
@@ -58226,7 +58668,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58226
58668
|
brandPersistentId?: string | undefined;
|
|
58227
58669
|
themePersistentId?: string | undefined;
|
|
58228
58670
|
themePersistentIds?: string[] | undefined;
|
|
58229
|
-
|
|
58671
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58230
58672
|
finishedAt?: Date | undefined;
|
|
58231
58673
|
index?: number | undefined;
|
|
58232
58674
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58271,7 +58713,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58271
58713
|
brandPersistentId?: string | undefined;
|
|
58272
58714
|
themePersistentId?: string | undefined;
|
|
58273
58715
|
themePersistentIds?: string[] | undefined;
|
|
58274
|
-
|
|
58716
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58275
58717
|
webhookUrl?: string | undefined;
|
|
58276
58718
|
destinationSnDocs?: {
|
|
58277
58719
|
environment: "Live" | "Preview";
|
|
@@ -58424,7 +58866,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58424
58866
|
brandPersistentId?: string | undefined;
|
|
58425
58867
|
themePersistentId?: string | undefined;
|
|
58426
58868
|
themePersistentIds?: string[] | undefined;
|
|
58427
|
-
|
|
58869
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58428
58870
|
finishedAt?: Date | undefined;
|
|
58429
58871
|
index?: number | undefined;
|
|
58430
58872
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58469,7 +58911,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58469
58911
|
brandPersistentId?: string | undefined;
|
|
58470
58912
|
themePersistentId?: string | undefined;
|
|
58471
58913
|
themePersistentIds?: string[] | undefined;
|
|
58472
|
-
|
|
58914
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58473
58915
|
webhookUrl?: string | undefined;
|
|
58474
58916
|
destinationSnDocs?: {
|
|
58475
58917
|
environment: "Live" | "Preview";
|
|
@@ -58624,7 +59066,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58624
59066
|
brandPersistentId?: string | undefined;
|
|
58625
59067
|
themePersistentId?: string | undefined;
|
|
58626
59068
|
themePersistentIds?: string[] | undefined;
|
|
58627
|
-
|
|
59069
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58628
59070
|
finishedAt?: Date | undefined;
|
|
58629
59071
|
index?: number | undefined;
|
|
58630
59072
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58669,7 +59111,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58669
59111
|
brandPersistentId?: string | undefined;
|
|
58670
59112
|
themePersistentId?: string | undefined;
|
|
58671
59113
|
themePersistentIds?: string[] | undefined;
|
|
58672
|
-
|
|
59114
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58673
59115
|
webhookUrl?: string | undefined;
|
|
58674
59116
|
destinationSnDocs?: {
|
|
58675
59117
|
environment: "Live" | "Preview";
|
|
@@ -58824,7 +59266,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58824
59266
|
brandPersistentId?: string | undefined;
|
|
58825
59267
|
themePersistentId?: string | undefined;
|
|
58826
59268
|
themePersistentIds?: string[] | undefined;
|
|
58827
|
-
|
|
59269
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58828
59270
|
finishedAt?: Date | undefined;
|
|
58829
59271
|
index?: number | undefined;
|
|
58830
59272
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58869,7 +59311,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
58869
59311
|
brandPersistentId?: string | undefined;
|
|
58870
59312
|
themePersistentId?: string | undefined;
|
|
58871
59313
|
themePersistentIds?: string[] | undefined;
|
|
58872
|
-
|
|
59314
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
58873
59315
|
webhookUrl?: string | undefined;
|
|
58874
59316
|
destinationSnDocs?: {
|
|
58875
59317
|
environment: "Live" | "Preview";
|
|
@@ -59474,7 +59916,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
59474
59916
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
59475
59917
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
59476
59918
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59477
|
-
|
|
59919
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
59478
59920
|
}, "strip", z.ZodTypeAny, {
|
|
59479
59921
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
59480
59922
|
id: string;
|
|
@@ -59560,7 +60002,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
59560
60002
|
brandPersistentId?: string | undefined;
|
|
59561
60003
|
themePersistentId?: string | undefined;
|
|
59562
60004
|
themePersistentIds?: string[] | undefined;
|
|
59563
|
-
|
|
60005
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
59564
60006
|
finishedAt?: Date | undefined;
|
|
59565
60007
|
index?: number | undefined;
|
|
59566
60008
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -59686,7 +60128,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
59686
60128
|
brandPersistentId?: string | undefined;
|
|
59687
60129
|
themePersistentId?: string | undefined;
|
|
59688
60130
|
themePersistentIds?: string[] | undefined;
|
|
59689
|
-
|
|
60131
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
59690
60132
|
finishedAt?: Date | undefined;
|
|
59691
60133
|
index?: number | undefined;
|
|
59692
60134
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -59910,7 +60352,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
59910
60352
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
59911
60353
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
59912
60354
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59913
|
-
|
|
60355
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
59914
60356
|
}, "strip", z.ZodTypeAny, {
|
|
59915
60357
|
id: string;
|
|
59916
60358
|
name: string;
|
|
@@ -60004,7 +60446,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60004
60446
|
brandPersistentId?: string | undefined;
|
|
60005
60447
|
themePersistentId?: string | undefined;
|
|
60006
60448
|
themePersistentIds?: string[] | undefined;
|
|
60007
|
-
|
|
60449
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60008
60450
|
finishedAt?: Date | undefined;
|
|
60009
60451
|
index?: number | undefined;
|
|
60010
60452
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60049,7 +60491,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60049
60491
|
brandPersistentId?: string | undefined;
|
|
60050
60492
|
themePersistentId?: string | undefined;
|
|
60051
60493
|
themePersistentIds?: string[] | undefined;
|
|
60052
|
-
|
|
60494
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60053
60495
|
webhookUrl?: string | undefined;
|
|
60054
60496
|
destinationSnDocs?: {
|
|
60055
60497
|
environment: "Live" | "Preview";
|
|
@@ -60202,7 +60644,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60202
60644
|
brandPersistentId?: string | undefined;
|
|
60203
60645
|
themePersistentId?: string | undefined;
|
|
60204
60646
|
themePersistentIds?: string[] | undefined;
|
|
60205
|
-
|
|
60647
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60206
60648
|
finishedAt?: Date | undefined;
|
|
60207
60649
|
index?: number | undefined;
|
|
60208
60650
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60247,7 +60689,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60247
60689
|
brandPersistentId?: string | undefined;
|
|
60248
60690
|
themePersistentId?: string | undefined;
|
|
60249
60691
|
themePersistentIds?: string[] | undefined;
|
|
60250
|
-
|
|
60692
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60251
60693
|
webhookUrl?: string | undefined;
|
|
60252
60694
|
destinationSnDocs?: {
|
|
60253
60695
|
environment: "Live" | "Preview";
|
|
@@ -60402,7 +60844,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60402
60844
|
brandPersistentId?: string | undefined;
|
|
60403
60845
|
themePersistentId?: string | undefined;
|
|
60404
60846
|
themePersistentIds?: string[] | undefined;
|
|
60405
|
-
|
|
60847
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60406
60848
|
finishedAt?: Date | undefined;
|
|
60407
60849
|
index?: number | undefined;
|
|
60408
60850
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60447,7 +60889,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60447
60889
|
brandPersistentId?: string | undefined;
|
|
60448
60890
|
themePersistentId?: string | undefined;
|
|
60449
60891
|
themePersistentIds?: string[] | undefined;
|
|
60450
|
-
|
|
60892
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60451
60893
|
webhookUrl?: string | undefined;
|
|
60452
60894
|
destinationSnDocs?: {
|
|
60453
60895
|
environment: "Live" | "Preview";
|
|
@@ -60602,7 +61044,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60602
61044
|
brandPersistentId?: string | undefined;
|
|
60603
61045
|
themePersistentId?: string | undefined;
|
|
60604
61046
|
themePersistentIds?: string[] | undefined;
|
|
60605
|
-
|
|
61047
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60606
61048
|
finishedAt?: Date | undefined;
|
|
60607
61049
|
index?: number | undefined;
|
|
60608
61050
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60647,7 +61089,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
60647
61089
|
brandPersistentId?: string | undefined;
|
|
60648
61090
|
themePersistentId?: string | undefined;
|
|
60649
61091
|
themePersistentIds?: string[] | undefined;
|
|
60650
|
-
|
|
61092
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
60651
61093
|
webhookUrl?: string | undefined;
|
|
60652
61094
|
destinationSnDocs?: {
|
|
60653
61095
|
environment: "Live" | "Preview";
|
|
@@ -91884,7 +92326,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
91884
92326
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
91885
92327
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
91886
92328
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
91887
|
-
|
|
92329
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
91888
92330
|
destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
|
|
91889
92331
|
gitQuery: z.ZodObject<{
|
|
91890
92332
|
organization: z.ZodOptional<z.ZodString>;
|
|
@@ -92276,7 +92718,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
92276
92718
|
brandPersistentId?: string | undefined;
|
|
92277
92719
|
themePersistentId?: string | undefined;
|
|
92278
92720
|
themePersistentIds?: string[] | undefined;
|
|
92279
|
-
|
|
92721
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
92280
92722
|
destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
|
|
92281
92723
|
}, {
|
|
92282
92724
|
name: string;
|
|
@@ -92355,7 +92797,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
92355
92797
|
brandPersistentId?: string | undefined;
|
|
92356
92798
|
themePersistentId?: string | undefined;
|
|
92357
92799
|
themePersistentIds?: string[] | undefined;
|
|
92358
|
-
|
|
92800
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
92359
92801
|
destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
|
|
92360
92802
|
}>;
|
|
92361
92803
|
type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
|
|
@@ -92367,7 +92809,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
92367
92809
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
92368
92810
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
92369
92811
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
92370
|
-
|
|
92812
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
92371
92813
|
destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
|
|
92372
92814
|
gitQuery: z.ZodOptional<z.ZodObject<{
|
|
92373
92815
|
organization: z.ZodOptional<z.ZodString>;
|
|
@@ -92690,7 +93132,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
92690
93132
|
eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
|
|
92691
93133
|
themePersistentId?: string | undefined;
|
|
92692
93134
|
themePersistentIds?: string[] | undefined;
|
|
92693
|
-
|
|
93135
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
92694
93136
|
destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
|
|
92695
93137
|
gitQuery?: {
|
|
92696
93138
|
organization?: string | undefined;
|
|
@@ -92768,7 +93210,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
92768
93210
|
eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
|
|
92769
93211
|
themePersistentId?: string | undefined;
|
|
92770
93212
|
themePersistentIds?: string[] | undefined;
|
|
92771
|
-
|
|
93213
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
92772
93214
|
destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
|
|
92773
93215
|
gitQuery?: {
|
|
92774
93216
|
organization?: string | undefined;
|
|
@@ -93686,7 +94128,7 @@ declare class PipelinesEndpoint {
|
|
|
93686
94128
|
brandPersistentId?: string | undefined;
|
|
93687
94129
|
themePersistentId?: string | undefined;
|
|
93688
94130
|
themePersistentIds?: string[] | undefined;
|
|
93689
|
-
|
|
94131
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
93690
94132
|
finishedAt?: Date | undefined;
|
|
93691
94133
|
index?: number | undefined;
|
|
93692
94134
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -93731,7 +94173,7 @@ declare class PipelinesEndpoint {
|
|
|
93731
94173
|
brandPersistentId?: string | undefined;
|
|
93732
94174
|
themePersistentId?: string | undefined;
|
|
93733
94175
|
themePersistentIds?: string[] | undefined;
|
|
93734
|
-
|
|
94176
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
93735
94177
|
webhookUrl?: string | undefined;
|
|
93736
94178
|
destinationSnDocs?: {
|
|
93737
94179
|
environment: "Live" | "Preview";
|
|
@@ -93887,7 +94329,7 @@ declare class PipelinesEndpoint {
|
|
|
93887
94329
|
brandPersistentId?: string | undefined;
|
|
93888
94330
|
themePersistentId?: string | undefined;
|
|
93889
94331
|
themePersistentIds?: string[] | undefined;
|
|
93890
|
-
|
|
94332
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
93891
94333
|
finishedAt?: Date | undefined;
|
|
93892
94334
|
index?: number | undefined;
|
|
93893
94335
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -93932,7 +94374,7 @@ declare class PipelinesEndpoint {
|
|
|
93932
94374
|
brandPersistentId?: string | undefined;
|
|
93933
94375
|
themePersistentId?: string | undefined;
|
|
93934
94376
|
themePersistentIds?: string[] | undefined;
|
|
93935
|
-
|
|
94377
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
93936
94378
|
webhookUrl?: string | undefined;
|
|
93937
94379
|
destinationSnDocs?: {
|
|
93938
94380
|
environment: "Live" | "Preview";
|
|
@@ -94088,7 +94530,7 @@ declare class PipelinesEndpoint {
|
|
|
94088
94530
|
brandPersistentId?: string | undefined;
|
|
94089
94531
|
themePersistentId?: string | undefined;
|
|
94090
94532
|
themePersistentIds?: string[] | undefined;
|
|
94091
|
-
|
|
94533
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
94092
94534
|
finishedAt?: Date | undefined;
|
|
94093
94535
|
index?: number | undefined;
|
|
94094
94536
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -94133,7 +94575,7 @@ declare class PipelinesEndpoint {
|
|
|
94133
94575
|
brandPersistentId?: string | undefined;
|
|
94134
94576
|
themePersistentId?: string | undefined;
|
|
94135
94577
|
themePersistentIds?: string[] | undefined;
|
|
94136
|
-
|
|
94578
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
94137
94579
|
webhookUrl?: string | undefined;
|
|
94138
94580
|
destinationSnDocs?: {
|
|
94139
94581
|
environment: "Live" | "Preview";
|
|
@@ -94281,7 +94723,7 @@ declare class PipelinesEndpoint {
|
|
|
94281
94723
|
brandPersistentId?: string | undefined;
|
|
94282
94724
|
themePersistentId?: string | undefined;
|
|
94283
94725
|
themePersistentIds?: string[] | undefined;
|
|
94284
|
-
|
|
94726
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
94285
94727
|
finishedAt?: Date | undefined;
|
|
94286
94728
|
index?: number | undefined;
|
|
94287
94729
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -102392,4 +102834,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
102392
102834
|
|
|
102393
102835
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
102394
102836
|
|
|
102395
|
-
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, 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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, 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, 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, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, 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 };
|
|
102837
|
+
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, 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, 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, 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, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, 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 };
|