@liaisongroup/assist-api-js-client 1.5.174 → 1.5.176
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/openapi.d.ts +1 -0
- package/dist/openapi.json +15 -1
- package/dist/openapi.zod.d.ts +122 -0
- package/dist/openapi.zod.js +1 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.393",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -11072,6 +11072,20 @@
|
|
|
11072
11072
|
}
|
|
11073
11073
|
}
|
|
11074
11074
|
},
|
|
11075
|
+
"suggested_options": {
|
|
11076
|
+
"oneOf": [
|
|
11077
|
+
{
|
|
11078
|
+
"type": "null"
|
|
11079
|
+
},
|
|
11080
|
+
{
|
|
11081
|
+
"type": "array",
|
|
11082
|
+
"items": {
|
|
11083
|
+
"type": "string"
|
|
11084
|
+
}
|
|
11085
|
+
}
|
|
11086
|
+
],
|
|
11087
|
+
"readOnly": true
|
|
11088
|
+
},
|
|
11075
11089
|
"created_at": {
|
|
11076
11090
|
"type": "string",
|
|
11077
11091
|
"format": "date-time",
|
package/dist/openapi.zod.d.ts
CHANGED
|
@@ -47944,6 +47944,7 @@ export declare const FieldSettingAttributes: z.ZodObject<{
|
|
|
47944
47944
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
47945
47945
|
}[] | undefined;
|
|
47946
47946
|
}>>;
|
|
47947
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
47947
47948
|
created_at: z.ZodOptional<z.ZodString>;
|
|
47948
47949
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
47949
47950
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -47970,6 +47971,7 @@ export declare const FieldSettingAttributes: z.ZodObject<{
|
|
|
47970
47971
|
updated_at?: string | undefined;
|
|
47971
47972
|
role_ids?: string[] | undefined;
|
|
47972
47973
|
position?: number | undefined;
|
|
47974
|
+
suggested_options?: string[] | null | undefined;
|
|
47973
47975
|
}, {
|
|
47974
47976
|
required?: boolean | undefined;
|
|
47975
47977
|
meta?: {
|
|
@@ -47994,6 +47996,7 @@ export declare const FieldSettingAttributes: z.ZodObject<{
|
|
|
47994
47996
|
updated_at?: string | undefined;
|
|
47995
47997
|
role_ids?: string[] | undefined;
|
|
47996
47998
|
position?: number | undefined;
|
|
47999
|
+
suggested_options?: string[] | null | undefined;
|
|
47997
48000
|
}>;
|
|
47998
48001
|
export declare const FieldRelationship: z.ZodObject<{
|
|
47999
48002
|
data: z.ZodOptional<z.ZodObject<{
|
|
@@ -48153,6 +48156,7 @@ export declare const FieldSettingInclusion: z.ZodObject<{
|
|
|
48153
48156
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
48154
48157
|
}[] | undefined;
|
|
48155
48158
|
}>>;
|
|
48159
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
48156
48160
|
created_at: z.ZodOptional<z.ZodString>;
|
|
48157
48161
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
48158
48162
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -48179,6 +48183,7 @@ export declare const FieldSettingInclusion: z.ZodObject<{
|
|
|
48179
48183
|
updated_at?: string | undefined;
|
|
48180
48184
|
role_ids?: string[] | undefined;
|
|
48181
48185
|
position?: number | undefined;
|
|
48186
|
+
suggested_options?: string[] | null | undefined;
|
|
48182
48187
|
}, {
|
|
48183
48188
|
required?: boolean | undefined;
|
|
48184
48189
|
meta?: {
|
|
@@ -48203,6 +48208,7 @@ export declare const FieldSettingInclusion: z.ZodObject<{
|
|
|
48203
48208
|
updated_at?: string | undefined;
|
|
48204
48209
|
role_ids?: string[] | undefined;
|
|
48205
48210
|
position?: number | undefined;
|
|
48211
|
+
suggested_options?: string[] | null | undefined;
|
|
48206
48212
|
}>;
|
|
48207
48213
|
relationships: z.ZodObject<{
|
|
48208
48214
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -48492,6 +48498,7 @@ export declare const FieldSettingInclusion: z.ZodObject<{
|
|
|
48492
48498
|
updated_at?: string | undefined;
|
|
48493
48499
|
role_ids?: string[] | undefined;
|
|
48494
48500
|
position?: number | undefined;
|
|
48501
|
+
suggested_options?: string[] | null | undefined;
|
|
48495
48502
|
};
|
|
48496
48503
|
type: "field_setting";
|
|
48497
48504
|
relationships: {
|
|
@@ -48564,6 +48571,7 @@ export declare const FieldSettingInclusion: z.ZodObject<{
|
|
|
48564
48571
|
updated_at?: string | undefined;
|
|
48565
48572
|
role_ids?: string[] | undefined;
|
|
48566
48573
|
position?: number | undefined;
|
|
48574
|
+
suggested_options?: string[] | null | undefined;
|
|
48567
48575
|
};
|
|
48568
48576
|
type: "field_setting";
|
|
48569
48577
|
relationships: {
|
|
@@ -53149,6 +53157,7 @@ export declare const ListInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
53149
53157
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
53150
53158
|
}[] | undefined;
|
|
53151
53159
|
}>>;
|
|
53160
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
53152
53161
|
created_at: z.ZodOptional<z.ZodString>;
|
|
53153
53162
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
53154
53163
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -53175,6 +53184,7 @@ export declare const ListInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
53175
53184
|
updated_at?: string | undefined;
|
|
53176
53185
|
role_ids?: string[] | undefined;
|
|
53177
53186
|
position?: number | undefined;
|
|
53187
|
+
suggested_options?: string[] | null | undefined;
|
|
53178
53188
|
}, {
|
|
53179
53189
|
required?: boolean | undefined;
|
|
53180
53190
|
meta?: {
|
|
@@ -53199,6 +53209,7 @@ export declare const ListInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
53199
53209
|
updated_at?: string | undefined;
|
|
53200
53210
|
role_ids?: string[] | undefined;
|
|
53201
53211
|
position?: number | undefined;
|
|
53212
|
+
suggested_options?: string[] | null | undefined;
|
|
53202
53213
|
}>;
|
|
53203
53214
|
relationships: z.ZodObject<{
|
|
53204
53215
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -53488,6 +53499,7 @@ export declare const ListInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
53488
53499
|
updated_at?: string | undefined;
|
|
53489
53500
|
role_ids?: string[] | undefined;
|
|
53490
53501
|
position?: number | undefined;
|
|
53502
|
+
suggested_options?: string[] | null | undefined;
|
|
53491
53503
|
};
|
|
53492
53504
|
type: "field_setting";
|
|
53493
53505
|
relationships: {
|
|
@@ -53560,6 +53572,7 @@ export declare const ListInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
53560
53572
|
updated_at?: string | undefined;
|
|
53561
53573
|
role_ids?: string[] | undefined;
|
|
53562
53574
|
position?: number | undefined;
|
|
53575
|
+
suggested_options?: string[] | null | undefined;
|
|
53563
53576
|
};
|
|
53564
53577
|
type: "field_setting";
|
|
53565
53578
|
relationships: {
|
|
@@ -60994,6 +61007,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
60994
61007
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
60995
61008
|
}[] | undefined;
|
|
60996
61009
|
}>>;
|
|
61010
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
60997
61011
|
created_at: z.ZodOptional<z.ZodString>;
|
|
60998
61012
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
60999
61013
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -61020,6 +61034,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
61020
61034
|
updated_at?: string | undefined;
|
|
61021
61035
|
role_ids?: string[] | undefined;
|
|
61022
61036
|
position?: number | undefined;
|
|
61037
|
+
suggested_options?: string[] | null | undefined;
|
|
61023
61038
|
}, {
|
|
61024
61039
|
required?: boolean | undefined;
|
|
61025
61040
|
meta?: {
|
|
@@ -61044,6 +61059,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
61044
61059
|
updated_at?: string | undefined;
|
|
61045
61060
|
role_ids?: string[] | undefined;
|
|
61046
61061
|
position?: number | undefined;
|
|
61062
|
+
suggested_options?: string[] | null | undefined;
|
|
61047
61063
|
}>;
|
|
61048
61064
|
relationships: z.ZodObject<{
|
|
61049
61065
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -61333,6 +61349,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
61333
61349
|
updated_at?: string | undefined;
|
|
61334
61350
|
role_ids?: string[] | undefined;
|
|
61335
61351
|
position?: number | undefined;
|
|
61352
|
+
suggested_options?: string[] | null | undefined;
|
|
61336
61353
|
};
|
|
61337
61354
|
type: "field_setting";
|
|
61338
61355
|
relationships: {
|
|
@@ -61405,6 +61422,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
61405
61422
|
updated_at?: string | undefined;
|
|
61406
61423
|
role_ids?: string[] | undefined;
|
|
61407
61424
|
position?: number | undefined;
|
|
61425
|
+
suggested_options?: string[] | null | undefined;
|
|
61408
61426
|
};
|
|
61409
61427
|
type: "field_setting";
|
|
61410
61428
|
relationships: {
|
|
@@ -67373,6 +67391,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
67373
67391
|
updated_at?: string | undefined;
|
|
67374
67392
|
role_ids?: string[] | undefined;
|
|
67375
67393
|
position?: number | undefined;
|
|
67394
|
+
suggested_options?: string[] | null | undefined;
|
|
67376
67395
|
};
|
|
67377
67396
|
type: "field_setting";
|
|
67378
67397
|
relationships: {
|
|
@@ -68472,6 +68491,7 @@ export declare const Lists: z.ZodObject<{
|
|
|
68472
68491
|
updated_at?: string | undefined;
|
|
68473
68492
|
role_ids?: string[] | undefined;
|
|
68474
68493
|
position?: number | undefined;
|
|
68494
|
+
suggested_options?: string[] | null | undefined;
|
|
68475
68495
|
};
|
|
68476
68496
|
type: "field_setting";
|
|
68477
68497
|
relationships: {
|
|
@@ -71296,6 +71316,7 @@ export declare const List: z.ZodObject<{
|
|
|
71296
71316
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
71297
71317
|
}[] | undefined;
|
|
71298
71318
|
}>>;
|
|
71319
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
71299
71320
|
created_at: z.ZodOptional<z.ZodString>;
|
|
71300
71321
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
71301
71322
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -71322,6 +71343,7 @@ export declare const List: z.ZodObject<{
|
|
|
71322
71343
|
updated_at?: string | undefined;
|
|
71323
71344
|
role_ids?: string[] | undefined;
|
|
71324
71345
|
position?: number | undefined;
|
|
71346
|
+
suggested_options?: string[] | null | undefined;
|
|
71325
71347
|
}, {
|
|
71326
71348
|
required?: boolean | undefined;
|
|
71327
71349
|
meta?: {
|
|
@@ -71346,6 +71368,7 @@ export declare const List: z.ZodObject<{
|
|
|
71346
71368
|
updated_at?: string | undefined;
|
|
71347
71369
|
role_ids?: string[] | undefined;
|
|
71348
71370
|
position?: number | undefined;
|
|
71371
|
+
suggested_options?: string[] | null | undefined;
|
|
71349
71372
|
}>;
|
|
71350
71373
|
relationships: z.ZodObject<{
|
|
71351
71374
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -71635,6 +71658,7 @@ export declare const List: z.ZodObject<{
|
|
|
71635
71658
|
updated_at?: string | undefined;
|
|
71636
71659
|
role_ids?: string[] | undefined;
|
|
71637
71660
|
position?: number | undefined;
|
|
71661
|
+
suggested_options?: string[] | null | undefined;
|
|
71638
71662
|
};
|
|
71639
71663
|
type: "field_setting";
|
|
71640
71664
|
relationships: {
|
|
@@ -71707,6 +71731,7 @@ export declare const List: z.ZodObject<{
|
|
|
71707
71731
|
updated_at?: string | undefined;
|
|
71708
71732
|
role_ids?: string[] | undefined;
|
|
71709
71733
|
position?: number | undefined;
|
|
71734
|
+
suggested_options?: string[] | null | undefined;
|
|
71710
71735
|
};
|
|
71711
71736
|
type: "field_setting";
|
|
71712
71737
|
relationships: {
|
|
@@ -77665,6 +77690,7 @@ export declare const List: z.ZodObject<{
|
|
|
77665
77690
|
updated_at?: string | undefined;
|
|
77666
77691
|
role_ids?: string[] | undefined;
|
|
77667
77692
|
position?: number | undefined;
|
|
77693
|
+
suggested_options?: string[] | null | undefined;
|
|
77668
77694
|
};
|
|
77669
77695
|
type: "field_setting";
|
|
77670
77696
|
relationships: {
|
|
@@ -78754,6 +78780,7 @@ export declare const List: z.ZodObject<{
|
|
|
78754
78780
|
updated_at?: string | undefined;
|
|
78755
78781
|
role_ids?: string[] | undefined;
|
|
78756
78782
|
position?: number | undefined;
|
|
78783
|
+
suggested_options?: string[] | null | undefined;
|
|
78757
78784
|
};
|
|
78758
78785
|
type: "field_setting";
|
|
78759
78786
|
relationships: {
|
|
@@ -88078,6 +88105,7 @@ export declare const FieldInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
88078
88105
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
88079
88106
|
}[] | undefined;
|
|
88080
88107
|
}>>;
|
|
88108
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
88081
88109
|
created_at: z.ZodOptional<z.ZodString>;
|
|
88082
88110
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
88083
88111
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -88104,6 +88132,7 @@ export declare const FieldInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
88104
88132
|
updated_at?: string | undefined;
|
|
88105
88133
|
role_ids?: string[] | undefined;
|
|
88106
88134
|
position?: number | undefined;
|
|
88135
|
+
suggested_options?: string[] | null | undefined;
|
|
88107
88136
|
}, {
|
|
88108
88137
|
required?: boolean | undefined;
|
|
88109
88138
|
meta?: {
|
|
@@ -88128,6 +88157,7 @@ export declare const FieldInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
88128
88157
|
updated_at?: string | undefined;
|
|
88129
88158
|
role_ids?: string[] | undefined;
|
|
88130
88159
|
position?: number | undefined;
|
|
88160
|
+
suggested_options?: string[] | null | undefined;
|
|
88131
88161
|
}>;
|
|
88132
88162
|
relationships: z.ZodObject<{
|
|
88133
88163
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -88417,6 +88447,7 @@ export declare const FieldInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
88417
88447
|
updated_at?: string | undefined;
|
|
88418
88448
|
role_ids?: string[] | undefined;
|
|
88419
88449
|
position?: number | undefined;
|
|
88450
|
+
suggested_options?: string[] | null | undefined;
|
|
88420
88451
|
};
|
|
88421
88452
|
type: "field_setting";
|
|
88422
88453
|
relationships: {
|
|
@@ -88489,6 +88520,7 @@ export declare const FieldInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
88489
88520
|
updated_at?: string | undefined;
|
|
88490
88521
|
role_ids?: string[] | undefined;
|
|
88491
88522
|
position?: number | undefined;
|
|
88523
|
+
suggested_options?: string[] | null | undefined;
|
|
88492
88524
|
};
|
|
88493
88525
|
type: "field_setting";
|
|
88494
88526
|
relationships: {
|
|
@@ -92852,6 +92884,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
92852
92884
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
92853
92885
|
}[] | undefined;
|
|
92854
92886
|
}>>;
|
|
92887
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
92855
92888
|
created_at: z.ZodOptional<z.ZodString>;
|
|
92856
92889
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
92857
92890
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92878,6 +92911,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
92878
92911
|
updated_at?: string | undefined;
|
|
92879
92912
|
role_ids?: string[] | undefined;
|
|
92880
92913
|
position?: number | undefined;
|
|
92914
|
+
suggested_options?: string[] | null | undefined;
|
|
92881
92915
|
}, {
|
|
92882
92916
|
required?: boolean | undefined;
|
|
92883
92917
|
meta?: {
|
|
@@ -92902,6 +92936,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
92902
92936
|
updated_at?: string | undefined;
|
|
92903
92937
|
role_ids?: string[] | undefined;
|
|
92904
92938
|
position?: number | undefined;
|
|
92939
|
+
suggested_options?: string[] | null | undefined;
|
|
92905
92940
|
}>;
|
|
92906
92941
|
relationships: z.ZodObject<{
|
|
92907
92942
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -93191,6 +93226,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
93191
93226
|
updated_at?: string | undefined;
|
|
93192
93227
|
role_ids?: string[] | undefined;
|
|
93193
93228
|
position?: number | undefined;
|
|
93229
|
+
suggested_options?: string[] | null | undefined;
|
|
93194
93230
|
};
|
|
93195
93231
|
type: "field_setting";
|
|
93196
93232
|
relationships: {
|
|
@@ -93263,6 +93299,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
93263
93299
|
updated_at?: string | undefined;
|
|
93264
93300
|
role_ids?: string[] | undefined;
|
|
93265
93301
|
position?: number | undefined;
|
|
93302
|
+
suggested_options?: string[] | null | undefined;
|
|
93266
93303
|
};
|
|
93267
93304
|
type: "field_setting";
|
|
93268
93305
|
relationships: {
|
|
@@ -95867,6 +95904,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
95867
95904
|
updated_at?: string | undefined;
|
|
95868
95905
|
role_ids?: string[] | undefined;
|
|
95869
95906
|
position?: number | undefined;
|
|
95907
|
+
suggested_options?: string[] | null | undefined;
|
|
95870
95908
|
};
|
|
95871
95909
|
type: "field_setting";
|
|
95872
95910
|
relationships: {
|
|
@@ -96537,6 +96575,7 @@ export declare const Fields: z.ZodObject<{
|
|
|
96537
96575
|
updated_at?: string | undefined;
|
|
96538
96576
|
role_ids?: string[] | undefined;
|
|
96539
96577
|
position?: number | undefined;
|
|
96578
|
+
suggested_options?: string[] | null | undefined;
|
|
96540
96579
|
};
|
|
96541
96580
|
type: "field_setting";
|
|
96542
96581
|
relationships: {
|
|
@@ -99130,6 +99169,7 @@ export declare const Field: z.ZodObject<{
|
|
|
99130
99169
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
99131
99170
|
}[] | undefined;
|
|
99132
99171
|
}>>;
|
|
99172
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
99133
99173
|
created_at: z.ZodOptional<z.ZodString>;
|
|
99134
99174
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
99135
99175
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -99156,6 +99196,7 @@ export declare const Field: z.ZodObject<{
|
|
|
99156
99196
|
updated_at?: string | undefined;
|
|
99157
99197
|
role_ids?: string[] | undefined;
|
|
99158
99198
|
position?: number | undefined;
|
|
99199
|
+
suggested_options?: string[] | null | undefined;
|
|
99159
99200
|
}, {
|
|
99160
99201
|
required?: boolean | undefined;
|
|
99161
99202
|
meta?: {
|
|
@@ -99180,6 +99221,7 @@ export declare const Field: z.ZodObject<{
|
|
|
99180
99221
|
updated_at?: string | undefined;
|
|
99181
99222
|
role_ids?: string[] | undefined;
|
|
99182
99223
|
position?: number | undefined;
|
|
99224
|
+
suggested_options?: string[] | null | undefined;
|
|
99183
99225
|
}>;
|
|
99184
99226
|
relationships: z.ZodObject<{
|
|
99185
99227
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -99469,6 +99511,7 @@ export declare const Field: z.ZodObject<{
|
|
|
99469
99511
|
updated_at?: string | undefined;
|
|
99470
99512
|
role_ids?: string[] | undefined;
|
|
99471
99513
|
position?: number | undefined;
|
|
99514
|
+
suggested_options?: string[] | null | undefined;
|
|
99472
99515
|
};
|
|
99473
99516
|
type: "field_setting";
|
|
99474
99517
|
relationships: {
|
|
@@ -99541,6 +99584,7 @@ export declare const Field: z.ZodObject<{
|
|
|
99541
99584
|
updated_at?: string | undefined;
|
|
99542
99585
|
role_ids?: string[] | undefined;
|
|
99543
99586
|
position?: number | undefined;
|
|
99587
|
+
suggested_options?: string[] | null | undefined;
|
|
99544
99588
|
};
|
|
99545
99589
|
type: "field_setting";
|
|
99546
99590
|
relationships: {
|
|
@@ -102135,6 +102179,7 @@ export declare const Field: z.ZodObject<{
|
|
|
102135
102179
|
updated_at?: string | undefined;
|
|
102136
102180
|
role_ids?: string[] | undefined;
|
|
102137
102181
|
position?: number | undefined;
|
|
102182
|
+
suggested_options?: string[] | null | undefined;
|
|
102138
102183
|
};
|
|
102139
102184
|
type: "field_setting";
|
|
102140
102185
|
relationships: {
|
|
@@ -102795,6 +102840,7 @@ export declare const Field: z.ZodObject<{
|
|
|
102795
102840
|
updated_at?: string | undefined;
|
|
102796
102841
|
role_ids?: string[] | undefined;
|
|
102797
102842
|
position?: number | undefined;
|
|
102843
|
+
suggested_options?: string[] | null | undefined;
|
|
102798
102844
|
};
|
|
102799
102845
|
type: "field_setting";
|
|
102800
102846
|
relationships: {
|
|
@@ -104902,6 +104948,7 @@ export declare const TemplateInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
104902
104948
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
104903
104949
|
}[] | undefined;
|
|
104904
104950
|
}>>;
|
|
104951
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
104905
104952
|
created_at: z.ZodOptional<z.ZodString>;
|
|
104906
104953
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
104907
104954
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -104928,6 +104975,7 @@ export declare const TemplateInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
104928
104975
|
updated_at?: string | undefined;
|
|
104929
104976
|
role_ids?: string[] | undefined;
|
|
104930
104977
|
position?: number | undefined;
|
|
104978
|
+
suggested_options?: string[] | null | undefined;
|
|
104931
104979
|
}, {
|
|
104932
104980
|
required?: boolean | undefined;
|
|
104933
104981
|
meta?: {
|
|
@@ -104952,6 +105000,7 @@ export declare const TemplateInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
104952
105000
|
updated_at?: string | undefined;
|
|
104953
105001
|
role_ids?: string[] | undefined;
|
|
104954
105002
|
position?: number | undefined;
|
|
105003
|
+
suggested_options?: string[] | null | undefined;
|
|
104955
105004
|
}>;
|
|
104956
105005
|
relationships: z.ZodObject<{
|
|
104957
105006
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -105241,6 +105290,7 @@ export declare const TemplateInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
105241
105290
|
updated_at?: string | undefined;
|
|
105242
105291
|
role_ids?: string[] | undefined;
|
|
105243
105292
|
position?: number | undefined;
|
|
105293
|
+
suggested_options?: string[] | null | undefined;
|
|
105244
105294
|
};
|
|
105245
105295
|
type: "field_setting";
|
|
105246
105296
|
relationships: {
|
|
@@ -105313,6 +105363,7 @@ export declare const TemplateInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
105313
105363
|
updated_at?: string | undefined;
|
|
105314
105364
|
role_ids?: string[] | undefined;
|
|
105315
105365
|
position?: number | undefined;
|
|
105366
|
+
suggested_options?: string[] | null | undefined;
|
|
105316
105367
|
};
|
|
105317
105368
|
type: "field_setting";
|
|
105318
105369
|
relationships: {
|
|
@@ -109291,6 +109342,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
109291
109342
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
109292
109343
|
}[] | undefined;
|
|
109293
109344
|
}>>;
|
|
109345
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
109294
109346
|
created_at: z.ZodOptional<z.ZodString>;
|
|
109295
109347
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
109296
109348
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -109317,6 +109369,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
109317
109369
|
updated_at?: string | undefined;
|
|
109318
109370
|
role_ids?: string[] | undefined;
|
|
109319
109371
|
position?: number | undefined;
|
|
109372
|
+
suggested_options?: string[] | null | undefined;
|
|
109320
109373
|
}, {
|
|
109321
109374
|
required?: boolean | undefined;
|
|
109322
109375
|
meta?: {
|
|
@@ -109341,6 +109394,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
109341
109394
|
updated_at?: string | undefined;
|
|
109342
109395
|
role_ids?: string[] | undefined;
|
|
109343
109396
|
position?: number | undefined;
|
|
109397
|
+
suggested_options?: string[] | null | undefined;
|
|
109344
109398
|
}>;
|
|
109345
109399
|
relationships: z.ZodObject<{
|
|
109346
109400
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -109630,6 +109684,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
109630
109684
|
updated_at?: string | undefined;
|
|
109631
109685
|
role_ids?: string[] | undefined;
|
|
109632
109686
|
position?: number | undefined;
|
|
109687
|
+
suggested_options?: string[] | null | undefined;
|
|
109633
109688
|
};
|
|
109634
109689
|
type: "field_setting";
|
|
109635
109690
|
relationships: {
|
|
@@ -109702,6 +109757,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
109702
109757
|
updated_at?: string | undefined;
|
|
109703
109758
|
role_ids?: string[] | undefined;
|
|
109704
109759
|
position?: number | undefined;
|
|
109760
|
+
suggested_options?: string[] | null | undefined;
|
|
109705
109761
|
};
|
|
109706
109762
|
type: "field_setting";
|
|
109707
109763
|
relationships: {
|
|
@@ -112253,6 +112309,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
112253
112309
|
updated_at?: string | undefined;
|
|
112254
112310
|
role_ids?: string[] | undefined;
|
|
112255
112311
|
position?: number | undefined;
|
|
112312
|
+
suggested_options?: string[] | null | undefined;
|
|
112256
112313
|
};
|
|
112257
112314
|
type: "field_setting";
|
|
112258
112315
|
relationships: {
|
|
@@ -112870,6 +112927,7 @@ export declare const Templates: z.ZodObject<{
|
|
|
112870
112927
|
updated_at?: string | undefined;
|
|
112871
112928
|
role_ids?: string[] | undefined;
|
|
112872
112929
|
position?: number | undefined;
|
|
112930
|
+
suggested_options?: string[] | null | undefined;
|
|
112873
112931
|
};
|
|
112874
112932
|
type: "field_setting";
|
|
112875
112933
|
relationships: {
|
|
@@ -114958,6 +115016,7 @@ export declare const Template: z.ZodObject<{
|
|
|
114958
115016
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
114959
115017
|
}[] | undefined;
|
|
114960
115018
|
}>>;
|
|
115019
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
114961
115020
|
created_at: z.ZodOptional<z.ZodString>;
|
|
114962
115021
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
114963
115022
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -114984,6 +115043,7 @@ export declare const Template: z.ZodObject<{
|
|
|
114984
115043
|
updated_at?: string | undefined;
|
|
114985
115044
|
role_ids?: string[] | undefined;
|
|
114986
115045
|
position?: number | undefined;
|
|
115046
|
+
suggested_options?: string[] | null | undefined;
|
|
114987
115047
|
}, {
|
|
114988
115048
|
required?: boolean | undefined;
|
|
114989
115049
|
meta?: {
|
|
@@ -115008,6 +115068,7 @@ export declare const Template: z.ZodObject<{
|
|
|
115008
115068
|
updated_at?: string | undefined;
|
|
115009
115069
|
role_ids?: string[] | undefined;
|
|
115010
115070
|
position?: number | undefined;
|
|
115071
|
+
suggested_options?: string[] | null | undefined;
|
|
115011
115072
|
}>;
|
|
115012
115073
|
relationships: z.ZodObject<{
|
|
115013
115074
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -115297,6 +115358,7 @@ export declare const Template: z.ZodObject<{
|
|
|
115297
115358
|
updated_at?: string | undefined;
|
|
115298
115359
|
role_ids?: string[] | undefined;
|
|
115299
115360
|
position?: number | undefined;
|
|
115361
|
+
suggested_options?: string[] | null | undefined;
|
|
115300
115362
|
};
|
|
115301
115363
|
type: "field_setting";
|
|
115302
115364
|
relationships: {
|
|
@@ -115369,6 +115431,7 @@ export declare const Template: z.ZodObject<{
|
|
|
115369
115431
|
updated_at?: string | undefined;
|
|
115370
115432
|
role_ids?: string[] | undefined;
|
|
115371
115433
|
position?: number | undefined;
|
|
115434
|
+
suggested_options?: string[] | null | undefined;
|
|
115372
115435
|
};
|
|
115373
115436
|
type: "field_setting";
|
|
115374
115437
|
relationships: {
|
|
@@ -117910,6 +117973,7 @@ export declare const Template: z.ZodObject<{
|
|
|
117910
117973
|
updated_at?: string | undefined;
|
|
117911
117974
|
role_ids?: string[] | undefined;
|
|
117912
117975
|
position?: number | undefined;
|
|
117976
|
+
suggested_options?: string[] | null | undefined;
|
|
117913
117977
|
};
|
|
117914
117978
|
type: "field_setting";
|
|
117915
117979
|
relationships: {
|
|
@@ -118517,6 +118581,7 @@ export declare const Template: z.ZodObject<{
|
|
|
118517
118581
|
updated_at?: string | undefined;
|
|
118518
118582
|
role_ids?: string[] | undefined;
|
|
118519
118583
|
position?: number | undefined;
|
|
118584
|
+
suggested_options?: string[] | null | undefined;
|
|
118520
118585
|
};
|
|
118521
118586
|
type: "field_setting";
|
|
118522
118587
|
relationships: {
|
|
@@ -118809,6 +118874,7 @@ export declare const FieldSettingData: z.ZodObject<{
|
|
|
118809
118874
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
118810
118875
|
}[] | undefined;
|
|
118811
118876
|
}>>;
|
|
118877
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
118812
118878
|
created_at: z.ZodOptional<z.ZodString>;
|
|
118813
118879
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
118814
118880
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -118835,6 +118901,7 @@ export declare const FieldSettingData: z.ZodObject<{
|
|
|
118835
118901
|
updated_at?: string | undefined;
|
|
118836
118902
|
role_ids?: string[] | undefined;
|
|
118837
118903
|
position?: number | undefined;
|
|
118904
|
+
suggested_options?: string[] | null | undefined;
|
|
118838
118905
|
}, {
|
|
118839
118906
|
required?: boolean | undefined;
|
|
118840
118907
|
meta?: {
|
|
@@ -118859,6 +118926,7 @@ export declare const FieldSettingData: z.ZodObject<{
|
|
|
118859
118926
|
updated_at?: string | undefined;
|
|
118860
118927
|
role_ids?: string[] | undefined;
|
|
118861
118928
|
position?: number | undefined;
|
|
118929
|
+
suggested_options?: string[] | null | undefined;
|
|
118862
118930
|
}>;
|
|
118863
118931
|
relationships: z.ZodObject<{
|
|
118864
118932
|
field: z.ZodOptional<z.ZodObject<{
|
|
@@ -119209,6 +119277,7 @@ export declare const FieldSettingData: z.ZodObject<{
|
|
|
119209
119277
|
updated_at?: string | undefined;
|
|
119210
119278
|
role_ids?: string[] | undefined;
|
|
119211
119279
|
position?: number | undefined;
|
|
119280
|
+
suggested_options?: string[] | null | undefined;
|
|
119212
119281
|
};
|
|
119213
119282
|
type: "field_setting";
|
|
119214
119283
|
relationships: {
|
|
@@ -119290,6 +119359,7 @@ export declare const FieldSettingData: z.ZodObject<{
|
|
|
119290
119359
|
updated_at?: string | undefined;
|
|
119291
119360
|
role_ids?: string[] | undefined;
|
|
119292
119361
|
position?: number | undefined;
|
|
119362
|
+
suggested_options?: string[] | null | undefined;
|
|
119293
119363
|
};
|
|
119294
119364
|
type: "field_setting";
|
|
119295
119365
|
relationships: {
|
|
@@ -120829,6 +120899,7 @@ export declare const FieldSettingInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
|
120829
120899
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
120830
120900
|
}[] | undefined;
|
|
120831
120901
|
}>>;
|
|
120902
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
120832
120903
|
created_at: z.ZodOptional<z.ZodString>;
|
|
120833
120904
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
120834
120905
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -120855,6 +120926,7 @@ export declare const FieldSettingInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
|
120855
120926
|
updated_at?: string | undefined;
|
|
120856
120927
|
role_ids?: string[] | undefined;
|
|
120857
120928
|
position?: number | undefined;
|
|
120929
|
+
suggested_options?: string[] | null | undefined;
|
|
120858
120930
|
}, {
|
|
120859
120931
|
required?: boolean | undefined;
|
|
120860
120932
|
meta?: {
|
|
@@ -120879,6 +120951,7 @@ export declare const FieldSettingInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
|
120879
120951
|
updated_at?: string | undefined;
|
|
120880
120952
|
role_ids?: string[] | undefined;
|
|
120881
120953
|
position?: number | undefined;
|
|
120954
|
+
suggested_options?: string[] | null | undefined;
|
|
120882
120955
|
}>;
|
|
120883
120956
|
relationships: z.ZodObject<{
|
|
120884
120957
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -121168,6 +121241,7 @@ export declare const FieldSettingInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
|
121168
121241
|
updated_at?: string | undefined;
|
|
121169
121242
|
role_ids?: string[] | undefined;
|
|
121170
121243
|
position?: number | undefined;
|
|
121244
|
+
suggested_options?: string[] | null | undefined;
|
|
121171
121245
|
};
|
|
121172
121246
|
type: "field_setting";
|
|
121173
121247
|
relationships: {
|
|
@@ -121240,6 +121314,7 @@ export declare const FieldSettingInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<
|
|
|
121240
121314
|
updated_at?: string | undefined;
|
|
121241
121315
|
role_ids?: string[] | undefined;
|
|
121242
121316
|
position?: number | undefined;
|
|
121317
|
+
suggested_options?: string[] | null | undefined;
|
|
121243
121318
|
};
|
|
121244
121319
|
type: "field_setting";
|
|
121245
121320
|
relationships: {
|
|
@@ -123888,6 +123963,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
123888
123963
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
123889
123964
|
}[] | undefined;
|
|
123890
123965
|
}>>;
|
|
123966
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
123891
123967
|
created_at: z.ZodOptional<z.ZodString>;
|
|
123892
123968
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
123893
123969
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -123914,6 +123990,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
123914
123990
|
updated_at?: string | undefined;
|
|
123915
123991
|
role_ids?: string[] | undefined;
|
|
123916
123992
|
position?: number | undefined;
|
|
123993
|
+
suggested_options?: string[] | null | undefined;
|
|
123917
123994
|
}, {
|
|
123918
123995
|
required?: boolean | undefined;
|
|
123919
123996
|
meta?: {
|
|
@@ -123938,6 +124015,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
123938
124015
|
updated_at?: string | undefined;
|
|
123939
124016
|
role_ids?: string[] | undefined;
|
|
123940
124017
|
position?: number | undefined;
|
|
124018
|
+
suggested_options?: string[] | null | undefined;
|
|
123941
124019
|
}>;
|
|
123942
124020
|
relationships: z.ZodObject<{
|
|
123943
124021
|
field: z.ZodOptional<z.ZodObject<{
|
|
@@ -124288,6 +124366,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
124288
124366
|
updated_at?: string | undefined;
|
|
124289
124367
|
role_ids?: string[] | undefined;
|
|
124290
124368
|
position?: number | undefined;
|
|
124369
|
+
suggested_options?: string[] | null | undefined;
|
|
124291
124370
|
};
|
|
124292
124371
|
type: "field_setting";
|
|
124293
124372
|
relationships: {
|
|
@@ -124369,6 +124448,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
124369
124448
|
updated_at?: string | undefined;
|
|
124370
124449
|
role_ids?: string[] | undefined;
|
|
124371
124450
|
position?: number | undefined;
|
|
124451
|
+
suggested_options?: string[] | null | undefined;
|
|
124372
124452
|
};
|
|
124373
124453
|
type: "field_setting";
|
|
124374
124454
|
relationships: {
|
|
@@ -125975,6 +126055,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
125975
126055
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
125976
126056
|
}[] | undefined;
|
|
125977
126057
|
}>>;
|
|
126058
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
125978
126059
|
created_at: z.ZodOptional<z.ZodString>;
|
|
125979
126060
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
125980
126061
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -126001,6 +126082,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
126001
126082
|
updated_at?: string | undefined;
|
|
126002
126083
|
role_ids?: string[] | undefined;
|
|
126003
126084
|
position?: number | undefined;
|
|
126085
|
+
suggested_options?: string[] | null | undefined;
|
|
126004
126086
|
}, {
|
|
126005
126087
|
required?: boolean | undefined;
|
|
126006
126088
|
meta?: {
|
|
@@ -126025,6 +126107,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
126025
126107
|
updated_at?: string | undefined;
|
|
126026
126108
|
role_ids?: string[] | undefined;
|
|
126027
126109
|
position?: number | undefined;
|
|
126110
|
+
suggested_options?: string[] | null | undefined;
|
|
126028
126111
|
}>;
|
|
126029
126112
|
relationships: z.ZodObject<{
|
|
126030
126113
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -126314,6 +126397,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
126314
126397
|
updated_at?: string | undefined;
|
|
126315
126398
|
role_ids?: string[] | undefined;
|
|
126316
126399
|
position?: number | undefined;
|
|
126400
|
+
suggested_options?: string[] | null | undefined;
|
|
126317
126401
|
};
|
|
126318
126402
|
type: "field_setting";
|
|
126319
126403
|
relationships: {
|
|
@@ -126386,6 +126470,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
126386
126470
|
updated_at?: string | undefined;
|
|
126387
126471
|
role_ids?: string[] | undefined;
|
|
126388
126472
|
position?: number | undefined;
|
|
126473
|
+
suggested_options?: string[] | null | undefined;
|
|
126389
126474
|
};
|
|
126390
126475
|
type: "field_setting";
|
|
126391
126476
|
relationships: {
|
|
@@ -128967,6 +129052,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
128967
129052
|
updated_at?: string | undefined;
|
|
128968
129053
|
role_ids?: string[] | undefined;
|
|
128969
129054
|
position?: number | undefined;
|
|
129055
|
+
suggested_options?: string[] | null | undefined;
|
|
128970
129056
|
};
|
|
128971
129057
|
type: "field_setting";
|
|
128972
129058
|
relationships: {
|
|
@@ -129454,6 +129540,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
129454
129540
|
updated_at?: string | undefined;
|
|
129455
129541
|
role_ids?: string[] | undefined;
|
|
129456
129542
|
position?: number | undefined;
|
|
129543
|
+
suggested_options?: string[] | null | undefined;
|
|
129457
129544
|
};
|
|
129458
129545
|
type: "field_setting";
|
|
129459
129546
|
relationships: {
|
|
@@ -129679,6 +129766,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
129679
129766
|
updated_at?: string | undefined;
|
|
129680
129767
|
role_ids?: string[] | undefined;
|
|
129681
129768
|
position?: number | undefined;
|
|
129769
|
+
suggested_options?: string[] | null | undefined;
|
|
129682
129770
|
};
|
|
129683
129771
|
type: "field_setting";
|
|
129684
129772
|
relationships: {
|
|
@@ -130166,6 +130254,7 @@ export declare const FieldSettings: z.ZodObject<{
|
|
|
130166
130254
|
updated_at?: string | undefined;
|
|
130167
130255
|
role_ids?: string[] | undefined;
|
|
130168
130256
|
position?: number | undefined;
|
|
130257
|
+
suggested_options?: string[] | null | undefined;
|
|
130169
130258
|
};
|
|
130170
130259
|
type: "field_setting";
|
|
130171
130260
|
relationships: {
|
|
@@ -130681,6 +130770,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
130681
130770
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
130682
130771
|
}[] | undefined;
|
|
130683
130772
|
}>>;
|
|
130773
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
130684
130774
|
created_at: z.ZodOptional<z.ZodString>;
|
|
130685
130775
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
130686
130776
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -130707,6 +130797,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
130707
130797
|
updated_at?: string | undefined;
|
|
130708
130798
|
role_ids?: string[] | undefined;
|
|
130709
130799
|
position?: number | undefined;
|
|
130800
|
+
suggested_options?: string[] | null | undefined;
|
|
130710
130801
|
}, {
|
|
130711
130802
|
required?: boolean | undefined;
|
|
130712
130803
|
meta?: {
|
|
@@ -130731,6 +130822,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
130731
130822
|
updated_at?: string | undefined;
|
|
130732
130823
|
role_ids?: string[] | undefined;
|
|
130733
130824
|
position?: number | undefined;
|
|
130825
|
+
suggested_options?: string[] | null | undefined;
|
|
130734
130826
|
}>;
|
|
130735
130827
|
relationships: z.ZodObject<{
|
|
130736
130828
|
field: z.ZodOptional<z.ZodObject<{
|
|
@@ -131081,6 +131173,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
131081
131173
|
updated_at?: string | undefined;
|
|
131082
131174
|
role_ids?: string[] | undefined;
|
|
131083
131175
|
position?: number | undefined;
|
|
131176
|
+
suggested_options?: string[] | null | undefined;
|
|
131084
131177
|
};
|
|
131085
131178
|
type: "field_setting";
|
|
131086
131179
|
relationships: {
|
|
@@ -131162,6 +131255,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
131162
131255
|
updated_at?: string | undefined;
|
|
131163
131256
|
role_ids?: string[] | undefined;
|
|
131164
131257
|
position?: number | undefined;
|
|
131258
|
+
suggested_options?: string[] | null | undefined;
|
|
131165
131259
|
};
|
|
131166
131260
|
type: "field_setting";
|
|
131167
131261
|
relationships: {
|
|
@@ -132726,6 +132820,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
132726
132820
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
132727
132821
|
}[] | undefined;
|
|
132728
132822
|
}>>;
|
|
132823
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
132729
132824
|
created_at: z.ZodOptional<z.ZodString>;
|
|
132730
132825
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
132731
132826
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -132752,6 +132847,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
132752
132847
|
updated_at?: string | undefined;
|
|
132753
132848
|
role_ids?: string[] | undefined;
|
|
132754
132849
|
position?: number | undefined;
|
|
132850
|
+
suggested_options?: string[] | null | undefined;
|
|
132755
132851
|
}, {
|
|
132756
132852
|
required?: boolean | undefined;
|
|
132757
132853
|
meta?: {
|
|
@@ -132776,6 +132872,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
132776
132872
|
updated_at?: string | undefined;
|
|
132777
132873
|
role_ids?: string[] | undefined;
|
|
132778
132874
|
position?: number | undefined;
|
|
132875
|
+
suggested_options?: string[] | null | undefined;
|
|
132779
132876
|
}>;
|
|
132780
132877
|
relationships: z.ZodObject<{
|
|
132781
132878
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -133065,6 +133162,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
133065
133162
|
updated_at?: string | undefined;
|
|
133066
133163
|
role_ids?: string[] | undefined;
|
|
133067
133164
|
position?: number | undefined;
|
|
133165
|
+
suggested_options?: string[] | null | undefined;
|
|
133068
133166
|
};
|
|
133069
133167
|
type: "field_setting";
|
|
133070
133168
|
relationships: {
|
|
@@ -133137,6 +133235,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
133137
133235
|
updated_at?: string | undefined;
|
|
133138
133236
|
role_ids?: string[] | undefined;
|
|
133139
133237
|
position?: number | undefined;
|
|
133238
|
+
suggested_options?: string[] | null | undefined;
|
|
133140
133239
|
};
|
|
133141
133240
|
type: "field_setting";
|
|
133142
133241
|
relationships: {
|
|
@@ -135718,6 +135817,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
135718
135817
|
updated_at?: string | undefined;
|
|
135719
135818
|
role_ids?: string[] | undefined;
|
|
135720
135819
|
position?: number | undefined;
|
|
135820
|
+
suggested_options?: string[] | null | undefined;
|
|
135721
135821
|
};
|
|
135722
135822
|
type: "field_setting";
|
|
135723
135823
|
relationships: {
|
|
@@ -136195,6 +136295,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
136195
136295
|
updated_at?: string | undefined;
|
|
136196
136296
|
role_ids?: string[] | undefined;
|
|
136197
136297
|
position?: number | undefined;
|
|
136298
|
+
suggested_options?: string[] | null | undefined;
|
|
136198
136299
|
};
|
|
136199
136300
|
type: "field_setting";
|
|
136200
136301
|
relationships: {
|
|
@@ -136420,6 +136521,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
136420
136521
|
updated_at?: string | undefined;
|
|
136421
136522
|
role_ids?: string[] | undefined;
|
|
136422
136523
|
position?: number | undefined;
|
|
136524
|
+
suggested_options?: string[] | null | undefined;
|
|
136423
136525
|
};
|
|
136424
136526
|
type: "field_setting";
|
|
136425
136527
|
relationships: {
|
|
@@ -136897,6 +136999,7 @@ export declare const FieldSetting: z.ZodObject<{
|
|
|
136897
136999
|
updated_at?: string | undefined;
|
|
136898
137000
|
role_ids?: string[] | undefined;
|
|
136899
137001
|
position?: number | undefined;
|
|
137002
|
+
suggested_options?: string[] | null | undefined;
|
|
136900
137003
|
};
|
|
136901
137004
|
type: "field_setting";
|
|
136902
137005
|
relationships: {
|
|
@@ -144034,6 +144137,7 @@ export declare const CaseInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
144034
144137
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
144035
144138
|
}[] | undefined;
|
|
144036
144139
|
}>>;
|
|
144140
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
144037
144141
|
created_at: z.ZodOptional<z.ZodString>;
|
|
144038
144142
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
144039
144143
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -144060,6 +144164,7 @@ export declare const CaseInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
144060
144164
|
updated_at?: string | undefined;
|
|
144061
144165
|
role_ids?: string[] | undefined;
|
|
144062
144166
|
position?: number | undefined;
|
|
144167
|
+
suggested_options?: string[] | null | undefined;
|
|
144063
144168
|
}, {
|
|
144064
144169
|
required?: boolean | undefined;
|
|
144065
144170
|
meta?: {
|
|
@@ -144084,6 +144189,7 @@ export declare const CaseInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
144084
144189
|
updated_at?: string | undefined;
|
|
144085
144190
|
role_ids?: string[] | undefined;
|
|
144086
144191
|
position?: number | undefined;
|
|
144192
|
+
suggested_options?: string[] | null | undefined;
|
|
144087
144193
|
}>;
|
|
144088
144194
|
relationships: z.ZodObject<{
|
|
144089
144195
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -144373,6 +144479,7 @@ export declare const CaseInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
144373
144479
|
updated_at?: string | undefined;
|
|
144374
144480
|
role_ids?: string[] | undefined;
|
|
144375
144481
|
position?: number | undefined;
|
|
144482
|
+
suggested_options?: string[] | null | undefined;
|
|
144376
144483
|
};
|
|
144377
144484
|
type: "field_setting";
|
|
144378
144485
|
relationships: {
|
|
@@ -144445,6 +144552,7 @@ export declare const CaseInclusions: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
144445
144552
|
updated_at?: string | undefined;
|
|
144446
144553
|
role_ids?: string[] | undefined;
|
|
144447
144554
|
position?: number | undefined;
|
|
144555
|
+
suggested_options?: string[] | null | undefined;
|
|
144448
144556
|
};
|
|
144449
144557
|
type: "field_setting";
|
|
144450
144558
|
relationships: {
|
|
@@ -148840,6 +148948,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
148840
148948
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
148841
148949
|
}[] | undefined;
|
|
148842
148950
|
}>>;
|
|
148951
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
148843
148952
|
created_at: z.ZodOptional<z.ZodString>;
|
|
148844
148953
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
148845
148954
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -148866,6 +148975,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
148866
148975
|
updated_at?: string | undefined;
|
|
148867
148976
|
role_ids?: string[] | undefined;
|
|
148868
148977
|
position?: number | undefined;
|
|
148978
|
+
suggested_options?: string[] | null | undefined;
|
|
148869
148979
|
}, {
|
|
148870
148980
|
required?: boolean | undefined;
|
|
148871
148981
|
meta?: {
|
|
@@ -148890,6 +149000,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
148890
149000
|
updated_at?: string | undefined;
|
|
148891
149001
|
role_ids?: string[] | undefined;
|
|
148892
149002
|
position?: number | undefined;
|
|
149003
|
+
suggested_options?: string[] | null | undefined;
|
|
148893
149004
|
}>;
|
|
148894
149005
|
relationships: z.ZodObject<{
|
|
148895
149006
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -149179,6 +149290,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
149179
149290
|
updated_at?: string | undefined;
|
|
149180
149291
|
role_ids?: string[] | undefined;
|
|
149181
149292
|
position?: number | undefined;
|
|
149293
|
+
suggested_options?: string[] | null | undefined;
|
|
149182
149294
|
};
|
|
149183
149295
|
type: "field_setting";
|
|
149184
149296
|
relationships: {
|
|
@@ -149251,6 +149363,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
149251
149363
|
updated_at?: string | undefined;
|
|
149252
149364
|
role_ids?: string[] | undefined;
|
|
149253
149365
|
position?: number | undefined;
|
|
149366
|
+
suggested_options?: string[] | null | undefined;
|
|
149254
149367
|
};
|
|
149255
149368
|
type: "field_setting";
|
|
149256
149369
|
relationships: {
|
|
@@ -151401,6 +151514,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
151401
151514
|
updated_at?: string | undefined;
|
|
151402
151515
|
role_ids?: string[] | undefined;
|
|
151403
151516
|
position?: number | undefined;
|
|
151517
|
+
suggested_options?: string[] | null | undefined;
|
|
151404
151518
|
};
|
|
151405
151519
|
type: "field_setting";
|
|
151406
151520
|
relationships: {
|
|
@@ -152069,6 +152183,7 @@ export declare const Cases: z.ZodObject<{
|
|
|
152069
152183
|
updated_at?: string | undefined;
|
|
152070
152184
|
role_ids?: string[] | undefined;
|
|
152071
152185
|
position?: number | undefined;
|
|
152186
|
+
suggested_options?: string[] | null | undefined;
|
|
152072
152187
|
};
|
|
152073
152188
|
type: "field_setting";
|
|
152074
152189
|
relationships: {
|
|
@@ -154956,6 +155071,7 @@ export declare const Case: z.ZodObject<{
|
|
|
154956
155071
|
value?: string | number | boolean | (string | number)[] | undefined;
|
|
154957
155072
|
}[] | undefined;
|
|
154958
155073
|
}>>;
|
|
155074
|
+
suggested_options: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodArray<z.ZodString, "many">]>>;
|
|
154959
155075
|
created_at: z.ZodOptional<z.ZodString>;
|
|
154960
155076
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
154961
155077
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -154982,6 +155098,7 @@ export declare const Case: z.ZodObject<{
|
|
|
154982
155098
|
updated_at?: string | undefined;
|
|
154983
155099
|
role_ids?: string[] | undefined;
|
|
154984
155100
|
position?: number | undefined;
|
|
155101
|
+
suggested_options?: string[] | null | undefined;
|
|
154985
155102
|
}, {
|
|
154986
155103
|
required?: boolean | undefined;
|
|
154987
155104
|
meta?: {
|
|
@@ -155006,6 +155123,7 @@ export declare const Case: z.ZodObject<{
|
|
|
155006
155123
|
updated_at?: string | undefined;
|
|
155007
155124
|
role_ids?: string[] | undefined;
|
|
155008
155125
|
position?: number | undefined;
|
|
155126
|
+
suggested_options?: string[] | null | undefined;
|
|
155009
155127
|
}>;
|
|
155010
155128
|
relationships: z.ZodObject<{
|
|
155011
155129
|
constituent_fields: z.ZodOptional<z.ZodObject<{
|
|
@@ -155295,6 +155413,7 @@ export declare const Case: z.ZodObject<{
|
|
|
155295
155413
|
updated_at?: string | undefined;
|
|
155296
155414
|
role_ids?: string[] | undefined;
|
|
155297
155415
|
position?: number | undefined;
|
|
155416
|
+
suggested_options?: string[] | null | undefined;
|
|
155298
155417
|
};
|
|
155299
155418
|
type: "field_setting";
|
|
155300
155419
|
relationships: {
|
|
@@ -155367,6 +155486,7 @@ export declare const Case: z.ZodObject<{
|
|
|
155367
155486
|
updated_at?: string | undefined;
|
|
155368
155487
|
role_ids?: string[] | undefined;
|
|
155369
155488
|
position?: number | undefined;
|
|
155489
|
+
suggested_options?: string[] | null | undefined;
|
|
155370
155490
|
};
|
|
155371
155491
|
type: "field_setting";
|
|
155372
155492
|
relationships: {
|
|
@@ -157507,6 +157627,7 @@ export declare const Case: z.ZodObject<{
|
|
|
157507
157627
|
updated_at?: string | undefined;
|
|
157508
157628
|
role_ids?: string[] | undefined;
|
|
157509
157629
|
position?: number | undefined;
|
|
157630
|
+
suggested_options?: string[] | null | undefined;
|
|
157510
157631
|
};
|
|
157511
157632
|
type: "field_setting";
|
|
157512
157633
|
relationships: {
|
|
@@ -158165,6 +158286,7 @@ export declare const Case: z.ZodObject<{
|
|
|
158165
158286
|
updated_at?: string | undefined;
|
|
158166
158287
|
role_ids?: string[] | undefined;
|
|
158167
158288
|
position?: number | undefined;
|
|
158289
|
+
suggested_options?: string[] | null | undefined;
|
|
158168
158290
|
};
|
|
158169
158291
|
type: "field_setting";
|
|
158170
158292
|
relationships: {
|
package/dist/openapi.zod.js
CHANGED
|
@@ -1035,6 +1035,7 @@ export const FieldSettingAttributes = z
|
|
|
1035
1035
|
})),
|
|
1036
1036
|
})
|
|
1037
1037
|
.partial(),
|
|
1038
|
+
suggested_options: z.union([z.null(), z.array(z.string())]),
|
|
1038
1039
|
created_at: z.string().datetime({ offset: true }),
|
|
1039
1040
|
updated_at: z.string().datetime({ offset: true }),
|
|
1040
1041
|
})
|
package/package.json
CHANGED