@supernova-studio/model 0.46.8 → 0.46.10
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 +882 -877
- package/dist/index.d.ts +882 -877
- package/dist/index.js +105 -41
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +222 -158
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/theme.ts +4 -3
- package/src/utils/index.ts +1 -0
- package/src/utils/naming.ts +73 -0
package/dist/index.d.mts
CHANGED
|
@@ -2622,6 +2622,8 @@ declare class SupernovaException extends Error {
|
|
|
2622
2622
|
constructor(type: SupernovaExceptionType, message?: string);
|
|
2623
2623
|
}
|
|
2624
2624
|
|
|
2625
|
+
declare function getCodenameFromText(name: string): string;
|
|
2626
|
+
|
|
2625
2627
|
declare function slugify(str: string, options?: slugifyImplementation.Options): string;
|
|
2626
2628
|
declare const RESERVED_SLUGS: string[];
|
|
2627
2629
|
declare const RESERVED_SLUG_PREFIX = "x-sn-reserved-";
|
|
@@ -9411,7 +9413,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
9411
9413
|
} | null | undefined>;
|
|
9412
9414
|
caption: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9413
9415
|
headingType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
9414
|
-
codeLanguage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"
|
|
9416
|
+
codeLanguage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML", z.ZodTypeDef, "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML">>>, NonNullable<"C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML"> | undefined, "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined>;
|
|
9415
9417
|
calloutType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Info" | "Primary" | "Success" | "Warning" | "Error", z.ZodTypeDef, "Info" | "Primary" | "Success" | "Warning" | "Error">>>, NonNullable<"Info" | "Primary" | "Success" | "Warning" | "Error"> | undefined, "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined>;
|
|
9416
9418
|
urlInput: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9417
9419
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -10003,7 +10005,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
10003
10005
|
} | undefined;
|
|
10004
10006
|
caption?: string | undefined;
|
|
10005
10007
|
headingType?: number | undefined;
|
|
10006
|
-
codeLanguage?: NonNullable<"
|
|
10008
|
+
codeLanguage?: NonNullable<"C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML"> | undefined;
|
|
10007
10009
|
calloutType?: NonNullable<"Info" | "Primary" | "Success" | "Warning" | "Error"> | undefined;
|
|
10008
10010
|
urlInput?: string | undefined;
|
|
10009
10011
|
url?: string | undefined;
|
|
@@ -10184,7 +10186,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
10184
10186
|
} | null | undefined;
|
|
10185
10187
|
caption?: string | null | undefined;
|
|
10186
10188
|
headingType?: number | null | undefined;
|
|
10187
|
-
codeLanguage?: "
|
|
10189
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
10188
10190
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
10189
10191
|
urlInput?: string | null | undefined;
|
|
10190
10192
|
url?: string | null | undefined;
|
|
@@ -10872,11 +10874,11 @@ declare const PageBlockItemCodeValue: z.ZodObject<{
|
|
|
10872
10874
|
value: z.ZodString;
|
|
10873
10875
|
}, "strip", z.ZodTypeAny, {
|
|
10874
10876
|
value: string;
|
|
10875
|
-
format?: "
|
|
10877
|
+
format?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | undefined;
|
|
10876
10878
|
caption?: string | undefined;
|
|
10877
10879
|
}, {
|
|
10878
10880
|
value: string;
|
|
10879
|
-
format?: "
|
|
10881
|
+
format?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | undefined;
|
|
10880
10882
|
caption?: string | undefined;
|
|
10881
10883
|
}>;
|
|
10882
10884
|
type PageBlockItemCodeValue = z.infer<typeof PageBlockItemCodeValue>;
|
|
@@ -12957,7 +12959,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
12957
12959
|
} | null | undefined;
|
|
12958
12960
|
caption?: string | null | undefined;
|
|
12959
12961
|
headingType?: number | null | undefined;
|
|
12960
|
-
codeLanguage?: "
|
|
12962
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
12961
12963
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
12962
12964
|
urlInput?: string | null | undefined;
|
|
12963
12965
|
url?: string | null | undefined;
|
|
@@ -13139,7 +13141,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
13139
13141
|
} | null | undefined;
|
|
13140
13142
|
caption?: string | null | undefined;
|
|
13141
13143
|
headingType?: number | null | undefined;
|
|
13142
|
-
codeLanguage?: "
|
|
13144
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
13143
13145
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
13144
13146
|
urlInput?: string | null | undefined;
|
|
13145
13147
|
url?: string | null | undefined;
|
|
@@ -13687,7 +13689,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
13687
13689
|
} | null | undefined;
|
|
13688
13690
|
caption?: string | null | undefined;
|
|
13689
13691
|
headingType?: number | null | undefined;
|
|
13690
|
-
codeLanguage?: "
|
|
13692
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
13691
13693
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
13692
13694
|
urlInput?: string | null | undefined;
|
|
13693
13695
|
url?: string | null | undefined;
|
|
@@ -13869,7 +13871,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
13869
13871
|
} | null | undefined;
|
|
13870
13872
|
caption?: string | null | undefined;
|
|
13871
13873
|
headingType?: number | null | undefined;
|
|
13872
|
-
codeLanguage?: "
|
|
13874
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
13873
13875
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
13874
13876
|
urlInput?: string | null | undefined;
|
|
13875
13877
|
url?: string | null | undefined;
|
|
@@ -20798,7 +20800,7 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20798
20800
|
} | null | undefined;
|
|
20799
20801
|
caption?: string | null | undefined;
|
|
20800
20802
|
headingType?: number | null | undefined;
|
|
20801
|
-
codeLanguage?: "
|
|
20803
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
20802
20804
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
20803
20805
|
urlInput?: string | null | undefined;
|
|
20804
20806
|
url?: string | null | undefined;
|
|
@@ -20980,7 +20982,7 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20980
20982
|
} | null | undefined;
|
|
20981
20983
|
caption?: string | null | undefined;
|
|
20982
20984
|
headingType?: number | null | undefined;
|
|
20983
|
-
codeLanguage?: "
|
|
20985
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
20984
20986
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
20985
20987
|
urlInput?: string | null | undefined;
|
|
20986
20988
|
url?: string | null | undefined;
|
|
@@ -21528,7 +21530,7 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21528
21530
|
} | null | undefined;
|
|
21529
21531
|
caption?: string | null | undefined;
|
|
21530
21532
|
headingType?: number | null | undefined;
|
|
21531
|
-
codeLanguage?: "
|
|
21533
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
21532
21534
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
21533
21535
|
urlInput?: string | null | undefined;
|
|
21534
21536
|
url?: string | null | undefined;
|
|
@@ -21710,7 +21712,7 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21710
21712
|
} | null | undefined;
|
|
21711
21713
|
caption?: string | null | undefined;
|
|
21712
21714
|
headingType?: number | null | undefined;
|
|
21713
|
-
codeLanguage?: "
|
|
21715
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
21714
21716
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
21715
21717
|
urlInput?: string | null | undefined;
|
|
21716
21718
|
url?: string | null | undefined;
|
|
@@ -22064,7 +22066,7 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
22064
22066
|
} | null | undefined;
|
|
22065
22067
|
caption?: string | null | undefined;
|
|
22066
22068
|
headingType?: number | null | undefined;
|
|
22067
|
-
codeLanguage?: "
|
|
22069
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
22068
22070
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
22069
22071
|
urlInput?: string | null | undefined;
|
|
22070
22072
|
url?: string | null | undefined;
|
|
@@ -22246,7 +22248,7 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
22246
22248
|
} | null | undefined;
|
|
22247
22249
|
caption?: string | null | undefined;
|
|
22248
22250
|
headingType?: number | null | undefined;
|
|
22249
|
-
codeLanguage?: "
|
|
22251
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
22250
22252
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
22251
22253
|
urlInput?: string | null | undefined;
|
|
22252
22254
|
url?: string | null | undefined;
|
|
@@ -23318,7 +23320,7 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23318
23320
|
} | null | undefined;
|
|
23319
23321
|
caption?: string | null | undefined;
|
|
23320
23322
|
headingType?: number | null | undefined;
|
|
23321
|
-
codeLanguage?: "
|
|
23323
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
23322
23324
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
23323
23325
|
urlInput?: string | null | undefined;
|
|
23324
23326
|
url?: string | null | undefined;
|
|
@@ -23500,7 +23502,7 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23500
23502
|
} | null | undefined;
|
|
23501
23503
|
caption?: string | null | undefined;
|
|
23502
23504
|
headingType?: number | null | undefined;
|
|
23503
|
-
codeLanguage?: "
|
|
23505
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
23504
23506
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
23505
23507
|
urlInput?: string | null | undefined;
|
|
23506
23508
|
url?: string | null | undefined;
|
|
@@ -23750,7 +23752,7 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23750
23752
|
} | null | undefined;
|
|
23751
23753
|
caption?: string | null | undefined;
|
|
23752
23754
|
headingType?: number | null | undefined;
|
|
23753
|
-
codeLanguage?: "
|
|
23755
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
23754
23756
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
23755
23757
|
urlInput?: string | null | undefined;
|
|
23756
23758
|
url?: string | null | undefined;
|
|
@@ -23932,7 +23934,7 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23932
23934
|
} | null | undefined;
|
|
23933
23935
|
caption?: string | null | undefined;
|
|
23934
23936
|
headingType?: number | null | undefined;
|
|
23935
|
-
codeLanguage?: "
|
|
23937
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
23936
23938
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
23937
23939
|
urlInput?: string | null | undefined;
|
|
23938
23940
|
url?: string | null | undefined;
|
|
@@ -24204,7 +24206,7 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24204
24206
|
} | null | undefined;
|
|
24205
24207
|
caption?: string | null | undefined;
|
|
24206
24208
|
headingType?: number | null | undefined;
|
|
24207
|
-
codeLanguage?: "
|
|
24209
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
24208
24210
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
24209
24211
|
urlInput?: string | null | undefined;
|
|
24210
24212
|
url?: string | null | undefined;
|
|
@@ -24386,7 +24388,7 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24386
24388
|
} | null | undefined;
|
|
24387
24389
|
caption?: string | null | undefined;
|
|
24388
24390
|
headingType?: number | null | undefined;
|
|
24389
|
-
codeLanguage?: "
|
|
24391
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
24390
24392
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
24391
24393
|
urlInput?: string | null | undefined;
|
|
24392
24394
|
url?: string | null | undefined;
|
|
@@ -34658,6 +34660,7 @@ declare const Theme: z.ZodObject<{
|
|
|
34658
34660
|
referencePersistentId?: string | undefined;
|
|
34659
34661
|
} | null | undefined;
|
|
34660
34662
|
}>>, "many">;
|
|
34663
|
+
codeName: z.ZodString;
|
|
34661
34664
|
}, "strip", z.ZodTypeAny, {
|
|
34662
34665
|
id: string;
|
|
34663
34666
|
createdAt: Date;
|
|
@@ -34669,6 +34672,7 @@ declare const Theme: z.ZodObject<{
|
|
|
34669
34672
|
name: string;
|
|
34670
34673
|
description?: string | undefined;
|
|
34671
34674
|
};
|
|
34675
|
+
codeName: string;
|
|
34672
34676
|
overrides: (({
|
|
34673
34677
|
type: "Blur";
|
|
34674
34678
|
data: {
|
|
@@ -35056,6 +35060,7 @@ declare const Theme: z.ZodObject<{
|
|
|
35056
35060
|
name: string;
|
|
35057
35061
|
description?: string | undefined;
|
|
35058
35062
|
};
|
|
35063
|
+
codeName: string;
|
|
35059
35064
|
overrides: (({
|
|
35060
35065
|
type: "Blur";
|
|
35061
35066
|
data: {
|
|
@@ -98032,44 +98037,816 @@ declare const VersionCreationJob: z.ZodObject<{
|
|
|
98032
98037
|
}>;
|
|
98033
98038
|
type VersionCreationJob = z.infer<typeof VersionCreationJob>;
|
|
98034
98039
|
|
|
98035
|
-
declare const
|
|
98036
|
-
isSingleVersionDocs: z.ZodBoolean;
|
|
98037
|
-
versionSlug: z.ZodString;
|
|
98040
|
+
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
98038
98041
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98039
98042
|
}, "strip", z.ZodTypeAny, {
|
|
98040
98043
|
environment: "Live" | "Preview";
|
|
98041
|
-
isSingleVersionDocs: boolean;
|
|
98042
|
-
versionSlug: string;
|
|
98043
98044
|
}, {
|
|
98044
98045
|
environment: "Live" | "Preview";
|
|
98045
|
-
isSingleVersionDocs: boolean;
|
|
98046
|
-
versionSlug: string;
|
|
98047
98046
|
}>;
|
|
98048
|
-
type
|
|
98049
|
-
declare const
|
|
98050
|
-
|
|
98051
|
-
|
|
98047
|
+
type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
|
|
98048
|
+
declare const ExporterDestinationS3: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
98049
|
+
type ExporterDestinationS3 = z.infer<typeof ExporterDestinationS3>;
|
|
98050
|
+
declare const ExporterDestinationGithub: z.ZodObject<{
|
|
98051
|
+
connectionId: z.ZodString;
|
|
98052
|
+
branch: z.ZodString;
|
|
98053
|
+
relativePath: z.ZodString;
|
|
98054
|
+
}, "strip", z.ZodTypeAny, {
|
|
98055
|
+
connectionId: string;
|
|
98056
|
+
branch: string;
|
|
98057
|
+
relativePath: string;
|
|
98058
|
+
}, {
|
|
98059
|
+
connectionId: string;
|
|
98060
|
+
branch: string;
|
|
98061
|
+
relativePath: string;
|
|
98062
|
+
}>;
|
|
98063
|
+
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
98064
|
+
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
98065
|
+
connectionId: z.ZodString;
|
|
98066
|
+
organizationId: z.ZodString;
|
|
98067
|
+
projectId: z.ZodString;
|
|
98068
|
+
repositoryId: z.ZodString;
|
|
98069
|
+
branch: z.ZodString;
|
|
98070
|
+
relativePath: z.ZodString;
|
|
98071
|
+
}, "strip", z.ZodTypeAny, {
|
|
98072
|
+
connectionId: string;
|
|
98073
|
+
branch: string;
|
|
98074
|
+
relativePath: string;
|
|
98075
|
+
organizationId: string;
|
|
98076
|
+
projectId: string;
|
|
98077
|
+
repositoryId: string;
|
|
98078
|
+
}, {
|
|
98079
|
+
connectionId: string;
|
|
98080
|
+
branch: string;
|
|
98081
|
+
relativePath: string;
|
|
98082
|
+
organizationId: string;
|
|
98083
|
+
projectId: string;
|
|
98084
|
+
repositoryId: string;
|
|
98085
|
+
}>;
|
|
98086
|
+
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
98087
|
+
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
98088
|
+
connectionId: z.ZodString;
|
|
98089
|
+
projectId: z.ZodString;
|
|
98090
|
+
branch: z.ZodString;
|
|
98091
|
+
relativePath: z.ZodString;
|
|
98092
|
+
}, "strip", z.ZodTypeAny, {
|
|
98093
|
+
connectionId: string;
|
|
98094
|
+
branch: string;
|
|
98095
|
+
relativePath: string;
|
|
98096
|
+
projectId: string;
|
|
98097
|
+
}, {
|
|
98098
|
+
connectionId: string;
|
|
98099
|
+
branch: string;
|
|
98100
|
+
relativePath: string;
|
|
98101
|
+
projectId: string;
|
|
98102
|
+
}>;
|
|
98103
|
+
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
98104
|
+
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
98105
|
+
connectionId: z.ZodString;
|
|
98106
|
+
workspaceSlug: z.ZodString;
|
|
98107
|
+
projectKey: z.ZodString;
|
|
98108
|
+
repoSlug: z.ZodString;
|
|
98109
|
+
branch: z.ZodString;
|
|
98110
|
+
relativePath: z.ZodString;
|
|
98111
|
+
}, "strip", z.ZodTypeAny, {
|
|
98112
|
+
connectionId: string;
|
|
98113
|
+
branch: string;
|
|
98114
|
+
relativePath: string;
|
|
98115
|
+
workspaceSlug: string;
|
|
98116
|
+
projectKey: string;
|
|
98117
|
+
repoSlug: string;
|
|
98118
|
+
}, {
|
|
98119
|
+
connectionId: string;
|
|
98120
|
+
branch: string;
|
|
98121
|
+
relativePath: string;
|
|
98122
|
+
workspaceSlug: string;
|
|
98123
|
+
projectKey: string;
|
|
98124
|
+
repoSlug: string;
|
|
98125
|
+
}>;
|
|
98126
|
+
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
98127
|
+
declare const ExportDestinationsMap: z.ZodObject<{
|
|
98128
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
98129
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
98130
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98131
|
+
}, "strip", z.ZodTypeAny, {
|
|
98132
|
+
environment: "Live" | "Preview";
|
|
98133
|
+
}, {
|
|
98134
|
+
environment: "Live" | "Preview";
|
|
98135
|
+
}>>;
|
|
98136
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98137
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98138
|
+
connectionId: z.ZodString;
|
|
98139
|
+
branch: z.ZodString;
|
|
98140
|
+
relativePath: z.ZodString;
|
|
98141
|
+
}, "strip", z.ZodTypeAny, {
|
|
98142
|
+
connectionId: string;
|
|
98143
|
+
branch: string;
|
|
98144
|
+
relativePath: string;
|
|
98145
|
+
}, {
|
|
98146
|
+
connectionId: string;
|
|
98147
|
+
branch: string;
|
|
98148
|
+
relativePath: string;
|
|
98149
|
+
}>>;
|
|
98150
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98151
|
+
connectionId: z.ZodString;
|
|
98152
|
+
organizationId: z.ZodString;
|
|
98153
|
+
projectId: z.ZodString;
|
|
98154
|
+
repositoryId: z.ZodString;
|
|
98155
|
+
branch: z.ZodString;
|
|
98156
|
+
relativePath: z.ZodString;
|
|
98157
|
+
}, "strip", z.ZodTypeAny, {
|
|
98158
|
+
connectionId: string;
|
|
98159
|
+
branch: string;
|
|
98160
|
+
relativePath: string;
|
|
98161
|
+
organizationId: string;
|
|
98162
|
+
projectId: string;
|
|
98163
|
+
repositoryId: string;
|
|
98164
|
+
}, {
|
|
98165
|
+
connectionId: string;
|
|
98166
|
+
branch: string;
|
|
98167
|
+
relativePath: string;
|
|
98168
|
+
organizationId: string;
|
|
98169
|
+
projectId: string;
|
|
98170
|
+
repositoryId: string;
|
|
98171
|
+
}>>;
|
|
98172
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98173
|
+
connectionId: z.ZodString;
|
|
98174
|
+
projectId: z.ZodString;
|
|
98175
|
+
branch: z.ZodString;
|
|
98176
|
+
relativePath: z.ZodString;
|
|
98177
|
+
}, "strip", z.ZodTypeAny, {
|
|
98178
|
+
connectionId: string;
|
|
98179
|
+
branch: string;
|
|
98180
|
+
relativePath: string;
|
|
98181
|
+
projectId: string;
|
|
98182
|
+
}, {
|
|
98183
|
+
connectionId: string;
|
|
98184
|
+
branch: string;
|
|
98185
|
+
relativePath: string;
|
|
98186
|
+
projectId: string;
|
|
98187
|
+
}>>;
|
|
98188
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98189
|
+
connectionId: z.ZodString;
|
|
98190
|
+
workspaceSlug: z.ZodString;
|
|
98191
|
+
projectKey: z.ZodString;
|
|
98192
|
+
repoSlug: z.ZodString;
|
|
98193
|
+
branch: z.ZodString;
|
|
98194
|
+
relativePath: z.ZodString;
|
|
98195
|
+
}, "strip", z.ZodTypeAny, {
|
|
98196
|
+
connectionId: string;
|
|
98197
|
+
branch: string;
|
|
98198
|
+
relativePath: string;
|
|
98199
|
+
workspaceSlug: string;
|
|
98200
|
+
projectKey: string;
|
|
98201
|
+
repoSlug: string;
|
|
98202
|
+
}, {
|
|
98203
|
+
connectionId: string;
|
|
98204
|
+
branch: string;
|
|
98205
|
+
relativePath: string;
|
|
98206
|
+
workspaceSlug: string;
|
|
98207
|
+
projectKey: string;
|
|
98208
|
+
repoSlug: string;
|
|
98209
|
+
}>>;
|
|
98210
|
+
}, "strip", z.ZodTypeAny, {
|
|
98211
|
+
webhookUrl?: string | undefined;
|
|
98212
|
+
destinationSnDocs?: {
|
|
98213
|
+
environment: "Live" | "Preview";
|
|
98214
|
+
} | undefined;
|
|
98215
|
+
destinationS3?: {} | undefined;
|
|
98216
|
+
destinationGithub?: {
|
|
98217
|
+
connectionId: string;
|
|
98218
|
+
branch: string;
|
|
98219
|
+
relativePath: string;
|
|
98220
|
+
} | undefined;
|
|
98221
|
+
destinationAzure?: {
|
|
98222
|
+
connectionId: string;
|
|
98223
|
+
branch: string;
|
|
98224
|
+
relativePath: string;
|
|
98225
|
+
organizationId: string;
|
|
98226
|
+
projectId: string;
|
|
98227
|
+
repositoryId: string;
|
|
98228
|
+
} | undefined;
|
|
98229
|
+
destinationGitlab?: {
|
|
98230
|
+
connectionId: string;
|
|
98231
|
+
branch: string;
|
|
98232
|
+
relativePath: string;
|
|
98233
|
+
projectId: string;
|
|
98234
|
+
} | undefined;
|
|
98235
|
+
destinationBitbucket?: {
|
|
98236
|
+
connectionId: string;
|
|
98237
|
+
branch: string;
|
|
98238
|
+
relativePath: string;
|
|
98239
|
+
workspaceSlug: string;
|
|
98240
|
+
projectKey: string;
|
|
98241
|
+
repoSlug: string;
|
|
98242
|
+
} | undefined;
|
|
98243
|
+
}, {
|
|
98244
|
+
webhookUrl?: string | undefined;
|
|
98245
|
+
destinationSnDocs?: {
|
|
98246
|
+
environment: "Live" | "Preview";
|
|
98247
|
+
} | undefined;
|
|
98248
|
+
destinationS3?: {} | undefined;
|
|
98249
|
+
destinationGithub?: {
|
|
98250
|
+
connectionId: string;
|
|
98251
|
+
branch: string;
|
|
98252
|
+
relativePath: string;
|
|
98253
|
+
} | undefined;
|
|
98254
|
+
destinationAzure?: {
|
|
98255
|
+
connectionId: string;
|
|
98256
|
+
branch: string;
|
|
98257
|
+
relativePath: string;
|
|
98258
|
+
organizationId: string;
|
|
98259
|
+
projectId: string;
|
|
98260
|
+
repositoryId: string;
|
|
98261
|
+
} | undefined;
|
|
98262
|
+
destinationGitlab?: {
|
|
98263
|
+
connectionId: string;
|
|
98264
|
+
branch: string;
|
|
98265
|
+
relativePath: string;
|
|
98266
|
+
projectId: string;
|
|
98267
|
+
} | undefined;
|
|
98268
|
+
destinationBitbucket?: {
|
|
98269
|
+
connectionId: string;
|
|
98270
|
+
branch: string;
|
|
98271
|
+
relativePath: string;
|
|
98272
|
+
workspaceSlug: string;
|
|
98273
|
+
projectKey: string;
|
|
98274
|
+
repoSlug: string;
|
|
98275
|
+
} | undefined;
|
|
98276
|
+
}>;
|
|
98277
|
+
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
98278
|
+
|
|
98279
|
+
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>;
|
|
98280
|
+
type ExportJobDestinationType = z.infer<typeof ExportJobDestinationType>;
|
|
98281
|
+
declare const ExportJobStatus: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
98282
|
+
type ExportJobStatus = z.infer<typeof ExportJobStatus>;
|
|
98283
|
+
declare const ExportJobLogEntryType: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
98284
|
+
type ExportJobLogEntryType = z.infer<typeof ExportJobLogEntryType>;
|
|
98285
|
+
declare const ExportJobLogEntry: z.ZodObject<{
|
|
98286
|
+
id: z.ZodOptional<z.ZodString>;
|
|
98287
|
+
time: z.ZodDate;
|
|
98288
|
+
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
98289
|
+
message: z.ZodString;
|
|
98290
|
+
}, "strip", z.ZodTypeAny, {
|
|
98291
|
+
message: string;
|
|
98292
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98293
|
+
time: Date;
|
|
98294
|
+
id?: string | undefined;
|
|
98295
|
+
}, {
|
|
98296
|
+
message: string;
|
|
98297
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98298
|
+
time: Date;
|
|
98299
|
+
id?: string | undefined;
|
|
98300
|
+
}>;
|
|
98301
|
+
type ExportJobLogEntry = z.infer<typeof ExportJobLogEntry>;
|
|
98302
|
+
declare const ExportJobPullRequestDestinationResult: z.ZodObject<{
|
|
98303
|
+
pullRequestUrl: z.ZodString;
|
|
98304
|
+
}, "strip", z.ZodTypeAny, {
|
|
98305
|
+
pullRequestUrl: string;
|
|
98306
|
+
}, {
|
|
98307
|
+
pullRequestUrl: string;
|
|
98308
|
+
}>;
|
|
98309
|
+
type ExportJobPullRequestDestinationResult = z.infer<typeof ExportJobPullRequestDestinationResult>;
|
|
98310
|
+
declare const ExportJobS3DestinationResult: z.ZodObject<{
|
|
98311
|
+
bucket: z.ZodString;
|
|
98312
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98313
|
+
path: z.ZodString;
|
|
98314
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
98315
|
+
}, "strip", z.ZodTypeAny, {
|
|
98316
|
+
path: string;
|
|
98317
|
+
files: string[];
|
|
98318
|
+
bucket: string;
|
|
98319
|
+
urlPrefix?: string | undefined;
|
|
98320
|
+
}, {
|
|
98321
|
+
path: string;
|
|
98322
|
+
files: string[];
|
|
98323
|
+
bucket: string;
|
|
98324
|
+
urlPrefix?: string | undefined;
|
|
98325
|
+
}>;
|
|
98326
|
+
type ExportJobS3DestinationResult = z.infer<typeof ExportJobS3DestinationResult>;
|
|
98327
|
+
declare const ExportJobDocsDestinationResult: z.ZodObject<{
|
|
98328
|
+
url: z.ZodString;
|
|
98329
|
+
}, "strip", z.ZodTypeAny, {
|
|
98330
|
+
url: string;
|
|
98331
|
+
}, {
|
|
98332
|
+
url: string;
|
|
98333
|
+
}>;
|
|
98334
|
+
type ExportJobDocsDestinationResult = z.infer<typeof ExportJobDocsDestinationResult>;
|
|
98335
|
+
declare const ExportJobResult: z.ZodObject<{
|
|
98336
|
+
error: z.ZodOptional<z.ZodString>;
|
|
98337
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
98338
|
+
bucket: z.ZodString;
|
|
98339
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98340
|
+
path: z.ZodString;
|
|
98341
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
98342
|
+
}, "strip", z.ZodTypeAny, {
|
|
98343
|
+
path: string;
|
|
98344
|
+
files: string[];
|
|
98345
|
+
bucket: string;
|
|
98346
|
+
urlPrefix?: string | undefined;
|
|
98347
|
+
}, {
|
|
98348
|
+
path: string;
|
|
98349
|
+
files: string[];
|
|
98350
|
+
bucket: string;
|
|
98351
|
+
urlPrefix?: string | undefined;
|
|
98352
|
+
}>>;
|
|
98353
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
98354
|
+
pullRequestUrl: z.ZodString;
|
|
98355
|
+
}, "strip", z.ZodTypeAny, {
|
|
98356
|
+
pullRequestUrl: string;
|
|
98357
|
+
}, {
|
|
98358
|
+
pullRequestUrl: string;
|
|
98359
|
+
}>>;
|
|
98360
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
98361
|
+
pullRequestUrl: z.ZodString;
|
|
98362
|
+
}, "strip", z.ZodTypeAny, {
|
|
98363
|
+
pullRequestUrl: string;
|
|
98364
|
+
}, {
|
|
98365
|
+
pullRequestUrl: string;
|
|
98366
|
+
}>>;
|
|
98367
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
98368
|
+
pullRequestUrl: z.ZodString;
|
|
98369
|
+
}, "strip", z.ZodTypeAny, {
|
|
98370
|
+
pullRequestUrl: string;
|
|
98371
|
+
}, {
|
|
98372
|
+
pullRequestUrl: string;
|
|
98373
|
+
}>>;
|
|
98374
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
98375
|
+
pullRequestUrl: z.ZodString;
|
|
98376
|
+
}, "strip", z.ZodTypeAny, {
|
|
98377
|
+
pullRequestUrl: string;
|
|
98378
|
+
}, {
|
|
98379
|
+
pullRequestUrl: string;
|
|
98380
|
+
}>>;
|
|
98381
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
98382
|
+
url: z.ZodString;
|
|
98383
|
+
}, "strip", z.ZodTypeAny, {
|
|
98384
|
+
url: string;
|
|
98385
|
+
}, {
|
|
98386
|
+
url: string;
|
|
98387
|
+
}>>;
|
|
98388
|
+
}, "strip", z.ZodTypeAny, {
|
|
98389
|
+
error?: string | undefined;
|
|
98390
|
+
s3?: {
|
|
98391
|
+
path: string;
|
|
98392
|
+
files: string[];
|
|
98393
|
+
bucket: string;
|
|
98394
|
+
urlPrefix?: string | undefined;
|
|
98395
|
+
} | undefined;
|
|
98396
|
+
github?: {
|
|
98397
|
+
pullRequestUrl: string;
|
|
98398
|
+
} | undefined;
|
|
98399
|
+
azure?: {
|
|
98400
|
+
pullRequestUrl: string;
|
|
98401
|
+
} | undefined;
|
|
98402
|
+
gitlab?: {
|
|
98403
|
+
pullRequestUrl: string;
|
|
98404
|
+
} | undefined;
|
|
98405
|
+
bitbucket?: {
|
|
98406
|
+
pullRequestUrl: string;
|
|
98407
|
+
} | undefined;
|
|
98408
|
+
sndocs?: {
|
|
98409
|
+
url: string;
|
|
98410
|
+
} | undefined;
|
|
98411
|
+
}, {
|
|
98412
|
+
error?: string | undefined;
|
|
98413
|
+
s3?: {
|
|
98414
|
+
path: string;
|
|
98415
|
+
files: string[];
|
|
98416
|
+
bucket: string;
|
|
98417
|
+
urlPrefix?: string | undefined;
|
|
98418
|
+
} | undefined;
|
|
98419
|
+
github?: {
|
|
98420
|
+
pullRequestUrl: string;
|
|
98421
|
+
} | undefined;
|
|
98422
|
+
azure?: {
|
|
98423
|
+
pullRequestUrl: string;
|
|
98424
|
+
} | undefined;
|
|
98425
|
+
gitlab?: {
|
|
98426
|
+
pullRequestUrl: string;
|
|
98427
|
+
} | undefined;
|
|
98428
|
+
bitbucket?: {
|
|
98429
|
+
pullRequestUrl: string;
|
|
98430
|
+
} | undefined;
|
|
98431
|
+
sndocs?: {
|
|
98432
|
+
url: string;
|
|
98433
|
+
} | undefined;
|
|
98434
|
+
}>;
|
|
98435
|
+
type ExportJobResult = z.infer<typeof ExportJobResult>;
|
|
98436
|
+
declare const ExportJob: z.ZodObject<{
|
|
98437
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
98438
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
98439
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98440
|
+
}, "strip", z.ZodTypeAny, {
|
|
98441
|
+
environment: "Live" | "Preview";
|
|
98442
|
+
}, {
|
|
98443
|
+
environment: "Live" | "Preview";
|
|
98444
|
+
}>>;
|
|
98445
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98446
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98447
|
+
connectionId: z.ZodString;
|
|
98448
|
+
branch: z.ZodString;
|
|
98449
|
+
relativePath: z.ZodString;
|
|
98450
|
+
}, "strip", z.ZodTypeAny, {
|
|
98451
|
+
connectionId: string;
|
|
98452
|
+
branch: string;
|
|
98453
|
+
relativePath: string;
|
|
98454
|
+
}, {
|
|
98455
|
+
connectionId: string;
|
|
98456
|
+
branch: string;
|
|
98457
|
+
relativePath: string;
|
|
98458
|
+
}>>;
|
|
98459
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98460
|
+
connectionId: z.ZodString;
|
|
98461
|
+
organizationId: z.ZodString;
|
|
98462
|
+
projectId: z.ZodString;
|
|
98463
|
+
repositoryId: z.ZodString;
|
|
98464
|
+
branch: z.ZodString;
|
|
98465
|
+
relativePath: z.ZodString;
|
|
98466
|
+
}, "strip", z.ZodTypeAny, {
|
|
98467
|
+
connectionId: string;
|
|
98468
|
+
branch: string;
|
|
98469
|
+
relativePath: string;
|
|
98470
|
+
organizationId: string;
|
|
98471
|
+
projectId: string;
|
|
98472
|
+
repositoryId: string;
|
|
98473
|
+
}, {
|
|
98474
|
+
connectionId: string;
|
|
98475
|
+
branch: string;
|
|
98476
|
+
relativePath: string;
|
|
98477
|
+
organizationId: string;
|
|
98478
|
+
projectId: string;
|
|
98479
|
+
repositoryId: string;
|
|
98480
|
+
}>>;
|
|
98481
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98482
|
+
connectionId: z.ZodString;
|
|
98483
|
+
projectId: z.ZodString;
|
|
98484
|
+
branch: z.ZodString;
|
|
98485
|
+
relativePath: z.ZodString;
|
|
98486
|
+
}, "strip", z.ZodTypeAny, {
|
|
98487
|
+
connectionId: string;
|
|
98488
|
+
branch: string;
|
|
98489
|
+
relativePath: string;
|
|
98490
|
+
projectId: string;
|
|
98491
|
+
}, {
|
|
98492
|
+
connectionId: string;
|
|
98493
|
+
branch: string;
|
|
98494
|
+
relativePath: string;
|
|
98495
|
+
projectId: string;
|
|
98496
|
+
}>>;
|
|
98497
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98498
|
+
connectionId: z.ZodString;
|
|
98499
|
+
workspaceSlug: z.ZodString;
|
|
98500
|
+
projectKey: z.ZodString;
|
|
98501
|
+
repoSlug: z.ZodString;
|
|
98502
|
+
branch: z.ZodString;
|
|
98503
|
+
relativePath: z.ZodString;
|
|
98504
|
+
}, "strip", z.ZodTypeAny, {
|
|
98505
|
+
connectionId: string;
|
|
98506
|
+
branch: string;
|
|
98507
|
+
relativePath: string;
|
|
98508
|
+
workspaceSlug: string;
|
|
98509
|
+
projectKey: string;
|
|
98510
|
+
repoSlug: string;
|
|
98511
|
+
}, {
|
|
98512
|
+
connectionId: string;
|
|
98513
|
+
branch: string;
|
|
98514
|
+
relativePath: string;
|
|
98515
|
+
workspaceSlug: string;
|
|
98516
|
+
projectKey: string;
|
|
98517
|
+
repoSlug: string;
|
|
98518
|
+
}>>;
|
|
98519
|
+
id: z.ZodString;
|
|
98520
|
+
createdAt: z.ZodDate;
|
|
98521
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
98052
98522
|
designSystemId: z.ZodString;
|
|
98053
98523
|
designSystemVersionId: z.ZodString;
|
|
98524
|
+
workspaceId: z.ZodString;
|
|
98525
|
+
scheduleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
98526
|
+
exporterId: z.ZodString;
|
|
98054
98527
|
brandId: z.ZodOptional<z.ZodString>;
|
|
98055
|
-
|
|
98056
|
-
|
|
98057
|
-
|
|
98058
|
-
|
|
98059
|
-
|
|
98060
|
-
|
|
98061
|
-
|
|
98062
|
-
|
|
98063
|
-
|
|
98064
|
-
|
|
98065
|
-
|
|
98066
|
-
|
|
98067
|
-
|
|
98068
|
-
|
|
98069
|
-
|
|
98070
|
-
|
|
98071
|
-
|
|
98072
|
-
|
|
98528
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
98529
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
98530
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
98531
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
98532
|
+
error: z.ZodOptional<z.ZodString>;
|
|
98533
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
98534
|
+
bucket: z.ZodString;
|
|
98535
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98536
|
+
path: z.ZodString;
|
|
98537
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
98538
|
+
}, "strip", z.ZodTypeAny, {
|
|
98539
|
+
path: string;
|
|
98540
|
+
files: string[];
|
|
98541
|
+
bucket: string;
|
|
98542
|
+
urlPrefix?: string | undefined;
|
|
98543
|
+
}, {
|
|
98544
|
+
path: string;
|
|
98545
|
+
files: string[];
|
|
98546
|
+
bucket: string;
|
|
98547
|
+
urlPrefix?: string | undefined;
|
|
98548
|
+
}>>;
|
|
98549
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
98550
|
+
pullRequestUrl: z.ZodString;
|
|
98551
|
+
}, "strip", z.ZodTypeAny, {
|
|
98552
|
+
pullRequestUrl: string;
|
|
98553
|
+
}, {
|
|
98554
|
+
pullRequestUrl: string;
|
|
98555
|
+
}>>;
|
|
98556
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
98557
|
+
pullRequestUrl: z.ZodString;
|
|
98558
|
+
}, "strip", z.ZodTypeAny, {
|
|
98559
|
+
pullRequestUrl: string;
|
|
98560
|
+
}, {
|
|
98561
|
+
pullRequestUrl: string;
|
|
98562
|
+
}>>;
|
|
98563
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
98564
|
+
pullRequestUrl: z.ZodString;
|
|
98565
|
+
}, "strip", z.ZodTypeAny, {
|
|
98566
|
+
pullRequestUrl: string;
|
|
98567
|
+
}, {
|
|
98568
|
+
pullRequestUrl: string;
|
|
98569
|
+
}>>;
|
|
98570
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
98571
|
+
pullRequestUrl: z.ZodString;
|
|
98572
|
+
}, "strip", z.ZodTypeAny, {
|
|
98573
|
+
pullRequestUrl: string;
|
|
98574
|
+
}, {
|
|
98575
|
+
pullRequestUrl: string;
|
|
98576
|
+
}>>;
|
|
98577
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
98578
|
+
url: z.ZodString;
|
|
98579
|
+
}, "strip", z.ZodTypeAny, {
|
|
98580
|
+
url: string;
|
|
98581
|
+
}, {
|
|
98582
|
+
url: string;
|
|
98583
|
+
}>>;
|
|
98584
|
+
}, "strip", z.ZodTypeAny, {
|
|
98585
|
+
error?: string | undefined;
|
|
98586
|
+
s3?: {
|
|
98587
|
+
path: string;
|
|
98588
|
+
files: string[];
|
|
98589
|
+
bucket: string;
|
|
98590
|
+
urlPrefix?: string | undefined;
|
|
98591
|
+
} | undefined;
|
|
98592
|
+
github?: {
|
|
98593
|
+
pullRequestUrl: string;
|
|
98594
|
+
} | undefined;
|
|
98595
|
+
azure?: {
|
|
98596
|
+
pullRequestUrl: string;
|
|
98597
|
+
} | undefined;
|
|
98598
|
+
gitlab?: {
|
|
98599
|
+
pullRequestUrl: string;
|
|
98600
|
+
} | undefined;
|
|
98601
|
+
bitbucket?: {
|
|
98602
|
+
pullRequestUrl: string;
|
|
98603
|
+
} | undefined;
|
|
98604
|
+
sndocs?: {
|
|
98605
|
+
url: string;
|
|
98606
|
+
} | undefined;
|
|
98607
|
+
}, {
|
|
98608
|
+
error?: string | undefined;
|
|
98609
|
+
s3?: {
|
|
98610
|
+
path: string;
|
|
98611
|
+
files: string[];
|
|
98612
|
+
bucket: string;
|
|
98613
|
+
urlPrefix?: string | undefined;
|
|
98614
|
+
} | undefined;
|
|
98615
|
+
github?: {
|
|
98616
|
+
pullRequestUrl: string;
|
|
98617
|
+
} | undefined;
|
|
98618
|
+
azure?: {
|
|
98619
|
+
pullRequestUrl: string;
|
|
98620
|
+
} | undefined;
|
|
98621
|
+
gitlab?: {
|
|
98622
|
+
pullRequestUrl: string;
|
|
98623
|
+
} | undefined;
|
|
98624
|
+
bitbucket?: {
|
|
98625
|
+
pullRequestUrl: string;
|
|
98626
|
+
} | undefined;
|
|
98627
|
+
sndocs?: {
|
|
98628
|
+
url: string;
|
|
98629
|
+
} | undefined;
|
|
98630
|
+
}>>;
|
|
98631
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
98632
|
+
}, "strip", z.ZodTypeAny, {
|
|
98633
|
+
id: string;
|
|
98634
|
+
createdAt: Date;
|
|
98635
|
+
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
98636
|
+
designSystemId: string;
|
|
98637
|
+
designSystemVersionId: string;
|
|
98638
|
+
workspaceId: string;
|
|
98639
|
+
exporterId: string;
|
|
98640
|
+
webhookUrl?: string | undefined;
|
|
98641
|
+
destinationSnDocs?: {
|
|
98642
|
+
environment: "Live" | "Preview";
|
|
98643
|
+
} | undefined;
|
|
98644
|
+
destinationS3?: {} | undefined;
|
|
98645
|
+
destinationGithub?: {
|
|
98646
|
+
connectionId: string;
|
|
98647
|
+
branch: string;
|
|
98648
|
+
relativePath: string;
|
|
98649
|
+
} | undefined;
|
|
98650
|
+
destinationAzure?: {
|
|
98651
|
+
connectionId: string;
|
|
98652
|
+
branch: string;
|
|
98653
|
+
relativePath: string;
|
|
98654
|
+
organizationId: string;
|
|
98655
|
+
projectId: string;
|
|
98656
|
+
repositoryId: string;
|
|
98657
|
+
} | undefined;
|
|
98658
|
+
destinationGitlab?: {
|
|
98659
|
+
connectionId: string;
|
|
98660
|
+
branch: string;
|
|
98661
|
+
relativePath: string;
|
|
98662
|
+
projectId: string;
|
|
98663
|
+
} | undefined;
|
|
98664
|
+
destinationBitbucket?: {
|
|
98665
|
+
connectionId: string;
|
|
98666
|
+
branch: string;
|
|
98667
|
+
relativePath: string;
|
|
98668
|
+
workspaceSlug: string;
|
|
98669
|
+
projectKey: string;
|
|
98670
|
+
repoSlug: string;
|
|
98671
|
+
} | undefined;
|
|
98672
|
+
finishedAt?: Date | undefined;
|
|
98673
|
+
scheduleId?: string | null | undefined;
|
|
98674
|
+
brandId?: string | undefined;
|
|
98675
|
+
themeId?: string | undefined;
|
|
98676
|
+
estimatedExecutionTime?: number | undefined;
|
|
98677
|
+
result?: {
|
|
98678
|
+
error?: string | undefined;
|
|
98679
|
+
s3?: {
|
|
98680
|
+
path: string;
|
|
98681
|
+
files: string[];
|
|
98682
|
+
bucket: string;
|
|
98683
|
+
urlPrefix?: string | undefined;
|
|
98684
|
+
} | undefined;
|
|
98685
|
+
github?: {
|
|
98686
|
+
pullRequestUrl: string;
|
|
98687
|
+
} | undefined;
|
|
98688
|
+
azure?: {
|
|
98689
|
+
pullRequestUrl: string;
|
|
98690
|
+
} | undefined;
|
|
98691
|
+
gitlab?: {
|
|
98692
|
+
pullRequestUrl: string;
|
|
98693
|
+
} | undefined;
|
|
98694
|
+
bitbucket?: {
|
|
98695
|
+
pullRequestUrl: string;
|
|
98696
|
+
} | undefined;
|
|
98697
|
+
sndocs?: {
|
|
98698
|
+
url: string;
|
|
98699
|
+
} | undefined;
|
|
98700
|
+
} | undefined;
|
|
98701
|
+
createdByUserId?: string | undefined;
|
|
98702
|
+
}, {
|
|
98703
|
+
id: string;
|
|
98704
|
+
createdAt: Date;
|
|
98705
|
+
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
98706
|
+
designSystemId: string;
|
|
98707
|
+
designSystemVersionId: string;
|
|
98708
|
+
workspaceId: string;
|
|
98709
|
+
exporterId: string;
|
|
98710
|
+
webhookUrl?: string | undefined;
|
|
98711
|
+
destinationSnDocs?: {
|
|
98712
|
+
environment: "Live" | "Preview";
|
|
98713
|
+
} | undefined;
|
|
98714
|
+
destinationS3?: {} | undefined;
|
|
98715
|
+
destinationGithub?: {
|
|
98716
|
+
connectionId: string;
|
|
98717
|
+
branch: string;
|
|
98718
|
+
relativePath: string;
|
|
98719
|
+
} | undefined;
|
|
98720
|
+
destinationAzure?: {
|
|
98721
|
+
connectionId: string;
|
|
98722
|
+
branch: string;
|
|
98723
|
+
relativePath: string;
|
|
98724
|
+
organizationId: string;
|
|
98725
|
+
projectId: string;
|
|
98726
|
+
repositoryId: string;
|
|
98727
|
+
} | undefined;
|
|
98728
|
+
destinationGitlab?: {
|
|
98729
|
+
connectionId: string;
|
|
98730
|
+
branch: string;
|
|
98731
|
+
relativePath: string;
|
|
98732
|
+
projectId: string;
|
|
98733
|
+
} | undefined;
|
|
98734
|
+
destinationBitbucket?: {
|
|
98735
|
+
connectionId: string;
|
|
98736
|
+
branch: string;
|
|
98737
|
+
relativePath: string;
|
|
98738
|
+
workspaceSlug: string;
|
|
98739
|
+
projectKey: string;
|
|
98740
|
+
repoSlug: string;
|
|
98741
|
+
} | undefined;
|
|
98742
|
+
finishedAt?: Date | undefined;
|
|
98743
|
+
scheduleId?: string | null | undefined;
|
|
98744
|
+
brandId?: string | undefined;
|
|
98745
|
+
themeId?: string | undefined;
|
|
98746
|
+
estimatedExecutionTime?: number | undefined;
|
|
98747
|
+
result?: {
|
|
98748
|
+
error?: string | undefined;
|
|
98749
|
+
s3?: {
|
|
98750
|
+
path: string;
|
|
98751
|
+
files: string[];
|
|
98752
|
+
bucket: string;
|
|
98753
|
+
urlPrefix?: string | undefined;
|
|
98754
|
+
} | undefined;
|
|
98755
|
+
github?: {
|
|
98756
|
+
pullRequestUrl: string;
|
|
98757
|
+
} | undefined;
|
|
98758
|
+
azure?: {
|
|
98759
|
+
pullRequestUrl: string;
|
|
98760
|
+
} | undefined;
|
|
98761
|
+
gitlab?: {
|
|
98762
|
+
pullRequestUrl: string;
|
|
98763
|
+
} | undefined;
|
|
98764
|
+
bitbucket?: {
|
|
98765
|
+
pullRequestUrl: string;
|
|
98766
|
+
} | undefined;
|
|
98767
|
+
sndocs?: {
|
|
98768
|
+
url: string;
|
|
98769
|
+
} | undefined;
|
|
98770
|
+
} | undefined;
|
|
98771
|
+
createdByUserId?: string | undefined;
|
|
98772
|
+
}>;
|
|
98773
|
+
type ExportJob = z.infer<typeof ExportJob>;
|
|
98774
|
+
type CreateExportJob = DbCreateInputOmit<ExportJob>;
|
|
98775
|
+
type UpdateExportJob = Pick<DbUpdate<ExportJob>, "id" | "status" | "result" | "finishedAt">;
|
|
98776
|
+
declare const ExportJobFindByFilter: z.ZodObject<{
|
|
98777
|
+
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
98778
|
+
designSystemId: z.ZodOptional<z.ZodString>;
|
|
98779
|
+
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
98780
|
+
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98781
|
+
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98782
|
+
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98783
|
+
exporterId: z.ZodOptional<z.ZodString>;
|
|
98784
|
+
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
98785
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
98786
|
+
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
98787
|
+
}, "strip", z.ZodTypeAny, {
|
|
98788
|
+
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
98789
|
+
designSystemId?: string | undefined;
|
|
98790
|
+
designSystemVersionId?: string | undefined;
|
|
98791
|
+
brandId?: string | undefined;
|
|
98792
|
+
createdByUserId?: string | undefined;
|
|
98793
|
+
themeId?: string | undefined;
|
|
98794
|
+
exporterId?: string | undefined;
|
|
98795
|
+
scheduleId?: string | null | undefined;
|
|
98796
|
+
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98797
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
98798
|
+
}, {
|
|
98799
|
+
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
98800
|
+
designSystemId?: string | undefined;
|
|
98801
|
+
designSystemVersionId?: string | undefined;
|
|
98802
|
+
brandId?: string | undefined;
|
|
98803
|
+
createdByUserId?: string | undefined;
|
|
98804
|
+
themeId?: string | undefined;
|
|
98805
|
+
exporterId?: string | undefined;
|
|
98806
|
+
scheduleId?: string | null | undefined;
|
|
98807
|
+
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98808
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
98809
|
+
}>;
|
|
98810
|
+
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
98811
|
+
|
|
98812
|
+
declare const ExportJobDocumentationContext: z.ZodObject<{
|
|
98813
|
+
isSingleVersionDocs: z.ZodBoolean;
|
|
98814
|
+
versionSlug: z.ZodString;
|
|
98815
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98816
|
+
}, "strip", z.ZodTypeAny, {
|
|
98817
|
+
environment: "Live" | "Preview";
|
|
98818
|
+
isSingleVersionDocs: boolean;
|
|
98819
|
+
versionSlug: string;
|
|
98820
|
+
}, {
|
|
98821
|
+
environment: "Live" | "Preview";
|
|
98822
|
+
isSingleVersionDocs: boolean;
|
|
98823
|
+
versionSlug: string;
|
|
98824
|
+
}>;
|
|
98825
|
+
type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
|
|
98826
|
+
declare const ExportJobContext: z.ZodObject<{
|
|
98827
|
+
apiUrl: z.ZodString;
|
|
98828
|
+
accessToken: z.ZodString;
|
|
98829
|
+
designSystemId: z.ZodString;
|
|
98830
|
+
designSystemVersionId: z.ZodString;
|
|
98831
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
98832
|
+
exporterPackageUrl: z.ZodString;
|
|
98833
|
+
exporterPropertyValues: z.ZodArray<z.ZodObject<{
|
|
98834
|
+
key: z.ZodString;
|
|
98835
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
98836
|
+
asset: z.ZodOptional<z.ZodObject<{
|
|
98837
|
+
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
98838
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98839
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98840
|
+
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98841
|
+
persistentId: string;
|
|
98842
|
+
sourceId: string;
|
|
98843
|
+
sourceFrameId: string;
|
|
98844
|
+
title?: string | undefined;
|
|
98845
|
+
description?: string | undefined;
|
|
98846
|
+
backgroundColor?: {
|
|
98847
|
+
value: string;
|
|
98848
|
+
} | undefined;
|
|
98849
|
+
origin?: {
|
|
98073
98850
|
sourceFileName?: string | undefined;
|
|
98074
98851
|
title?: string | undefined;
|
|
98075
98852
|
previewUrl?: string | undefined;
|
|
@@ -99531,778 +100308,6 @@ declare const ExporterFunctionPayload: z.ZodObject<{
|
|
|
99531
100308
|
}>;
|
|
99532
100309
|
type ExporterFunctionPayload = z.infer<typeof ExporterFunctionPayload>;
|
|
99533
100310
|
|
|
99534
|
-
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
99535
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99536
|
-
}, "strip", z.ZodTypeAny, {
|
|
99537
|
-
environment: "Live" | "Preview";
|
|
99538
|
-
}, {
|
|
99539
|
-
environment: "Live" | "Preview";
|
|
99540
|
-
}>;
|
|
99541
|
-
type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
|
|
99542
|
-
declare const ExporterDestinationS3: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
99543
|
-
type ExporterDestinationS3 = z.infer<typeof ExporterDestinationS3>;
|
|
99544
|
-
declare const ExporterDestinationGithub: z.ZodObject<{
|
|
99545
|
-
connectionId: z.ZodString;
|
|
99546
|
-
branch: z.ZodString;
|
|
99547
|
-
relativePath: z.ZodString;
|
|
99548
|
-
}, "strip", z.ZodTypeAny, {
|
|
99549
|
-
connectionId: string;
|
|
99550
|
-
branch: string;
|
|
99551
|
-
relativePath: string;
|
|
99552
|
-
}, {
|
|
99553
|
-
connectionId: string;
|
|
99554
|
-
branch: string;
|
|
99555
|
-
relativePath: string;
|
|
99556
|
-
}>;
|
|
99557
|
-
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
99558
|
-
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
99559
|
-
connectionId: z.ZodString;
|
|
99560
|
-
organizationId: z.ZodString;
|
|
99561
|
-
projectId: z.ZodString;
|
|
99562
|
-
repositoryId: z.ZodString;
|
|
99563
|
-
branch: z.ZodString;
|
|
99564
|
-
relativePath: z.ZodString;
|
|
99565
|
-
}, "strip", z.ZodTypeAny, {
|
|
99566
|
-
connectionId: string;
|
|
99567
|
-
branch: string;
|
|
99568
|
-
relativePath: string;
|
|
99569
|
-
organizationId: string;
|
|
99570
|
-
projectId: string;
|
|
99571
|
-
repositoryId: string;
|
|
99572
|
-
}, {
|
|
99573
|
-
connectionId: string;
|
|
99574
|
-
branch: string;
|
|
99575
|
-
relativePath: string;
|
|
99576
|
-
organizationId: string;
|
|
99577
|
-
projectId: string;
|
|
99578
|
-
repositoryId: string;
|
|
99579
|
-
}>;
|
|
99580
|
-
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
99581
|
-
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
99582
|
-
connectionId: z.ZodString;
|
|
99583
|
-
projectId: z.ZodString;
|
|
99584
|
-
branch: z.ZodString;
|
|
99585
|
-
relativePath: z.ZodString;
|
|
99586
|
-
}, "strip", z.ZodTypeAny, {
|
|
99587
|
-
connectionId: string;
|
|
99588
|
-
branch: string;
|
|
99589
|
-
relativePath: string;
|
|
99590
|
-
projectId: string;
|
|
99591
|
-
}, {
|
|
99592
|
-
connectionId: string;
|
|
99593
|
-
branch: string;
|
|
99594
|
-
relativePath: string;
|
|
99595
|
-
projectId: string;
|
|
99596
|
-
}>;
|
|
99597
|
-
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
99598
|
-
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
99599
|
-
connectionId: z.ZodString;
|
|
99600
|
-
workspaceSlug: z.ZodString;
|
|
99601
|
-
projectKey: z.ZodString;
|
|
99602
|
-
repoSlug: z.ZodString;
|
|
99603
|
-
branch: z.ZodString;
|
|
99604
|
-
relativePath: z.ZodString;
|
|
99605
|
-
}, "strip", z.ZodTypeAny, {
|
|
99606
|
-
connectionId: string;
|
|
99607
|
-
branch: string;
|
|
99608
|
-
relativePath: string;
|
|
99609
|
-
workspaceSlug: string;
|
|
99610
|
-
projectKey: string;
|
|
99611
|
-
repoSlug: string;
|
|
99612
|
-
}, {
|
|
99613
|
-
connectionId: string;
|
|
99614
|
-
branch: string;
|
|
99615
|
-
relativePath: string;
|
|
99616
|
-
workspaceSlug: string;
|
|
99617
|
-
projectKey: string;
|
|
99618
|
-
repoSlug: string;
|
|
99619
|
-
}>;
|
|
99620
|
-
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
99621
|
-
declare const ExportDestinationsMap: z.ZodObject<{
|
|
99622
|
-
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
99623
|
-
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
99624
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99625
|
-
}, "strip", z.ZodTypeAny, {
|
|
99626
|
-
environment: "Live" | "Preview";
|
|
99627
|
-
}, {
|
|
99628
|
-
environment: "Live" | "Preview";
|
|
99629
|
-
}>>;
|
|
99630
|
-
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
99631
|
-
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
99632
|
-
connectionId: z.ZodString;
|
|
99633
|
-
branch: z.ZodString;
|
|
99634
|
-
relativePath: z.ZodString;
|
|
99635
|
-
}, "strip", z.ZodTypeAny, {
|
|
99636
|
-
connectionId: string;
|
|
99637
|
-
branch: string;
|
|
99638
|
-
relativePath: string;
|
|
99639
|
-
}, {
|
|
99640
|
-
connectionId: string;
|
|
99641
|
-
branch: string;
|
|
99642
|
-
relativePath: string;
|
|
99643
|
-
}>>;
|
|
99644
|
-
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
99645
|
-
connectionId: z.ZodString;
|
|
99646
|
-
organizationId: z.ZodString;
|
|
99647
|
-
projectId: z.ZodString;
|
|
99648
|
-
repositoryId: z.ZodString;
|
|
99649
|
-
branch: z.ZodString;
|
|
99650
|
-
relativePath: z.ZodString;
|
|
99651
|
-
}, "strip", z.ZodTypeAny, {
|
|
99652
|
-
connectionId: string;
|
|
99653
|
-
branch: string;
|
|
99654
|
-
relativePath: string;
|
|
99655
|
-
organizationId: string;
|
|
99656
|
-
projectId: string;
|
|
99657
|
-
repositoryId: string;
|
|
99658
|
-
}, {
|
|
99659
|
-
connectionId: string;
|
|
99660
|
-
branch: string;
|
|
99661
|
-
relativePath: string;
|
|
99662
|
-
organizationId: string;
|
|
99663
|
-
projectId: string;
|
|
99664
|
-
repositoryId: string;
|
|
99665
|
-
}>>;
|
|
99666
|
-
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
99667
|
-
connectionId: z.ZodString;
|
|
99668
|
-
projectId: z.ZodString;
|
|
99669
|
-
branch: z.ZodString;
|
|
99670
|
-
relativePath: z.ZodString;
|
|
99671
|
-
}, "strip", z.ZodTypeAny, {
|
|
99672
|
-
connectionId: string;
|
|
99673
|
-
branch: string;
|
|
99674
|
-
relativePath: string;
|
|
99675
|
-
projectId: string;
|
|
99676
|
-
}, {
|
|
99677
|
-
connectionId: string;
|
|
99678
|
-
branch: string;
|
|
99679
|
-
relativePath: string;
|
|
99680
|
-
projectId: string;
|
|
99681
|
-
}>>;
|
|
99682
|
-
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
99683
|
-
connectionId: z.ZodString;
|
|
99684
|
-
workspaceSlug: z.ZodString;
|
|
99685
|
-
projectKey: z.ZodString;
|
|
99686
|
-
repoSlug: z.ZodString;
|
|
99687
|
-
branch: z.ZodString;
|
|
99688
|
-
relativePath: z.ZodString;
|
|
99689
|
-
}, "strip", z.ZodTypeAny, {
|
|
99690
|
-
connectionId: string;
|
|
99691
|
-
branch: string;
|
|
99692
|
-
relativePath: string;
|
|
99693
|
-
workspaceSlug: string;
|
|
99694
|
-
projectKey: string;
|
|
99695
|
-
repoSlug: string;
|
|
99696
|
-
}, {
|
|
99697
|
-
connectionId: string;
|
|
99698
|
-
branch: string;
|
|
99699
|
-
relativePath: string;
|
|
99700
|
-
workspaceSlug: string;
|
|
99701
|
-
projectKey: string;
|
|
99702
|
-
repoSlug: string;
|
|
99703
|
-
}>>;
|
|
99704
|
-
}, "strip", z.ZodTypeAny, {
|
|
99705
|
-
webhookUrl?: string | undefined;
|
|
99706
|
-
destinationSnDocs?: {
|
|
99707
|
-
environment: "Live" | "Preview";
|
|
99708
|
-
} | undefined;
|
|
99709
|
-
destinationS3?: {} | undefined;
|
|
99710
|
-
destinationGithub?: {
|
|
99711
|
-
connectionId: string;
|
|
99712
|
-
branch: string;
|
|
99713
|
-
relativePath: string;
|
|
99714
|
-
} | undefined;
|
|
99715
|
-
destinationAzure?: {
|
|
99716
|
-
connectionId: string;
|
|
99717
|
-
branch: string;
|
|
99718
|
-
relativePath: string;
|
|
99719
|
-
organizationId: string;
|
|
99720
|
-
projectId: string;
|
|
99721
|
-
repositoryId: string;
|
|
99722
|
-
} | undefined;
|
|
99723
|
-
destinationGitlab?: {
|
|
99724
|
-
connectionId: string;
|
|
99725
|
-
branch: string;
|
|
99726
|
-
relativePath: string;
|
|
99727
|
-
projectId: string;
|
|
99728
|
-
} | undefined;
|
|
99729
|
-
destinationBitbucket?: {
|
|
99730
|
-
connectionId: string;
|
|
99731
|
-
branch: string;
|
|
99732
|
-
relativePath: string;
|
|
99733
|
-
workspaceSlug: string;
|
|
99734
|
-
projectKey: string;
|
|
99735
|
-
repoSlug: string;
|
|
99736
|
-
} | undefined;
|
|
99737
|
-
}, {
|
|
99738
|
-
webhookUrl?: string | undefined;
|
|
99739
|
-
destinationSnDocs?: {
|
|
99740
|
-
environment: "Live" | "Preview";
|
|
99741
|
-
} | undefined;
|
|
99742
|
-
destinationS3?: {} | undefined;
|
|
99743
|
-
destinationGithub?: {
|
|
99744
|
-
connectionId: string;
|
|
99745
|
-
branch: string;
|
|
99746
|
-
relativePath: string;
|
|
99747
|
-
} | undefined;
|
|
99748
|
-
destinationAzure?: {
|
|
99749
|
-
connectionId: string;
|
|
99750
|
-
branch: string;
|
|
99751
|
-
relativePath: string;
|
|
99752
|
-
organizationId: string;
|
|
99753
|
-
projectId: string;
|
|
99754
|
-
repositoryId: string;
|
|
99755
|
-
} | undefined;
|
|
99756
|
-
destinationGitlab?: {
|
|
99757
|
-
connectionId: string;
|
|
99758
|
-
branch: string;
|
|
99759
|
-
relativePath: string;
|
|
99760
|
-
projectId: string;
|
|
99761
|
-
} | undefined;
|
|
99762
|
-
destinationBitbucket?: {
|
|
99763
|
-
connectionId: string;
|
|
99764
|
-
branch: string;
|
|
99765
|
-
relativePath: string;
|
|
99766
|
-
workspaceSlug: string;
|
|
99767
|
-
projectKey: string;
|
|
99768
|
-
repoSlug: string;
|
|
99769
|
-
} | undefined;
|
|
99770
|
-
}>;
|
|
99771
|
-
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
99772
|
-
|
|
99773
|
-
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>;
|
|
99774
|
-
type ExportJobDestinationType = z.infer<typeof ExportJobDestinationType>;
|
|
99775
|
-
declare const ExportJobStatus: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
99776
|
-
type ExportJobStatus = z.infer<typeof ExportJobStatus>;
|
|
99777
|
-
declare const ExportJobLogEntryType: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
99778
|
-
type ExportJobLogEntryType = z.infer<typeof ExportJobLogEntryType>;
|
|
99779
|
-
declare const ExportJobLogEntry: z.ZodObject<{
|
|
99780
|
-
id: z.ZodOptional<z.ZodString>;
|
|
99781
|
-
time: z.ZodDate;
|
|
99782
|
-
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
99783
|
-
message: z.ZodString;
|
|
99784
|
-
}, "strip", z.ZodTypeAny, {
|
|
99785
|
-
message: string;
|
|
99786
|
-
type: "error" | "info" | "user" | "success" | "warning";
|
|
99787
|
-
time: Date;
|
|
99788
|
-
id?: string | undefined;
|
|
99789
|
-
}, {
|
|
99790
|
-
message: string;
|
|
99791
|
-
type: "error" | "info" | "user" | "success" | "warning";
|
|
99792
|
-
time: Date;
|
|
99793
|
-
id?: string | undefined;
|
|
99794
|
-
}>;
|
|
99795
|
-
type ExportJobLogEntry = z.infer<typeof ExportJobLogEntry>;
|
|
99796
|
-
declare const ExportJobPullRequestDestinationResult: z.ZodObject<{
|
|
99797
|
-
pullRequestUrl: z.ZodString;
|
|
99798
|
-
}, "strip", z.ZodTypeAny, {
|
|
99799
|
-
pullRequestUrl: string;
|
|
99800
|
-
}, {
|
|
99801
|
-
pullRequestUrl: string;
|
|
99802
|
-
}>;
|
|
99803
|
-
type ExportJobPullRequestDestinationResult = z.infer<typeof ExportJobPullRequestDestinationResult>;
|
|
99804
|
-
declare const ExportJobS3DestinationResult: z.ZodObject<{
|
|
99805
|
-
bucket: z.ZodString;
|
|
99806
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
99807
|
-
path: z.ZodString;
|
|
99808
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
99809
|
-
}, "strip", z.ZodTypeAny, {
|
|
99810
|
-
path: string;
|
|
99811
|
-
files: string[];
|
|
99812
|
-
bucket: string;
|
|
99813
|
-
urlPrefix?: string | undefined;
|
|
99814
|
-
}, {
|
|
99815
|
-
path: string;
|
|
99816
|
-
files: string[];
|
|
99817
|
-
bucket: string;
|
|
99818
|
-
urlPrefix?: string | undefined;
|
|
99819
|
-
}>;
|
|
99820
|
-
type ExportJobS3DestinationResult = z.infer<typeof ExportJobS3DestinationResult>;
|
|
99821
|
-
declare const ExportJobDocsDestinationResult: z.ZodObject<{
|
|
99822
|
-
url: z.ZodString;
|
|
99823
|
-
}, "strip", z.ZodTypeAny, {
|
|
99824
|
-
url: string;
|
|
99825
|
-
}, {
|
|
99826
|
-
url: string;
|
|
99827
|
-
}>;
|
|
99828
|
-
type ExportJobDocsDestinationResult = z.infer<typeof ExportJobDocsDestinationResult>;
|
|
99829
|
-
declare const ExportJobResult: z.ZodObject<{
|
|
99830
|
-
error: z.ZodOptional<z.ZodString>;
|
|
99831
|
-
s3: z.ZodOptional<z.ZodObject<{
|
|
99832
|
-
bucket: z.ZodString;
|
|
99833
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
99834
|
-
path: z.ZodString;
|
|
99835
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
99836
|
-
}, "strip", z.ZodTypeAny, {
|
|
99837
|
-
path: string;
|
|
99838
|
-
files: string[];
|
|
99839
|
-
bucket: string;
|
|
99840
|
-
urlPrefix?: string | undefined;
|
|
99841
|
-
}, {
|
|
99842
|
-
path: string;
|
|
99843
|
-
files: string[];
|
|
99844
|
-
bucket: string;
|
|
99845
|
-
urlPrefix?: string | undefined;
|
|
99846
|
-
}>>;
|
|
99847
|
-
github: z.ZodOptional<z.ZodObject<{
|
|
99848
|
-
pullRequestUrl: z.ZodString;
|
|
99849
|
-
}, "strip", z.ZodTypeAny, {
|
|
99850
|
-
pullRequestUrl: string;
|
|
99851
|
-
}, {
|
|
99852
|
-
pullRequestUrl: string;
|
|
99853
|
-
}>>;
|
|
99854
|
-
azure: z.ZodOptional<z.ZodObject<{
|
|
99855
|
-
pullRequestUrl: z.ZodString;
|
|
99856
|
-
}, "strip", z.ZodTypeAny, {
|
|
99857
|
-
pullRequestUrl: string;
|
|
99858
|
-
}, {
|
|
99859
|
-
pullRequestUrl: string;
|
|
99860
|
-
}>>;
|
|
99861
|
-
gitlab: z.ZodOptional<z.ZodObject<{
|
|
99862
|
-
pullRequestUrl: z.ZodString;
|
|
99863
|
-
}, "strip", z.ZodTypeAny, {
|
|
99864
|
-
pullRequestUrl: string;
|
|
99865
|
-
}, {
|
|
99866
|
-
pullRequestUrl: string;
|
|
99867
|
-
}>>;
|
|
99868
|
-
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
99869
|
-
pullRequestUrl: z.ZodString;
|
|
99870
|
-
}, "strip", z.ZodTypeAny, {
|
|
99871
|
-
pullRequestUrl: string;
|
|
99872
|
-
}, {
|
|
99873
|
-
pullRequestUrl: string;
|
|
99874
|
-
}>>;
|
|
99875
|
-
sndocs: z.ZodOptional<z.ZodObject<{
|
|
99876
|
-
url: z.ZodString;
|
|
99877
|
-
}, "strip", z.ZodTypeAny, {
|
|
99878
|
-
url: string;
|
|
99879
|
-
}, {
|
|
99880
|
-
url: string;
|
|
99881
|
-
}>>;
|
|
99882
|
-
}, "strip", z.ZodTypeAny, {
|
|
99883
|
-
error?: string | undefined;
|
|
99884
|
-
s3?: {
|
|
99885
|
-
path: string;
|
|
99886
|
-
files: string[];
|
|
99887
|
-
bucket: string;
|
|
99888
|
-
urlPrefix?: string | undefined;
|
|
99889
|
-
} | undefined;
|
|
99890
|
-
github?: {
|
|
99891
|
-
pullRequestUrl: string;
|
|
99892
|
-
} | undefined;
|
|
99893
|
-
azure?: {
|
|
99894
|
-
pullRequestUrl: string;
|
|
99895
|
-
} | undefined;
|
|
99896
|
-
gitlab?: {
|
|
99897
|
-
pullRequestUrl: string;
|
|
99898
|
-
} | undefined;
|
|
99899
|
-
bitbucket?: {
|
|
99900
|
-
pullRequestUrl: string;
|
|
99901
|
-
} | undefined;
|
|
99902
|
-
sndocs?: {
|
|
99903
|
-
url: string;
|
|
99904
|
-
} | undefined;
|
|
99905
|
-
}, {
|
|
99906
|
-
error?: string | undefined;
|
|
99907
|
-
s3?: {
|
|
99908
|
-
path: string;
|
|
99909
|
-
files: string[];
|
|
99910
|
-
bucket: string;
|
|
99911
|
-
urlPrefix?: string | undefined;
|
|
99912
|
-
} | undefined;
|
|
99913
|
-
github?: {
|
|
99914
|
-
pullRequestUrl: string;
|
|
99915
|
-
} | undefined;
|
|
99916
|
-
azure?: {
|
|
99917
|
-
pullRequestUrl: string;
|
|
99918
|
-
} | undefined;
|
|
99919
|
-
gitlab?: {
|
|
99920
|
-
pullRequestUrl: string;
|
|
99921
|
-
} | undefined;
|
|
99922
|
-
bitbucket?: {
|
|
99923
|
-
pullRequestUrl: string;
|
|
99924
|
-
} | undefined;
|
|
99925
|
-
sndocs?: {
|
|
99926
|
-
url: string;
|
|
99927
|
-
} | undefined;
|
|
99928
|
-
}>;
|
|
99929
|
-
type ExportJobResult = z.infer<typeof ExportJobResult>;
|
|
99930
|
-
declare const ExportJob: z.ZodObject<{
|
|
99931
|
-
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
99932
|
-
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
99933
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99934
|
-
}, "strip", z.ZodTypeAny, {
|
|
99935
|
-
environment: "Live" | "Preview";
|
|
99936
|
-
}, {
|
|
99937
|
-
environment: "Live" | "Preview";
|
|
99938
|
-
}>>;
|
|
99939
|
-
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
99940
|
-
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
99941
|
-
connectionId: z.ZodString;
|
|
99942
|
-
branch: z.ZodString;
|
|
99943
|
-
relativePath: z.ZodString;
|
|
99944
|
-
}, "strip", z.ZodTypeAny, {
|
|
99945
|
-
connectionId: string;
|
|
99946
|
-
branch: string;
|
|
99947
|
-
relativePath: string;
|
|
99948
|
-
}, {
|
|
99949
|
-
connectionId: string;
|
|
99950
|
-
branch: string;
|
|
99951
|
-
relativePath: string;
|
|
99952
|
-
}>>;
|
|
99953
|
-
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
99954
|
-
connectionId: z.ZodString;
|
|
99955
|
-
organizationId: z.ZodString;
|
|
99956
|
-
projectId: z.ZodString;
|
|
99957
|
-
repositoryId: z.ZodString;
|
|
99958
|
-
branch: z.ZodString;
|
|
99959
|
-
relativePath: z.ZodString;
|
|
99960
|
-
}, "strip", z.ZodTypeAny, {
|
|
99961
|
-
connectionId: string;
|
|
99962
|
-
branch: string;
|
|
99963
|
-
relativePath: string;
|
|
99964
|
-
organizationId: string;
|
|
99965
|
-
projectId: string;
|
|
99966
|
-
repositoryId: string;
|
|
99967
|
-
}, {
|
|
99968
|
-
connectionId: string;
|
|
99969
|
-
branch: string;
|
|
99970
|
-
relativePath: string;
|
|
99971
|
-
organizationId: string;
|
|
99972
|
-
projectId: string;
|
|
99973
|
-
repositoryId: string;
|
|
99974
|
-
}>>;
|
|
99975
|
-
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
99976
|
-
connectionId: z.ZodString;
|
|
99977
|
-
projectId: z.ZodString;
|
|
99978
|
-
branch: z.ZodString;
|
|
99979
|
-
relativePath: z.ZodString;
|
|
99980
|
-
}, "strip", z.ZodTypeAny, {
|
|
99981
|
-
connectionId: string;
|
|
99982
|
-
branch: string;
|
|
99983
|
-
relativePath: string;
|
|
99984
|
-
projectId: string;
|
|
99985
|
-
}, {
|
|
99986
|
-
connectionId: string;
|
|
99987
|
-
branch: string;
|
|
99988
|
-
relativePath: string;
|
|
99989
|
-
projectId: string;
|
|
99990
|
-
}>>;
|
|
99991
|
-
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
99992
|
-
connectionId: z.ZodString;
|
|
99993
|
-
workspaceSlug: z.ZodString;
|
|
99994
|
-
projectKey: z.ZodString;
|
|
99995
|
-
repoSlug: z.ZodString;
|
|
99996
|
-
branch: z.ZodString;
|
|
99997
|
-
relativePath: z.ZodString;
|
|
99998
|
-
}, "strip", z.ZodTypeAny, {
|
|
99999
|
-
connectionId: string;
|
|
100000
|
-
branch: string;
|
|
100001
|
-
relativePath: string;
|
|
100002
|
-
workspaceSlug: string;
|
|
100003
|
-
projectKey: string;
|
|
100004
|
-
repoSlug: string;
|
|
100005
|
-
}, {
|
|
100006
|
-
connectionId: string;
|
|
100007
|
-
branch: string;
|
|
100008
|
-
relativePath: string;
|
|
100009
|
-
workspaceSlug: string;
|
|
100010
|
-
projectKey: string;
|
|
100011
|
-
repoSlug: string;
|
|
100012
|
-
}>>;
|
|
100013
|
-
id: z.ZodString;
|
|
100014
|
-
createdAt: z.ZodDate;
|
|
100015
|
-
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
100016
|
-
designSystemId: z.ZodString;
|
|
100017
|
-
designSystemVersionId: z.ZodString;
|
|
100018
|
-
workspaceId: z.ZodString;
|
|
100019
|
-
scheduleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100020
|
-
exporterId: z.ZodString;
|
|
100021
|
-
brandId: z.ZodOptional<z.ZodString>;
|
|
100022
|
-
themeId: z.ZodOptional<z.ZodString>;
|
|
100023
|
-
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
100024
|
-
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
100025
|
-
result: z.ZodOptional<z.ZodObject<{
|
|
100026
|
-
error: z.ZodOptional<z.ZodString>;
|
|
100027
|
-
s3: z.ZodOptional<z.ZodObject<{
|
|
100028
|
-
bucket: z.ZodString;
|
|
100029
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
100030
|
-
path: z.ZodString;
|
|
100031
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
100032
|
-
}, "strip", z.ZodTypeAny, {
|
|
100033
|
-
path: string;
|
|
100034
|
-
files: string[];
|
|
100035
|
-
bucket: string;
|
|
100036
|
-
urlPrefix?: string | undefined;
|
|
100037
|
-
}, {
|
|
100038
|
-
path: string;
|
|
100039
|
-
files: string[];
|
|
100040
|
-
bucket: string;
|
|
100041
|
-
urlPrefix?: string | undefined;
|
|
100042
|
-
}>>;
|
|
100043
|
-
github: z.ZodOptional<z.ZodObject<{
|
|
100044
|
-
pullRequestUrl: z.ZodString;
|
|
100045
|
-
}, "strip", z.ZodTypeAny, {
|
|
100046
|
-
pullRequestUrl: string;
|
|
100047
|
-
}, {
|
|
100048
|
-
pullRequestUrl: string;
|
|
100049
|
-
}>>;
|
|
100050
|
-
azure: z.ZodOptional<z.ZodObject<{
|
|
100051
|
-
pullRequestUrl: z.ZodString;
|
|
100052
|
-
}, "strip", z.ZodTypeAny, {
|
|
100053
|
-
pullRequestUrl: string;
|
|
100054
|
-
}, {
|
|
100055
|
-
pullRequestUrl: string;
|
|
100056
|
-
}>>;
|
|
100057
|
-
gitlab: z.ZodOptional<z.ZodObject<{
|
|
100058
|
-
pullRequestUrl: z.ZodString;
|
|
100059
|
-
}, "strip", z.ZodTypeAny, {
|
|
100060
|
-
pullRequestUrl: string;
|
|
100061
|
-
}, {
|
|
100062
|
-
pullRequestUrl: string;
|
|
100063
|
-
}>>;
|
|
100064
|
-
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
100065
|
-
pullRequestUrl: z.ZodString;
|
|
100066
|
-
}, "strip", z.ZodTypeAny, {
|
|
100067
|
-
pullRequestUrl: string;
|
|
100068
|
-
}, {
|
|
100069
|
-
pullRequestUrl: string;
|
|
100070
|
-
}>>;
|
|
100071
|
-
sndocs: z.ZodOptional<z.ZodObject<{
|
|
100072
|
-
url: z.ZodString;
|
|
100073
|
-
}, "strip", z.ZodTypeAny, {
|
|
100074
|
-
url: string;
|
|
100075
|
-
}, {
|
|
100076
|
-
url: string;
|
|
100077
|
-
}>>;
|
|
100078
|
-
}, "strip", z.ZodTypeAny, {
|
|
100079
|
-
error?: string | undefined;
|
|
100080
|
-
s3?: {
|
|
100081
|
-
path: string;
|
|
100082
|
-
files: string[];
|
|
100083
|
-
bucket: string;
|
|
100084
|
-
urlPrefix?: string | undefined;
|
|
100085
|
-
} | undefined;
|
|
100086
|
-
github?: {
|
|
100087
|
-
pullRequestUrl: string;
|
|
100088
|
-
} | undefined;
|
|
100089
|
-
azure?: {
|
|
100090
|
-
pullRequestUrl: string;
|
|
100091
|
-
} | undefined;
|
|
100092
|
-
gitlab?: {
|
|
100093
|
-
pullRequestUrl: string;
|
|
100094
|
-
} | undefined;
|
|
100095
|
-
bitbucket?: {
|
|
100096
|
-
pullRequestUrl: string;
|
|
100097
|
-
} | undefined;
|
|
100098
|
-
sndocs?: {
|
|
100099
|
-
url: string;
|
|
100100
|
-
} | undefined;
|
|
100101
|
-
}, {
|
|
100102
|
-
error?: string | undefined;
|
|
100103
|
-
s3?: {
|
|
100104
|
-
path: string;
|
|
100105
|
-
files: string[];
|
|
100106
|
-
bucket: string;
|
|
100107
|
-
urlPrefix?: string | undefined;
|
|
100108
|
-
} | undefined;
|
|
100109
|
-
github?: {
|
|
100110
|
-
pullRequestUrl: string;
|
|
100111
|
-
} | undefined;
|
|
100112
|
-
azure?: {
|
|
100113
|
-
pullRequestUrl: string;
|
|
100114
|
-
} | undefined;
|
|
100115
|
-
gitlab?: {
|
|
100116
|
-
pullRequestUrl: string;
|
|
100117
|
-
} | undefined;
|
|
100118
|
-
bitbucket?: {
|
|
100119
|
-
pullRequestUrl: string;
|
|
100120
|
-
} | undefined;
|
|
100121
|
-
sndocs?: {
|
|
100122
|
-
url: string;
|
|
100123
|
-
} | undefined;
|
|
100124
|
-
}>>;
|
|
100125
|
-
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
100126
|
-
}, "strip", z.ZodTypeAny, {
|
|
100127
|
-
id: string;
|
|
100128
|
-
createdAt: Date;
|
|
100129
|
-
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
100130
|
-
designSystemId: string;
|
|
100131
|
-
designSystemVersionId: string;
|
|
100132
|
-
workspaceId: string;
|
|
100133
|
-
exporterId: string;
|
|
100134
|
-
webhookUrl?: string | undefined;
|
|
100135
|
-
destinationSnDocs?: {
|
|
100136
|
-
environment: "Live" | "Preview";
|
|
100137
|
-
} | undefined;
|
|
100138
|
-
destinationS3?: {} | undefined;
|
|
100139
|
-
destinationGithub?: {
|
|
100140
|
-
connectionId: string;
|
|
100141
|
-
branch: string;
|
|
100142
|
-
relativePath: string;
|
|
100143
|
-
} | undefined;
|
|
100144
|
-
destinationAzure?: {
|
|
100145
|
-
connectionId: string;
|
|
100146
|
-
branch: string;
|
|
100147
|
-
relativePath: string;
|
|
100148
|
-
organizationId: string;
|
|
100149
|
-
projectId: string;
|
|
100150
|
-
repositoryId: string;
|
|
100151
|
-
} | undefined;
|
|
100152
|
-
destinationGitlab?: {
|
|
100153
|
-
connectionId: string;
|
|
100154
|
-
branch: string;
|
|
100155
|
-
relativePath: string;
|
|
100156
|
-
projectId: string;
|
|
100157
|
-
} | undefined;
|
|
100158
|
-
destinationBitbucket?: {
|
|
100159
|
-
connectionId: string;
|
|
100160
|
-
branch: string;
|
|
100161
|
-
relativePath: string;
|
|
100162
|
-
workspaceSlug: string;
|
|
100163
|
-
projectKey: string;
|
|
100164
|
-
repoSlug: string;
|
|
100165
|
-
} | undefined;
|
|
100166
|
-
finishedAt?: Date | undefined;
|
|
100167
|
-
scheduleId?: string | null | undefined;
|
|
100168
|
-
brandId?: string | undefined;
|
|
100169
|
-
themeId?: string | undefined;
|
|
100170
|
-
estimatedExecutionTime?: number | undefined;
|
|
100171
|
-
result?: {
|
|
100172
|
-
error?: string | undefined;
|
|
100173
|
-
s3?: {
|
|
100174
|
-
path: string;
|
|
100175
|
-
files: string[];
|
|
100176
|
-
bucket: string;
|
|
100177
|
-
urlPrefix?: string | undefined;
|
|
100178
|
-
} | undefined;
|
|
100179
|
-
github?: {
|
|
100180
|
-
pullRequestUrl: string;
|
|
100181
|
-
} | undefined;
|
|
100182
|
-
azure?: {
|
|
100183
|
-
pullRequestUrl: string;
|
|
100184
|
-
} | undefined;
|
|
100185
|
-
gitlab?: {
|
|
100186
|
-
pullRequestUrl: string;
|
|
100187
|
-
} | undefined;
|
|
100188
|
-
bitbucket?: {
|
|
100189
|
-
pullRequestUrl: string;
|
|
100190
|
-
} | undefined;
|
|
100191
|
-
sndocs?: {
|
|
100192
|
-
url: string;
|
|
100193
|
-
} | undefined;
|
|
100194
|
-
} | undefined;
|
|
100195
|
-
createdByUserId?: string | undefined;
|
|
100196
|
-
}, {
|
|
100197
|
-
id: string;
|
|
100198
|
-
createdAt: Date;
|
|
100199
|
-
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
100200
|
-
designSystemId: string;
|
|
100201
|
-
designSystemVersionId: string;
|
|
100202
|
-
workspaceId: string;
|
|
100203
|
-
exporterId: string;
|
|
100204
|
-
webhookUrl?: string | undefined;
|
|
100205
|
-
destinationSnDocs?: {
|
|
100206
|
-
environment: "Live" | "Preview";
|
|
100207
|
-
} | undefined;
|
|
100208
|
-
destinationS3?: {} | undefined;
|
|
100209
|
-
destinationGithub?: {
|
|
100210
|
-
connectionId: string;
|
|
100211
|
-
branch: string;
|
|
100212
|
-
relativePath: string;
|
|
100213
|
-
} | undefined;
|
|
100214
|
-
destinationAzure?: {
|
|
100215
|
-
connectionId: string;
|
|
100216
|
-
branch: string;
|
|
100217
|
-
relativePath: string;
|
|
100218
|
-
organizationId: string;
|
|
100219
|
-
projectId: string;
|
|
100220
|
-
repositoryId: string;
|
|
100221
|
-
} | undefined;
|
|
100222
|
-
destinationGitlab?: {
|
|
100223
|
-
connectionId: string;
|
|
100224
|
-
branch: string;
|
|
100225
|
-
relativePath: string;
|
|
100226
|
-
projectId: string;
|
|
100227
|
-
} | undefined;
|
|
100228
|
-
destinationBitbucket?: {
|
|
100229
|
-
connectionId: string;
|
|
100230
|
-
branch: string;
|
|
100231
|
-
relativePath: string;
|
|
100232
|
-
workspaceSlug: string;
|
|
100233
|
-
projectKey: string;
|
|
100234
|
-
repoSlug: string;
|
|
100235
|
-
} | undefined;
|
|
100236
|
-
finishedAt?: Date | undefined;
|
|
100237
|
-
scheduleId?: string | null | undefined;
|
|
100238
|
-
brandId?: string | undefined;
|
|
100239
|
-
themeId?: string | undefined;
|
|
100240
|
-
estimatedExecutionTime?: number | undefined;
|
|
100241
|
-
result?: {
|
|
100242
|
-
error?: string | undefined;
|
|
100243
|
-
s3?: {
|
|
100244
|
-
path: string;
|
|
100245
|
-
files: string[];
|
|
100246
|
-
bucket: string;
|
|
100247
|
-
urlPrefix?: string | undefined;
|
|
100248
|
-
} | undefined;
|
|
100249
|
-
github?: {
|
|
100250
|
-
pullRequestUrl: string;
|
|
100251
|
-
} | undefined;
|
|
100252
|
-
azure?: {
|
|
100253
|
-
pullRequestUrl: string;
|
|
100254
|
-
} | undefined;
|
|
100255
|
-
gitlab?: {
|
|
100256
|
-
pullRequestUrl: string;
|
|
100257
|
-
} | undefined;
|
|
100258
|
-
bitbucket?: {
|
|
100259
|
-
pullRequestUrl: string;
|
|
100260
|
-
} | undefined;
|
|
100261
|
-
sndocs?: {
|
|
100262
|
-
url: string;
|
|
100263
|
-
} | undefined;
|
|
100264
|
-
} | undefined;
|
|
100265
|
-
createdByUserId?: string | undefined;
|
|
100266
|
-
}>;
|
|
100267
|
-
type ExportJob = z.infer<typeof ExportJob>;
|
|
100268
|
-
type CreateExportJob = DbCreateInputOmit<ExportJob>;
|
|
100269
|
-
type UpdateExportJob = Pick<DbUpdate<ExportJob>, "id" | "status" | "result" | "finishedAt">;
|
|
100270
|
-
declare const ExportJobFindByFilter: z.ZodObject<{
|
|
100271
|
-
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
100272
|
-
designSystemId: z.ZodOptional<z.ZodString>;
|
|
100273
|
-
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
100274
|
-
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100275
|
-
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100276
|
-
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100277
|
-
exporterId: z.ZodOptional<z.ZodString>;
|
|
100278
|
-
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
100279
|
-
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
100280
|
-
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
100281
|
-
}, "strip", z.ZodTypeAny, {
|
|
100282
|
-
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
100283
|
-
designSystemId?: string | undefined;
|
|
100284
|
-
designSystemVersionId?: string | undefined;
|
|
100285
|
-
brandId?: string | undefined;
|
|
100286
|
-
createdByUserId?: string | undefined;
|
|
100287
|
-
themeId?: string | undefined;
|
|
100288
|
-
exporterId?: string | undefined;
|
|
100289
|
-
scheduleId?: string | null | undefined;
|
|
100290
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100291
|
-
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100292
|
-
}, {
|
|
100293
|
-
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
100294
|
-
designSystemId?: string | undefined;
|
|
100295
|
-
designSystemVersionId?: string | undefined;
|
|
100296
|
-
brandId?: string | undefined;
|
|
100297
|
-
createdByUserId?: string | undefined;
|
|
100298
|
-
themeId?: string | undefined;
|
|
100299
|
-
exporterId?: string | undefined;
|
|
100300
|
-
scheduleId?: string | null | undefined;
|
|
100301
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100302
|
-
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100303
|
-
}>;
|
|
100304
|
-
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
100305
|
-
|
|
100306
100311
|
declare const ExporterScheduleEventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
100307
100312
|
type ExporterScheduleEventType = z.infer<typeof ExporterScheduleEventType>;
|
|
100308
100313
|
declare const ExporterSchedule: z.ZodObject<{
|
|
@@ -100484,28 +100489,6 @@ declare const ExporterSchedule: z.ZodObject<{
|
|
|
100484
100489
|
}>;
|
|
100485
100490
|
type ExporterSchedule = z.infer<typeof ExporterSchedule>;
|
|
100486
100491
|
|
|
100487
|
-
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
100488
|
-
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
100489
|
-
|
|
100490
|
-
declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
100491
|
-
id: z.ZodString;
|
|
100492
|
-
workspaceId: z.ZodString;
|
|
100493
|
-
exporterId: z.ZodString;
|
|
100494
|
-
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
100495
|
-
}, "strip", z.ZodTypeAny, {
|
|
100496
|
-
id: string;
|
|
100497
|
-
role: "Owner" | "OwnerArchived" | "User";
|
|
100498
|
-
workspaceId: string;
|
|
100499
|
-
exporterId: string;
|
|
100500
|
-
}, {
|
|
100501
|
-
id: string;
|
|
100502
|
-
role: "Owner" | "OwnerArchived" | "User";
|
|
100503
|
-
workspaceId: string;
|
|
100504
|
-
exporterId: string;
|
|
100505
|
-
}>;
|
|
100506
|
-
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
100507
|
-
type CreateExporterMembership = DbCreateInputOmit<ExporterWorkspaceMembership>;
|
|
100508
|
-
|
|
100509
100492
|
declare enum GitProviderNames {
|
|
100510
100493
|
Azure = "azure",
|
|
100511
100494
|
Github = "github",
|
|
@@ -101180,6 +101163,28 @@ declare const Exporter: z.ZodObject<{
|
|
|
101180
101163
|
}>;
|
|
101181
101164
|
type Exporter = z.infer<typeof Exporter>;
|
|
101182
101165
|
|
|
101166
|
+
declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
101167
|
+
id: z.ZodString;
|
|
101168
|
+
workspaceId: z.ZodString;
|
|
101169
|
+
exporterId: z.ZodString;
|
|
101170
|
+
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
101171
|
+
}, "strip", z.ZodTypeAny, {
|
|
101172
|
+
id: string;
|
|
101173
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
101174
|
+
workspaceId: string;
|
|
101175
|
+
exporterId: string;
|
|
101176
|
+
}, {
|
|
101177
|
+
id: string;
|
|
101178
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
101179
|
+
workspaceId: string;
|
|
101180
|
+
exporterId: string;
|
|
101181
|
+
}>;
|
|
101182
|
+
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
101183
|
+
type CreateExporterMembership = DbCreateInputOmit<ExporterWorkspaceMembership>;
|
|
101184
|
+
|
|
101185
|
+
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
101186
|
+
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
101187
|
+
|
|
101183
101188
|
declare const PulsarContributionVariant: z.ZodObject<{
|
|
101184
101189
|
key: z.ZodString;
|
|
101185
101190
|
name: z.ZodString;
|
|
@@ -102029,7 +102034,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102029
102034
|
} | null | undefined;
|
|
102030
102035
|
caption?: string | null | undefined;
|
|
102031
102036
|
headingType?: number | null | undefined;
|
|
102032
|
-
codeLanguage?: "
|
|
102037
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
102033
102038
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
102034
102039
|
urlInput?: string | null | undefined;
|
|
102035
102040
|
url?: string | null | undefined;
|
|
@@ -102211,7 +102216,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102211
102216
|
} | null | undefined;
|
|
102212
102217
|
caption?: string | null | undefined;
|
|
102213
102218
|
headingType?: number | null | undefined;
|
|
102214
|
-
codeLanguage?: "
|
|
102219
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
102215
102220
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
102216
102221
|
urlInput?: string | null | undefined;
|
|
102217
102222
|
url?: string | null | undefined;
|
|
@@ -102461,7 +102466,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102461
102466
|
} | null | undefined;
|
|
102462
102467
|
caption?: string | null | undefined;
|
|
102463
102468
|
headingType?: number | null | undefined;
|
|
102464
|
-
codeLanguage?: "
|
|
102469
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
102465
102470
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
102466
102471
|
urlInput?: string | null | undefined;
|
|
102467
102472
|
url?: string | null | undefined;
|
|
@@ -102643,7 +102648,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102643
102648
|
} | null | undefined;
|
|
102644
102649
|
caption?: string | null | undefined;
|
|
102645
102650
|
headingType?: number | null | undefined;
|
|
102646
|
-
codeLanguage?: "
|
|
102651
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
102647
102652
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
102648
102653
|
urlInput?: string | null | undefined;
|
|
102649
102654
|
url?: string | null | undefined;
|
|
@@ -102915,7 +102920,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102915
102920
|
} | null | undefined;
|
|
102916
102921
|
caption?: string | null | undefined;
|
|
102917
102922
|
headingType?: number | null | undefined;
|
|
102918
|
-
codeLanguage?: "
|
|
102923
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
102919
102924
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
102920
102925
|
urlInput?: string | null | undefined;
|
|
102921
102926
|
url?: string | null | undefined;
|
|
@@ -103097,7 +103102,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
103097
103102
|
} | null | undefined;
|
|
103098
103103
|
caption?: string | null | undefined;
|
|
103099
103104
|
headingType?: number | null | undefined;
|
|
103100
|
-
codeLanguage?: "
|
|
103105
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
103101
103106
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
103102
103107
|
urlInput?: string | null | undefined;
|
|
103103
103108
|
url?: string | null | undefined;
|
|
@@ -103823,7 +103828,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
103823
103828
|
} | null | undefined;
|
|
103824
103829
|
caption?: string | null | undefined;
|
|
103825
103830
|
headingType?: number | null | undefined;
|
|
103826
|
-
codeLanguage?: "
|
|
103831
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
103827
103832
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
103828
103833
|
urlInput?: string | null | undefined;
|
|
103829
103834
|
url?: string | null | undefined;
|
|
@@ -104005,7 +104010,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
104005
104010
|
} | null | undefined;
|
|
104006
104011
|
caption?: string | null | undefined;
|
|
104007
104012
|
headingType?: number | null | undefined;
|
|
104008
|
-
codeLanguage?: "
|
|
104013
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
104009
104014
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
104010
104015
|
urlInput?: string | null | undefined;
|
|
104011
104016
|
url?: string | null | undefined;
|
|
@@ -104353,7 +104358,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
104353
104358
|
} | null | undefined;
|
|
104354
104359
|
caption?: string | null | undefined;
|
|
104355
104360
|
headingType?: number | null | undefined;
|
|
104356
|
-
codeLanguage?: "
|
|
104361
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
104357
104362
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
104358
104363
|
urlInput?: string | null | undefined;
|
|
104359
104364
|
url?: string | null | undefined;
|
|
@@ -104535,7 +104540,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
104535
104540
|
} | null | undefined;
|
|
104536
104541
|
caption?: string | null | undefined;
|
|
104537
104542
|
headingType?: number | null | undefined;
|
|
104538
|
-
codeLanguage?: "
|
|
104543
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
104539
104544
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
104540
104545
|
urlInput?: string | null | undefined;
|
|
104541
104546
|
url?: string | null | undefined;
|
|
@@ -104785,7 +104790,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
104785
104790
|
} | null | undefined;
|
|
104786
104791
|
caption?: string | null | undefined;
|
|
104787
104792
|
headingType?: number | null | undefined;
|
|
104788
|
-
codeLanguage?: "
|
|
104793
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
104789
104794
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
104790
104795
|
urlInput?: string | null | undefined;
|
|
104791
104796
|
url?: string | null | undefined;
|
|
@@ -104967,7 +104972,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
104967
104972
|
} | null | undefined;
|
|
104968
104973
|
caption?: string | null | undefined;
|
|
104969
104974
|
headingType?: number | null | undefined;
|
|
104970
|
-
codeLanguage?: "
|
|
104975
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
104971
104976
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
104972
104977
|
urlInput?: string | null | undefined;
|
|
104973
104978
|
url?: string | null | undefined;
|
|
@@ -105239,7 +105244,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
105239
105244
|
} | null | undefined;
|
|
105240
105245
|
caption?: string | null | undefined;
|
|
105241
105246
|
headingType?: number | null | undefined;
|
|
105242
|
-
codeLanguage?: "
|
|
105247
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
105243
105248
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
105244
105249
|
urlInput?: string | null | undefined;
|
|
105245
105250
|
url?: string | null | undefined;
|
|
@@ -105421,7 +105426,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
105421
105426
|
} | null | undefined;
|
|
105422
105427
|
caption?: string | null | undefined;
|
|
105423
105428
|
headingType?: number | null | undefined;
|
|
105424
|
-
codeLanguage?: "
|
|
105429
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
105425
105430
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
105426
105431
|
urlInput?: string | null | undefined;
|
|
105427
105432
|
url?: string | null | undefined;
|
|
@@ -106141,7 +106146,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
106141
106146
|
} | null | undefined;
|
|
106142
106147
|
caption?: string | null | undefined;
|
|
106143
106148
|
headingType?: number | null | undefined;
|
|
106144
|
-
codeLanguage?: "
|
|
106149
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
106145
106150
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
106146
106151
|
urlInput?: string | null | undefined;
|
|
106147
106152
|
url?: string | null | undefined;
|
|
@@ -106323,7 +106328,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
106323
106328
|
} | null | undefined;
|
|
106324
106329
|
caption?: string | null | undefined;
|
|
106325
106330
|
headingType?: number | null | undefined;
|
|
106326
|
-
codeLanguage?: "
|
|
106331
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
106327
106332
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
106328
106333
|
urlInput?: string | null | undefined;
|
|
106329
106334
|
url?: string | null | undefined;
|
|
@@ -107852,7 +107857,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
107852
107857
|
} | null | undefined;
|
|
107853
107858
|
caption?: string | null | undefined;
|
|
107854
107859
|
headingType?: number | null | undefined;
|
|
107855
|
-
codeLanguage?: "
|
|
107860
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
107856
107861
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
107857
107862
|
urlInput?: string | null | undefined;
|
|
107858
107863
|
url?: string | null | undefined;
|
|
@@ -108034,7 +108039,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108034
108039
|
} | null | undefined;
|
|
108035
108040
|
caption?: string | null | undefined;
|
|
108036
108041
|
headingType?: number | null | undefined;
|
|
108037
|
-
codeLanguage?: "
|
|
108042
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
108038
108043
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
108039
108044
|
urlInput?: string | null | undefined;
|
|
108040
108045
|
url?: string | null | undefined;
|
|
@@ -108284,7 +108289,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108284
108289
|
} | null | undefined;
|
|
108285
108290
|
caption?: string | null | undefined;
|
|
108286
108291
|
headingType?: number | null | undefined;
|
|
108287
|
-
codeLanguage?: "
|
|
108292
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
108288
108293
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
108289
108294
|
urlInput?: string | null | undefined;
|
|
108290
108295
|
url?: string | null | undefined;
|
|
@@ -108466,7 +108471,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108466
108471
|
} | null | undefined;
|
|
108467
108472
|
caption?: string | null | undefined;
|
|
108468
108473
|
headingType?: number | null | undefined;
|
|
108469
|
-
codeLanguage?: "
|
|
108474
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
108470
108475
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
108471
108476
|
urlInput?: string | null | undefined;
|
|
108472
108477
|
url?: string | null | undefined;
|
|
@@ -108738,7 +108743,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108738
108743
|
} | null | undefined;
|
|
108739
108744
|
caption?: string | null | undefined;
|
|
108740
108745
|
headingType?: number | null | undefined;
|
|
108741
|
-
codeLanguage?: "
|
|
108746
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
108742
108747
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
108743
108748
|
urlInput?: string | null | undefined;
|
|
108744
108749
|
url?: string | null | undefined;
|
|
@@ -108920,7 +108925,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108920
108925
|
} | null | undefined;
|
|
108921
108926
|
caption?: string | null | undefined;
|
|
108922
108927
|
headingType?: number | null | undefined;
|
|
108923
|
-
codeLanguage?: "
|
|
108928
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
108924
108929
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
108925
108930
|
urlInput?: string | null | undefined;
|
|
108926
108931
|
url?: string | null | undefined;
|
|
@@ -109583,7 +109588,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
109583
109588
|
} | null | undefined;
|
|
109584
109589
|
caption?: string | null | undefined;
|
|
109585
109590
|
headingType?: number | null | undefined;
|
|
109586
|
-
codeLanguage?: "
|
|
109591
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
109587
109592
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
109588
109593
|
urlInput?: string | null | undefined;
|
|
109589
109594
|
url?: string | null | undefined;
|
|
@@ -109765,7 +109770,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
109765
109770
|
} | null | undefined;
|
|
109766
109771
|
caption?: string | null | undefined;
|
|
109767
109772
|
headingType?: number | null | undefined;
|
|
109768
|
-
codeLanguage?: "
|
|
109773
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
109769
109774
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
109770
109775
|
urlInput?: string | null | undefined;
|
|
109771
109776
|
url?: string | null | undefined;
|
|
@@ -110163,7 +110168,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110163
110168
|
} | null | undefined;
|
|
110164
110169
|
caption?: string | null | undefined;
|
|
110165
110170
|
headingType?: number | null | undefined;
|
|
110166
|
-
codeLanguage?: "
|
|
110171
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
110167
110172
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
110168
110173
|
urlInput?: string | null | undefined;
|
|
110169
110174
|
url?: string | null | undefined;
|
|
@@ -110345,7 +110350,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110345
110350
|
} | null | undefined;
|
|
110346
110351
|
caption?: string | null | undefined;
|
|
110347
110352
|
headingType?: number | null | undefined;
|
|
110348
|
-
codeLanguage?: "
|
|
110353
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
110349
110354
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
110350
110355
|
urlInput?: string | null | undefined;
|
|
110351
110356
|
url?: string | null | undefined;
|
|
@@ -110595,7 +110600,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110595
110600
|
} | null | undefined;
|
|
110596
110601
|
caption?: string | null | undefined;
|
|
110597
110602
|
headingType?: number | null | undefined;
|
|
110598
|
-
codeLanguage?: "
|
|
110603
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
110599
110604
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
110600
110605
|
urlInput?: string | null | undefined;
|
|
110601
110606
|
url?: string | null | undefined;
|
|
@@ -110777,7 +110782,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110777
110782
|
} | null | undefined;
|
|
110778
110783
|
caption?: string | null | undefined;
|
|
110779
110784
|
headingType?: number | null | undefined;
|
|
110780
|
-
codeLanguage?: "
|
|
110785
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
110781
110786
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
110782
110787
|
urlInput?: string | null | undefined;
|
|
110783
110788
|
url?: string | null | undefined;
|
|
@@ -111049,7 +111054,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
111049
111054
|
} | null | undefined;
|
|
111050
111055
|
caption?: string | null | undefined;
|
|
111051
111056
|
headingType?: number | null | undefined;
|
|
111052
|
-
codeLanguage?: "
|
|
111057
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
111053
111058
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
111054
111059
|
urlInput?: string | null | undefined;
|
|
111055
111060
|
url?: string | null | undefined;
|
|
@@ -111231,7 +111236,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
111231
111236
|
} | null | undefined;
|
|
111232
111237
|
caption?: string | null | undefined;
|
|
111233
111238
|
headingType?: number | null | undefined;
|
|
111234
|
-
codeLanguage?: "
|
|
111239
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
111235
111240
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
111236
111241
|
urlInput?: string | null | undefined;
|
|
111237
111242
|
url?: string | null | undefined;
|
|
@@ -113193,7 +113198,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113193
113198
|
} | null | undefined;
|
|
113194
113199
|
caption?: string | null | undefined;
|
|
113195
113200
|
headingType?: number | null | undefined;
|
|
113196
|
-
codeLanguage?: "
|
|
113201
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
113197
113202
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
113198
113203
|
urlInput?: string | null | undefined;
|
|
113199
113204
|
url?: string | null | undefined;
|
|
@@ -113375,7 +113380,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113375
113380
|
} | null | undefined;
|
|
113376
113381
|
caption?: string | null | undefined;
|
|
113377
113382
|
headingType?: number | null | undefined;
|
|
113378
|
-
codeLanguage?: "
|
|
113383
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
113379
113384
|
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
113380
113385
|
urlInput?: string | null | undefined;
|
|
113381
113386
|
url?: string | null | undefined;
|
|
@@ -118946,4 +118951,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118946
118951
|
}>;
|
|
118947
118952
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
118948
118953
|
|
|
118949
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, type IntegrationToken, IntegrationTokenResponse, IntegrationTokenSchema, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
118954
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, type IntegrationToken, IntegrationTokenResponse, IntegrationTokenSchema, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|