@supernova-studio/client 0.46.6 → 0.46.8
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 +786 -55
- package/dist/index.d.ts +786 -55
- package/dist/index.js +258 -188
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2031 -1961
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/export/index.ts +1 -0
- package/src/api/dto/export/job.ts +67 -0
- package/src/api/dto/index.ts +2 -0
- package/src/api/dto/liveblocks/auth-response.ts +7 -0
- package/src/api/dto/liveblocks/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -573,14 +573,14 @@ declare const DTODesignSystemVersionJobsResponse: z.ZodObject<{
|
|
|
573
573
|
errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
id: string;
|
|
576
|
-
status: "
|
|
576
|
+
status: "InProgress" | "Success" | "Error";
|
|
577
577
|
designSystemId: string;
|
|
578
578
|
version: string;
|
|
579
579
|
designSystemVersionId?: string | undefined;
|
|
580
580
|
errorMessage?: string | undefined;
|
|
581
581
|
}, {
|
|
582
582
|
id: string;
|
|
583
|
-
status: "
|
|
583
|
+
status: "InProgress" | "Success" | "Error";
|
|
584
584
|
designSystemId: string;
|
|
585
585
|
version: string;
|
|
586
586
|
designSystemVersionId?: string | null | undefined;
|
|
@@ -589,7 +589,7 @@ declare const DTODesignSystemVersionJobsResponse: z.ZodObject<{
|
|
|
589
589
|
}, "strip", z.ZodTypeAny, {
|
|
590
590
|
jobs: {
|
|
591
591
|
id: string;
|
|
592
|
-
status: "
|
|
592
|
+
status: "InProgress" | "Success" | "Error";
|
|
593
593
|
designSystemId: string;
|
|
594
594
|
version: string;
|
|
595
595
|
designSystemVersionId?: string | undefined;
|
|
@@ -598,7 +598,7 @@ declare const DTODesignSystemVersionJobsResponse: z.ZodObject<{
|
|
|
598
598
|
}, {
|
|
599
599
|
jobs: {
|
|
600
600
|
id: string;
|
|
601
|
-
status: "
|
|
601
|
+
status: "InProgress" | "Success" | "Error";
|
|
602
602
|
designSystemId: string;
|
|
603
603
|
version: string;
|
|
604
604
|
designSystemVersionId?: string | null | undefined;
|
|
@@ -616,14 +616,14 @@ declare const DTODesignSystemVersionJobStatusResponse: z.ZodObject<{
|
|
|
616
616
|
errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
618
|
id: string;
|
|
619
|
-
status: "
|
|
619
|
+
status: "InProgress" | "Success" | "Error";
|
|
620
620
|
designSystemId: string;
|
|
621
621
|
version: string;
|
|
622
622
|
designSystemVersionId?: string | undefined;
|
|
623
623
|
errorMessage?: string | undefined;
|
|
624
624
|
}, {
|
|
625
625
|
id: string;
|
|
626
|
-
status: "
|
|
626
|
+
status: "InProgress" | "Success" | "Error";
|
|
627
627
|
designSystemId: string;
|
|
628
628
|
version: string;
|
|
629
629
|
designSystemVersionId?: string | null | undefined;
|
|
@@ -632,7 +632,7 @@ declare const DTODesignSystemVersionJobStatusResponse: z.ZodObject<{
|
|
|
632
632
|
}, "strip", z.ZodTypeAny, {
|
|
633
633
|
job: {
|
|
634
634
|
id: string;
|
|
635
|
-
status: "
|
|
635
|
+
status: "InProgress" | "Success" | "Error";
|
|
636
636
|
designSystemId: string;
|
|
637
637
|
version: string;
|
|
638
638
|
designSystemVersionId?: string | undefined;
|
|
@@ -641,7 +641,7 @@ declare const DTODesignSystemVersionJobStatusResponse: z.ZodObject<{
|
|
|
641
641
|
}, {
|
|
642
642
|
job: {
|
|
643
643
|
id: string;
|
|
644
|
-
status: "
|
|
644
|
+
status: "InProgress" | "Success" | "Error";
|
|
645
645
|
designSystemId: string;
|
|
646
646
|
version: string;
|
|
647
647
|
designSystemVersionId?: string | null | undefined;
|
|
@@ -8282,7 +8282,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8282
8282
|
};
|
|
8283
8283
|
}>;
|
|
8284
8284
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
8285
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "
|
|
8285
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8286
8286
|
persistentId: string;
|
|
8287
8287
|
designObjectId?: string | null | undefined;
|
|
8288
8288
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -8304,7 +8304,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8304
8304
|
caption?: string | null | undefined;
|
|
8305
8305
|
headingType?: number | null | undefined;
|
|
8306
8306
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8307
|
-
calloutType?: "
|
|
8307
|
+
calloutType?: "Success" | "Info" | "Primary" | "Warning" | "Error" | null | undefined;
|
|
8308
8308
|
urlInput?: string | null | undefined;
|
|
8309
8309
|
url?: string | null | undefined;
|
|
8310
8310
|
urlPreview?: {
|
|
@@ -8464,7 +8464,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8464
8464
|
userMetadata?: string | null | undefined;
|
|
8465
8465
|
} & {
|
|
8466
8466
|
children: ({
|
|
8467
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "
|
|
8467
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8468
8468
|
persistentId: string;
|
|
8469
8469
|
designObjectId?: string | null | undefined;
|
|
8470
8470
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -8486,7 +8486,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8486
8486
|
caption?: string | null | undefined;
|
|
8487
8487
|
headingType?: number | null | undefined;
|
|
8488
8488
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8489
|
-
calloutType?: "
|
|
8489
|
+
calloutType?: "Success" | "Info" | "Primary" | "Warning" | "Error" | null | undefined;
|
|
8490
8490
|
urlInput?: string | null | undefined;
|
|
8491
8491
|
url?: string | null | undefined;
|
|
8492
8492
|
urlPreview?: {
|
|
@@ -8764,7 +8764,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8764
8764
|
};
|
|
8765
8765
|
};
|
|
8766
8766
|
blocks: ({
|
|
8767
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "
|
|
8767
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8768
8768
|
persistentId: string;
|
|
8769
8769
|
designObjectId?: string | null | undefined;
|
|
8770
8770
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -8786,7 +8786,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8786
8786
|
caption?: string | null | undefined;
|
|
8787
8787
|
headingType?: number | null | undefined;
|
|
8788
8788
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8789
|
-
calloutType?: "
|
|
8789
|
+
calloutType?: "Success" | "Info" | "Primary" | "Warning" | "Error" | null | undefined;
|
|
8790
8790
|
urlInput?: string | null | undefined;
|
|
8791
8791
|
url?: string | null | undefined;
|
|
8792
8792
|
urlPreview?: {
|
|
@@ -8946,7 +8946,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8946
8946
|
userMetadata?: string | null | undefined;
|
|
8947
8947
|
} & {
|
|
8948
8948
|
children: ({
|
|
8949
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "
|
|
8949
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8950
8950
|
persistentId: string;
|
|
8951
8951
|
designObjectId?: string | null | undefined;
|
|
8952
8952
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -8968,7 +8968,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8968
8968
|
caption?: string | null | undefined;
|
|
8969
8969
|
headingType?: number | null | undefined;
|
|
8970
8970
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8971
|
-
calloutType?: "
|
|
8971
|
+
calloutType?: "Success" | "Info" | "Primary" | "Warning" | "Error" | null | undefined;
|
|
8972
8972
|
urlInput?: string | null | undefined;
|
|
8973
8973
|
url?: string | null | undefined;
|
|
8974
8974
|
urlPreview?: {
|
|
@@ -15021,6 +15021,737 @@ type DTOElementsGetQueryParsed = z.output<typeof DTOElementsGetQuerySchema>;
|
|
|
15021
15021
|
declare const DTOElementsGetTypeFilter: z.ZodEnum<["FigmaNode"]>;
|
|
15022
15022
|
type DTOElementsGetTypeFilter = z.infer<typeof DTOElementsGetTypeFilter>;
|
|
15023
15023
|
|
|
15024
|
+
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
15025
|
+
userId: z.ZodString;
|
|
15026
|
+
userName: z.ZodString;
|
|
15027
|
+
}, "strip", z.ZodTypeAny, {
|
|
15028
|
+
userId: string;
|
|
15029
|
+
userName: string;
|
|
15030
|
+
}, {
|
|
15031
|
+
userId: string;
|
|
15032
|
+
userName: string;
|
|
15033
|
+
}>;
|
|
15034
|
+
type DTOExportJobCreatedBy = z.infer<typeof DTOExportJobCreatedBy>;
|
|
15035
|
+
declare const DTOExportJobDesignSystemPreview: z.ZodObject<{
|
|
15036
|
+
id: z.ZodString;
|
|
15037
|
+
meta: z.ZodObject<{
|
|
15038
|
+
name: z.ZodString;
|
|
15039
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15040
|
+
}, "strip", z.ZodTypeAny, {
|
|
15041
|
+
name: string;
|
|
15042
|
+
description?: string | undefined;
|
|
15043
|
+
}, {
|
|
15044
|
+
name: string;
|
|
15045
|
+
description?: string | undefined;
|
|
15046
|
+
}>;
|
|
15047
|
+
}, "strip", z.ZodTypeAny, {
|
|
15048
|
+
id: string;
|
|
15049
|
+
meta: {
|
|
15050
|
+
name: string;
|
|
15051
|
+
description?: string | undefined;
|
|
15052
|
+
};
|
|
15053
|
+
}, {
|
|
15054
|
+
id: string;
|
|
15055
|
+
meta: {
|
|
15056
|
+
name: string;
|
|
15057
|
+
description?: string | undefined;
|
|
15058
|
+
};
|
|
15059
|
+
}>;
|
|
15060
|
+
type DTOExportJobDesignSystemPreview = z.infer<typeof DTOExportJobDesignSystemPreview>;
|
|
15061
|
+
declare const DTOExportJobDesignSystemVersionPreview: z.ZodObject<{
|
|
15062
|
+
id: z.ZodString;
|
|
15063
|
+
meta: z.ZodObject<{
|
|
15064
|
+
name: z.ZodString;
|
|
15065
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15066
|
+
}, "strip", z.ZodTypeAny, {
|
|
15067
|
+
name: string;
|
|
15068
|
+
description?: string | undefined;
|
|
15069
|
+
}, {
|
|
15070
|
+
name: string;
|
|
15071
|
+
description?: string | undefined;
|
|
15072
|
+
}>;
|
|
15073
|
+
version: z.ZodString;
|
|
15074
|
+
isReadonly: z.ZodBoolean;
|
|
15075
|
+
}, "strip", z.ZodTypeAny, {
|
|
15076
|
+
id: string;
|
|
15077
|
+
meta: {
|
|
15078
|
+
name: string;
|
|
15079
|
+
description?: string | undefined;
|
|
15080
|
+
};
|
|
15081
|
+
version: string;
|
|
15082
|
+
isReadonly: boolean;
|
|
15083
|
+
}, {
|
|
15084
|
+
id: string;
|
|
15085
|
+
meta: {
|
|
15086
|
+
name: string;
|
|
15087
|
+
description?: string | undefined;
|
|
15088
|
+
};
|
|
15089
|
+
version: string;
|
|
15090
|
+
isReadonly: boolean;
|
|
15091
|
+
}>;
|
|
15092
|
+
type DTOExportJobDesignSystemVersionPreview = z.infer<typeof DTOExportJobDesignSystemVersionPreview>;
|
|
15093
|
+
declare const DTOExportJobDestinations: z.ZodObject<{
|
|
15094
|
+
s3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
15095
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
15096
|
+
connectionId: z.ZodString;
|
|
15097
|
+
organizationId: z.ZodString;
|
|
15098
|
+
projectId: z.ZodString;
|
|
15099
|
+
repositoryId: z.ZodString;
|
|
15100
|
+
branch: z.ZodString;
|
|
15101
|
+
relativePath: z.ZodString;
|
|
15102
|
+
}, "strip", z.ZodTypeAny, {
|
|
15103
|
+
connectionId: string;
|
|
15104
|
+
branch: string;
|
|
15105
|
+
relativePath: string;
|
|
15106
|
+
organizationId: string;
|
|
15107
|
+
projectId: string;
|
|
15108
|
+
repositoryId: string;
|
|
15109
|
+
}, {
|
|
15110
|
+
connectionId: string;
|
|
15111
|
+
branch: string;
|
|
15112
|
+
relativePath: string;
|
|
15113
|
+
organizationId: string;
|
|
15114
|
+
projectId: string;
|
|
15115
|
+
repositoryId: string;
|
|
15116
|
+
}>>;
|
|
15117
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
15118
|
+
connectionId: z.ZodString;
|
|
15119
|
+
workspaceSlug: z.ZodString;
|
|
15120
|
+
projectKey: z.ZodString;
|
|
15121
|
+
repoSlug: z.ZodString;
|
|
15122
|
+
branch: z.ZodString;
|
|
15123
|
+
relativePath: z.ZodString;
|
|
15124
|
+
}, "strip", z.ZodTypeAny, {
|
|
15125
|
+
connectionId: string;
|
|
15126
|
+
branch: string;
|
|
15127
|
+
relativePath: string;
|
|
15128
|
+
workspaceSlug: string;
|
|
15129
|
+
projectKey: string;
|
|
15130
|
+
repoSlug: string;
|
|
15131
|
+
}, {
|
|
15132
|
+
connectionId: string;
|
|
15133
|
+
branch: string;
|
|
15134
|
+
relativePath: string;
|
|
15135
|
+
workspaceSlug: string;
|
|
15136
|
+
projectKey: string;
|
|
15137
|
+
repoSlug: string;
|
|
15138
|
+
}>>;
|
|
15139
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
15140
|
+
connectionId: z.ZodString;
|
|
15141
|
+
branch: z.ZodString;
|
|
15142
|
+
relativePath: z.ZodString;
|
|
15143
|
+
}, "strip", z.ZodTypeAny, {
|
|
15144
|
+
connectionId: string;
|
|
15145
|
+
branch: string;
|
|
15146
|
+
relativePath: string;
|
|
15147
|
+
}, {
|
|
15148
|
+
connectionId: string;
|
|
15149
|
+
branch: string;
|
|
15150
|
+
relativePath: string;
|
|
15151
|
+
}>>;
|
|
15152
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
15153
|
+
connectionId: z.ZodString;
|
|
15154
|
+
projectId: z.ZodString;
|
|
15155
|
+
branch: z.ZodString;
|
|
15156
|
+
relativePath: z.ZodString;
|
|
15157
|
+
}, "strip", z.ZodTypeAny, {
|
|
15158
|
+
connectionId: string;
|
|
15159
|
+
branch: string;
|
|
15160
|
+
relativePath: string;
|
|
15161
|
+
projectId: string;
|
|
15162
|
+
}, {
|
|
15163
|
+
connectionId: string;
|
|
15164
|
+
branch: string;
|
|
15165
|
+
relativePath: string;
|
|
15166
|
+
projectId: string;
|
|
15167
|
+
}>>;
|
|
15168
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
15169
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
15170
|
+
}, "strip", z.ZodTypeAny, {
|
|
15171
|
+
environment: "Live" | "Preview";
|
|
15172
|
+
}, {
|
|
15173
|
+
environment: "Live" | "Preview";
|
|
15174
|
+
}>>;
|
|
15175
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
15176
|
+
}, "strip", z.ZodTypeAny, {
|
|
15177
|
+
s3?: {} | undefined;
|
|
15178
|
+
azure?: {
|
|
15179
|
+
connectionId: string;
|
|
15180
|
+
branch: string;
|
|
15181
|
+
relativePath: string;
|
|
15182
|
+
organizationId: string;
|
|
15183
|
+
projectId: string;
|
|
15184
|
+
repositoryId: string;
|
|
15185
|
+
} | undefined;
|
|
15186
|
+
bitbucket?: {
|
|
15187
|
+
connectionId: string;
|
|
15188
|
+
branch: string;
|
|
15189
|
+
relativePath: string;
|
|
15190
|
+
workspaceSlug: string;
|
|
15191
|
+
projectKey: string;
|
|
15192
|
+
repoSlug: string;
|
|
15193
|
+
} | undefined;
|
|
15194
|
+
github?: {
|
|
15195
|
+
connectionId: string;
|
|
15196
|
+
branch: string;
|
|
15197
|
+
relativePath: string;
|
|
15198
|
+
} | undefined;
|
|
15199
|
+
gitlab?: {
|
|
15200
|
+
connectionId: string;
|
|
15201
|
+
branch: string;
|
|
15202
|
+
relativePath: string;
|
|
15203
|
+
projectId: string;
|
|
15204
|
+
} | undefined;
|
|
15205
|
+
documentation?: {
|
|
15206
|
+
environment: "Live" | "Preview";
|
|
15207
|
+
} | undefined;
|
|
15208
|
+
webhookUrl?: string | undefined;
|
|
15209
|
+
}, {
|
|
15210
|
+
s3?: {} | undefined;
|
|
15211
|
+
azure?: {
|
|
15212
|
+
connectionId: string;
|
|
15213
|
+
branch: string;
|
|
15214
|
+
relativePath: string;
|
|
15215
|
+
organizationId: string;
|
|
15216
|
+
projectId: string;
|
|
15217
|
+
repositoryId: string;
|
|
15218
|
+
} | undefined;
|
|
15219
|
+
bitbucket?: {
|
|
15220
|
+
connectionId: string;
|
|
15221
|
+
branch: string;
|
|
15222
|
+
relativePath: string;
|
|
15223
|
+
workspaceSlug: string;
|
|
15224
|
+
projectKey: string;
|
|
15225
|
+
repoSlug: string;
|
|
15226
|
+
} | undefined;
|
|
15227
|
+
github?: {
|
|
15228
|
+
connectionId: string;
|
|
15229
|
+
branch: string;
|
|
15230
|
+
relativePath: string;
|
|
15231
|
+
} | undefined;
|
|
15232
|
+
gitlab?: {
|
|
15233
|
+
connectionId: string;
|
|
15234
|
+
branch: string;
|
|
15235
|
+
relativePath: string;
|
|
15236
|
+
projectId: string;
|
|
15237
|
+
} | undefined;
|
|
15238
|
+
documentation?: {
|
|
15239
|
+
environment: "Live" | "Preview";
|
|
15240
|
+
} | undefined;
|
|
15241
|
+
webhookUrl?: string | undefined;
|
|
15242
|
+
}>;
|
|
15243
|
+
type DTOExportJobDestinations = z.infer<typeof DTOExportJobDestinations>;
|
|
15244
|
+
declare const DTOExportJob: z.ZodObject<{
|
|
15245
|
+
id: z.ZodString;
|
|
15246
|
+
createdAt: z.ZodDate;
|
|
15247
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
15248
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
15249
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
15250
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
15251
|
+
createdBy: z.ZodObject<{
|
|
15252
|
+
userId: z.ZodString;
|
|
15253
|
+
userName: z.ZodString;
|
|
15254
|
+
}, "strip", z.ZodTypeAny, {
|
|
15255
|
+
userId: string;
|
|
15256
|
+
userName: string;
|
|
15257
|
+
}, {
|
|
15258
|
+
userId: string;
|
|
15259
|
+
userName: string;
|
|
15260
|
+
}>;
|
|
15261
|
+
designSystem: z.ZodObject<{
|
|
15262
|
+
id: z.ZodString;
|
|
15263
|
+
meta: z.ZodObject<{
|
|
15264
|
+
name: z.ZodString;
|
|
15265
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15266
|
+
}, "strip", z.ZodTypeAny, {
|
|
15267
|
+
name: string;
|
|
15268
|
+
description?: string | undefined;
|
|
15269
|
+
}, {
|
|
15270
|
+
name: string;
|
|
15271
|
+
description?: string | undefined;
|
|
15272
|
+
}>;
|
|
15273
|
+
}, "strip", z.ZodTypeAny, {
|
|
15274
|
+
id: string;
|
|
15275
|
+
meta: {
|
|
15276
|
+
name: string;
|
|
15277
|
+
description?: string | undefined;
|
|
15278
|
+
};
|
|
15279
|
+
}, {
|
|
15280
|
+
id: string;
|
|
15281
|
+
meta: {
|
|
15282
|
+
name: string;
|
|
15283
|
+
description?: string | undefined;
|
|
15284
|
+
};
|
|
15285
|
+
}>;
|
|
15286
|
+
designSystemVersion: z.ZodObject<{
|
|
15287
|
+
id: z.ZodString;
|
|
15288
|
+
meta: z.ZodObject<{
|
|
15289
|
+
name: z.ZodString;
|
|
15290
|
+
description: z.ZodOptional<z.ZodString>;
|
|
15291
|
+
}, "strip", z.ZodTypeAny, {
|
|
15292
|
+
name: string;
|
|
15293
|
+
description?: string | undefined;
|
|
15294
|
+
}, {
|
|
15295
|
+
name: string;
|
|
15296
|
+
description?: string | undefined;
|
|
15297
|
+
}>;
|
|
15298
|
+
version: z.ZodString;
|
|
15299
|
+
isReadonly: z.ZodBoolean;
|
|
15300
|
+
}, "strip", z.ZodTypeAny, {
|
|
15301
|
+
id: string;
|
|
15302
|
+
meta: {
|
|
15303
|
+
name: string;
|
|
15304
|
+
description?: string | undefined;
|
|
15305
|
+
};
|
|
15306
|
+
version: string;
|
|
15307
|
+
isReadonly: boolean;
|
|
15308
|
+
}, {
|
|
15309
|
+
id: string;
|
|
15310
|
+
meta: {
|
|
15311
|
+
name: string;
|
|
15312
|
+
description?: string | undefined;
|
|
15313
|
+
};
|
|
15314
|
+
version: string;
|
|
15315
|
+
isReadonly: boolean;
|
|
15316
|
+
}>;
|
|
15317
|
+
destinations: z.ZodObject<{
|
|
15318
|
+
s3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
15319
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
15320
|
+
connectionId: z.ZodString;
|
|
15321
|
+
organizationId: z.ZodString;
|
|
15322
|
+
projectId: z.ZodString;
|
|
15323
|
+
repositoryId: z.ZodString;
|
|
15324
|
+
branch: z.ZodString;
|
|
15325
|
+
relativePath: z.ZodString;
|
|
15326
|
+
}, "strip", z.ZodTypeAny, {
|
|
15327
|
+
connectionId: string;
|
|
15328
|
+
branch: string;
|
|
15329
|
+
relativePath: string;
|
|
15330
|
+
organizationId: string;
|
|
15331
|
+
projectId: string;
|
|
15332
|
+
repositoryId: string;
|
|
15333
|
+
}, {
|
|
15334
|
+
connectionId: string;
|
|
15335
|
+
branch: string;
|
|
15336
|
+
relativePath: string;
|
|
15337
|
+
organizationId: string;
|
|
15338
|
+
projectId: string;
|
|
15339
|
+
repositoryId: string;
|
|
15340
|
+
}>>;
|
|
15341
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
15342
|
+
connectionId: z.ZodString;
|
|
15343
|
+
workspaceSlug: z.ZodString;
|
|
15344
|
+
projectKey: z.ZodString;
|
|
15345
|
+
repoSlug: z.ZodString;
|
|
15346
|
+
branch: z.ZodString;
|
|
15347
|
+
relativePath: z.ZodString;
|
|
15348
|
+
}, "strip", z.ZodTypeAny, {
|
|
15349
|
+
connectionId: string;
|
|
15350
|
+
branch: string;
|
|
15351
|
+
relativePath: string;
|
|
15352
|
+
workspaceSlug: string;
|
|
15353
|
+
projectKey: string;
|
|
15354
|
+
repoSlug: string;
|
|
15355
|
+
}, {
|
|
15356
|
+
connectionId: string;
|
|
15357
|
+
branch: string;
|
|
15358
|
+
relativePath: string;
|
|
15359
|
+
workspaceSlug: string;
|
|
15360
|
+
projectKey: string;
|
|
15361
|
+
repoSlug: string;
|
|
15362
|
+
}>>;
|
|
15363
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
15364
|
+
connectionId: z.ZodString;
|
|
15365
|
+
branch: z.ZodString;
|
|
15366
|
+
relativePath: z.ZodString;
|
|
15367
|
+
}, "strip", z.ZodTypeAny, {
|
|
15368
|
+
connectionId: string;
|
|
15369
|
+
branch: string;
|
|
15370
|
+
relativePath: string;
|
|
15371
|
+
}, {
|
|
15372
|
+
connectionId: string;
|
|
15373
|
+
branch: string;
|
|
15374
|
+
relativePath: string;
|
|
15375
|
+
}>>;
|
|
15376
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
15377
|
+
connectionId: z.ZodString;
|
|
15378
|
+
projectId: z.ZodString;
|
|
15379
|
+
branch: z.ZodString;
|
|
15380
|
+
relativePath: z.ZodString;
|
|
15381
|
+
}, "strip", z.ZodTypeAny, {
|
|
15382
|
+
connectionId: string;
|
|
15383
|
+
branch: string;
|
|
15384
|
+
relativePath: string;
|
|
15385
|
+
projectId: string;
|
|
15386
|
+
}, {
|
|
15387
|
+
connectionId: string;
|
|
15388
|
+
branch: string;
|
|
15389
|
+
relativePath: string;
|
|
15390
|
+
projectId: string;
|
|
15391
|
+
}>>;
|
|
15392
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
15393
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
15394
|
+
}, "strip", z.ZodTypeAny, {
|
|
15395
|
+
environment: "Live" | "Preview";
|
|
15396
|
+
}, {
|
|
15397
|
+
environment: "Live" | "Preview";
|
|
15398
|
+
}>>;
|
|
15399
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
15400
|
+
}, "strip", z.ZodTypeAny, {
|
|
15401
|
+
s3?: {} | undefined;
|
|
15402
|
+
azure?: {
|
|
15403
|
+
connectionId: string;
|
|
15404
|
+
branch: string;
|
|
15405
|
+
relativePath: string;
|
|
15406
|
+
organizationId: string;
|
|
15407
|
+
projectId: string;
|
|
15408
|
+
repositoryId: string;
|
|
15409
|
+
} | undefined;
|
|
15410
|
+
bitbucket?: {
|
|
15411
|
+
connectionId: string;
|
|
15412
|
+
branch: string;
|
|
15413
|
+
relativePath: string;
|
|
15414
|
+
workspaceSlug: string;
|
|
15415
|
+
projectKey: string;
|
|
15416
|
+
repoSlug: string;
|
|
15417
|
+
} | undefined;
|
|
15418
|
+
github?: {
|
|
15419
|
+
connectionId: string;
|
|
15420
|
+
branch: string;
|
|
15421
|
+
relativePath: string;
|
|
15422
|
+
} | undefined;
|
|
15423
|
+
gitlab?: {
|
|
15424
|
+
connectionId: string;
|
|
15425
|
+
branch: string;
|
|
15426
|
+
relativePath: string;
|
|
15427
|
+
projectId: string;
|
|
15428
|
+
} | undefined;
|
|
15429
|
+
documentation?: {
|
|
15430
|
+
environment: "Live" | "Preview";
|
|
15431
|
+
} | undefined;
|
|
15432
|
+
webhookUrl?: string | undefined;
|
|
15433
|
+
}, {
|
|
15434
|
+
s3?: {} | undefined;
|
|
15435
|
+
azure?: {
|
|
15436
|
+
connectionId: string;
|
|
15437
|
+
branch: string;
|
|
15438
|
+
relativePath: string;
|
|
15439
|
+
organizationId: string;
|
|
15440
|
+
projectId: string;
|
|
15441
|
+
repositoryId: string;
|
|
15442
|
+
} | undefined;
|
|
15443
|
+
bitbucket?: {
|
|
15444
|
+
connectionId: string;
|
|
15445
|
+
branch: string;
|
|
15446
|
+
relativePath: string;
|
|
15447
|
+
workspaceSlug: string;
|
|
15448
|
+
projectKey: string;
|
|
15449
|
+
repoSlug: string;
|
|
15450
|
+
} | undefined;
|
|
15451
|
+
github?: {
|
|
15452
|
+
connectionId: string;
|
|
15453
|
+
branch: string;
|
|
15454
|
+
relativePath: string;
|
|
15455
|
+
} | undefined;
|
|
15456
|
+
gitlab?: {
|
|
15457
|
+
connectionId: string;
|
|
15458
|
+
branch: string;
|
|
15459
|
+
relativePath: string;
|
|
15460
|
+
projectId: string;
|
|
15461
|
+
} | undefined;
|
|
15462
|
+
documentation?: {
|
|
15463
|
+
environment: "Live" | "Preview";
|
|
15464
|
+
} | undefined;
|
|
15465
|
+
webhookUrl?: string | undefined;
|
|
15466
|
+
}>;
|
|
15467
|
+
exporterId: z.ZodString;
|
|
15468
|
+
scheduleId: z.ZodString;
|
|
15469
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
15470
|
+
error: z.ZodOptional<z.ZodString>;
|
|
15471
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
15472
|
+
bucket: z.ZodString;
|
|
15473
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
15474
|
+
path: z.ZodString;
|
|
15475
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
15476
|
+
}, "strip", z.ZodTypeAny, {
|
|
15477
|
+
path: string;
|
|
15478
|
+
files: string[];
|
|
15479
|
+
bucket: string;
|
|
15480
|
+
urlPrefix?: string | undefined;
|
|
15481
|
+
}, {
|
|
15482
|
+
path: string;
|
|
15483
|
+
files: string[];
|
|
15484
|
+
bucket: string;
|
|
15485
|
+
urlPrefix?: string | undefined;
|
|
15486
|
+
}>>;
|
|
15487
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
15488
|
+
pullRequestUrl: z.ZodString;
|
|
15489
|
+
}, "strip", z.ZodTypeAny, {
|
|
15490
|
+
pullRequestUrl: string;
|
|
15491
|
+
}, {
|
|
15492
|
+
pullRequestUrl: string;
|
|
15493
|
+
}>>;
|
|
15494
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
15495
|
+
pullRequestUrl: z.ZodString;
|
|
15496
|
+
}, "strip", z.ZodTypeAny, {
|
|
15497
|
+
pullRequestUrl: string;
|
|
15498
|
+
}, {
|
|
15499
|
+
pullRequestUrl: string;
|
|
15500
|
+
}>>;
|
|
15501
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
15502
|
+
pullRequestUrl: z.ZodString;
|
|
15503
|
+
}, "strip", z.ZodTypeAny, {
|
|
15504
|
+
pullRequestUrl: string;
|
|
15505
|
+
}, {
|
|
15506
|
+
pullRequestUrl: string;
|
|
15507
|
+
}>>;
|
|
15508
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
15509
|
+
pullRequestUrl: z.ZodString;
|
|
15510
|
+
}, "strip", z.ZodTypeAny, {
|
|
15511
|
+
pullRequestUrl: string;
|
|
15512
|
+
}, {
|
|
15513
|
+
pullRequestUrl: string;
|
|
15514
|
+
}>>;
|
|
15515
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
15516
|
+
url: z.ZodString;
|
|
15517
|
+
}, "strip", z.ZodTypeAny, {
|
|
15518
|
+
url: string;
|
|
15519
|
+
}, {
|
|
15520
|
+
url: string;
|
|
15521
|
+
}>>;
|
|
15522
|
+
}, "strip", z.ZodTypeAny, {
|
|
15523
|
+
error?: string | undefined;
|
|
15524
|
+
s3?: {
|
|
15525
|
+
path: string;
|
|
15526
|
+
files: string[];
|
|
15527
|
+
bucket: string;
|
|
15528
|
+
urlPrefix?: string | undefined;
|
|
15529
|
+
} | undefined;
|
|
15530
|
+
github?: {
|
|
15531
|
+
pullRequestUrl: string;
|
|
15532
|
+
} | undefined;
|
|
15533
|
+
azure?: {
|
|
15534
|
+
pullRequestUrl: string;
|
|
15535
|
+
} | undefined;
|
|
15536
|
+
gitlab?: {
|
|
15537
|
+
pullRequestUrl: string;
|
|
15538
|
+
} | undefined;
|
|
15539
|
+
bitbucket?: {
|
|
15540
|
+
pullRequestUrl: string;
|
|
15541
|
+
} | undefined;
|
|
15542
|
+
sndocs?: {
|
|
15543
|
+
url: string;
|
|
15544
|
+
} | undefined;
|
|
15545
|
+
}, {
|
|
15546
|
+
error?: string | undefined;
|
|
15547
|
+
s3?: {
|
|
15548
|
+
path: string;
|
|
15549
|
+
files: string[];
|
|
15550
|
+
bucket: string;
|
|
15551
|
+
urlPrefix?: string | undefined;
|
|
15552
|
+
} | undefined;
|
|
15553
|
+
github?: {
|
|
15554
|
+
pullRequestUrl: string;
|
|
15555
|
+
} | undefined;
|
|
15556
|
+
azure?: {
|
|
15557
|
+
pullRequestUrl: string;
|
|
15558
|
+
} | undefined;
|
|
15559
|
+
gitlab?: {
|
|
15560
|
+
pullRequestUrl: string;
|
|
15561
|
+
} | undefined;
|
|
15562
|
+
bitbucket?: {
|
|
15563
|
+
pullRequestUrl: string;
|
|
15564
|
+
} | undefined;
|
|
15565
|
+
sndocs?: {
|
|
15566
|
+
url: string;
|
|
15567
|
+
} | undefined;
|
|
15568
|
+
}>>;
|
|
15569
|
+
}, "strip", z.ZodTypeAny, {
|
|
15570
|
+
id: string;
|
|
15571
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
15572
|
+
createdAt: Date;
|
|
15573
|
+
designSystemVersion: {
|
|
15574
|
+
id: string;
|
|
15575
|
+
meta: {
|
|
15576
|
+
name: string;
|
|
15577
|
+
description?: string | undefined;
|
|
15578
|
+
};
|
|
15579
|
+
version: string;
|
|
15580
|
+
isReadonly: boolean;
|
|
15581
|
+
};
|
|
15582
|
+
createdBy: {
|
|
15583
|
+
userId: string;
|
|
15584
|
+
userName: string;
|
|
15585
|
+
};
|
|
15586
|
+
designSystem: {
|
|
15587
|
+
id: string;
|
|
15588
|
+
meta: {
|
|
15589
|
+
name: string;
|
|
15590
|
+
description?: string | undefined;
|
|
15591
|
+
};
|
|
15592
|
+
};
|
|
15593
|
+
destinations: {
|
|
15594
|
+
s3?: {} | undefined;
|
|
15595
|
+
azure?: {
|
|
15596
|
+
connectionId: string;
|
|
15597
|
+
branch: string;
|
|
15598
|
+
relativePath: string;
|
|
15599
|
+
organizationId: string;
|
|
15600
|
+
projectId: string;
|
|
15601
|
+
repositoryId: string;
|
|
15602
|
+
} | undefined;
|
|
15603
|
+
bitbucket?: {
|
|
15604
|
+
connectionId: string;
|
|
15605
|
+
branch: string;
|
|
15606
|
+
relativePath: string;
|
|
15607
|
+
workspaceSlug: string;
|
|
15608
|
+
projectKey: string;
|
|
15609
|
+
repoSlug: string;
|
|
15610
|
+
} | undefined;
|
|
15611
|
+
github?: {
|
|
15612
|
+
connectionId: string;
|
|
15613
|
+
branch: string;
|
|
15614
|
+
relativePath: string;
|
|
15615
|
+
} | undefined;
|
|
15616
|
+
gitlab?: {
|
|
15617
|
+
connectionId: string;
|
|
15618
|
+
branch: string;
|
|
15619
|
+
relativePath: string;
|
|
15620
|
+
projectId: string;
|
|
15621
|
+
} | undefined;
|
|
15622
|
+
documentation?: {
|
|
15623
|
+
environment: "Live" | "Preview";
|
|
15624
|
+
} | undefined;
|
|
15625
|
+
webhookUrl?: string | undefined;
|
|
15626
|
+
};
|
|
15627
|
+
exporterId: string;
|
|
15628
|
+
scheduleId: string;
|
|
15629
|
+
finishedAt?: Date | undefined;
|
|
15630
|
+
index?: number | undefined;
|
|
15631
|
+
estimatedExecutionTime?: number | undefined;
|
|
15632
|
+
result?: {
|
|
15633
|
+
error?: string | undefined;
|
|
15634
|
+
s3?: {
|
|
15635
|
+
path: string;
|
|
15636
|
+
files: string[];
|
|
15637
|
+
bucket: string;
|
|
15638
|
+
urlPrefix?: string | undefined;
|
|
15639
|
+
} | undefined;
|
|
15640
|
+
github?: {
|
|
15641
|
+
pullRequestUrl: string;
|
|
15642
|
+
} | undefined;
|
|
15643
|
+
azure?: {
|
|
15644
|
+
pullRequestUrl: string;
|
|
15645
|
+
} | undefined;
|
|
15646
|
+
gitlab?: {
|
|
15647
|
+
pullRequestUrl: string;
|
|
15648
|
+
} | undefined;
|
|
15649
|
+
bitbucket?: {
|
|
15650
|
+
pullRequestUrl: string;
|
|
15651
|
+
} | undefined;
|
|
15652
|
+
sndocs?: {
|
|
15653
|
+
url: string;
|
|
15654
|
+
} | undefined;
|
|
15655
|
+
} | undefined;
|
|
15656
|
+
}, {
|
|
15657
|
+
id: string;
|
|
15658
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
15659
|
+
createdAt: Date;
|
|
15660
|
+
designSystemVersion: {
|
|
15661
|
+
id: string;
|
|
15662
|
+
meta: {
|
|
15663
|
+
name: string;
|
|
15664
|
+
description?: string | undefined;
|
|
15665
|
+
};
|
|
15666
|
+
version: string;
|
|
15667
|
+
isReadonly: boolean;
|
|
15668
|
+
};
|
|
15669
|
+
createdBy: {
|
|
15670
|
+
userId: string;
|
|
15671
|
+
userName: string;
|
|
15672
|
+
};
|
|
15673
|
+
designSystem: {
|
|
15674
|
+
id: string;
|
|
15675
|
+
meta: {
|
|
15676
|
+
name: string;
|
|
15677
|
+
description?: string | undefined;
|
|
15678
|
+
};
|
|
15679
|
+
};
|
|
15680
|
+
destinations: {
|
|
15681
|
+
s3?: {} | undefined;
|
|
15682
|
+
azure?: {
|
|
15683
|
+
connectionId: string;
|
|
15684
|
+
branch: string;
|
|
15685
|
+
relativePath: string;
|
|
15686
|
+
organizationId: string;
|
|
15687
|
+
projectId: string;
|
|
15688
|
+
repositoryId: string;
|
|
15689
|
+
} | undefined;
|
|
15690
|
+
bitbucket?: {
|
|
15691
|
+
connectionId: string;
|
|
15692
|
+
branch: string;
|
|
15693
|
+
relativePath: string;
|
|
15694
|
+
workspaceSlug: string;
|
|
15695
|
+
projectKey: string;
|
|
15696
|
+
repoSlug: string;
|
|
15697
|
+
} | undefined;
|
|
15698
|
+
github?: {
|
|
15699
|
+
connectionId: string;
|
|
15700
|
+
branch: string;
|
|
15701
|
+
relativePath: string;
|
|
15702
|
+
} | undefined;
|
|
15703
|
+
gitlab?: {
|
|
15704
|
+
connectionId: string;
|
|
15705
|
+
branch: string;
|
|
15706
|
+
relativePath: string;
|
|
15707
|
+
projectId: string;
|
|
15708
|
+
} | undefined;
|
|
15709
|
+
documentation?: {
|
|
15710
|
+
environment: "Live" | "Preview";
|
|
15711
|
+
} | undefined;
|
|
15712
|
+
webhookUrl?: string | undefined;
|
|
15713
|
+
};
|
|
15714
|
+
exporterId: string;
|
|
15715
|
+
scheduleId: string;
|
|
15716
|
+
finishedAt?: Date | undefined;
|
|
15717
|
+
index?: number | undefined;
|
|
15718
|
+
estimatedExecutionTime?: number | undefined;
|
|
15719
|
+
result?: {
|
|
15720
|
+
error?: string | undefined;
|
|
15721
|
+
s3?: {
|
|
15722
|
+
path: string;
|
|
15723
|
+
files: string[];
|
|
15724
|
+
bucket: string;
|
|
15725
|
+
urlPrefix?: string | undefined;
|
|
15726
|
+
} | undefined;
|
|
15727
|
+
github?: {
|
|
15728
|
+
pullRequestUrl: string;
|
|
15729
|
+
} | undefined;
|
|
15730
|
+
azure?: {
|
|
15731
|
+
pullRequestUrl: string;
|
|
15732
|
+
} | undefined;
|
|
15733
|
+
gitlab?: {
|
|
15734
|
+
pullRequestUrl: string;
|
|
15735
|
+
} | undefined;
|
|
15736
|
+
bitbucket?: {
|
|
15737
|
+
pullRequestUrl: string;
|
|
15738
|
+
} | undefined;
|
|
15739
|
+
sndocs?: {
|
|
15740
|
+
url: string;
|
|
15741
|
+
} | undefined;
|
|
15742
|
+
} | undefined;
|
|
15743
|
+
}>;
|
|
15744
|
+
type DTOExportJob = z.infer<typeof DTOExportJob>;
|
|
15745
|
+
|
|
15746
|
+
declare const DTOLiveblocksAuthResponse: z.ZodObject<{
|
|
15747
|
+
token: z.ZodString;
|
|
15748
|
+
}, "strip", z.ZodTypeAny, {
|
|
15749
|
+
token: string;
|
|
15750
|
+
}, {
|
|
15751
|
+
token: string;
|
|
15752
|
+
}>;
|
|
15753
|
+
type DTOLiveblocksAuthResponse = z.infer<typeof DTOLiveblocksAuthResponse>;
|
|
15754
|
+
|
|
15024
15755
|
declare const DTOIntegration: z.ZodObject<{
|
|
15025
15756
|
id: z.ZodString;
|
|
15026
15757
|
workspaceId: z.ZodString;
|
|
@@ -15073,8 +15804,8 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15073
15804
|
id: string;
|
|
15074
15805
|
createdAt: Date;
|
|
15075
15806
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15076
|
-
accessToken: string;
|
|
15077
15807
|
userId: string;
|
|
15808
|
+
accessToken: string;
|
|
15078
15809
|
integrationId: string;
|
|
15079
15810
|
refreshToken?: string | undefined;
|
|
15080
15811
|
tokenName?: string | undefined;
|
|
@@ -15096,8 +15827,8 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15096
15827
|
id: string;
|
|
15097
15828
|
createdAt: Date;
|
|
15098
15829
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15099
|
-
accessToken: string;
|
|
15100
15830
|
userId: string;
|
|
15831
|
+
accessToken: string;
|
|
15101
15832
|
integrationId: string;
|
|
15102
15833
|
refreshToken?: string | undefined;
|
|
15103
15834
|
tokenName?: string | undefined;
|
|
@@ -15144,8 +15875,8 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15144
15875
|
id: string;
|
|
15145
15876
|
createdAt: Date;
|
|
15146
15877
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15147
|
-
accessToken: string;
|
|
15148
15878
|
userId: string;
|
|
15879
|
+
accessToken: string;
|
|
15149
15880
|
integrationId: string;
|
|
15150
15881
|
refreshToken?: string | undefined;
|
|
15151
15882
|
tokenName?: string | undefined;
|
|
@@ -15180,8 +15911,8 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15180
15911
|
id: string;
|
|
15181
15912
|
createdAt: Date;
|
|
15182
15913
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15183
|
-
accessToken: string;
|
|
15184
15914
|
userId: string;
|
|
15915
|
+
accessToken: string;
|
|
15185
15916
|
integrationId: string;
|
|
15186
15917
|
refreshToken?: string | undefined;
|
|
15187
15918
|
tokenName?: string | undefined;
|
|
@@ -15270,8 +16001,8 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15270
16001
|
id: string;
|
|
15271
16002
|
createdAt: Date;
|
|
15272
16003
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15273
|
-
accessToken: string;
|
|
15274
16004
|
userId: string;
|
|
16005
|
+
accessToken: string;
|
|
15275
16006
|
integrationId: string;
|
|
15276
16007
|
refreshToken?: string | undefined;
|
|
15277
16008
|
tokenName?: string | undefined;
|
|
@@ -15293,8 +16024,8 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15293
16024
|
id: string;
|
|
15294
16025
|
createdAt: Date;
|
|
15295
16026
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15296
|
-
accessToken: string;
|
|
15297
16027
|
userId: string;
|
|
16028
|
+
accessToken: string;
|
|
15298
16029
|
integrationId: string;
|
|
15299
16030
|
refreshToken?: string | undefined;
|
|
15300
16031
|
tokenName?: string | undefined;
|
|
@@ -15341,8 +16072,8 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15341
16072
|
id: string;
|
|
15342
16073
|
createdAt: Date;
|
|
15343
16074
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15344
|
-
accessToken: string;
|
|
15345
16075
|
userId: string;
|
|
16076
|
+
accessToken: string;
|
|
15346
16077
|
integrationId: string;
|
|
15347
16078
|
refreshToken?: string | undefined;
|
|
15348
16079
|
tokenName?: string | undefined;
|
|
@@ -15377,8 +16108,8 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15377
16108
|
id: string;
|
|
15378
16109
|
createdAt: Date;
|
|
15379
16110
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15380
|
-
accessToken: string;
|
|
15381
16111
|
userId: string;
|
|
16112
|
+
accessToken: string;
|
|
15382
16113
|
integrationId: string;
|
|
15383
16114
|
refreshToken?: string | undefined;
|
|
15384
16115
|
tokenName?: string | undefined;
|
|
@@ -15415,8 +16146,8 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15415
16146
|
id: string;
|
|
15416
16147
|
createdAt: Date;
|
|
15417
16148
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15418
|
-
accessToken: string;
|
|
15419
16149
|
userId: string;
|
|
16150
|
+
accessToken: string;
|
|
15420
16151
|
integrationId: string;
|
|
15421
16152
|
refreshToken?: string | undefined;
|
|
15422
16153
|
tokenName?: string | undefined;
|
|
@@ -15453,8 +16184,8 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15453
16184
|
id: string;
|
|
15454
16185
|
createdAt: Date;
|
|
15455
16186
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15456
|
-
accessToken: string;
|
|
15457
16187
|
userId: string;
|
|
16188
|
+
accessToken: string;
|
|
15458
16189
|
integrationId: string;
|
|
15459
16190
|
refreshToken?: string | undefined;
|
|
15460
16191
|
tokenName?: string | undefined;
|
|
@@ -15536,8 +16267,8 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15536
16267
|
id: string;
|
|
15537
16268
|
createdAt: Date;
|
|
15538
16269
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15539
|
-
accessToken: string;
|
|
15540
16270
|
userId: string;
|
|
16271
|
+
accessToken: string;
|
|
15541
16272
|
integrationId: string;
|
|
15542
16273
|
refreshToken?: string | undefined;
|
|
15543
16274
|
tokenName?: string | undefined;
|
|
@@ -15559,8 +16290,8 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15559
16290
|
id: string;
|
|
15560
16291
|
createdAt: Date;
|
|
15561
16292
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15562
|
-
accessToken: string;
|
|
15563
16293
|
userId: string;
|
|
16294
|
+
accessToken: string;
|
|
15564
16295
|
integrationId: string;
|
|
15565
16296
|
refreshToken?: string | undefined;
|
|
15566
16297
|
tokenName?: string | undefined;
|
|
@@ -15607,8 +16338,8 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15607
16338
|
id: string;
|
|
15608
16339
|
createdAt: Date;
|
|
15609
16340
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15610
|
-
accessToken: string;
|
|
15611
16341
|
userId: string;
|
|
16342
|
+
accessToken: string;
|
|
15612
16343
|
integrationId: string;
|
|
15613
16344
|
refreshToken?: string | undefined;
|
|
15614
16345
|
tokenName?: string | undefined;
|
|
@@ -15643,8 +16374,8 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15643
16374
|
id: string;
|
|
15644
16375
|
createdAt: Date;
|
|
15645
16376
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15646
|
-
accessToken: string;
|
|
15647
16377
|
userId: string;
|
|
16378
|
+
accessToken: string;
|
|
15648
16379
|
integrationId: string;
|
|
15649
16380
|
refreshToken?: string | undefined;
|
|
15650
16381
|
tokenName?: string | undefined;
|
|
@@ -15681,8 +16412,8 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15681
16412
|
id: string;
|
|
15682
16413
|
createdAt: Date;
|
|
15683
16414
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15684
|
-
accessToken: string;
|
|
15685
16415
|
userId: string;
|
|
16416
|
+
accessToken: string;
|
|
15686
16417
|
integrationId: string;
|
|
15687
16418
|
refreshToken?: string | undefined;
|
|
15688
16419
|
tokenName?: string | undefined;
|
|
@@ -15719,8 +16450,8 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15719
16450
|
id: string;
|
|
15720
16451
|
createdAt: Date;
|
|
15721
16452
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15722
|
-
accessToken: string;
|
|
15723
16453
|
userId: string;
|
|
16454
|
+
accessToken: string;
|
|
15724
16455
|
integrationId: string;
|
|
15725
16456
|
refreshToken?: string | undefined;
|
|
15726
16457
|
tokenName?: string | undefined;
|
|
@@ -15823,8 +16554,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
15823
16554
|
} | null | undefined>;
|
|
15824
16555
|
}, "strip", z.ZodTypeAny, {
|
|
15825
16556
|
name: string;
|
|
15826
|
-
color: string;
|
|
15827
16557
|
handle: string;
|
|
16558
|
+
color: string;
|
|
15828
16559
|
avatar?: string | undefined;
|
|
15829
16560
|
billingDetails?: {
|
|
15830
16561
|
address?: {
|
|
@@ -15844,8 +16575,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
15844
16575
|
} | undefined;
|
|
15845
16576
|
}, {
|
|
15846
16577
|
name: string;
|
|
15847
|
-
color: string;
|
|
15848
16578
|
handle: string;
|
|
16579
|
+
color: string;
|
|
15849
16580
|
avatar?: string | null | undefined;
|
|
15850
16581
|
billingDetails?: {
|
|
15851
16582
|
address?: {
|
|
@@ -16632,8 +17363,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16632
17363
|
id: string;
|
|
16633
17364
|
profile: {
|
|
16634
17365
|
name: string;
|
|
16635
|
-
color: string;
|
|
16636
17366
|
handle: string;
|
|
17367
|
+
color: string;
|
|
16637
17368
|
avatar?: string | undefined;
|
|
16638
17369
|
billingDetails?: {
|
|
16639
17370
|
address?: {
|
|
@@ -16796,8 +17527,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16796
17527
|
id: string;
|
|
16797
17528
|
profile: {
|
|
16798
17529
|
name: string;
|
|
16799
|
-
color: string;
|
|
16800
17530
|
handle: string;
|
|
17531
|
+
color: string;
|
|
16801
17532
|
avatar?: string | null | undefined;
|
|
16802
17533
|
billingDetails?: {
|
|
16803
17534
|
address?: {
|
|
@@ -16964,8 +17695,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16964
17695
|
id: string;
|
|
16965
17696
|
profile: {
|
|
16966
17697
|
name: string;
|
|
16967
|
-
color: string;
|
|
16968
17698
|
handle: string;
|
|
17699
|
+
color: string;
|
|
16969
17700
|
avatar?: string | undefined;
|
|
16970
17701
|
billingDetails?: {
|
|
16971
17702
|
address?: {
|
|
@@ -17132,8 +17863,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
17132
17863
|
id: string;
|
|
17133
17864
|
profile: {
|
|
17134
17865
|
name: string;
|
|
17135
|
-
color: string;
|
|
17136
17866
|
handle: string;
|
|
17867
|
+
color: string;
|
|
17137
17868
|
avatar?: string | null | undefined;
|
|
17138
17869
|
billingDetails?: {
|
|
17139
17870
|
address?: {
|
|
@@ -17369,8 +18100,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
17369
18100
|
} | null | undefined>;
|
|
17370
18101
|
}, "strip", z.ZodTypeAny, {
|
|
17371
18102
|
name: string;
|
|
17372
|
-
color: string;
|
|
17373
18103
|
handle: string;
|
|
18104
|
+
color: string;
|
|
17374
18105
|
avatar?: string | undefined;
|
|
17375
18106
|
billingDetails?: {
|
|
17376
18107
|
address?: {
|
|
@@ -17390,8 +18121,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
17390
18121
|
} | undefined;
|
|
17391
18122
|
}, {
|
|
17392
18123
|
name: string;
|
|
17393
|
-
color: string;
|
|
17394
18124
|
handle: string;
|
|
18125
|
+
color: string;
|
|
17395
18126
|
avatar?: string | null | undefined;
|
|
17396
18127
|
billingDetails?: {
|
|
17397
18128
|
address?: {
|
|
@@ -18178,8 +18909,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18178
18909
|
id: string;
|
|
18179
18910
|
profile: {
|
|
18180
18911
|
name: string;
|
|
18181
|
-
color: string;
|
|
18182
18912
|
handle: string;
|
|
18913
|
+
color: string;
|
|
18183
18914
|
avatar?: string | undefined;
|
|
18184
18915
|
billingDetails?: {
|
|
18185
18916
|
address?: {
|
|
@@ -18342,8 +19073,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18342
19073
|
id: string;
|
|
18343
19074
|
profile: {
|
|
18344
19075
|
name: string;
|
|
18345
|
-
color: string;
|
|
18346
19076
|
handle: string;
|
|
19077
|
+
color: string;
|
|
18347
19078
|
avatar?: string | null | undefined;
|
|
18348
19079
|
billingDetails?: {
|
|
18349
19080
|
address?: {
|
|
@@ -18510,8 +19241,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18510
19241
|
id: string;
|
|
18511
19242
|
profile: {
|
|
18512
19243
|
name: string;
|
|
18513
|
-
color: string;
|
|
18514
19244
|
handle: string;
|
|
19245
|
+
color: string;
|
|
18515
19246
|
avatar?: string | undefined;
|
|
18516
19247
|
billingDetails?: {
|
|
18517
19248
|
address?: {
|
|
@@ -18678,8 +19409,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18678
19409
|
id: string;
|
|
18679
19410
|
profile: {
|
|
18680
19411
|
name: string;
|
|
18681
|
-
color: string;
|
|
18682
19412
|
handle: string;
|
|
19413
|
+
color: string;
|
|
18683
19414
|
avatar?: string | null | undefined;
|
|
18684
19415
|
billingDetails?: {
|
|
18685
19416
|
address?: {
|
|
@@ -18848,8 +19579,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18848
19579
|
id: string;
|
|
18849
19580
|
profile: {
|
|
18850
19581
|
name: string;
|
|
18851
|
-
color: string;
|
|
18852
19582
|
handle: string;
|
|
19583
|
+
color: string;
|
|
18853
19584
|
avatar?: string | undefined;
|
|
18854
19585
|
billingDetails?: {
|
|
18855
19586
|
address?: {
|
|
@@ -19018,8 +19749,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
19018
19749
|
id: string;
|
|
19019
19750
|
profile: {
|
|
19020
19751
|
name: string;
|
|
19021
|
-
color: string;
|
|
19022
19752
|
handle: string;
|
|
19753
|
+
color: string;
|
|
19023
19754
|
avatar?: string | null | undefined;
|
|
19024
19755
|
billingDetails?: {
|
|
19025
19756
|
address?: {
|
|
@@ -19291,8 +20022,8 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
19291
20022
|
} | null | undefined>;
|
|
19292
20023
|
}, "strip", z.ZodTypeAny, {
|
|
19293
20024
|
name: string;
|
|
19294
|
-
color: string;
|
|
19295
20025
|
handle: string;
|
|
20026
|
+
color: string;
|
|
19296
20027
|
avatar?: string | undefined;
|
|
19297
20028
|
billingDetails?: {
|
|
19298
20029
|
address?: {
|
|
@@ -19312,8 +20043,8 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
19312
20043
|
} | undefined;
|
|
19313
20044
|
}, {
|
|
19314
20045
|
name: string;
|
|
19315
|
-
color: string;
|
|
19316
20046
|
handle: string;
|
|
20047
|
+
color: string;
|
|
19317
20048
|
avatar?: string | null | undefined;
|
|
19318
20049
|
billingDetails?: {
|
|
19319
20050
|
address?: {
|
|
@@ -20100,8 +20831,8 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20100
20831
|
id: string;
|
|
20101
20832
|
profile: {
|
|
20102
20833
|
name: string;
|
|
20103
|
-
color: string;
|
|
20104
20834
|
handle: string;
|
|
20835
|
+
color: string;
|
|
20105
20836
|
avatar?: string | undefined;
|
|
20106
20837
|
billingDetails?: {
|
|
20107
20838
|
address?: {
|
|
@@ -20264,8 +20995,8 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
20264
20995
|
id: string;
|
|
20265
20996
|
profile: {
|
|
20266
20997
|
name: string;
|
|
20267
|
-
color: string;
|
|
20268
20998
|
handle: string;
|
|
20999
|
+
color: string;
|
|
20269
21000
|
avatar?: string | null | undefined;
|
|
20270
21001
|
billingDetails?: {
|
|
20271
21002
|
address?: {
|
|
@@ -20876,7 +21607,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
20876
21607
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
20877
21608
|
} | undefined;
|
|
20878
21609
|
};
|
|
20879
|
-
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data"
|
|
21610
|
+
category: "Figma" | "Text" | "Code" | "Other" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
20880
21611
|
behavior: {
|
|
20881
21612
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
20882
21613
|
items?: {
|
|
@@ -20947,7 +21678,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
20947
21678
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
20948
21679
|
} | undefined;
|
|
20949
21680
|
};
|
|
20950
|
-
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data"
|
|
21681
|
+
category: "Figma" | "Text" | "Code" | "Other" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
20951
21682
|
behavior: {
|
|
20952
21683
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
20953
21684
|
items?: {
|
|
@@ -21020,7 +21751,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21020
21751
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
21021
21752
|
} | undefined;
|
|
21022
21753
|
};
|
|
21023
|
-
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data"
|
|
21754
|
+
category: "Figma" | "Text" | "Code" | "Other" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
21024
21755
|
behavior: {
|
|
21025
21756
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
21026
21757
|
items?: {
|
|
@@ -21093,7 +21824,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21093
21824
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
21094
21825
|
} | undefined;
|
|
21095
21826
|
};
|
|
21096
|
-
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data"
|
|
21827
|
+
category: "Figma" | "Text" | "Code" | "Other" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
21097
21828
|
behavior: {
|
|
21098
21829
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
21099
21830
|
items?: {
|
|
@@ -23929,4 +24660,4 @@ declare const BlockDefinitionUtils: {
|
|
|
23929
24660
|
};
|
|
23930
24661
|
};
|
|
23931
24662
|
|
|
23932
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
24663
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|