@wise/dynamic-flow-types 4.7.0 → 4.8.0
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/build/renderers/CallToAction.d.ts +2 -0
- package/build/renderers/MediaRendererProps.d.ts +10 -0
- package/build/renderers/RendererProps.d.ts +4 -2
- package/build/renderers/SearchRendererProps.d.ts +1 -0
- package/build/renderers/UpsellRendererProps.d.ts +13 -0
- package/build/renderers/index.d.ts +2 -0
- package/build/spec/feature/SubflowBehavior.d.ts +2 -1
- package/build/spec/index.d.ts +3 -0
- package/build/spec/layout/AlertLayoutCallToAction.d.ts +5 -0
- package/build/spec/layout/ItemCallToAction.d.ts +5 -0
- package/build/spec/layout/Layout.d.ts +3 -1
- package/build/spec/layout/ListLayoutCallToAction.d.ts +5 -0
- package/build/spec/layout/MediaLayout.d.ts +43 -0
- package/build/spec/layout/ReviewLayoutCallToAction.d.ts +5 -0
- package/build/spec/layout/SearchLayout.d.ts +4 -0
- package/build/spec/layout/SectionLayoutCallToAction.d.ts +5 -0
- package/build/spec/layout/UpsellLayout.d.ts +51 -0
- package/build/spec/layout/UpsellLayoutCallToAction.d.ts +23 -0
- package/build/spec/main.js +54 -14
- package/build/spec/main.mjs +54 -14
- package/build/spec/responses/subflow/SubflowResponseBody.d.ts +2 -1
- package/build/zod/schemas.d.ts +453 -324
- package/build/zod/schemas.ts +52 -7
- package/package.json +1 -1
package/build/zod/schemas.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, SectionLayout, Layout, ItemCallToAction, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, SubflowResponseBody, ModalResponseBody, Step, Schema, Polling, LinkHandler, Toolbar, AllOfSchema, ArraySchema, BlobSchema, BooleanSchema, ConstSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple, PollingOnError, ToolbarItem, ToolbarButton, SubflowBehavior, ModalBehavior } from '../spec';
|
|
2
|
+
import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, UpsellLayoutCallToAction, UpsellLayout, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, SectionLayout, Layout, ItemCallToAction, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, SubflowResponseBody, ModalResponseBody, Step, Schema, Polling, LinkHandler, Toolbar, AllOfSchema, ArraySchema, BlobSchema, BooleanSchema, ConstSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple, PollingOnError, ToolbarItem, ToolbarButton, SubflowBehavior, ModalBehavior } from '../spec';
|
|
3
3
|
export declare const imageSchema: z.ZodObject<{
|
|
4
4
|
text: z.ZodOptional<z.ZodString>;
|
|
5
5
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -209,6 +209,71 @@ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
|
|
|
209
209
|
analyticsId?: string | undefined;
|
|
210
210
|
tags?: string[] | undefined;
|
|
211
211
|
}>;
|
|
212
|
+
export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
|
|
213
|
+
type: z.ZodLiteral<"avatar">;
|
|
214
|
+
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
215
|
+
type: z.ZodLiteral<"text">;
|
|
216
|
+
text: z.ZodString;
|
|
217
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
218
|
+
}, "strip", z.ZodTypeAny, {
|
|
219
|
+
text: string;
|
|
220
|
+
type: "text";
|
|
221
|
+
badgeUri?: string | undefined;
|
|
222
|
+
}, {
|
|
223
|
+
text: string;
|
|
224
|
+
type: "text";
|
|
225
|
+
badgeUri?: string | undefined;
|
|
226
|
+
}>, z.ZodObject<{
|
|
227
|
+
type: z.ZodLiteral<"uri">;
|
|
228
|
+
uri: z.ZodString;
|
|
229
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
uri: string;
|
|
232
|
+
type: "uri";
|
|
233
|
+
badgeUri?: string | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
uri: string;
|
|
236
|
+
type: "uri";
|
|
237
|
+
badgeUri?: string | undefined;
|
|
238
|
+
}>]>, "many">;
|
|
239
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
240
|
+
}, "strip", z.ZodTypeAny, {
|
|
241
|
+
type: "avatar";
|
|
242
|
+
content: ({
|
|
243
|
+
uri: string;
|
|
244
|
+
type: "uri";
|
|
245
|
+
badgeUri?: string | undefined;
|
|
246
|
+
} | {
|
|
247
|
+
text: string;
|
|
248
|
+
type: "text";
|
|
249
|
+
badgeUri?: string | undefined;
|
|
250
|
+
})[];
|
|
251
|
+
accessibilityDescription?: string | undefined;
|
|
252
|
+
}, {
|
|
253
|
+
type: "avatar";
|
|
254
|
+
content: ({
|
|
255
|
+
uri: string;
|
|
256
|
+
type: "uri";
|
|
257
|
+
badgeUri?: string | undefined;
|
|
258
|
+
} | {
|
|
259
|
+
text: string;
|
|
260
|
+
type: "text";
|
|
261
|
+
badgeUri?: string | undefined;
|
|
262
|
+
})[];
|
|
263
|
+
accessibilityDescription?: string | undefined;
|
|
264
|
+
}>, z.ZodObject<{
|
|
265
|
+
type: z.ZodLiteral<"image">;
|
|
266
|
+
uri: z.ZodString;
|
|
267
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
268
|
+
}, "strip", z.ZodTypeAny, {
|
|
269
|
+
uri: string;
|
|
270
|
+
type: "image";
|
|
271
|
+
accessibilityDescription?: string | undefined;
|
|
272
|
+
}, {
|
|
273
|
+
uri: string;
|
|
274
|
+
type: "image";
|
|
275
|
+
accessibilityDescription?: string | undefined;
|
|
276
|
+
}>]>;
|
|
212
277
|
export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
213
278
|
type: z.ZodLiteral<"paragraph">;
|
|
214
279
|
text: z.ZodString;
|
|
@@ -257,6 +322,22 @@ export declare const dividerLayoutSchema: z.ZodObject<{
|
|
|
257
322
|
tags?: string[] | undefined;
|
|
258
323
|
}>;
|
|
259
324
|
export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
|
|
325
|
+
export declare const requestSchema: z.ZodObject<{
|
|
326
|
+
url: z.ZodString;
|
|
327
|
+
method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
328
|
+
body: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
329
|
+
prefetch: z.ZodOptional<z.ZodBoolean>;
|
|
330
|
+
}, "strip", z.ZodTypeAny, {
|
|
331
|
+
url: string;
|
|
332
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
333
|
+
body?: JsonElement | undefined;
|
|
334
|
+
prefetch?: boolean | undefined;
|
|
335
|
+
}, {
|
|
336
|
+
url: string;
|
|
337
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
338
|
+
body?: JsonElement | undefined;
|
|
339
|
+
prefetch?: boolean | undefined;
|
|
340
|
+
}>;
|
|
260
341
|
export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
|
|
261
342
|
$ref: z.ZodString;
|
|
262
343
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -371,28 +452,31 @@ export declare const searchLayoutSchema: z.ZodObject<{
|
|
|
371
452
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
372
453
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
373
454
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
455
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
374
456
|
}, "strip", z.ZodTypeAny, {
|
|
375
457
|
url: string;
|
|
376
458
|
type: "search";
|
|
377
|
-
title: string;
|
|
378
459
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
460
|
+
title: string;
|
|
379
461
|
param: string;
|
|
380
462
|
control?: string | undefined;
|
|
381
463
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
382
464
|
analyticsId?: string | undefined;
|
|
383
465
|
tags?: string[] | undefined;
|
|
384
466
|
emptyMessage?: string | undefined;
|
|
467
|
+
hint?: string | undefined;
|
|
385
468
|
}, {
|
|
386
469
|
url: string;
|
|
387
470
|
type: "search";
|
|
388
|
-
title: string;
|
|
389
471
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
472
|
+
title: string;
|
|
390
473
|
param: string;
|
|
391
474
|
control?: string | undefined;
|
|
392
475
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
393
476
|
analyticsId?: string | undefined;
|
|
394
477
|
tags?: string[] | undefined;
|
|
395
478
|
emptyMessage?: string | undefined;
|
|
479
|
+
hint?: string | undefined;
|
|
396
480
|
}>;
|
|
397
481
|
export declare const infoLayoutSchema: z.ZodObject<{
|
|
398
482
|
type: z.ZodLiteral<"info">;
|
|
@@ -565,6 +649,130 @@ export declare const markdownLayoutSchema: z.ZodObject<{
|
|
|
565
649
|
tags?: string[] | undefined;
|
|
566
650
|
align?: "left" | "right" | "center" | undefined;
|
|
567
651
|
}>;
|
|
652
|
+
export declare const mediaLayoutSchema: z.ZodObject<{
|
|
653
|
+
type: z.ZodLiteral<"media">;
|
|
654
|
+
media: z.ZodUnion<[z.ZodObject<{
|
|
655
|
+
type: z.ZodLiteral<"avatar">;
|
|
656
|
+
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
657
|
+
type: z.ZodLiteral<"text">;
|
|
658
|
+
text: z.ZodString;
|
|
659
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
660
|
+
}, "strip", z.ZodTypeAny, {
|
|
661
|
+
text: string;
|
|
662
|
+
type: "text";
|
|
663
|
+
badgeUri?: string | undefined;
|
|
664
|
+
}, {
|
|
665
|
+
text: string;
|
|
666
|
+
type: "text";
|
|
667
|
+
badgeUri?: string | undefined;
|
|
668
|
+
}>, z.ZodObject<{
|
|
669
|
+
type: z.ZodLiteral<"uri">;
|
|
670
|
+
uri: z.ZodString;
|
|
671
|
+
badgeUri: z.ZodOptional<z.ZodString>;
|
|
672
|
+
}, "strip", z.ZodTypeAny, {
|
|
673
|
+
uri: string;
|
|
674
|
+
type: "uri";
|
|
675
|
+
badgeUri?: string | undefined;
|
|
676
|
+
}, {
|
|
677
|
+
uri: string;
|
|
678
|
+
type: "uri";
|
|
679
|
+
badgeUri?: string | undefined;
|
|
680
|
+
}>]>, "many">;
|
|
681
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
682
|
+
}, "strip", z.ZodTypeAny, {
|
|
683
|
+
type: "avatar";
|
|
684
|
+
content: ({
|
|
685
|
+
uri: string;
|
|
686
|
+
type: "uri";
|
|
687
|
+
badgeUri?: string | undefined;
|
|
688
|
+
} | {
|
|
689
|
+
text: string;
|
|
690
|
+
type: "text";
|
|
691
|
+
badgeUri?: string | undefined;
|
|
692
|
+
})[];
|
|
693
|
+
accessibilityDescription?: string | undefined;
|
|
694
|
+
}, {
|
|
695
|
+
type: "avatar";
|
|
696
|
+
content: ({
|
|
697
|
+
uri: string;
|
|
698
|
+
type: "uri";
|
|
699
|
+
badgeUri?: string | undefined;
|
|
700
|
+
} | {
|
|
701
|
+
text: string;
|
|
702
|
+
type: "text";
|
|
703
|
+
badgeUri?: string | undefined;
|
|
704
|
+
})[];
|
|
705
|
+
accessibilityDescription?: string | undefined;
|
|
706
|
+
}>, z.ZodObject<{
|
|
707
|
+
type: z.ZodLiteral<"image">;
|
|
708
|
+
uri: z.ZodString;
|
|
709
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
710
|
+
}, "strip", z.ZodTypeAny, {
|
|
711
|
+
uri: string;
|
|
712
|
+
type: "image";
|
|
713
|
+
accessibilityDescription?: string | undefined;
|
|
714
|
+
}, {
|
|
715
|
+
uri: string;
|
|
716
|
+
type: "image";
|
|
717
|
+
accessibilityDescription?: string | undefined;
|
|
718
|
+
}>]>;
|
|
719
|
+
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
720
|
+
size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
721
|
+
analyticsId: z.ZodOptional<z.ZodString>;
|
|
722
|
+
control: z.ZodOptional<z.ZodString>;
|
|
723
|
+
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
724
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
725
|
+
}, "strip", z.ZodTypeAny, {
|
|
726
|
+
media: {
|
|
727
|
+
uri: string;
|
|
728
|
+
type: "image";
|
|
729
|
+
accessibilityDescription?: string | undefined;
|
|
730
|
+
} | {
|
|
731
|
+
type: "avatar";
|
|
732
|
+
content: ({
|
|
733
|
+
uri: string;
|
|
734
|
+
type: "uri";
|
|
735
|
+
badgeUri?: string | undefined;
|
|
736
|
+
} | {
|
|
737
|
+
text: string;
|
|
738
|
+
type: "text";
|
|
739
|
+
badgeUri?: string | undefined;
|
|
740
|
+
})[];
|
|
741
|
+
accessibilityDescription?: string | undefined;
|
|
742
|
+
};
|
|
743
|
+
type: "media";
|
|
744
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
745
|
+
control?: string | undefined;
|
|
746
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
747
|
+
analyticsId?: string | undefined;
|
|
748
|
+
tags?: string[] | undefined;
|
|
749
|
+
align?: "left" | "right" | "center" | undefined;
|
|
750
|
+
}, {
|
|
751
|
+
media: {
|
|
752
|
+
uri: string;
|
|
753
|
+
type: "image";
|
|
754
|
+
accessibilityDescription?: string | undefined;
|
|
755
|
+
} | {
|
|
756
|
+
type: "avatar";
|
|
757
|
+
content: ({
|
|
758
|
+
uri: string;
|
|
759
|
+
type: "uri";
|
|
760
|
+
badgeUri?: string | undefined;
|
|
761
|
+
} | {
|
|
762
|
+
text: string;
|
|
763
|
+
type: "text";
|
|
764
|
+
badgeUri?: string | undefined;
|
|
765
|
+
})[];
|
|
766
|
+
accessibilityDescription?: string | undefined;
|
|
767
|
+
};
|
|
768
|
+
type: "media";
|
|
769
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
770
|
+
control?: string | undefined;
|
|
771
|
+
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
772
|
+
analyticsId?: string | undefined;
|
|
773
|
+
tags?: string[] | undefined;
|
|
774
|
+
align?: "left" | "right" | "center" | undefined;
|
|
775
|
+
}>;
|
|
568
776
|
export declare const progressLayoutSchema: z.ZodObject<{
|
|
569
777
|
type: z.ZodLiteral<"progress">;
|
|
570
778
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -613,71 +821,6 @@ export declare const progressLayoutSchema: z.ZodObject<{
|
|
|
613
821
|
} | undefined;
|
|
614
822
|
}>;
|
|
615
823
|
export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
|
|
616
|
-
export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
|
|
617
|
-
type: z.ZodLiteral<"avatar">;
|
|
618
|
-
content: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
619
|
-
type: z.ZodLiteral<"text">;
|
|
620
|
-
text: z.ZodString;
|
|
621
|
-
badgeUri: z.ZodOptional<z.ZodString>;
|
|
622
|
-
}, "strip", z.ZodTypeAny, {
|
|
623
|
-
text: string;
|
|
624
|
-
type: "text";
|
|
625
|
-
badgeUri?: string | undefined;
|
|
626
|
-
}, {
|
|
627
|
-
text: string;
|
|
628
|
-
type: "text";
|
|
629
|
-
badgeUri?: string | undefined;
|
|
630
|
-
}>, z.ZodObject<{
|
|
631
|
-
type: z.ZodLiteral<"uri">;
|
|
632
|
-
uri: z.ZodString;
|
|
633
|
-
badgeUri: z.ZodOptional<z.ZodString>;
|
|
634
|
-
}, "strip", z.ZodTypeAny, {
|
|
635
|
-
uri: string;
|
|
636
|
-
type: "uri";
|
|
637
|
-
badgeUri?: string | undefined;
|
|
638
|
-
}, {
|
|
639
|
-
uri: string;
|
|
640
|
-
type: "uri";
|
|
641
|
-
badgeUri?: string | undefined;
|
|
642
|
-
}>]>, "many">;
|
|
643
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
644
|
-
}, "strip", z.ZodTypeAny, {
|
|
645
|
-
type: "avatar";
|
|
646
|
-
content: ({
|
|
647
|
-
uri: string;
|
|
648
|
-
type: "uri";
|
|
649
|
-
badgeUri?: string | undefined;
|
|
650
|
-
} | {
|
|
651
|
-
text: string;
|
|
652
|
-
type: "text";
|
|
653
|
-
badgeUri?: string | undefined;
|
|
654
|
-
})[];
|
|
655
|
-
accessibilityDescription?: string | undefined;
|
|
656
|
-
}, {
|
|
657
|
-
type: "avatar";
|
|
658
|
-
content: ({
|
|
659
|
-
uri: string;
|
|
660
|
-
type: "uri";
|
|
661
|
-
badgeUri?: string | undefined;
|
|
662
|
-
} | {
|
|
663
|
-
text: string;
|
|
664
|
-
type: "text";
|
|
665
|
-
badgeUri?: string | undefined;
|
|
666
|
-
})[];
|
|
667
|
-
accessibilityDescription?: string | undefined;
|
|
668
|
-
}>, z.ZodObject<{
|
|
669
|
-
type: z.ZodLiteral<"image">;
|
|
670
|
-
uri: z.ZodString;
|
|
671
|
-
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
672
|
-
}, "strip", z.ZodTypeAny, {
|
|
673
|
-
uri: string;
|
|
674
|
-
type: "image";
|
|
675
|
-
accessibilityDescription?: string | undefined;
|
|
676
|
-
}, {
|
|
677
|
-
uri: string;
|
|
678
|
-
type: "image";
|
|
679
|
-
accessibilityDescription?: string | undefined;
|
|
680
|
-
}>]>;
|
|
681
824
|
export declare const searchSearchRequestSchema: z.ZodObject<{
|
|
682
825
|
url: z.ZodString;
|
|
683
826
|
method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
@@ -823,12 +966,6 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
823
966
|
url?: string | undefined;
|
|
824
967
|
accessibilityDescription?: string | undefined;
|
|
825
968
|
} | undefined;
|
|
826
|
-
description?: string | undefined;
|
|
827
|
-
icon?: {
|
|
828
|
-
name: string;
|
|
829
|
-
} | {
|
|
830
|
-
text: string;
|
|
831
|
-
} | undefined;
|
|
832
969
|
media?: {
|
|
833
970
|
uri: string;
|
|
834
971
|
type: "image";
|
|
@@ -846,6 +983,12 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
846
983
|
})[];
|
|
847
984
|
accessibilityDescription?: string | undefined;
|
|
848
985
|
} | undefined;
|
|
986
|
+
description?: string | undefined;
|
|
987
|
+
icon?: {
|
|
988
|
+
name: string;
|
|
989
|
+
} | {
|
|
990
|
+
text: string;
|
|
991
|
+
} | undefined;
|
|
849
992
|
}, {
|
|
850
993
|
value: {
|
|
851
994
|
url: string;
|
|
@@ -861,12 +1004,6 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
861
1004
|
url?: string | undefined;
|
|
862
1005
|
accessibilityDescription?: string | undefined;
|
|
863
1006
|
} | undefined;
|
|
864
|
-
description?: string | undefined;
|
|
865
|
-
icon?: {
|
|
866
|
-
name: string;
|
|
867
|
-
} | {
|
|
868
|
-
text: string;
|
|
869
|
-
} | undefined;
|
|
870
1007
|
media?: {
|
|
871
1008
|
uri: string;
|
|
872
1009
|
type: "image";
|
|
@@ -884,6 +1021,12 @@ export declare const searchResultSearchSchema: z.ZodObject<{
|
|
|
884
1021
|
})[];
|
|
885
1022
|
accessibilityDescription?: string | undefined;
|
|
886
1023
|
} | undefined;
|
|
1024
|
+
description?: string | undefined;
|
|
1025
|
+
icon?: {
|
|
1026
|
+
name: string;
|
|
1027
|
+
} | {
|
|
1028
|
+
text: string;
|
|
1029
|
+
} | undefined;
|
|
887
1030
|
}>;
|
|
888
1031
|
export declare const errorResponseBodySchema: z.ZodObject<{
|
|
889
1032
|
refreshFormUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1239,14 +1382,6 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1239
1382
|
url?: string | undefined;
|
|
1240
1383
|
accessibilityDescription?: string | undefined;
|
|
1241
1384
|
} | undefined;
|
|
1242
|
-
analyticsId?: string | undefined;
|
|
1243
|
-
tags?: string[] | undefined;
|
|
1244
|
-
tag?: string | undefined;
|
|
1245
|
-
icon?: {
|
|
1246
|
-
name: string;
|
|
1247
|
-
} | {
|
|
1248
|
-
text: string;
|
|
1249
|
-
} | undefined;
|
|
1250
1385
|
media?: {
|
|
1251
1386
|
uri: string;
|
|
1252
1387
|
type: "image";
|
|
@@ -1264,6 +1399,14 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1264
1399
|
})[];
|
|
1265
1400
|
accessibilityDescription?: string | undefined;
|
|
1266
1401
|
} | undefined;
|
|
1402
|
+
analyticsId?: string | undefined;
|
|
1403
|
+
tags?: string[] | undefined;
|
|
1404
|
+
tag?: string | undefined;
|
|
1405
|
+
icon?: {
|
|
1406
|
+
name: string;
|
|
1407
|
+
} | {
|
|
1408
|
+
text: string;
|
|
1409
|
+
} | undefined;
|
|
1267
1410
|
}, {
|
|
1268
1411
|
value: JsonElement;
|
|
1269
1412
|
label: string;
|
|
@@ -1273,14 +1416,6 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1273
1416
|
url?: string | undefined;
|
|
1274
1417
|
accessibilityDescription?: string | undefined;
|
|
1275
1418
|
} | undefined;
|
|
1276
|
-
analyticsId?: string | undefined;
|
|
1277
|
-
tags?: string[] | undefined;
|
|
1278
|
-
tag?: string | undefined;
|
|
1279
|
-
icon?: {
|
|
1280
|
-
name: string;
|
|
1281
|
-
} | {
|
|
1282
|
-
text: string;
|
|
1283
|
-
} | undefined;
|
|
1284
1419
|
media?: {
|
|
1285
1420
|
uri: string;
|
|
1286
1421
|
type: "image";
|
|
@@ -1298,6 +1433,14 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1298
1433
|
})[];
|
|
1299
1434
|
accessibilityDescription?: string | undefined;
|
|
1300
1435
|
} | undefined;
|
|
1436
|
+
analyticsId?: string | undefined;
|
|
1437
|
+
tags?: string[] | undefined;
|
|
1438
|
+
tag?: string | undefined;
|
|
1439
|
+
icon?: {
|
|
1440
|
+
name: string;
|
|
1441
|
+
} | {
|
|
1442
|
+
text: string;
|
|
1443
|
+
} | undefined;
|
|
1301
1444
|
}>;
|
|
1302
1445
|
export declare const dismissBehaviorSchema: z.ZodObject<{
|
|
1303
1446
|
type: z.ZodLiteral<"dismiss">;
|
|
@@ -1336,9 +1479,10 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
1336
1479
|
}, "strip", z.ZodTypeAny, {
|
|
1337
1480
|
url?: string | undefined;
|
|
1338
1481
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1482
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1483
|
+
prefetch?: boolean | undefined;
|
|
1339
1484
|
$ref?: string | undefined;
|
|
1340
1485
|
title?: string | undefined;
|
|
1341
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1342
1486
|
disabled?: boolean | undefined;
|
|
1343
1487
|
$id?: string | undefined;
|
|
1344
1488
|
id?: string | undefined;
|
|
@@ -1347,13 +1491,13 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
1347
1491
|
data?: JsonElement | undefined;
|
|
1348
1492
|
timeout?: number | undefined;
|
|
1349
1493
|
skipValidation?: boolean | undefined;
|
|
1350
|
-
prefetch?: boolean | undefined;
|
|
1351
1494
|
}, {
|
|
1352
1495
|
url?: string | undefined;
|
|
1353
1496
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1497
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1498
|
+
prefetch?: boolean | undefined;
|
|
1354
1499
|
$ref?: string | undefined;
|
|
1355
1500
|
title?: string | undefined;
|
|
1356
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1357
1501
|
disabled?: boolean | undefined;
|
|
1358
1502
|
$id?: string | undefined;
|
|
1359
1503
|
id?: string | undefined;
|
|
@@ -1362,7 +1506,6 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
1362
1506
|
data?: JsonElement | undefined;
|
|
1363
1507
|
timeout?: number | undefined;
|
|
1364
1508
|
skipValidation?: boolean | undefined;
|
|
1365
|
-
prefetch?: boolean | undefined;
|
|
1366
1509
|
}>;
|
|
1367
1510
|
export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
1368
1511
|
providesTitle: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1557,22 +1700,6 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1557
1700
|
} | undefined;
|
|
1558
1701
|
providesMedia?: boolean | undefined;
|
|
1559
1702
|
}>]>;
|
|
1560
|
-
export declare const requestSchema: z.ZodObject<{
|
|
1561
|
-
url: z.ZodString;
|
|
1562
|
-
method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
|
|
1563
|
-
body: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
|
|
1564
|
-
prefetch: z.ZodOptional<z.ZodBoolean>;
|
|
1565
|
-
}, "strip", z.ZodTypeAny, {
|
|
1566
|
-
url: string;
|
|
1567
|
-
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
1568
|
-
prefetch?: boolean | undefined;
|
|
1569
|
-
body?: JsonElement | undefined;
|
|
1570
|
-
}, {
|
|
1571
|
-
url: string;
|
|
1572
|
-
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
1573
|
-
prefetch?: boolean | undefined;
|
|
1574
|
-
body?: JsonElement | undefined;
|
|
1575
|
-
}>;
|
|
1576
1703
|
export declare const modalPresentationSchema: z.ZodObject<{
|
|
1577
1704
|
type: z.ZodLiteral<"modal">;
|
|
1578
1705
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1624,9 +1751,10 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1624
1751
|
}, "strip", z.ZodTypeAny, {
|
|
1625
1752
|
url?: string | undefined;
|
|
1626
1753
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1754
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1755
|
+
prefetch?: boolean | undefined;
|
|
1627
1756
|
$ref?: string | undefined;
|
|
1628
1757
|
title?: string | undefined;
|
|
1629
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1630
1758
|
disabled?: boolean | undefined;
|
|
1631
1759
|
$id?: string | undefined;
|
|
1632
1760
|
id?: string | undefined;
|
|
@@ -1635,13 +1763,13 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1635
1763
|
data?: JsonElement | undefined;
|
|
1636
1764
|
timeout?: number | undefined;
|
|
1637
1765
|
skipValidation?: boolean | undefined;
|
|
1638
|
-
prefetch?: boolean | undefined;
|
|
1639
1766
|
}, {
|
|
1640
1767
|
url?: string | undefined;
|
|
1641
1768
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1769
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1770
|
+
prefetch?: boolean | undefined;
|
|
1642
1771
|
$ref?: string | undefined;
|
|
1643
1772
|
title?: string | undefined;
|
|
1644
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1645
1773
|
disabled?: boolean | undefined;
|
|
1646
1774
|
$id?: string | undefined;
|
|
1647
1775
|
id?: string | undefined;
|
|
@@ -1650,15 +1778,15 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1650
1778
|
data?: JsonElement | undefined;
|
|
1651
1779
|
timeout?: number | undefined;
|
|
1652
1780
|
skipValidation?: boolean | undefined;
|
|
1653
|
-
prefetch?: boolean | undefined;
|
|
1654
1781
|
}>;
|
|
1655
1782
|
}, "strip", z.ZodTypeAny, {
|
|
1656
1783
|
action: {
|
|
1657
1784
|
url?: string | undefined;
|
|
1658
1785
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1786
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1787
|
+
prefetch?: boolean | undefined;
|
|
1659
1788
|
$ref?: string | undefined;
|
|
1660
1789
|
title?: string | undefined;
|
|
1661
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1662
1790
|
disabled?: boolean | undefined;
|
|
1663
1791
|
$id?: string | undefined;
|
|
1664
1792
|
id?: string | undefined;
|
|
@@ -1667,16 +1795,16 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1667
1795
|
data?: JsonElement | undefined;
|
|
1668
1796
|
timeout?: number | undefined;
|
|
1669
1797
|
skipValidation?: boolean | undefined;
|
|
1670
|
-
prefetch?: boolean | undefined;
|
|
1671
1798
|
};
|
|
1672
1799
|
title?: string | undefined;
|
|
1673
1800
|
}, {
|
|
1674
1801
|
action: {
|
|
1675
1802
|
url?: string | undefined;
|
|
1676
1803
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1804
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1805
|
+
prefetch?: boolean | undefined;
|
|
1677
1806
|
$ref?: string | undefined;
|
|
1678
1807
|
title?: string | undefined;
|
|
1679
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1680
1808
|
disabled?: boolean | undefined;
|
|
1681
1809
|
$id?: string | undefined;
|
|
1682
1810
|
id?: string | undefined;
|
|
@@ -1685,7 +1813,6 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1685
1813
|
data?: JsonElement | undefined;
|
|
1686
1814
|
timeout?: number | undefined;
|
|
1687
1815
|
skipValidation?: boolean | undefined;
|
|
1688
|
-
prefetch?: boolean | undefined;
|
|
1689
1816
|
};
|
|
1690
1817
|
title?: string | undefined;
|
|
1691
1818
|
}>;
|
|
@@ -1716,9 +1843,10 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1716
1843
|
}, "strip", z.ZodTypeAny, {
|
|
1717
1844
|
url?: string | undefined;
|
|
1718
1845
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1846
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1847
|
+
prefetch?: boolean | undefined;
|
|
1719
1848
|
$ref?: string | undefined;
|
|
1720
1849
|
title?: string | undefined;
|
|
1721
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1722
1850
|
disabled?: boolean | undefined;
|
|
1723
1851
|
$id?: string | undefined;
|
|
1724
1852
|
id?: string | undefined;
|
|
@@ -1727,13 +1855,13 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1727
1855
|
data?: JsonElement | undefined;
|
|
1728
1856
|
timeout?: number | undefined;
|
|
1729
1857
|
skipValidation?: boolean | undefined;
|
|
1730
|
-
prefetch?: boolean | undefined;
|
|
1731
1858
|
}, {
|
|
1732
1859
|
url?: string | undefined;
|
|
1733
1860
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1861
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1862
|
+
prefetch?: boolean | undefined;
|
|
1734
1863
|
$ref?: string | undefined;
|
|
1735
1864
|
title?: string | undefined;
|
|
1736
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1737
1865
|
disabled?: boolean | undefined;
|
|
1738
1866
|
$id?: string | undefined;
|
|
1739
1867
|
id?: string | undefined;
|
|
@@ -1742,15 +1870,15 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1742
1870
|
data?: JsonElement | undefined;
|
|
1743
1871
|
timeout?: number | undefined;
|
|
1744
1872
|
skipValidation?: boolean | undefined;
|
|
1745
|
-
prefetch?: boolean | undefined;
|
|
1746
1873
|
}>;
|
|
1747
1874
|
}, "strip", z.ZodTypeAny, {
|
|
1748
1875
|
action: {
|
|
1749
1876
|
url?: string | undefined;
|
|
1750
1877
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1878
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1879
|
+
prefetch?: boolean | undefined;
|
|
1751
1880
|
$ref?: string | undefined;
|
|
1752
1881
|
title?: string | undefined;
|
|
1753
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1754
1882
|
disabled?: boolean | undefined;
|
|
1755
1883
|
$id?: string | undefined;
|
|
1756
1884
|
id?: string | undefined;
|
|
@@ -1759,16 +1887,16 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1759
1887
|
data?: JsonElement | undefined;
|
|
1760
1888
|
timeout?: number | undefined;
|
|
1761
1889
|
skipValidation?: boolean | undefined;
|
|
1762
|
-
prefetch?: boolean | undefined;
|
|
1763
1890
|
};
|
|
1764
1891
|
type: "action";
|
|
1765
1892
|
}, {
|
|
1766
1893
|
action: {
|
|
1767
1894
|
url?: string | undefined;
|
|
1768
1895
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1896
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1897
|
+
prefetch?: boolean | undefined;
|
|
1769
1898
|
$ref?: string | undefined;
|
|
1770
1899
|
title?: string | undefined;
|
|
1771
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1772
1900
|
disabled?: boolean | undefined;
|
|
1773
1901
|
$id?: string | undefined;
|
|
1774
1902
|
id?: string | undefined;
|
|
@@ -1777,7 +1905,6 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1777
1905
|
data?: JsonElement | undefined;
|
|
1778
1906
|
timeout?: number | undefined;
|
|
1779
1907
|
skipValidation?: boolean | undefined;
|
|
1780
|
-
prefetch?: boolean | undefined;
|
|
1781
1908
|
};
|
|
1782
1909
|
type: "action";
|
|
1783
1910
|
}>;
|
|
@@ -1800,9 +1927,10 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1800
1927
|
}, "strip", z.ZodTypeAny, {
|
|
1801
1928
|
url?: string | undefined;
|
|
1802
1929
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1930
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1931
|
+
prefetch?: boolean | undefined;
|
|
1803
1932
|
$ref?: string | undefined;
|
|
1804
1933
|
title?: string | undefined;
|
|
1805
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1806
1934
|
disabled?: boolean | undefined;
|
|
1807
1935
|
$id?: string | undefined;
|
|
1808
1936
|
id?: string | undefined;
|
|
@@ -1811,13 +1939,13 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1811
1939
|
data?: JsonElement | undefined;
|
|
1812
1940
|
timeout?: number | undefined;
|
|
1813
1941
|
skipValidation?: boolean | undefined;
|
|
1814
|
-
prefetch?: boolean | undefined;
|
|
1815
1942
|
}, {
|
|
1816
1943
|
url?: string | undefined;
|
|
1817
1944
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1945
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1946
|
+
prefetch?: boolean | undefined;
|
|
1818
1947
|
$ref?: string | undefined;
|
|
1819
1948
|
title?: string | undefined;
|
|
1820
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1821
1949
|
disabled?: boolean | undefined;
|
|
1822
1950
|
$id?: string | undefined;
|
|
1823
1951
|
id?: string | undefined;
|
|
@@ -1826,7 +1954,6 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1826
1954
|
data?: JsonElement | undefined;
|
|
1827
1955
|
timeout?: number | undefined;
|
|
1828
1956
|
skipValidation?: boolean | undefined;
|
|
1829
|
-
prefetch?: boolean | undefined;
|
|
1830
1957
|
}>>;
|
|
1831
1958
|
link: z.ZodOptional<z.ZodObject<{
|
|
1832
1959
|
url: z.ZodString;
|
|
@@ -1842,9 +1969,10 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1842
1969
|
action?: {
|
|
1843
1970
|
url?: string | undefined;
|
|
1844
1971
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1972
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1973
|
+
prefetch?: boolean | undefined;
|
|
1845
1974
|
$ref?: string | undefined;
|
|
1846
1975
|
title?: string | undefined;
|
|
1847
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1848
1976
|
disabled?: boolean | undefined;
|
|
1849
1977
|
$id?: string | undefined;
|
|
1850
1978
|
id?: string | undefined;
|
|
@@ -1853,7 +1981,6 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1853
1981
|
data?: JsonElement | undefined;
|
|
1854
1982
|
timeout?: number | undefined;
|
|
1855
1983
|
skipValidation?: boolean | undefined;
|
|
1856
|
-
prefetch?: boolean | undefined;
|
|
1857
1984
|
} | undefined;
|
|
1858
1985
|
}, {
|
|
1859
1986
|
link?: {
|
|
@@ -1862,9 +1989,10 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1862
1989
|
action?: {
|
|
1863
1990
|
url?: string | undefined;
|
|
1864
1991
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
1992
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1993
|
+
prefetch?: boolean | undefined;
|
|
1865
1994
|
$ref?: string | undefined;
|
|
1866
1995
|
title?: string | undefined;
|
|
1867
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
1868
1996
|
disabled?: boolean | undefined;
|
|
1869
1997
|
$id?: string | undefined;
|
|
1870
1998
|
id?: string | undefined;
|
|
@@ -1873,7 +2001,6 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1873
2001
|
data?: JsonElement | undefined;
|
|
1874
2002
|
timeout?: number | undefined;
|
|
1875
2003
|
skipValidation?: boolean | undefined;
|
|
1876
|
-
prefetch?: boolean | undefined;
|
|
1877
2004
|
} | undefined;
|
|
1878
2005
|
}>;
|
|
1879
2006
|
export declare const suggestionsSchema: z.ZodObject<{
|
|
@@ -1986,14 +2113,6 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
1986
2113
|
url?: string | undefined;
|
|
1987
2114
|
accessibilityDescription?: string | undefined;
|
|
1988
2115
|
} | undefined;
|
|
1989
|
-
analyticsId?: string | undefined;
|
|
1990
|
-
tags?: string[] | undefined;
|
|
1991
|
-
tag?: string | undefined;
|
|
1992
|
-
icon?: {
|
|
1993
|
-
name: string;
|
|
1994
|
-
} | {
|
|
1995
|
-
text: string;
|
|
1996
|
-
} | undefined;
|
|
1997
2116
|
media?: {
|
|
1998
2117
|
uri: string;
|
|
1999
2118
|
type: "image";
|
|
@@ -2011,6 +2130,14 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2011
2130
|
})[];
|
|
2012
2131
|
accessibilityDescription?: string | undefined;
|
|
2013
2132
|
} | undefined;
|
|
2133
|
+
analyticsId?: string | undefined;
|
|
2134
|
+
tags?: string[] | undefined;
|
|
2135
|
+
tag?: string | undefined;
|
|
2136
|
+
icon?: {
|
|
2137
|
+
name: string;
|
|
2138
|
+
} | {
|
|
2139
|
+
text: string;
|
|
2140
|
+
} | undefined;
|
|
2014
2141
|
}, {
|
|
2015
2142
|
value: JsonElement;
|
|
2016
2143
|
label: string;
|
|
@@ -2020,14 +2147,6 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2020
2147
|
url?: string | undefined;
|
|
2021
2148
|
accessibilityDescription?: string | undefined;
|
|
2022
2149
|
} | undefined;
|
|
2023
|
-
analyticsId?: string | undefined;
|
|
2024
|
-
tags?: string[] | undefined;
|
|
2025
|
-
tag?: string | undefined;
|
|
2026
|
-
icon?: {
|
|
2027
|
-
name: string;
|
|
2028
|
-
} | {
|
|
2029
|
-
text: string;
|
|
2030
|
-
} | undefined;
|
|
2031
2150
|
media?: {
|
|
2032
2151
|
uri: string;
|
|
2033
2152
|
type: "image";
|
|
@@ -2045,6 +2164,14 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2045
2164
|
})[];
|
|
2046
2165
|
accessibilityDescription?: string | undefined;
|
|
2047
2166
|
} | undefined;
|
|
2167
|
+
analyticsId?: string | undefined;
|
|
2168
|
+
tags?: string[] | undefined;
|
|
2169
|
+
tag?: string | undefined;
|
|
2170
|
+
icon?: {
|
|
2171
|
+
name: string;
|
|
2172
|
+
} | {
|
|
2173
|
+
text: string;
|
|
2174
|
+
} | undefined;
|
|
2048
2175
|
}>, "many">;
|
|
2049
2176
|
}, "strip", z.ZodTypeAny, {
|
|
2050
2177
|
values: {
|
|
@@ -2056,14 +2183,6 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2056
2183
|
url?: string | undefined;
|
|
2057
2184
|
accessibilityDescription?: string | undefined;
|
|
2058
2185
|
} | undefined;
|
|
2059
|
-
analyticsId?: string | undefined;
|
|
2060
|
-
tags?: string[] | undefined;
|
|
2061
|
-
tag?: string | undefined;
|
|
2062
|
-
icon?: {
|
|
2063
|
-
name: string;
|
|
2064
|
-
} | {
|
|
2065
|
-
text: string;
|
|
2066
|
-
} | undefined;
|
|
2067
2186
|
media?: {
|
|
2068
2187
|
uri: string;
|
|
2069
2188
|
type: "image";
|
|
@@ -2081,6 +2200,14 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2081
2200
|
})[];
|
|
2082
2201
|
accessibilityDescription?: string | undefined;
|
|
2083
2202
|
} | undefined;
|
|
2203
|
+
analyticsId?: string | undefined;
|
|
2204
|
+
tags?: string[] | undefined;
|
|
2205
|
+
tag?: string | undefined;
|
|
2206
|
+
icon?: {
|
|
2207
|
+
name: string;
|
|
2208
|
+
} | {
|
|
2209
|
+
text: string;
|
|
2210
|
+
} | undefined;
|
|
2084
2211
|
}[];
|
|
2085
2212
|
}, {
|
|
2086
2213
|
values: {
|
|
@@ -2092,14 +2219,6 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2092
2219
|
url?: string | undefined;
|
|
2093
2220
|
accessibilityDescription?: string | undefined;
|
|
2094
2221
|
} | undefined;
|
|
2095
|
-
analyticsId?: string | undefined;
|
|
2096
|
-
tags?: string[] | undefined;
|
|
2097
|
-
tag?: string | undefined;
|
|
2098
|
-
icon?: {
|
|
2099
|
-
name: string;
|
|
2100
|
-
} | {
|
|
2101
|
-
text: string;
|
|
2102
|
-
} | undefined;
|
|
2103
2222
|
media?: {
|
|
2104
2223
|
uri: string;
|
|
2105
2224
|
type: "image";
|
|
@@ -2117,6 +2236,14 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
2117
2236
|
})[];
|
|
2118
2237
|
accessibilityDescription?: string | undefined;
|
|
2119
2238
|
} | undefined;
|
|
2239
|
+
analyticsId?: string | undefined;
|
|
2240
|
+
tags?: string[] | undefined;
|
|
2241
|
+
tag?: string | undefined;
|
|
2242
|
+
icon?: {
|
|
2243
|
+
name: string;
|
|
2244
|
+
} | {
|
|
2245
|
+
text: string;
|
|
2246
|
+
} | undefined;
|
|
2120
2247
|
}[];
|
|
2121
2248
|
}>;
|
|
2122
2249
|
export declare const searchResultActionSchema: z.ZodObject<{
|
|
@@ -2170,9 +2297,10 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2170
2297
|
}, "strip", z.ZodTypeAny, {
|
|
2171
2298
|
url?: string | undefined;
|
|
2172
2299
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2300
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2301
|
+
prefetch?: boolean | undefined;
|
|
2173
2302
|
$ref?: string | undefined;
|
|
2174
2303
|
title?: string | undefined;
|
|
2175
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2176
2304
|
disabled?: boolean | undefined;
|
|
2177
2305
|
$id?: string | undefined;
|
|
2178
2306
|
id?: string | undefined;
|
|
@@ -2181,13 +2309,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2181
2309
|
data?: JsonElement | undefined;
|
|
2182
2310
|
timeout?: number | undefined;
|
|
2183
2311
|
skipValidation?: boolean | undefined;
|
|
2184
|
-
prefetch?: boolean | undefined;
|
|
2185
2312
|
}, {
|
|
2186
2313
|
url?: string | undefined;
|
|
2187
2314
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2315
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2316
|
+
prefetch?: boolean | undefined;
|
|
2188
2317
|
$ref?: string | undefined;
|
|
2189
2318
|
title?: string | undefined;
|
|
2190
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2191
2319
|
disabled?: boolean | undefined;
|
|
2192
2320
|
$id?: string | undefined;
|
|
2193
2321
|
id?: string | undefined;
|
|
@@ -2196,7 +2324,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2196
2324
|
data?: JsonElement | undefined;
|
|
2197
2325
|
timeout?: number | undefined;
|
|
2198
2326
|
skipValidation?: boolean | undefined;
|
|
2199
|
-
prefetch?: boolean | undefined;
|
|
2200
2327
|
}>;
|
|
2201
2328
|
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2202
2329
|
type: z.ZodLiteral<"avatar">;
|
|
@@ -2267,9 +2394,10 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2267
2394
|
value: {
|
|
2268
2395
|
url?: string | undefined;
|
|
2269
2396
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2397
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2398
|
+
prefetch?: boolean | undefined;
|
|
2270
2399
|
$ref?: string | undefined;
|
|
2271
2400
|
title?: string | undefined;
|
|
2272
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2273
2401
|
disabled?: boolean | undefined;
|
|
2274
2402
|
$id?: string | undefined;
|
|
2275
2403
|
id?: string | undefined;
|
|
@@ -2278,7 +2406,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2278
2406
|
data?: JsonElement | undefined;
|
|
2279
2407
|
timeout?: number | undefined;
|
|
2280
2408
|
skipValidation?: boolean | undefined;
|
|
2281
|
-
prefetch?: boolean | undefined;
|
|
2282
2409
|
};
|
|
2283
2410
|
type: "action";
|
|
2284
2411
|
title: string;
|
|
@@ -2288,12 +2415,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2288
2415
|
url?: string | undefined;
|
|
2289
2416
|
accessibilityDescription?: string | undefined;
|
|
2290
2417
|
} | undefined;
|
|
2291
|
-
description?: string | undefined;
|
|
2292
|
-
icon?: {
|
|
2293
|
-
name: string;
|
|
2294
|
-
} | {
|
|
2295
|
-
text: string;
|
|
2296
|
-
} | undefined;
|
|
2297
2418
|
media?: {
|
|
2298
2419
|
uri: string;
|
|
2299
2420
|
type: "image";
|
|
@@ -2311,13 +2432,20 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2311
2432
|
})[];
|
|
2312
2433
|
accessibilityDescription?: string | undefined;
|
|
2313
2434
|
} | undefined;
|
|
2435
|
+
description?: string | undefined;
|
|
2436
|
+
icon?: {
|
|
2437
|
+
name: string;
|
|
2438
|
+
} | {
|
|
2439
|
+
text: string;
|
|
2440
|
+
} | undefined;
|
|
2314
2441
|
}, {
|
|
2315
2442
|
value: {
|
|
2316
2443
|
url?: string | undefined;
|
|
2317
2444
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2445
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2446
|
+
prefetch?: boolean | undefined;
|
|
2318
2447
|
$ref?: string | undefined;
|
|
2319
2448
|
title?: string | undefined;
|
|
2320
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2321
2449
|
disabled?: boolean | undefined;
|
|
2322
2450
|
$id?: string | undefined;
|
|
2323
2451
|
id?: string | undefined;
|
|
@@ -2326,7 +2454,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2326
2454
|
data?: JsonElement | undefined;
|
|
2327
2455
|
timeout?: number | undefined;
|
|
2328
2456
|
skipValidation?: boolean | undefined;
|
|
2329
|
-
prefetch?: boolean | undefined;
|
|
2330
2457
|
};
|
|
2331
2458
|
type: "action";
|
|
2332
2459
|
title: string;
|
|
@@ -2336,12 +2463,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2336
2463
|
url?: string | undefined;
|
|
2337
2464
|
accessibilityDescription?: string | undefined;
|
|
2338
2465
|
} | undefined;
|
|
2339
|
-
description?: string | undefined;
|
|
2340
|
-
icon?: {
|
|
2341
|
-
name: string;
|
|
2342
|
-
} | {
|
|
2343
|
-
text: string;
|
|
2344
|
-
} | undefined;
|
|
2345
2466
|
media?: {
|
|
2346
2467
|
uri: string;
|
|
2347
2468
|
type: "image";
|
|
@@ -2359,6 +2480,12 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2359
2480
|
})[];
|
|
2360
2481
|
accessibilityDescription?: string | undefined;
|
|
2361
2482
|
} | undefined;
|
|
2483
|
+
description?: string | undefined;
|
|
2484
|
+
icon?: {
|
|
2485
|
+
name: string;
|
|
2486
|
+
} | {
|
|
2487
|
+
text: string;
|
|
2488
|
+
} | undefined;
|
|
2362
2489
|
}>;
|
|
2363
2490
|
export declare const actionResponseBodySchema: z.ZodObject<{
|
|
2364
2491
|
action: z.ZodObject<{
|
|
@@ -2379,9 +2506,10 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2379
2506
|
}, "strip", z.ZodTypeAny, {
|
|
2380
2507
|
url?: string | undefined;
|
|
2381
2508
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2509
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2510
|
+
prefetch?: boolean | undefined;
|
|
2382
2511
|
$ref?: string | undefined;
|
|
2383
2512
|
title?: string | undefined;
|
|
2384
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2385
2513
|
disabled?: boolean | undefined;
|
|
2386
2514
|
$id?: string | undefined;
|
|
2387
2515
|
id?: string | undefined;
|
|
@@ -2390,13 +2518,13 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2390
2518
|
data?: JsonElement | undefined;
|
|
2391
2519
|
timeout?: number | undefined;
|
|
2392
2520
|
skipValidation?: boolean | undefined;
|
|
2393
|
-
prefetch?: boolean | undefined;
|
|
2394
2521
|
}, {
|
|
2395
2522
|
url?: string | undefined;
|
|
2396
2523
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2524
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2525
|
+
prefetch?: boolean | undefined;
|
|
2397
2526
|
$ref?: string | undefined;
|
|
2398
2527
|
title?: string | undefined;
|
|
2399
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2400
2528
|
disabled?: boolean | undefined;
|
|
2401
2529
|
$id?: string | undefined;
|
|
2402
2530
|
id?: string | undefined;
|
|
@@ -2405,15 +2533,15 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2405
2533
|
data?: JsonElement | undefined;
|
|
2406
2534
|
timeout?: number | undefined;
|
|
2407
2535
|
skipValidation?: boolean | undefined;
|
|
2408
|
-
prefetch?: boolean | undefined;
|
|
2409
2536
|
}>;
|
|
2410
2537
|
}, "strip", z.ZodTypeAny, {
|
|
2411
2538
|
action: {
|
|
2412
2539
|
url?: string | undefined;
|
|
2413
2540
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2541
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2542
|
+
prefetch?: boolean | undefined;
|
|
2414
2543
|
$ref?: string | undefined;
|
|
2415
2544
|
title?: string | undefined;
|
|
2416
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2417
2545
|
disabled?: boolean | undefined;
|
|
2418
2546
|
$id?: string | undefined;
|
|
2419
2547
|
id?: string | undefined;
|
|
@@ -2422,15 +2550,15 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2422
2550
|
data?: JsonElement | undefined;
|
|
2423
2551
|
timeout?: number | undefined;
|
|
2424
2552
|
skipValidation?: boolean | undefined;
|
|
2425
|
-
prefetch?: boolean | undefined;
|
|
2426
2553
|
};
|
|
2427
2554
|
}, {
|
|
2428
2555
|
action: {
|
|
2429
2556
|
url?: string | undefined;
|
|
2430
2557
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2558
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2559
|
+
prefetch?: boolean | undefined;
|
|
2431
2560
|
$ref?: string | undefined;
|
|
2432
2561
|
title?: string | undefined;
|
|
2433
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2434
2562
|
disabled?: boolean | undefined;
|
|
2435
2563
|
$id?: string | undefined;
|
|
2436
2564
|
id?: string | undefined;
|
|
@@ -2439,7 +2567,6 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2439
2567
|
data?: JsonElement | undefined;
|
|
2440
2568
|
timeout?: number | undefined;
|
|
2441
2569
|
skipValidation?: boolean | undefined;
|
|
2442
|
-
prefetch?: boolean | undefined;
|
|
2443
2570
|
};
|
|
2444
2571
|
}>;
|
|
2445
2572
|
export declare const navigationSchema: z.ZodObject<{
|
|
@@ -2463,9 +2590,10 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2463
2590
|
}, "strip", z.ZodTypeAny, {
|
|
2464
2591
|
url?: string | undefined;
|
|
2465
2592
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2593
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2594
|
+
prefetch?: boolean | undefined;
|
|
2466
2595
|
$ref?: string | undefined;
|
|
2467
2596
|
title?: string | undefined;
|
|
2468
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2469
2597
|
disabled?: boolean | undefined;
|
|
2470
2598
|
$id?: string | undefined;
|
|
2471
2599
|
id?: string | undefined;
|
|
@@ -2474,13 +2602,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2474
2602
|
data?: JsonElement | undefined;
|
|
2475
2603
|
timeout?: number | undefined;
|
|
2476
2604
|
skipValidation?: boolean | undefined;
|
|
2477
|
-
prefetch?: boolean | undefined;
|
|
2478
2605
|
}, {
|
|
2479
2606
|
url?: string | undefined;
|
|
2480
2607
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2608
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2609
|
+
prefetch?: boolean | undefined;
|
|
2481
2610
|
$ref?: string | undefined;
|
|
2482
2611
|
title?: string | undefined;
|
|
2483
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2484
2612
|
disabled?: boolean | undefined;
|
|
2485
2613
|
$id?: string | undefined;
|
|
2486
2614
|
id?: string | undefined;
|
|
@@ -2489,15 +2617,15 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2489
2617
|
data?: JsonElement | undefined;
|
|
2490
2618
|
timeout?: number | undefined;
|
|
2491
2619
|
skipValidation?: boolean | undefined;
|
|
2492
|
-
prefetch?: boolean | undefined;
|
|
2493
2620
|
}>;
|
|
2494
2621
|
}, "strip", z.ZodTypeAny, {
|
|
2495
2622
|
action: {
|
|
2496
2623
|
url?: string | undefined;
|
|
2497
2624
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2625
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2626
|
+
prefetch?: boolean | undefined;
|
|
2498
2627
|
$ref?: string | undefined;
|
|
2499
2628
|
title?: string | undefined;
|
|
2500
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2501
2629
|
disabled?: boolean | undefined;
|
|
2502
2630
|
$id?: string | undefined;
|
|
2503
2631
|
id?: string | undefined;
|
|
@@ -2506,16 +2634,16 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2506
2634
|
data?: JsonElement | undefined;
|
|
2507
2635
|
timeout?: number | undefined;
|
|
2508
2636
|
skipValidation?: boolean | undefined;
|
|
2509
|
-
prefetch?: boolean | undefined;
|
|
2510
2637
|
};
|
|
2511
2638
|
title?: string | undefined;
|
|
2512
2639
|
}, {
|
|
2513
2640
|
action: {
|
|
2514
2641
|
url?: string | undefined;
|
|
2515
2642
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2643
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2644
|
+
prefetch?: boolean | undefined;
|
|
2516
2645
|
$ref?: string | undefined;
|
|
2517
2646
|
title?: string | undefined;
|
|
2518
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2519
2647
|
disabled?: boolean | undefined;
|
|
2520
2648
|
$id?: string | undefined;
|
|
2521
2649
|
id?: string | undefined;
|
|
@@ -2524,7 +2652,6 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2524
2652
|
data?: JsonElement | undefined;
|
|
2525
2653
|
timeout?: number | undefined;
|
|
2526
2654
|
skipValidation?: boolean | undefined;
|
|
2527
|
-
prefetch?: boolean | undefined;
|
|
2528
2655
|
};
|
|
2529
2656
|
title?: string | undefined;
|
|
2530
2657
|
}>>;
|
|
@@ -2548,9 +2675,10 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2548
2675
|
}, "strip", z.ZodTypeAny, {
|
|
2549
2676
|
url?: string | undefined;
|
|
2550
2677
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2678
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2679
|
+
prefetch?: boolean | undefined;
|
|
2551
2680
|
$ref?: string | undefined;
|
|
2552
2681
|
title?: string | undefined;
|
|
2553
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2554
2682
|
disabled?: boolean | undefined;
|
|
2555
2683
|
$id?: string | undefined;
|
|
2556
2684
|
id?: string | undefined;
|
|
@@ -2559,13 +2687,13 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2559
2687
|
data?: JsonElement | undefined;
|
|
2560
2688
|
timeout?: number | undefined;
|
|
2561
2689
|
skipValidation?: boolean | undefined;
|
|
2562
|
-
prefetch?: boolean | undefined;
|
|
2563
2690
|
}, {
|
|
2564
2691
|
url?: string | undefined;
|
|
2565
2692
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2693
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2694
|
+
prefetch?: boolean | undefined;
|
|
2566
2695
|
$ref?: string | undefined;
|
|
2567
2696
|
title?: string | undefined;
|
|
2568
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2569
2697
|
disabled?: boolean | undefined;
|
|
2570
2698
|
$id?: string | undefined;
|
|
2571
2699
|
id?: string | undefined;
|
|
@@ -2574,15 +2702,15 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2574
2702
|
data?: JsonElement | undefined;
|
|
2575
2703
|
timeout?: number | undefined;
|
|
2576
2704
|
skipValidation?: boolean | undefined;
|
|
2577
|
-
prefetch?: boolean | undefined;
|
|
2578
2705
|
}>;
|
|
2579
2706
|
}, "strip", z.ZodTypeAny, {
|
|
2580
2707
|
action: {
|
|
2581
2708
|
url?: string | undefined;
|
|
2582
2709
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2710
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2711
|
+
prefetch?: boolean | undefined;
|
|
2583
2712
|
$ref?: string | undefined;
|
|
2584
2713
|
title?: string | undefined;
|
|
2585
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2586
2714
|
disabled?: boolean | undefined;
|
|
2587
2715
|
$id?: string | undefined;
|
|
2588
2716
|
id?: string | undefined;
|
|
@@ -2591,16 +2719,16 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2591
2719
|
data?: JsonElement | undefined;
|
|
2592
2720
|
timeout?: number | undefined;
|
|
2593
2721
|
skipValidation?: boolean | undefined;
|
|
2594
|
-
prefetch?: boolean | undefined;
|
|
2595
2722
|
};
|
|
2596
2723
|
title?: string | undefined;
|
|
2597
2724
|
}, {
|
|
2598
2725
|
action: {
|
|
2599
2726
|
url?: string | undefined;
|
|
2600
2727
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2728
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2729
|
+
prefetch?: boolean | undefined;
|
|
2601
2730
|
$ref?: string | undefined;
|
|
2602
2731
|
title?: string | undefined;
|
|
2603
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2604
2732
|
disabled?: boolean | undefined;
|
|
2605
2733
|
$id?: string | undefined;
|
|
2606
2734
|
id?: string | undefined;
|
|
@@ -2609,7 +2737,6 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2609
2737
|
data?: JsonElement | undefined;
|
|
2610
2738
|
timeout?: number | undefined;
|
|
2611
2739
|
skipValidation?: boolean | undefined;
|
|
2612
|
-
prefetch?: boolean | undefined;
|
|
2613
2740
|
};
|
|
2614
2741
|
title?: string | undefined;
|
|
2615
2742
|
}>>;
|
|
@@ -2619,9 +2746,10 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2619
2746
|
action: {
|
|
2620
2747
|
url?: string | undefined;
|
|
2621
2748
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2749
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2750
|
+
prefetch?: boolean | undefined;
|
|
2622
2751
|
$ref?: string | undefined;
|
|
2623
2752
|
title?: string | undefined;
|
|
2624
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2625
2753
|
disabled?: boolean | undefined;
|
|
2626
2754
|
$id?: string | undefined;
|
|
2627
2755
|
id?: string | undefined;
|
|
@@ -2630,7 +2758,6 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2630
2758
|
data?: JsonElement | undefined;
|
|
2631
2759
|
timeout?: number | undefined;
|
|
2632
2760
|
skipValidation?: boolean | undefined;
|
|
2633
|
-
prefetch?: boolean | undefined;
|
|
2634
2761
|
};
|
|
2635
2762
|
title?: string | undefined;
|
|
2636
2763
|
} | undefined;
|
|
@@ -2638,9 +2765,10 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2638
2765
|
action: {
|
|
2639
2766
|
url?: string | undefined;
|
|
2640
2767
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2768
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2769
|
+
prefetch?: boolean | undefined;
|
|
2641
2770
|
$ref?: string | undefined;
|
|
2642
2771
|
title?: string | undefined;
|
|
2643
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2644
2772
|
disabled?: boolean | undefined;
|
|
2645
2773
|
$id?: string | undefined;
|
|
2646
2774
|
id?: string | undefined;
|
|
@@ -2649,7 +2777,6 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2649
2777
|
data?: JsonElement | undefined;
|
|
2650
2778
|
timeout?: number | undefined;
|
|
2651
2779
|
skipValidation?: boolean | undefined;
|
|
2652
|
-
prefetch?: boolean | undefined;
|
|
2653
2780
|
};
|
|
2654
2781
|
title?: string | undefined;
|
|
2655
2782
|
} | undefined;
|
|
@@ -2659,9 +2786,10 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2659
2786
|
action: {
|
|
2660
2787
|
url?: string | undefined;
|
|
2661
2788
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2789
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2790
|
+
prefetch?: boolean | undefined;
|
|
2662
2791
|
$ref?: string | undefined;
|
|
2663
2792
|
title?: string | undefined;
|
|
2664
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2665
2793
|
disabled?: boolean | undefined;
|
|
2666
2794
|
$id?: string | undefined;
|
|
2667
2795
|
id?: string | undefined;
|
|
@@ -2670,7 +2798,6 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2670
2798
|
data?: JsonElement | undefined;
|
|
2671
2799
|
timeout?: number | undefined;
|
|
2672
2800
|
skipValidation?: boolean | undefined;
|
|
2673
|
-
prefetch?: boolean | undefined;
|
|
2674
2801
|
};
|
|
2675
2802
|
title?: string | undefined;
|
|
2676
2803
|
} | undefined;
|
|
@@ -2678,9 +2805,10 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2678
2805
|
action: {
|
|
2679
2806
|
url?: string | undefined;
|
|
2680
2807
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
2808
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2809
|
+
prefetch?: boolean | undefined;
|
|
2681
2810
|
$ref?: string | undefined;
|
|
2682
2811
|
title?: string | undefined;
|
|
2683
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2684
2812
|
disabled?: boolean | undefined;
|
|
2685
2813
|
$id?: string | undefined;
|
|
2686
2814
|
id?: string | undefined;
|
|
@@ -2689,7 +2817,6 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2689
2817
|
data?: JsonElement | undefined;
|
|
2690
2818
|
timeout?: number | undefined;
|
|
2691
2819
|
skipValidation?: boolean | undefined;
|
|
2692
|
-
prefetch?: boolean | undefined;
|
|
2693
2820
|
};
|
|
2694
2821
|
title?: string | undefined;
|
|
2695
2822
|
} | undefined;
|
|
@@ -2718,13 +2845,13 @@ export declare const dynamicLaunchConfigSchema: z.ZodObject<{
|
|
|
2718
2845
|
}, "strip", z.ZodTypeAny, {
|
|
2719
2846
|
url: string;
|
|
2720
2847
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2721
|
-
prefetch?: boolean | undefined;
|
|
2722
2848
|
body?: JsonElement | undefined;
|
|
2849
|
+
prefetch?: boolean | undefined;
|
|
2723
2850
|
}, {
|
|
2724
2851
|
url: string;
|
|
2725
2852
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2726
|
-
prefetch?: boolean | undefined;
|
|
2727
2853
|
body?: JsonElement | undefined;
|
|
2854
|
+
prefetch?: boolean | undefined;
|
|
2728
2855
|
}>;
|
|
2729
2856
|
presentation: z.ZodUnion<[z.ZodObject<{
|
|
2730
2857
|
type: z.ZodLiteral<"modal">;
|
|
@@ -2744,8 +2871,8 @@ export declare const dynamicLaunchConfigSchema: z.ZodObject<{
|
|
|
2744
2871
|
request: {
|
|
2745
2872
|
url: string;
|
|
2746
2873
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2747
|
-
prefetch?: boolean | undefined;
|
|
2748
2874
|
body?: JsonElement | undefined;
|
|
2875
|
+
prefetch?: boolean | undefined;
|
|
2749
2876
|
};
|
|
2750
2877
|
presentation: {
|
|
2751
2878
|
type: "modal";
|
|
@@ -2757,8 +2884,8 @@ export declare const dynamicLaunchConfigSchema: z.ZodObject<{
|
|
|
2757
2884
|
request: {
|
|
2758
2885
|
url: string;
|
|
2759
2886
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2760
|
-
prefetch?: boolean | undefined;
|
|
2761
2887
|
body?: JsonElement | undefined;
|
|
2888
|
+
prefetch?: boolean | undefined;
|
|
2762
2889
|
};
|
|
2763
2890
|
presentation: {
|
|
2764
2891
|
type: "modal";
|
|
@@ -2776,13 +2903,13 @@ export declare const launchConfigSchema: z.ZodObject<{
|
|
|
2776
2903
|
}, "strip", z.ZodTypeAny, {
|
|
2777
2904
|
url: string;
|
|
2778
2905
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2779
|
-
prefetch?: boolean | undefined;
|
|
2780
2906
|
body?: JsonElement | undefined;
|
|
2907
|
+
prefetch?: boolean | undefined;
|
|
2781
2908
|
}, {
|
|
2782
2909
|
url: string;
|
|
2783
2910
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2784
|
-
prefetch?: boolean | undefined;
|
|
2785
2911
|
body?: JsonElement | undefined;
|
|
2912
|
+
prefetch?: boolean | undefined;
|
|
2786
2913
|
}>;
|
|
2787
2914
|
presentation: z.ZodUnion<[z.ZodObject<{
|
|
2788
2915
|
type: z.ZodLiteral<"modal">;
|
|
@@ -2802,8 +2929,8 @@ export declare const launchConfigSchema: z.ZodObject<{
|
|
|
2802
2929
|
request: {
|
|
2803
2930
|
url: string;
|
|
2804
2931
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2805
|
-
prefetch?: boolean | undefined;
|
|
2806
2932
|
body?: JsonElement | undefined;
|
|
2933
|
+
prefetch?: boolean | undefined;
|
|
2807
2934
|
};
|
|
2808
2935
|
presentation: {
|
|
2809
2936
|
type: "modal";
|
|
@@ -2815,8 +2942,8 @@ export declare const launchConfigSchema: z.ZodObject<{
|
|
|
2815
2942
|
request: {
|
|
2816
2943
|
url: string;
|
|
2817
2944
|
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
2818
|
-
prefetch?: boolean | undefined;
|
|
2819
2945
|
body?: JsonElement | undefined;
|
|
2946
|
+
prefetch?: boolean | undefined;
|
|
2820
2947
|
};
|
|
2821
2948
|
presentation: {
|
|
2822
2949
|
type: "modal";
|
|
@@ -2875,9 +3002,10 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2875
3002
|
}, "strip", z.ZodTypeAny, {
|
|
2876
3003
|
url?: string | undefined;
|
|
2877
3004
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3005
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3006
|
+
prefetch?: boolean | undefined;
|
|
2878
3007
|
$ref?: string | undefined;
|
|
2879
3008
|
title?: string | undefined;
|
|
2880
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2881
3009
|
disabled?: boolean | undefined;
|
|
2882
3010
|
$id?: string | undefined;
|
|
2883
3011
|
id?: string | undefined;
|
|
@@ -2886,13 +3014,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2886
3014
|
data?: JsonElement | undefined;
|
|
2887
3015
|
timeout?: number | undefined;
|
|
2888
3016
|
skipValidation?: boolean | undefined;
|
|
2889
|
-
prefetch?: boolean | undefined;
|
|
2890
3017
|
}, {
|
|
2891
3018
|
url?: string | undefined;
|
|
2892
3019
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3020
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3021
|
+
prefetch?: boolean | undefined;
|
|
2893
3022
|
$ref?: string | undefined;
|
|
2894
3023
|
title?: string | undefined;
|
|
2895
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2896
3024
|
disabled?: boolean | undefined;
|
|
2897
3025
|
$id?: string | undefined;
|
|
2898
3026
|
id?: string | undefined;
|
|
@@ -2901,7 +3029,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2901
3029
|
data?: JsonElement | undefined;
|
|
2902
3030
|
timeout?: number | undefined;
|
|
2903
3031
|
skipValidation?: boolean | undefined;
|
|
2904
|
-
prefetch?: boolean | undefined;
|
|
2905
3032
|
}>;
|
|
2906
3033
|
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2907
3034
|
type: z.ZodLiteral<"avatar">;
|
|
@@ -2972,9 +3099,10 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2972
3099
|
value: {
|
|
2973
3100
|
url?: string | undefined;
|
|
2974
3101
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3102
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3103
|
+
prefetch?: boolean | undefined;
|
|
2975
3104
|
$ref?: string | undefined;
|
|
2976
3105
|
title?: string | undefined;
|
|
2977
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
2978
3106
|
disabled?: boolean | undefined;
|
|
2979
3107
|
$id?: string | undefined;
|
|
2980
3108
|
id?: string | undefined;
|
|
@@ -2983,7 +3111,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2983
3111
|
data?: JsonElement | undefined;
|
|
2984
3112
|
timeout?: number | undefined;
|
|
2985
3113
|
skipValidation?: boolean | undefined;
|
|
2986
|
-
prefetch?: boolean | undefined;
|
|
2987
3114
|
};
|
|
2988
3115
|
type: "action";
|
|
2989
3116
|
title: string;
|
|
@@ -2993,12 +3120,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2993
3120
|
url?: string | undefined;
|
|
2994
3121
|
accessibilityDescription?: string | undefined;
|
|
2995
3122
|
} | undefined;
|
|
2996
|
-
description?: string | undefined;
|
|
2997
|
-
icon?: {
|
|
2998
|
-
name: string;
|
|
2999
|
-
} | {
|
|
3000
|
-
text: string;
|
|
3001
|
-
} | undefined;
|
|
3002
3123
|
media?: {
|
|
3003
3124
|
uri: string;
|
|
3004
3125
|
type: "image";
|
|
@@ -3016,13 +3137,20 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3016
3137
|
})[];
|
|
3017
3138
|
accessibilityDescription?: string | undefined;
|
|
3018
3139
|
} | undefined;
|
|
3140
|
+
description?: string | undefined;
|
|
3141
|
+
icon?: {
|
|
3142
|
+
name: string;
|
|
3143
|
+
} | {
|
|
3144
|
+
text: string;
|
|
3145
|
+
} | undefined;
|
|
3019
3146
|
}, {
|
|
3020
3147
|
value: {
|
|
3021
3148
|
url?: string | undefined;
|
|
3022
3149
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3150
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3151
|
+
prefetch?: boolean | undefined;
|
|
3023
3152
|
$ref?: string | undefined;
|
|
3024
3153
|
title?: string | undefined;
|
|
3025
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3026
3154
|
disabled?: boolean | undefined;
|
|
3027
3155
|
$id?: string | undefined;
|
|
3028
3156
|
id?: string | undefined;
|
|
@@ -3031,7 +3159,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3031
3159
|
data?: JsonElement | undefined;
|
|
3032
3160
|
timeout?: number | undefined;
|
|
3033
3161
|
skipValidation?: boolean | undefined;
|
|
3034
|
-
prefetch?: boolean | undefined;
|
|
3035
3162
|
};
|
|
3036
3163
|
type: "action";
|
|
3037
3164
|
title: string;
|
|
@@ -3041,12 +3168,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3041
3168
|
url?: string | undefined;
|
|
3042
3169
|
accessibilityDescription?: string | undefined;
|
|
3043
3170
|
} | undefined;
|
|
3044
|
-
description?: string | undefined;
|
|
3045
|
-
icon?: {
|
|
3046
|
-
name: string;
|
|
3047
|
-
} | {
|
|
3048
|
-
text: string;
|
|
3049
|
-
} | undefined;
|
|
3050
3171
|
media?: {
|
|
3051
3172
|
uri: string;
|
|
3052
3173
|
type: "image";
|
|
@@ -3064,6 +3185,12 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3064
3185
|
})[];
|
|
3065
3186
|
accessibilityDescription?: string | undefined;
|
|
3066
3187
|
} | undefined;
|
|
3188
|
+
description?: string | undefined;
|
|
3189
|
+
icon?: {
|
|
3190
|
+
name: string;
|
|
3191
|
+
} | {
|
|
3192
|
+
text: string;
|
|
3193
|
+
} | undefined;
|
|
3067
3194
|
}>, z.ZodObject<{
|
|
3068
3195
|
type: z.ZodLiteral<"search">;
|
|
3069
3196
|
title: z.ZodString;
|
|
@@ -3193,12 +3320,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3193
3320
|
url?: string | undefined;
|
|
3194
3321
|
accessibilityDescription?: string | undefined;
|
|
3195
3322
|
} | undefined;
|
|
3196
|
-
description?: string | undefined;
|
|
3197
|
-
icon?: {
|
|
3198
|
-
name: string;
|
|
3199
|
-
} | {
|
|
3200
|
-
text: string;
|
|
3201
|
-
} | undefined;
|
|
3202
3323
|
media?: {
|
|
3203
3324
|
uri: string;
|
|
3204
3325
|
type: "image";
|
|
@@ -3216,6 +3337,12 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3216
3337
|
})[];
|
|
3217
3338
|
accessibilityDescription?: string | undefined;
|
|
3218
3339
|
} | undefined;
|
|
3340
|
+
description?: string | undefined;
|
|
3341
|
+
icon?: {
|
|
3342
|
+
name: string;
|
|
3343
|
+
} | {
|
|
3344
|
+
text: string;
|
|
3345
|
+
} | undefined;
|
|
3219
3346
|
}, {
|
|
3220
3347
|
value: {
|
|
3221
3348
|
url: string;
|
|
@@ -3231,12 +3358,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3231
3358
|
url?: string | undefined;
|
|
3232
3359
|
accessibilityDescription?: string | undefined;
|
|
3233
3360
|
} | undefined;
|
|
3234
|
-
description?: string | undefined;
|
|
3235
|
-
icon?: {
|
|
3236
|
-
name: string;
|
|
3237
|
-
} | {
|
|
3238
|
-
text: string;
|
|
3239
|
-
} | undefined;
|
|
3240
3361
|
media?: {
|
|
3241
3362
|
uri: string;
|
|
3242
3363
|
type: "image";
|
|
@@ -3254,6 +3375,12 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3254
3375
|
})[];
|
|
3255
3376
|
accessibilityDescription?: string | undefined;
|
|
3256
3377
|
} | undefined;
|
|
3378
|
+
description?: string | undefined;
|
|
3379
|
+
icon?: {
|
|
3380
|
+
name: string;
|
|
3381
|
+
} | {
|
|
3382
|
+
text: string;
|
|
3383
|
+
} | undefined;
|
|
3257
3384
|
}>]>;
|
|
3258
3385
|
export declare const searchResponseBodySchema: z.ZodObject<{
|
|
3259
3386
|
results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -3307,9 +3434,10 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3307
3434
|
}, "strip", z.ZodTypeAny, {
|
|
3308
3435
|
url?: string | undefined;
|
|
3309
3436
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3437
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3438
|
+
prefetch?: boolean | undefined;
|
|
3310
3439
|
$ref?: string | undefined;
|
|
3311
3440
|
title?: string | undefined;
|
|
3312
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3313
3441
|
disabled?: boolean | undefined;
|
|
3314
3442
|
$id?: string | undefined;
|
|
3315
3443
|
id?: string | undefined;
|
|
@@ -3318,13 +3446,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3318
3446
|
data?: JsonElement | undefined;
|
|
3319
3447
|
timeout?: number | undefined;
|
|
3320
3448
|
skipValidation?: boolean | undefined;
|
|
3321
|
-
prefetch?: boolean | undefined;
|
|
3322
3449
|
}, {
|
|
3323
3450
|
url?: string | undefined;
|
|
3324
3451
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3452
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3453
|
+
prefetch?: boolean | undefined;
|
|
3325
3454
|
$ref?: string | undefined;
|
|
3326
3455
|
title?: string | undefined;
|
|
3327
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3328
3456
|
disabled?: boolean | undefined;
|
|
3329
3457
|
$id?: string | undefined;
|
|
3330
3458
|
id?: string | undefined;
|
|
@@ -3333,7 +3461,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3333
3461
|
data?: JsonElement | undefined;
|
|
3334
3462
|
timeout?: number | undefined;
|
|
3335
3463
|
skipValidation?: boolean | undefined;
|
|
3336
|
-
prefetch?: boolean | undefined;
|
|
3337
3464
|
}>;
|
|
3338
3465
|
media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3339
3466
|
type: z.ZodLiteral<"avatar">;
|
|
@@ -3404,9 +3531,10 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3404
3531
|
value: {
|
|
3405
3532
|
url?: string | undefined;
|
|
3406
3533
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3534
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3535
|
+
prefetch?: boolean | undefined;
|
|
3407
3536
|
$ref?: string | undefined;
|
|
3408
3537
|
title?: string | undefined;
|
|
3409
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3410
3538
|
disabled?: boolean | undefined;
|
|
3411
3539
|
$id?: string | undefined;
|
|
3412
3540
|
id?: string | undefined;
|
|
@@ -3415,7 +3543,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3415
3543
|
data?: JsonElement | undefined;
|
|
3416
3544
|
timeout?: number | undefined;
|
|
3417
3545
|
skipValidation?: boolean | undefined;
|
|
3418
|
-
prefetch?: boolean | undefined;
|
|
3419
3546
|
};
|
|
3420
3547
|
type: "action";
|
|
3421
3548
|
title: string;
|
|
@@ -3425,12 +3552,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3425
3552
|
url?: string | undefined;
|
|
3426
3553
|
accessibilityDescription?: string | undefined;
|
|
3427
3554
|
} | undefined;
|
|
3428
|
-
description?: string | undefined;
|
|
3429
|
-
icon?: {
|
|
3430
|
-
name: string;
|
|
3431
|
-
} | {
|
|
3432
|
-
text: string;
|
|
3433
|
-
} | undefined;
|
|
3434
3555
|
media?: {
|
|
3435
3556
|
uri: string;
|
|
3436
3557
|
type: "image";
|
|
@@ -3448,13 +3569,20 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3448
3569
|
})[];
|
|
3449
3570
|
accessibilityDescription?: string | undefined;
|
|
3450
3571
|
} | undefined;
|
|
3572
|
+
description?: string | undefined;
|
|
3573
|
+
icon?: {
|
|
3574
|
+
name: string;
|
|
3575
|
+
} | {
|
|
3576
|
+
text: string;
|
|
3577
|
+
} | undefined;
|
|
3451
3578
|
}, {
|
|
3452
3579
|
value: {
|
|
3453
3580
|
url?: string | undefined;
|
|
3454
3581
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3582
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3583
|
+
prefetch?: boolean | undefined;
|
|
3455
3584
|
$ref?: string | undefined;
|
|
3456
3585
|
title?: string | undefined;
|
|
3457
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3458
3586
|
disabled?: boolean | undefined;
|
|
3459
3587
|
$id?: string | undefined;
|
|
3460
3588
|
id?: string | undefined;
|
|
@@ -3463,7 +3591,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3463
3591
|
data?: JsonElement | undefined;
|
|
3464
3592
|
timeout?: number | undefined;
|
|
3465
3593
|
skipValidation?: boolean | undefined;
|
|
3466
|
-
prefetch?: boolean | undefined;
|
|
3467
3594
|
};
|
|
3468
3595
|
type: "action";
|
|
3469
3596
|
title: string;
|
|
@@ -3473,12 +3600,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3473
3600
|
url?: string | undefined;
|
|
3474
3601
|
accessibilityDescription?: string | undefined;
|
|
3475
3602
|
} | undefined;
|
|
3476
|
-
description?: string | undefined;
|
|
3477
|
-
icon?: {
|
|
3478
|
-
name: string;
|
|
3479
|
-
} | {
|
|
3480
|
-
text: string;
|
|
3481
|
-
} | undefined;
|
|
3482
3603
|
media?: {
|
|
3483
3604
|
uri: string;
|
|
3484
3605
|
type: "image";
|
|
@@ -3496,6 +3617,12 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3496
3617
|
})[];
|
|
3497
3618
|
accessibilityDescription?: string | undefined;
|
|
3498
3619
|
} | undefined;
|
|
3620
|
+
description?: string | undefined;
|
|
3621
|
+
icon?: {
|
|
3622
|
+
name: string;
|
|
3623
|
+
} | {
|
|
3624
|
+
text: string;
|
|
3625
|
+
} | undefined;
|
|
3499
3626
|
}>, z.ZodObject<{
|
|
3500
3627
|
type: z.ZodLiteral<"search">;
|
|
3501
3628
|
title: z.ZodString;
|
|
@@ -3625,12 +3752,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3625
3752
|
url?: string | undefined;
|
|
3626
3753
|
accessibilityDescription?: string | undefined;
|
|
3627
3754
|
} | undefined;
|
|
3628
|
-
description?: string | undefined;
|
|
3629
|
-
icon?: {
|
|
3630
|
-
name: string;
|
|
3631
|
-
} | {
|
|
3632
|
-
text: string;
|
|
3633
|
-
} | undefined;
|
|
3634
3755
|
media?: {
|
|
3635
3756
|
uri: string;
|
|
3636
3757
|
type: "image";
|
|
@@ -3648,6 +3769,12 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3648
3769
|
})[];
|
|
3649
3770
|
accessibilityDescription?: string | undefined;
|
|
3650
3771
|
} | undefined;
|
|
3772
|
+
description?: string | undefined;
|
|
3773
|
+
icon?: {
|
|
3774
|
+
name: string;
|
|
3775
|
+
} | {
|
|
3776
|
+
text: string;
|
|
3777
|
+
} | undefined;
|
|
3651
3778
|
}, {
|
|
3652
3779
|
value: {
|
|
3653
3780
|
url: string;
|
|
@@ -3663,12 +3790,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3663
3790
|
url?: string | undefined;
|
|
3664
3791
|
accessibilityDescription?: string | undefined;
|
|
3665
3792
|
} | undefined;
|
|
3666
|
-
description?: string | undefined;
|
|
3667
|
-
icon?: {
|
|
3668
|
-
name: string;
|
|
3669
|
-
} | {
|
|
3670
|
-
text: string;
|
|
3671
|
-
} | undefined;
|
|
3672
3793
|
media?: {
|
|
3673
3794
|
uri: string;
|
|
3674
3795
|
type: "image";
|
|
@@ -3686,6 +3807,12 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3686
3807
|
})[];
|
|
3687
3808
|
accessibilityDescription?: string | undefined;
|
|
3688
3809
|
} | undefined;
|
|
3810
|
+
description?: string | undefined;
|
|
3811
|
+
icon?: {
|
|
3812
|
+
name: string;
|
|
3813
|
+
} | {
|
|
3814
|
+
text: string;
|
|
3815
|
+
} | undefined;
|
|
3689
3816
|
}>]>, "many">;
|
|
3690
3817
|
}, "strip", z.ZodTypeAny, {
|
|
3691
3818
|
results: ({
|
|
@@ -3703,12 +3830,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3703
3830
|
url?: string | undefined;
|
|
3704
3831
|
accessibilityDescription?: string | undefined;
|
|
3705
3832
|
} | undefined;
|
|
3706
|
-
description?: string | undefined;
|
|
3707
|
-
icon?: {
|
|
3708
|
-
name: string;
|
|
3709
|
-
} | {
|
|
3710
|
-
text: string;
|
|
3711
|
-
} | undefined;
|
|
3712
3833
|
media?: {
|
|
3713
3834
|
uri: string;
|
|
3714
3835
|
type: "image";
|
|
@@ -3726,13 +3847,20 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3726
3847
|
})[];
|
|
3727
3848
|
accessibilityDescription?: string | undefined;
|
|
3728
3849
|
} | undefined;
|
|
3850
|
+
description?: string | undefined;
|
|
3851
|
+
icon?: {
|
|
3852
|
+
name: string;
|
|
3853
|
+
} | {
|
|
3854
|
+
text: string;
|
|
3855
|
+
} | undefined;
|
|
3729
3856
|
} | {
|
|
3730
3857
|
value: {
|
|
3731
3858
|
url?: string | undefined;
|
|
3732
3859
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3860
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3861
|
+
prefetch?: boolean | undefined;
|
|
3733
3862
|
$ref?: string | undefined;
|
|
3734
3863
|
title?: string | undefined;
|
|
3735
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3736
3864
|
disabled?: boolean | undefined;
|
|
3737
3865
|
$id?: string | undefined;
|
|
3738
3866
|
id?: string | undefined;
|
|
@@ -3741,7 +3869,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3741
3869
|
data?: JsonElement | undefined;
|
|
3742
3870
|
timeout?: number | undefined;
|
|
3743
3871
|
skipValidation?: boolean | undefined;
|
|
3744
|
-
prefetch?: boolean | undefined;
|
|
3745
3872
|
};
|
|
3746
3873
|
type: "action";
|
|
3747
3874
|
title: string;
|
|
@@ -3751,12 +3878,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3751
3878
|
url?: string | undefined;
|
|
3752
3879
|
accessibilityDescription?: string | undefined;
|
|
3753
3880
|
} | undefined;
|
|
3754
|
-
description?: string | undefined;
|
|
3755
|
-
icon?: {
|
|
3756
|
-
name: string;
|
|
3757
|
-
} | {
|
|
3758
|
-
text: string;
|
|
3759
|
-
} | undefined;
|
|
3760
3881
|
media?: {
|
|
3761
3882
|
uri: string;
|
|
3762
3883
|
type: "image";
|
|
@@ -3774,6 +3895,12 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3774
3895
|
})[];
|
|
3775
3896
|
accessibilityDescription?: string | undefined;
|
|
3776
3897
|
} | undefined;
|
|
3898
|
+
description?: string | undefined;
|
|
3899
|
+
icon?: {
|
|
3900
|
+
name: string;
|
|
3901
|
+
} | {
|
|
3902
|
+
text: string;
|
|
3903
|
+
} | undefined;
|
|
3777
3904
|
})[];
|
|
3778
3905
|
}, {
|
|
3779
3906
|
results: ({
|
|
@@ -3791,12 +3918,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3791
3918
|
url?: string | undefined;
|
|
3792
3919
|
accessibilityDescription?: string | undefined;
|
|
3793
3920
|
} | undefined;
|
|
3794
|
-
description?: string | undefined;
|
|
3795
|
-
icon?: {
|
|
3796
|
-
name: string;
|
|
3797
|
-
} | {
|
|
3798
|
-
text: string;
|
|
3799
|
-
} | undefined;
|
|
3800
3921
|
media?: {
|
|
3801
3922
|
uri: string;
|
|
3802
3923
|
type: "image";
|
|
@@ -3814,13 +3935,20 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3814
3935
|
})[];
|
|
3815
3936
|
accessibilityDescription?: string | undefined;
|
|
3816
3937
|
} | undefined;
|
|
3938
|
+
description?: string | undefined;
|
|
3939
|
+
icon?: {
|
|
3940
|
+
name: string;
|
|
3941
|
+
} | {
|
|
3942
|
+
text: string;
|
|
3943
|
+
} | undefined;
|
|
3817
3944
|
} | {
|
|
3818
3945
|
value: {
|
|
3819
3946
|
url?: string | undefined;
|
|
3820
3947
|
type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
|
|
3948
|
+
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3949
|
+
prefetch?: boolean | undefined;
|
|
3821
3950
|
$ref?: string | undefined;
|
|
3822
3951
|
title?: string | undefined;
|
|
3823
|
-
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
|
|
3824
3952
|
disabled?: boolean | undefined;
|
|
3825
3953
|
$id?: string | undefined;
|
|
3826
3954
|
id?: string | undefined;
|
|
@@ -3829,7 +3957,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3829
3957
|
data?: JsonElement | undefined;
|
|
3830
3958
|
timeout?: number | undefined;
|
|
3831
3959
|
skipValidation?: boolean | undefined;
|
|
3832
|
-
prefetch?: boolean | undefined;
|
|
3833
3960
|
};
|
|
3834
3961
|
type: "action";
|
|
3835
3962
|
title: string;
|
|
@@ -3839,12 +3966,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3839
3966
|
url?: string | undefined;
|
|
3840
3967
|
accessibilityDescription?: string | undefined;
|
|
3841
3968
|
} | undefined;
|
|
3842
|
-
description?: string | undefined;
|
|
3843
|
-
icon?: {
|
|
3844
|
-
name: string;
|
|
3845
|
-
} | {
|
|
3846
|
-
text: string;
|
|
3847
|
-
} | undefined;
|
|
3848
3969
|
media?: {
|
|
3849
3970
|
uri: string;
|
|
3850
3971
|
type: "image";
|
|
@@ -3862,6 +3983,12 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3862
3983
|
})[];
|
|
3863
3984
|
accessibilityDescription?: string | undefined;
|
|
3864
3985
|
} | undefined;
|
|
3986
|
+
description?: string | undefined;
|
|
3987
|
+
icon?: {
|
|
3988
|
+
name: string;
|
|
3989
|
+
} | {
|
|
3990
|
+
text: string;
|
|
3991
|
+
} | undefined;
|
|
3865
3992
|
})[];
|
|
3866
3993
|
}>;
|
|
3867
3994
|
export declare const additionalInfoSchema: z.ZodSchema<AdditionalInfo>;
|
|
@@ -3874,6 +4001,8 @@ export declare const alertLayoutCallToActionSchema: z.ZodSchema<AlertLayoutCallT
|
|
|
3874
4001
|
export declare const listLayoutSchema: z.ZodSchema<ListLayout>;
|
|
3875
4002
|
export declare const listLayoutCallToActionSchema: z.ZodSchema<ListLayoutCallToAction>;
|
|
3876
4003
|
export declare const listLayoutItemSchema: z.ZodSchema<ListLayoutItem>;
|
|
4004
|
+
export declare const upsellLayoutCallToActionSchema: z.ZodSchema<UpsellLayoutCallToAction>;
|
|
4005
|
+
export declare const upsellLayoutSchema: z.ZodSchema<UpsellLayout>;
|
|
3877
4006
|
export declare const decisionLayoutSchema: z.ZodSchema<DecisionLayout>;
|
|
3878
4007
|
export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOption>;
|
|
3879
4008
|
export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
|