@zapier/zapier-sdk 0.15.12 → 0.16.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/CHANGELOG.md +19 -0
- package/LICENSE +2 -0
- package/dist/api/schemas.d.ts +133 -1488
- package/dist/api/schemas.d.ts.map +1 -1
- package/dist/api/schemas.js +10 -10
- package/dist/index.cjs +27 -27
- package/dist/index.d.mts +296 -1830
- package/dist/index.mjs +27 -27
- package/dist/plugins/apps/schemas.d.ts +2 -12
- package/dist/plugins/apps/schemas.d.ts.map +1 -1
- package/dist/plugins/apps/schemas.js +1 -1
- package/dist/plugins/fetch/schemas.d.ts +12 -18
- package/dist/plugins/fetch/schemas.d.ts.map +1 -1
- package/dist/plugins/fetch/schemas.js +1 -1
- package/dist/plugins/findFirstAuthentication/schemas.d.ts +2 -14
- package/dist/plugins/findFirstAuthentication/schemas.d.ts.map +1 -1
- package/dist/plugins/findUniqueAuthentication/schemas.d.ts +2 -14
- package/dist/plugins/findUniqueAuthentication/schemas.d.ts.map +1 -1
- package/dist/plugins/getAction/schemas.d.ts +13 -23
- package/dist/plugins/getAction/schemas.d.ts.map +1 -1
- package/dist/plugins/getApp/schemas.d.ts +2 -6
- package/dist/plugins/getApp/schemas.d.ts.map +1 -1
- package/dist/plugins/getInputFieldsSchema/schemas.d.ts +12 -15
- package/dist/plugins/getInputFieldsSchema/schemas.d.ts.map +1 -1
- package/dist/plugins/getProfile/schemas.d.ts +1 -1
- package/dist/plugins/getProfile/schemas.d.ts.map +1 -1
- package/dist/plugins/listActions/schemas.d.ts +13 -27
- package/dist/plugins/listActions/schemas.d.ts.map +1 -1
- package/dist/plugins/listAuthentications/schemas.d.ts +5 -36
- package/dist/plugins/listAuthentications/schemas.d.ts.map +1 -1
- package/dist/plugins/listInputFieldChoices/schemas.d.ts +13 -36
- package/dist/plugins/listInputFieldChoices/schemas.d.ts.map +1 -1
- package/dist/plugins/listInputFields/schemas.d.ts +12 -21
- package/dist/plugins/listInputFields/schemas.d.ts.map +1 -1
- package/dist/plugins/manifest/schemas.d.ts +6 -90
- package/dist/plugins/manifest/schemas.d.ts.map +1 -1
- package/dist/plugins/manifest/schemas.js +5 -2
- package/dist/plugins/request/schemas.d.ts +24 -68
- package/dist/plugins/request/schemas.d.ts.map +1 -1
- package/dist/plugins/request/schemas.js +1 -1
- package/dist/plugins/runAction/schemas.d.ts +12 -21
- package/dist/plugins/runAction/schemas.d.ts.map +1 -1
- package/dist/schemas/Action.d.ts +13 -30
- package/dist/schemas/Action.d.ts.map +1 -1
- package/dist/schemas/App.d.ts +30 -171
- package/dist/schemas/App.d.ts.map +1 -1
- package/dist/schemas/Auth.d.ts +14 -120
- package/dist/schemas/Auth.d.ts.map +1 -1
- package/dist/schemas/Field.d.ts +10 -108
- package/dist/schemas/Field.d.ts.map +1 -1
- package/dist/schemas/UserProfile.d.ts +5 -113
- package/dist/schemas/UserProfile.d.ts.map +1 -1
- package/dist/temporary-internal-core/schemas/apps/index.d.ts +19 -440
- package/dist/temporary-internal-core/schemas/apps/index.d.ts.map +1 -1
- package/dist/temporary-internal-core/schemas/authentications/index.d.ts +23 -327
- package/dist/temporary-internal-core/schemas/authentications/index.d.ts.map +1 -1
- package/dist/temporary-internal-core/schemas/authentications/index.js +1 -1
- package/dist/temporary-internal-core/schemas/implementations/index.d.ts +9 -393
- package/dist/temporary-internal-core/schemas/implementations/index.d.ts.map +1 -1
- package/dist/types/properties.d.ts +11 -2
- package/dist/types/properties.d.ts.map +1 -1
- package/dist/types/properties.js +2 -2
- package/dist/utils/function-utils.d.ts +2 -14
- package/dist/utils/function-utils.d.ts.map +1 -1
- package/dist/utils/schema-utils.d.ts.map +1 -1
- package/dist/utils/schema-utils.js +10 -9
- package/dist/utils/validation.d.ts +1 -1
- package/dist/utils/validation.d.ts.map +1 -1
- package/dist/utils/validation.js +2 -2
- package/package.json +4 -4
package/dist/api/schemas.d.ts
CHANGED
|
@@ -9,47 +9,27 @@ export declare const NeedChoicesSchema: z.ZodObject<{
|
|
|
9
9
|
label: z.ZodOptional<z.ZodString>;
|
|
10
10
|
sample: z.ZodOptional<z.ZodString>;
|
|
11
11
|
value: z.ZodOptional<z.ZodString>;
|
|
12
|
-
},
|
|
13
|
-
key?: string | undefined;
|
|
14
|
-
value?: string | undefined;
|
|
15
|
-
label?: string | undefined;
|
|
16
|
-
sample?: string | undefined;
|
|
17
|
-
}, {
|
|
18
|
-
key?: string | undefined;
|
|
19
|
-
value?: string | undefined;
|
|
20
|
-
label?: string | undefined;
|
|
21
|
-
sample?: string | undefined;
|
|
22
|
-
}>;
|
|
12
|
+
}, z.core.$strip>;
|
|
23
13
|
export declare const NeedSchema: z.ZodObject<{
|
|
24
14
|
key: z.ZodString;
|
|
25
15
|
alters_custom_fields: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
26
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodString
|
|
16
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
27
17
|
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28
18
|
key: z.ZodOptional<z.ZodString>;
|
|
29
19
|
label: z.ZodOptional<z.ZodString>;
|
|
30
20
|
sample: z.ZodOptional<z.ZodString>;
|
|
31
21
|
value: z.ZodOptional<z.ZodString>;
|
|
32
|
-
},
|
|
33
|
-
key?: string | undefined;
|
|
34
|
-
value?: string | undefined;
|
|
35
|
-
label?: string | undefined;
|
|
36
|
-
sample?: string | undefined;
|
|
37
|
-
}, {
|
|
38
|
-
key?: string | undefined;
|
|
39
|
-
value?: string | undefined;
|
|
40
|
-
label?: string | undefined;
|
|
41
|
-
sample?: string | undefined;
|
|
42
|
-
}>, "many">>;
|
|
22
|
+
}, z.core.$strip>>>;
|
|
43
23
|
computed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
44
24
|
custom_field: z.ZodOptional<z.ZodBoolean>;
|
|
45
25
|
default: z.ZodOptional<z.ZodString>;
|
|
46
|
-
depends_on: z.ZodOptional<z.ZodArray<z.ZodString
|
|
26
|
+
depends_on: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47
27
|
format: z.ZodOptional<z.ZodLiteral<"SELECT">>;
|
|
48
28
|
from_search: z.ZodOptional<z.ZodBoolean>;
|
|
49
29
|
from_write: z.ZodOptional<z.ZodBoolean>;
|
|
50
30
|
help_text: z.ZodOptional<z.ZodString>;
|
|
51
31
|
help_text_html: z.ZodOptional<z.ZodString>;
|
|
52
|
-
input_format: z.ZodOptional<z.ZodArray<z.ZodString
|
|
32
|
+
input_format: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
53
33
|
label: z.ZodOptional<z.ZodString>;
|
|
54
34
|
language: z.ZodOptional<z.ZodString>;
|
|
55
35
|
parent_key: z.ZodOptional<z.ZodString>;
|
|
@@ -59,177 +39,78 @@ export declare const NeedSchema: z.ZodObject<{
|
|
|
59
39
|
searchfill: z.ZodOptional<z.ZodString>;
|
|
60
40
|
send_in_json: z.ZodOptional<z.ZodBoolean>;
|
|
61
41
|
regex: z.ZodOptional<z.ZodString>;
|
|
62
|
-
type: z.ZodOptional<z.ZodEnum<
|
|
42
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
43
|
+
string: "string";
|
|
44
|
+
boolean: "boolean";
|
|
45
|
+
file: "file";
|
|
46
|
+
integer: "integer";
|
|
47
|
+
text: "text";
|
|
48
|
+
datetime: "datetime";
|
|
49
|
+
decimal: "decimal";
|
|
50
|
+
copy: "copy";
|
|
51
|
+
password: "password";
|
|
52
|
+
dict: "dict";
|
|
53
|
+
code: "code";
|
|
54
|
+
filter: "filter";
|
|
55
|
+
json: "json";
|
|
56
|
+
}>>;
|
|
63
57
|
list: z.ZodOptional<z.ZodBoolean>;
|
|
64
|
-
},
|
|
65
|
-
key: string;
|
|
66
|
-
default?: string | undefined;
|
|
67
|
-
type?: "string" | "boolean" | "code" | "filter" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
68
|
-
list?: boolean | undefined;
|
|
69
|
-
label?: string | undefined;
|
|
70
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
71
|
-
capabilities?: string[] | undefined;
|
|
72
|
-
choices?: {
|
|
73
|
-
key?: string | undefined;
|
|
74
|
-
value?: string | undefined;
|
|
75
|
-
label?: string | undefined;
|
|
76
|
-
sample?: string | undefined;
|
|
77
|
-
}[] | undefined;
|
|
78
|
-
computed?: boolean | null | undefined;
|
|
79
|
-
custom_field?: boolean | undefined;
|
|
80
|
-
depends_on?: string[] | undefined;
|
|
81
|
-
format?: "SELECT" | undefined;
|
|
82
|
-
from_search?: boolean | undefined;
|
|
83
|
-
from_write?: boolean | undefined;
|
|
84
|
-
help_text?: string | undefined;
|
|
85
|
-
help_text_html?: string | undefined;
|
|
86
|
-
input_format?: string[] | undefined;
|
|
87
|
-
language?: string | undefined;
|
|
88
|
-
parent_key?: string | undefined;
|
|
89
|
-
placeholder?: string | undefined;
|
|
90
|
-
prefill?: string | undefined;
|
|
91
|
-
required?: boolean | undefined;
|
|
92
|
-
searchfill?: string | undefined;
|
|
93
|
-
send_in_json?: boolean | undefined;
|
|
94
|
-
regex?: string | undefined;
|
|
95
|
-
}, {
|
|
96
|
-
key: string;
|
|
97
|
-
default?: string | undefined;
|
|
98
|
-
type?: "string" | "boolean" | "code" | "filter" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
99
|
-
list?: boolean | undefined;
|
|
100
|
-
label?: string | undefined;
|
|
101
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
102
|
-
capabilities?: string[] | undefined;
|
|
103
|
-
choices?: {
|
|
104
|
-
key?: string | undefined;
|
|
105
|
-
value?: string | undefined;
|
|
106
|
-
label?: string | undefined;
|
|
107
|
-
sample?: string | undefined;
|
|
108
|
-
}[] | undefined;
|
|
109
|
-
computed?: boolean | null | undefined;
|
|
110
|
-
custom_field?: boolean | undefined;
|
|
111
|
-
depends_on?: string[] | undefined;
|
|
112
|
-
format?: "SELECT" | undefined;
|
|
113
|
-
from_search?: boolean | undefined;
|
|
114
|
-
from_write?: boolean | undefined;
|
|
115
|
-
help_text?: string | undefined;
|
|
116
|
-
help_text_html?: string | undefined;
|
|
117
|
-
input_format?: string[] | undefined;
|
|
118
|
-
language?: string | undefined;
|
|
119
|
-
parent_key?: string | undefined;
|
|
120
|
-
placeholder?: string | undefined;
|
|
121
|
-
prefill?: string | undefined;
|
|
122
|
-
required?: boolean | undefined;
|
|
123
|
-
searchfill?: string | undefined;
|
|
124
|
-
send_in_json?: boolean | undefined;
|
|
125
|
-
regex?: string | undefined;
|
|
126
|
-
}>;
|
|
58
|
+
}, z.core.$strip>;
|
|
127
59
|
export declare const ActionLinksSchema: z.ZodObject<{
|
|
128
60
|
action_url: z.ZodOptional<z.ZodString>;
|
|
129
|
-
},
|
|
130
|
-
action_url?: string | undefined;
|
|
131
|
-
}, {
|
|
132
|
-
action_url?: string | undefined;
|
|
133
|
-
}>;
|
|
61
|
+
}, z.core.$strip>;
|
|
134
62
|
export declare const ActionPermissionsSchema: z.ZodObject<{
|
|
135
63
|
can_use: z.ZodOptional<z.ZodBoolean>;
|
|
136
|
-
},
|
|
137
|
-
can_use?: boolean | undefined;
|
|
138
|
-
}, {
|
|
139
|
-
can_use?: boolean | undefined;
|
|
140
|
-
}>;
|
|
64
|
+
}, z.core.$strip>;
|
|
141
65
|
export declare const ActionSchema: z.ZodObject<{
|
|
142
66
|
id: z.ZodOptional<z.ZodString>;
|
|
143
|
-
type: z.ZodEnum<
|
|
67
|
+
type: z.ZodEnum<{
|
|
68
|
+
search: "search";
|
|
69
|
+
filter: "filter";
|
|
70
|
+
read: "read";
|
|
71
|
+
read_bulk: "read_bulk";
|
|
72
|
+
run: "run";
|
|
73
|
+
search_and_write: "search_and_write";
|
|
74
|
+
search_or_write: "search_or_write";
|
|
75
|
+
write: "write";
|
|
76
|
+
}>;
|
|
144
77
|
key: z.ZodString;
|
|
145
78
|
name: z.ZodString;
|
|
146
79
|
description: z.ZodString;
|
|
147
80
|
is_important: z.ZodOptional<z.ZodBoolean>;
|
|
148
81
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
149
82
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
150
|
-
},
|
|
151
|
-
key: string;
|
|
152
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
153
|
-
name: string;
|
|
154
|
-
description: string;
|
|
155
|
-
selected_api?: string | undefined;
|
|
156
|
-
id?: string | undefined;
|
|
157
|
-
is_important?: boolean | undefined;
|
|
158
|
-
is_hidden?: boolean | undefined;
|
|
159
|
-
}, {
|
|
160
|
-
key: string;
|
|
161
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
162
|
-
name: string;
|
|
163
|
-
description: string;
|
|
164
|
-
selected_api?: string | undefined;
|
|
165
|
-
id?: string | undefined;
|
|
166
|
-
is_important?: boolean | undefined;
|
|
167
|
-
is_hidden?: boolean | undefined;
|
|
168
|
-
}>;
|
|
83
|
+
}, z.core.$strip>;
|
|
169
84
|
export declare const ChoiceSchema: z.ZodObject<{
|
|
170
|
-
value: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
85
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
171
86
|
label: z.ZodString;
|
|
172
|
-
},
|
|
173
|
-
value: string | number;
|
|
174
|
-
label: string;
|
|
175
|
-
}, {
|
|
176
|
-
value: string | number;
|
|
177
|
-
label: string;
|
|
178
|
-
}>;
|
|
87
|
+
}, z.core.$strip>;
|
|
179
88
|
export declare const FieldSchema: z.ZodObject<{
|
|
180
89
|
key: z.ZodString;
|
|
181
90
|
label: z.ZodString;
|
|
182
|
-
type: z.ZodEnum<
|
|
91
|
+
type: z.ZodEnum<{
|
|
92
|
+
string: "string";
|
|
93
|
+
number: "number";
|
|
94
|
+
boolean: "boolean";
|
|
95
|
+
object: "object";
|
|
96
|
+
file: "file";
|
|
97
|
+
array: "array";
|
|
98
|
+
datetime: "datetime";
|
|
99
|
+
}>;
|
|
183
100
|
required: z.ZodBoolean;
|
|
184
101
|
description: z.ZodOptional<z.ZodString>;
|
|
185
102
|
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
186
|
-
value: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
103
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
187
104
|
label: z.ZodString;
|
|
188
|
-
},
|
|
189
|
-
|
|
190
|
-
label: string;
|
|
191
|
-
}, {
|
|
192
|
-
value: string | number;
|
|
193
|
-
label: string;
|
|
194
|
-
}>, "many">>;
|
|
195
|
-
}, "strip", z.ZodTypeAny, {
|
|
196
|
-
key: string;
|
|
197
|
-
type: "string" | "number" | "boolean" | "object" | "datetime" | "file" | "array";
|
|
198
|
-
label: string;
|
|
199
|
-
required: boolean;
|
|
200
|
-
choices?: {
|
|
201
|
-
value: string | number;
|
|
202
|
-
label: string;
|
|
203
|
-
}[] | undefined;
|
|
204
|
-
description?: string | undefined;
|
|
205
|
-
}, {
|
|
206
|
-
key: string;
|
|
207
|
-
type: "string" | "number" | "boolean" | "object" | "datetime" | "file" | "array";
|
|
208
|
-
label: string;
|
|
209
|
-
required: boolean;
|
|
210
|
-
choices?: {
|
|
211
|
-
value: string | number;
|
|
212
|
-
label: string;
|
|
213
|
-
}[] | undefined;
|
|
214
|
-
description?: string | undefined;
|
|
215
|
-
}>;
|
|
105
|
+
}, z.core.$strip>>>;
|
|
106
|
+
}, z.core.$strip>;
|
|
216
107
|
export declare const ActionExecutionResultSchema: z.ZodObject<{
|
|
217
|
-
data: z.ZodArray<z.ZodUnknown
|
|
218
|
-
},
|
|
219
|
-
data: unknown[];
|
|
220
|
-
}, {
|
|
221
|
-
data: unknown[];
|
|
222
|
-
}>;
|
|
108
|
+
data: z.ZodArray<z.ZodUnknown>;
|
|
109
|
+
}, z.core.$strip>;
|
|
223
110
|
export declare const ActionFieldChoiceSchema: z.ZodObject<{
|
|
224
|
-
value: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
111
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
225
112
|
label: z.ZodString;
|
|
226
|
-
},
|
|
227
|
-
value: string | number;
|
|
228
|
-
label: string;
|
|
229
|
-
}, {
|
|
230
|
-
value: string | number;
|
|
231
|
-
label: string;
|
|
232
|
-
}>;
|
|
113
|
+
}, z.core.$strip>;
|
|
233
114
|
export declare const ActionFieldSchema: z.ZodObject<{
|
|
234
115
|
key: z.ZodString;
|
|
235
116
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -238,59 +119,17 @@ export declare const ActionFieldSchema: z.ZodObject<{
|
|
|
238
119
|
helpText: z.ZodOptional<z.ZodString>;
|
|
239
120
|
helpTextHtml: z.ZodOptional<z.ZodString>;
|
|
240
121
|
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
241
|
-
value: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
122
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
242
123
|
label: z.ZodString;
|
|
243
|
-
},
|
|
244
|
-
value: string | number;
|
|
245
|
-
label: string;
|
|
246
|
-
}, {
|
|
247
|
-
value: string | number;
|
|
248
|
-
label: string;
|
|
249
|
-
}>, "many">>;
|
|
124
|
+
}, z.core.$strip>>>;
|
|
250
125
|
default: z.ZodOptional<z.ZodString>;
|
|
251
126
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
252
127
|
computed: z.ZodOptional<z.ZodBoolean>;
|
|
253
128
|
customField: z.ZodOptional<z.ZodBoolean>;
|
|
254
|
-
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString
|
|
129
|
+
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
255
130
|
format: z.ZodOptional<z.ZodString>;
|
|
256
|
-
inputFormat: z.ZodOptional<z.ZodArray<z.ZodString
|
|
257
|
-
},
|
|
258
|
-
key: string;
|
|
259
|
-
required: boolean;
|
|
260
|
-
default?: string | undefined;
|
|
261
|
-
type?: string | undefined;
|
|
262
|
-
label?: string | undefined;
|
|
263
|
-
choices?: {
|
|
264
|
-
value: string | number;
|
|
265
|
-
label: string;
|
|
266
|
-
}[] | undefined;
|
|
267
|
-
computed?: boolean | undefined;
|
|
268
|
-
format?: string | undefined;
|
|
269
|
-
placeholder?: string | undefined;
|
|
270
|
-
helpText?: string | undefined;
|
|
271
|
-
helpTextHtml?: string | undefined;
|
|
272
|
-
customField?: boolean | undefined;
|
|
273
|
-
dependsOn?: string[] | undefined;
|
|
274
|
-
inputFormat?: string[] | undefined;
|
|
275
|
-
}, {
|
|
276
|
-
key: string;
|
|
277
|
-
required: boolean;
|
|
278
|
-
default?: string | undefined;
|
|
279
|
-
type?: string | undefined;
|
|
280
|
-
label?: string | undefined;
|
|
281
|
-
choices?: {
|
|
282
|
-
value: string | number;
|
|
283
|
-
label: string;
|
|
284
|
-
}[] | undefined;
|
|
285
|
-
computed?: boolean | undefined;
|
|
286
|
-
format?: string | undefined;
|
|
287
|
-
placeholder?: string | undefined;
|
|
288
|
-
helpText?: string | undefined;
|
|
289
|
-
helpTextHtml?: string | undefined;
|
|
290
|
-
customField?: boolean | undefined;
|
|
291
|
-
dependsOn?: string[] | undefined;
|
|
292
|
-
inputFormat?: string[] | undefined;
|
|
293
|
-
}>;
|
|
131
|
+
inputFormat: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
132
|
+
}, z.core.$strip>;
|
|
294
133
|
export declare const AuthenticationSchema: z.ZodObject<{
|
|
295
134
|
id: z.ZodNumber;
|
|
296
135
|
date: z.ZodString;
|
|
@@ -312,49 +151,7 @@ export declare const AuthenticationSchema: z.ZodObject<{
|
|
|
312
151
|
groups: z.ZodOptional<z.ZodString>;
|
|
313
152
|
members: z.ZodOptional<z.ZodString>;
|
|
314
153
|
permissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
315
|
-
},
|
|
316
|
-
account_id: number;
|
|
317
|
-
selected_api: string;
|
|
318
|
-
id: number;
|
|
319
|
-
date: string;
|
|
320
|
-
is_invite_only: boolean;
|
|
321
|
-
is_private: boolean;
|
|
322
|
-
shared_with_all: boolean;
|
|
323
|
-
url?: string | undefined;
|
|
324
|
-
members?: string | undefined;
|
|
325
|
-
customuser_id?: number | undefined;
|
|
326
|
-
label?: string | null | undefined;
|
|
327
|
-
lastchanged?: string | undefined;
|
|
328
|
-
destination_selected_api?: string | null | undefined;
|
|
329
|
-
is_stale?: string | undefined;
|
|
330
|
-
is_shared?: string | undefined;
|
|
331
|
-
marked_stale_at?: string | null | undefined;
|
|
332
|
-
identifier?: string | null | undefined;
|
|
333
|
-
title?: string | null | undefined;
|
|
334
|
-
groups?: string | undefined;
|
|
335
|
-
permissions?: Record<string, boolean> | undefined;
|
|
336
|
-
}, {
|
|
337
|
-
account_id: number;
|
|
338
|
-
selected_api: string;
|
|
339
|
-
id: number;
|
|
340
|
-
date: string;
|
|
341
|
-
is_invite_only: boolean;
|
|
342
|
-
is_private: boolean;
|
|
343
|
-
shared_with_all: boolean;
|
|
344
|
-
url?: string | undefined;
|
|
345
|
-
members?: string | undefined;
|
|
346
|
-
customuser_id?: number | undefined;
|
|
347
|
-
label?: string | null | undefined;
|
|
348
|
-
lastchanged?: string | undefined;
|
|
349
|
-
destination_selected_api?: string | null | undefined;
|
|
350
|
-
is_stale?: string | undefined;
|
|
351
|
-
is_shared?: string | undefined;
|
|
352
|
-
marked_stale_at?: string | null | undefined;
|
|
353
|
-
identifier?: string | null | undefined;
|
|
354
|
-
title?: string | null | undefined;
|
|
355
|
-
groups?: string | undefined;
|
|
356
|
-
permissions?: Record<string, boolean> | undefined;
|
|
357
|
-
}>;
|
|
154
|
+
}, z.core.$strip>;
|
|
358
155
|
export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
359
156
|
count: z.ZodNumber;
|
|
360
157
|
next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -380,102 +177,8 @@ export declare const AuthenticationsResponseSchema: z.ZodObject<{
|
|
|
380
177
|
groups: z.ZodOptional<z.ZodString>;
|
|
381
178
|
members: z.ZodOptional<z.ZodString>;
|
|
382
179
|
permissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
383
|
-
},
|
|
384
|
-
|
|
385
|
-
selected_api: string;
|
|
386
|
-
id: number;
|
|
387
|
-
date: string;
|
|
388
|
-
is_invite_only: boolean;
|
|
389
|
-
is_private: boolean;
|
|
390
|
-
shared_with_all: boolean;
|
|
391
|
-
url?: string | undefined;
|
|
392
|
-
members?: string | undefined;
|
|
393
|
-
customuser_id?: number | undefined;
|
|
394
|
-
label?: string | null | undefined;
|
|
395
|
-
lastchanged?: string | undefined;
|
|
396
|
-
destination_selected_api?: string | null | undefined;
|
|
397
|
-
is_stale?: string | undefined;
|
|
398
|
-
is_shared?: string | undefined;
|
|
399
|
-
marked_stale_at?: string | null | undefined;
|
|
400
|
-
identifier?: string | null | undefined;
|
|
401
|
-
title?: string | null | undefined;
|
|
402
|
-
groups?: string | undefined;
|
|
403
|
-
permissions?: Record<string, boolean> | undefined;
|
|
404
|
-
}, {
|
|
405
|
-
account_id: number;
|
|
406
|
-
selected_api: string;
|
|
407
|
-
id: number;
|
|
408
|
-
date: string;
|
|
409
|
-
is_invite_only: boolean;
|
|
410
|
-
is_private: boolean;
|
|
411
|
-
shared_with_all: boolean;
|
|
412
|
-
url?: string | undefined;
|
|
413
|
-
members?: string | undefined;
|
|
414
|
-
customuser_id?: number | undefined;
|
|
415
|
-
label?: string | null | undefined;
|
|
416
|
-
lastchanged?: string | undefined;
|
|
417
|
-
destination_selected_api?: string | null | undefined;
|
|
418
|
-
is_stale?: string | undefined;
|
|
419
|
-
is_shared?: string | undefined;
|
|
420
|
-
marked_stale_at?: string | null | undefined;
|
|
421
|
-
identifier?: string | null | undefined;
|
|
422
|
-
title?: string | null | undefined;
|
|
423
|
-
groups?: string | undefined;
|
|
424
|
-
permissions?: Record<string, boolean> | undefined;
|
|
425
|
-
}>, "many">;
|
|
426
|
-
}, "strip", z.ZodTypeAny, {
|
|
427
|
-
count: number;
|
|
428
|
-
results: {
|
|
429
|
-
account_id: number;
|
|
430
|
-
selected_api: string;
|
|
431
|
-
id: number;
|
|
432
|
-
date: string;
|
|
433
|
-
is_invite_only: boolean;
|
|
434
|
-
is_private: boolean;
|
|
435
|
-
shared_with_all: boolean;
|
|
436
|
-
url?: string | undefined;
|
|
437
|
-
members?: string | undefined;
|
|
438
|
-
customuser_id?: number | undefined;
|
|
439
|
-
label?: string | null | undefined;
|
|
440
|
-
lastchanged?: string | undefined;
|
|
441
|
-
destination_selected_api?: string | null | undefined;
|
|
442
|
-
is_stale?: string | undefined;
|
|
443
|
-
is_shared?: string | undefined;
|
|
444
|
-
marked_stale_at?: string | null | undefined;
|
|
445
|
-
identifier?: string | null | undefined;
|
|
446
|
-
title?: string | null | undefined;
|
|
447
|
-
groups?: string | undefined;
|
|
448
|
-
permissions?: Record<string, boolean> | undefined;
|
|
449
|
-
}[];
|
|
450
|
-
next?: string | null | undefined;
|
|
451
|
-
previous?: string | null | undefined;
|
|
452
|
-
}, {
|
|
453
|
-
count: number;
|
|
454
|
-
results: {
|
|
455
|
-
account_id: number;
|
|
456
|
-
selected_api: string;
|
|
457
|
-
id: number;
|
|
458
|
-
date: string;
|
|
459
|
-
is_invite_only: boolean;
|
|
460
|
-
is_private: boolean;
|
|
461
|
-
shared_with_all: boolean;
|
|
462
|
-
url?: string | undefined;
|
|
463
|
-
members?: string | undefined;
|
|
464
|
-
customuser_id?: number | undefined;
|
|
465
|
-
label?: string | null | undefined;
|
|
466
|
-
lastchanged?: string | undefined;
|
|
467
|
-
destination_selected_api?: string | null | undefined;
|
|
468
|
-
is_stale?: string | undefined;
|
|
469
|
-
is_shared?: string | undefined;
|
|
470
|
-
marked_stale_at?: string | null | undefined;
|
|
471
|
-
identifier?: string | null | undefined;
|
|
472
|
-
title?: string | null | undefined;
|
|
473
|
-
groups?: string | undefined;
|
|
474
|
-
permissions?: Record<string, boolean> | undefined;
|
|
475
|
-
}[];
|
|
476
|
-
next?: string | null | undefined;
|
|
477
|
-
previous?: string | null | undefined;
|
|
478
|
-
}>;
|
|
180
|
+
}, z.core.$strip>>;
|
|
181
|
+
}, z.core.$strip>;
|
|
479
182
|
export declare const UserProfileSchema: z.ZodObject<{
|
|
480
183
|
id: z.ZodNumber;
|
|
481
184
|
code: z.ZodString;
|
|
@@ -517,7 +220,7 @@ export declare const UserProfileSchema: z.ZodObject<{
|
|
|
517
220
|
viewed_help: z.ZodRecord<z.ZodString, z.ZodBoolean>;
|
|
518
221
|
show_editor_migration_mesaging: z.ZodBoolean;
|
|
519
222
|
switches: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
520
|
-
organizations: z.ZodArray<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown
|
|
223
|
+
organizations: z.ZodArray<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
521
224
|
primary_organization: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
522
225
|
has_active_zaps: z.ZodBoolean;
|
|
523
226
|
has_google_sso: z.ZodBoolean;
|
|
@@ -525,120 +228,14 @@ export declare const UserProfileSchema: z.ZodObject<{
|
|
|
525
228
|
roles: z.ZodArray<z.ZodObject<{
|
|
526
229
|
account_id: z.ZodNumber;
|
|
527
230
|
role: z.ZodString;
|
|
528
|
-
},
|
|
529
|
-
|
|
530
|
-
role: string;
|
|
531
|
-
}, {
|
|
532
|
-
account_id: number;
|
|
533
|
-
role: string;
|
|
534
|
-
}>, "many">;
|
|
535
|
-
}, "strip", z.ZodTypeAny, {
|
|
536
|
-
code: string;
|
|
537
|
-
id: number;
|
|
538
|
-
user_id: number;
|
|
539
|
-
auto_provisioned: boolean;
|
|
540
|
-
first_name: string;
|
|
541
|
-
last_name: string;
|
|
542
|
-
username: string;
|
|
543
|
-
personas: string;
|
|
544
|
-
user_generated_personas: string;
|
|
545
|
-
last_login: string;
|
|
546
|
-
email: string;
|
|
547
|
-
email_hash: string;
|
|
548
|
-
email_confirmed: boolean;
|
|
549
|
-
timezone: string;
|
|
550
|
-
photo_url: string;
|
|
551
|
-
has_seen_notifications: Record<string, boolean | null>;
|
|
552
|
-
signup: string;
|
|
553
|
-
since_signup: string;
|
|
554
|
-
has_activated: boolean;
|
|
555
|
-
enable_gz_creator: boolean;
|
|
556
|
-
should_see_nps_survey: boolean;
|
|
557
|
-
is_developer: boolean;
|
|
558
|
-
is_expert: boolean;
|
|
559
|
-
tos_agreement: boolean;
|
|
560
|
-
should_renew_tos: boolean;
|
|
561
|
-
is_gdpr_consented: boolean;
|
|
562
|
-
disable_ssl_check: boolean;
|
|
563
|
-
identity: number;
|
|
564
|
-
summary_schedule: string;
|
|
565
|
-
alert_triggers: string;
|
|
566
|
-
alert_actions: string;
|
|
567
|
-
is_staff: boolean;
|
|
568
|
-
is_zt_reviewer: boolean;
|
|
569
|
-
is_high_value: boolean;
|
|
570
|
-
is_temporary: boolean;
|
|
571
|
-
banner_message: string;
|
|
572
|
-
enable_totp_2fa: boolean;
|
|
573
|
-
viewed_help: Record<string, boolean>;
|
|
574
|
-
show_editor_migration_mesaging: boolean;
|
|
575
|
-
switches: Record<string, unknown>;
|
|
576
|
-
organizations: (Record<string, unknown> | null)[];
|
|
577
|
-
primary_organization: Record<string, unknown> | null;
|
|
578
|
-
has_active_zaps: boolean;
|
|
579
|
-
has_google_sso: boolean;
|
|
580
|
-
auth_realm: string;
|
|
581
|
-
roles: {
|
|
582
|
-
account_id: number;
|
|
583
|
-
role: string;
|
|
584
|
-
}[];
|
|
585
|
-
}, {
|
|
586
|
-
code: string;
|
|
587
|
-
id: number;
|
|
588
|
-
user_id: number;
|
|
589
|
-
auto_provisioned: boolean;
|
|
590
|
-
first_name: string;
|
|
591
|
-
last_name: string;
|
|
592
|
-
username: string;
|
|
593
|
-
personas: string;
|
|
594
|
-
user_generated_personas: string;
|
|
595
|
-
last_login: string;
|
|
596
|
-
email: string;
|
|
597
|
-
email_hash: string;
|
|
598
|
-
email_confirmed: boolean;
|
|
599
|
-
timezone: string;
|
|
600
|
-
photo_url: string;
|
|
601
|
-
has_seen_notifications: Record<string, boolean | null>;
|
|
602
|
-
signup: string;
|
|
603
|
-
since_signup: string;
|
|
604
|
-
has_activated: boolean;
|
|
605
|
-
enable_gz_creator: boolean;
|
|
606
|
-
should_see_nps_survey: boolean;
|
|
607
|
-
is_developer: boolean;
|
|
608
|
-
is_expert: boolean;
|
|
609
|
-
tos_agreement: boolean;
|
|
610
|
-
should_renew_tos: boolean;
|
|
611
|
-
is_gdpr_consented: boolean;
|
|
612
|
-
disable_ssl_check: boolean;
|
|
613
|
-
identity: number;
|
|
614
|
-
summary_schedule: string;
|
|
615
|
-
alert_triggers: string;
|
|
616
|
-
alert_actions: string;
|
|
617
|
-
is_staff: boolean;
|
|
618
|
-
is_zt_reviewer: boolean;
|
|
619
|
-
is_high_value: boolean;
|
|
620
|
-
is_temporary: boolean;
|
|
621
|
-
banner_message: string;
|
|
622
|
-
enable_totp_2fa: boolean;
|
|
623
|
-
viewed_help: Record<string, boolean>;
|
|
624
|
-
show_editor_migration_mesaging: boolean;
|
|
625
|
-
switches: Record<string, unknown>;
|
|
626
|
-
organizations: (Record<string, unknown> | null)[];
|
|
627
|
-
primary_organization: Record<string, unknown> | null;
|
|
628
|
-
has_active_zaps: boolean;
|
|
629
|
-
has_google_sso: boolean;
|
|
630
|
-
auth_realm: string;
|
|
631
|
-
roles: {
|
|
632
|
-
account_id: number;
|
|
633
|
-
role: string;
|
|
634
|
-
}[];
|
|
635
|
-
}>;
|
|
231
|
+
}, z.core.$strip>>;
|
|
232
|
+
}, z.core.$strip>;
|
|
636
233
|
export declare const AppSchema: z.ZodObject<{
|
|
637
234
|
age_in_days: z.ZodOptional<z.ZodString>;
|
|
638
235
|
api_docs_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
639
236
|
app_profile_url: z.ZodString;
|
|
640
237
|
banner: z.ZodOptional<z.ZodString>;
|
|
641
|
-
categories: z.ZodOptional<z.ZodArray<z.ZodString
|
|
238
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
642
239
|
canonical_id: z.ZodOptional<z.ZodString>;
|
|
643
240
|
current_implementation_id: z.ZodString;
|
|
644
241
|
days_since_last_update: z.ZodOptional<z.ZodString>;
|
|
@@ -664,69 +261,7 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
664
261
|
request_count: z.ZodOptional<z.ZodString>;
|
|
665
262
|
slug: z.ZodString;
|
|
666
263
|
zap_usage_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
667
|
-
},
|
|
668
|
-
name: string;
|
|
669
|
-
description: string;
|
|
670
|
-
app_profile_url: string;
|
|
671
|
-
current_implementation_id: string;
|
|
672
|
-
external_url: string;
|
|
673
|
-
internal_id: string;
|
|
674
|
-
learn_more_url: string;
|
|
675
|
-
popularity: number;
|
|
676
|
-
primary_color: string;
|
|
677
|
-
slug: string;
|
|
678
|
-
categories?: string[] | undefined;
|
|
679
|
-
id?: number | undefined;
|
|
680
|
-
age_in_days?: string | undefined;
|
|
681
|
-
api_docs_url?: string | null | undefined;
|
|
682
|
-
banner?: string | undefined;
|
|
683
|
-
canonical_id?: string | undefined;
|
|
684
|
-
days_since_last_update?: string | undefined;
|
|
685
|
-
hashtag?: string | undefined;
|
|
686
|
-
image?: string | undefined;
|
|
687
|
-
images?: string | undefined;
|
|
688
|
-
integration_overview_html?: string | null | undefined;
|
|
689
|
-
invite_url?: string | null | undefined;
|
|
690
|
-
is_beta?: string | undefined;
|
|
691
|
-
is_built_in?: string | undefined;
|
|
692
|
-
is_featured?: string | undefined;
|
|
693
|
-
is_premium?: boolean | undefined;
|
|
694
|
-
is_public?: string | undefined;
|
|
695
|
-
is_upcoming?: string | undefined;
|
|
696
|
-
request_count?: string | undefined;
|
|
697
|
-
zap_usage_count?: number | null | undefined;
|
|
698
|
-
}, {
|
|
699
|
-
name: string;
|
|
700
|
-
description: string;
|
|
701
|
-
app_profile_url: string;
|
|
702
|
-
current_implementation_id: string;
|
|
703
|
-
external_url: string;
|
|
704
|
-
internal_id: string;
|
|
705
|
-
learn_more_url: string;
|
|
706
|
-
popularity: number;
|
|
707
|
-
primary_color: string;
|
|
708
|
-
slug: string;
|
|
709
|
-
categories?: string[] | undefined;
|
|
710
|
-
id?: number | undefined;
|
|
711
|
-
age_in_days?: string | undefined;
|
|
712
|
-
api_docs_url?: string | null | undefined;
|
|
713
|
-
banner?: string | undefined;
|
|
714
|
-
canonical_id?: string | undefined;
|
|
715
|
-
days_since_last_update?: string | undefined;
|
|
716
|
-
hashtag?: string | undefined;
|
|
717
|
-
image?: string | undefined;
|
|
718
|
-
images?: string | undefined;
|
|
719
|
-
integration_overview_html?: string | null | undefined;
|
|
720
|
-
invite_url?: string | null | undefined;
|
|
721
|
-
is_beta?: string | undefined;
|
|
722
|
-
is_built_in?: string | undefined;
|
|
723
|
-
is_featured?: string | undefined;
|
|
724
|
-
is_premium?: boolean | undefined;
|
|
725
|
-
is_public?: string | undefined;
|
|
726
|
-
is_upcoming?: string | undefined;
|
|
727
|
-
request_count?: string | undefined;
|
|
728
|
-
zap_usage_count?: number | null | undefined;
|
|
729
|
-
}>;
|
|
264
|
+
}, z.core.$strip>;
|
|
730
265
|
export declare const ServiceSchema: z.ZodObject<{
|
|
731
266
|
id: z.ZodOptional<z.ZodNumber>;
|
|
732
267
|
canonical_id: z.ZodOptional<z.ZodString>;
|
|
@@ -740,33 +275,7 @@ export declare const ServiceSchema: z.ZodObject<{
|
|
|
740
275
|
popularity: z.ZodNumber;
|
|
741
276
|
image: z.ZodOptional<z.ZodString>;
|
|
742
277
|
images: z.ZodOptional<z.ZodString>;
|
|
743
|
-
},
|
|
744
|
-
name: string;
|
|
745
|
-
description: string;
|
|
746
|
-
current_implementation_id: string;
|
|
747
|
-
popularity: number;
|
|
748
|
-
primary_color: string;
|
|
749
|
-
slug: string;
|
|
750
|
-
id?: number | undefined;
|
|
751
|
-
canonical_id?: string | undefined;
|
|
752
|
-
image?: string | undefined;
|
|
753
|
-
images?: string | undefined;
|
|
754
|
-
learn_more_url?: string | undefined;
|
|
755
|
-
app_url?: string | undefined;
|
|
756
|
-
}, {
|
|
757
|
-
name: string;
|
|
758
|
-
description: string;
|
|
759
|
-
current_implementation_id: string;
|
|
760
|
-
popularity: number;
|
|
761
|
-
primary_color: string;
|
|
762
|
-
slug: string;
|
|
763
|
-
id?: number | undefined;
|
|
764
|
-
canonical_id?: string | undefined;
|
|
765
|
-
image?: string | undefined;
|
|
766
|
-
images?: string | undefined;
|
|
767
|
-
learn_more_url?: string | undefined;
|
|
768
|
-
app_url?: string | undefined;
|
|
769
|
-
}>;
|
|
278
|
+
}, z.core.$strip>;
|
|
770
279
|
export declare const ServicesResponseSchema: z.ZodObject<{
|
|
771
280
|
results: z.ZodArray<z.ZodObject<{
|
|
772
281
|
id: z.ZodOptional<z.ZodNumber>;
|
|
@@ -781,121 +290,39 @@ export declare const ServicesResponseSchema: z.ZodObject<{
|
|
|
781
290
|
popularity: z.ZodNumber;
|
|
782
291
|
image: z.ZodOptional<z.ZodString>;
|
|
783
292
|
images: z.ZodOptional<z.ZodString>;
|
|
784
|
-
},
|
|
785
|
-
name: string;
|
|
786
|
-
description: string;
|
|
787
|
-
current_implementation_id: string;
|
|
788
|
-
popularity: number;
|
|
789
|
-
primary_color: string;
|
|
790
|
-
slug: string;
|
|
791
|
-
id?: number | undefined;
|
|
792
|
-
canonical_id?: string | undefined;
|
|
793
|
-
image?: string | undefined;
|
|
794
|
-
images?: string | undefined;
|
|
795
|
-
learn_more_url?: string | undefined;
|
|
796
|
-
app_url?: string | undefined;
|
|
797
|
-
}, {
|
|
798
|
-
name: string;
|
|
799
|
-
description: string;
|
|
800
|
-
current_implementation_id: string;
|
|
801
|
-
popularity: number;
|
|
802
|
-
primary_color: string;
|
|
803
|
-
slug: string;
|
|
804
|
-
id?: number | undefined;
|
|
805
|
-
canonical_id?: string | undefined;
|
|
806
|
-
image?: string | undefined;
|
|
807
|
-
images?: string | undefined;
|
|
808
|
-
learn_more_url?: string | undefined;
|
|
809
|
-
app_url?: string | undefined;
|
|
810
|
-
}>, "many">;
|
|
293
|
+
}, z.core.$strip>>;
|
|
811
294
|
next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
812
295
|
previous: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
813
|
-
},
|
|
814
|
-
results: {
|
|
815
|
-
name: string;
|
|
816
|
-
description: string;
|
|
817
|
-
current_implementation_id: string;
|
|
818
|
-
popularity: number;
|
|
819
|
-
primary_color: string;
|
|
820
|
-
slug: string;
|
|
821
|
-
id?: number | undefined;
|
|
822
|
-
canonical_id?: string | undefined;
|
|
823
|
-
image?: string | undefined;
|
|
824
|
-
images?: string | undefined;
|
|
825
|
-
learn_more_url?: string | undefined;
|
|
826
|
-
app_url?: string | undefined;
|
|
827
|
-
}[];
|
|
828
|
-
next?: string | null | undefined;
|
|
829
|
-
previous?: string | null | undefined;
|
|
830
|
-
}, {
|
|
831
|
-
results: {
|
|
832
|
-
name: string;
|
|
833
|
-
description: string;
|
|
834
|
-
current_implementation_id: string;
|
|
835
|
-
popularity: number;
|
|
836
|
-
primary_color: string;
|
|
837
|
-
slug: string;
|
|
838
|
-
id?: number | undefined;
|
|
839
|
-
canonical_id?: string | undefined;
|
|
840
|
-
image?: string | undefined;
|
|
841
|
-
images?: string | undefined;
|
|
842
|
-
learn_more_url?: string | undefined;
|
|
843
|
-
app_url?: string | undefined;
|
|
844
|
-
}[];
|
|
845
|
-
next?: string | null | undefined;
|
|
846
|
-
previous?: string | null | undefined;
|
|
847
|
-
}>;
|
|
296
|
+
}, z.core.$strip>;
|
|
848
297
|
export declare const NeedsRequestSchema: z.ZodObject<{
|
|
849
298
|
selected_api: z.ZodString;
|
|
850
299
|
action: z.ZodString;
|
|
851
300
|
type_of: z.ZodString;
|
|
852
301
|
authentication_id: z.ZodOptional<z.ZodNumber>;
|
|
853
302
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
854
|
-
},
|
|
855
|
-
selected_api: string;
|
|
856
|
-
action: string;
|
|
857
|
-
type_of: string;
|
|
858
|
-
params?: Record<string, unknown> | undefined;
|
|
859
|
-
authentication_id?: number | undefined;
|
|
860
|
-
}, {
|
|
861
|
-
selected_api: string;
|
|
862
|
-
action: string;
|
|
863
|
-
type_of: string;
|
|
864
|
-
params?: Record<string, unknown> | undefined;
|
|
865
|
-
authentication_id?: number | undefined;
|
|
866
|
-
}>;
|
|
303
|
+
}, z.core.$strip>;
|
|
867
304
|
export declare const NeedsResponseSchema: z.ZodObject<{
|
|
868
305
|
success: z.ZodBoolean;
|
|
869
306
|
needs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
870
307
|
key: z.ZodString;
|
|
871
308
|
alters_custom_fields: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
872
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodString
|
|
309
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
873
310
|
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
874
311
|
key: z.ZodOptional<z.ZodString>;
|
|
875
312
|
label: z.ZodOptional<z.ZodString>;
|
|
876
313
|
sample: z.ZodOptional<z.ZodString>;
|
|
877
314
|
value: z.ZodOptional<z.ZodString>;
|
|
878
|
-
},
|
|
879
|
-
key?: string | undefined;
|
|
880
|
-
value?: string | undefined;
|
|
881
|
-
label?: string | undefined;
|
|
882
|
-
sample?: string | undefined;
|
|
883
|
-
}, {
|
|
884
|
-
key?: string | undefined;
|
|
885
|
-
value?: string | undefined;
|
|
886
|
-
label?: string | undefined;
|
|
887
|
-
sample?: string | undefined;
|
|
888
|
-
}>, "many">>;
|
|
315
|
+
}, z.core.$strip>>>;
|
|
889
316
|
computed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
890
317
|
custom_field: z.ZodOptional<z.ZodBoolean>;
|
|
891
318
|
default: z.ZodOptional<z.ZodString>;
|
|
892
|
-
depends_on: z.ZodOptional<z.ZodArray<z.ZodString
|
|
319
|
+
depends_on: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
893
320
|
format: z.ZodOptional<z.ZodLiteral<"SELECT">>;
|
|
894
321
|
from_search: z.ZodOptional<z.ZodBoolean>;
|
|
895
322
|
from_write: z.ZodOptional<z.ZodBoolean>;
|
|
896
323
|
help_text: z.ZodOptional<z.ZodString>;
|
|
897
324
|
help_text_html: z.ZodOptional<z.ZodString>;
|
|
898
|
-
input_format: z.ZodOptional<z.ZodArray<z.ZodString
|
|
325
|
+
input_format: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
899
326
|
label: z.ZodOptional<z.ZodString>;
|
|
900
327
|
language: z.ZodOptional<z.ZodString>;
|
|
901
328
|
parent_key: z.ZodOptional<z.ZodString>;
|
|
@@ -905,149 +332,27 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
905
332
|
searchfill: z.ZodOptional<z.ZodString>;
|
|
906
333
|
send_in_json: z.ZodOptional<z.ZodBoolean>;
|
|
907
334
|
regex: z.ZodOptional<z.ZodString>;
|
|
908
|
-
type: z.ZodOptional<z.ZodEnum<
|
|
335
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
336
|
+
string: "string";
|
|
337
|
+
boolean: "boolean";
|
|
338
|
+
file: "file";
|
|
339
|
+
integer: "integer";
|
|
340
|
+
text: "text";
|
|
341
|
+
datetime: "datetime";
|
|
342
|
+
decimal: "decimal";
|
|
343
|
+
copy: "copy";
|
|
344
|
+
password: "password";
|
|
345
|
+
dict: "dict";
|
|
346
|
+
code: "code";
|
|
347
|
+
filter: "filter";
|
|
348
|
+
json: "json";
|
|
349
|
+
}>>;
|
|
909
350
|
list: z.ZodOptional<z.ZodBoolean>;
|
|
910
|
-
},
|
|
911
|
-
|
|
912
|
-
default?: string | undefined;
|
|
913
|
-
type?: "string" | "boolean" | "code" | "filter" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
914
|
-
list?: boolean | undefined;
|
|
915
|
-
label?: string | undefined;
|
|
916
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
917
|
-
capabilities?: string[] | undefined;
|
|
918
|
-
choices?: {
|
|
919
|
-
key?: string | undefined;
|
|
920
|
-
value?: string | undefined;
|
|
921
|
-
label?: string | undefined;
|
|
922
|
-
sample?: string | undefined;
|
|
923
|
-
}[] | undefined;
|
|
924
|
-
computed?: boolean | null | undefined;
|
|
925
|
-
custom_field?: boolean | undefined;
|
|
926
|
-
depends_on?: string[] | undefined;
|
|
927
|
-
format?: "SELECT" | undefined;
|
|
928
|
-
from_search?: boolean | undefined;
|
|
929
|
-
from_write?: boolean | undefined;
|
|
930
|
-
help_text?: string | undefined;
|
|
931
|
-
help_text_html?: string | undefined;
|
|
932
|
-
input_format?: string[] | undefined;
|
|
933
|
-
language?: string | undefined;
|
|
934
|
-
parent_key?: string | undefined;
|
|
935
|
-
placeholder?: string | undefined;
|
|
936
|
-
prefill?: string | undefined;
|
|
937
|
-
required?: boolean | undefined;
|
|
938
|
-
searchfill?: string | undefined;
|
|
939
|
-
send_in_json?: boolean | undefined;
|
|
940
|
-
regex?: string | undefined;
|
|
941
|
-
}, {
|
|
942
|
-
key: string;
|
|
943
|
-
default?: string | undefined;
|
|
944
|
-
type?: "string" | "boolean" | "code" | "filter" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
945
|
-
list?: boolean | undefined;
|
|
946
|
-
label?: string | undefined;
|
|
947
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
948
|
-
capabilities?: string[] | undefined;
|
|
949
|
-
choices?: {
|
|
950
|
-
key?: string | undefined;
|
|
951
|
-
value?: string | undefined;
|
|
952
|
-
label?: string | undefined;
|
|
953
|
-
sample?: string | undefined;
|
|
954
|
-
}[] | undefined;
|
|
955
|
-
computed?: boolean | null | undefined;
|
|
956
|
-
custom_field?: boolean | undefined;
|
|
957
|
-
depends_on?: string[] | undefined;
|
|
958
|
-
format?: "SELECT" | undefined;
|
|
959
|
-
from_search?: boolean | undefined;
|
|
960
|
-
from_write?: boolean | undefined;
|
|
961
|
-
help_text?: string | undefined;
|
|
962
|
-
help_text_html?: string | undefined;
|
|
963
|
-
input_format?: string[] | undefined;
|
|
964
|
-
language?: string | undefined;
|
|
965
|
-
parent_key?: string | undefined;
|
|
966
|
-
placeholder?: string | undefined;
|
|
967
|
-
prefill?: string | undefined;
|
|
968
|
-
required?: boolean | undefined;
|
|
969
|
-
searchfill?: string | undefined;
|
|
970
|
-
send_in_json?: boolean | undefined;
|
|
971
|
-
regex?: string | undefined;
|
|
972
|
-
}>, "many">>;
|
|
973
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
351
|
+
}, z.core.$strip>>>;
|
|
352
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
974
353
|
last_fetched_at: z.ZodOptional<z.ZodString>;
|
|
975
354
|
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
976
|
-
},
|
|
977
|
-
success: boolean;
|
|
978
|
-
needs?: {
|
|
979
|
-
key: string;
|
|
980
|
-
default?: string | undefined;
|
|
981
|
-
type?: "string" | "boolean" | "code" | "filter" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
982
|
-
list?: boolean | undefined;
|
|
983
|
-
label?: string | undefined;
|
|
984
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
985
|
-
capabilities?: string[] | undefined;
|
|
986
|
-
choices?: {
|
|
987
|
-
key?: string | undefined;
|
|
988
|
-
value?: string | undefined;
|
|
989
|
-
label?: string | undefined;
|
|
990
|
-
sample?: string | undefined;
|
|
991
|
-
}[] | undefined;
|
|
992
|
-
computed?: boolean | null | undefined;
|
|
993
|
-
custom_field?: boolean | undefined;
|
|
994
|
-
depends_on?: string[] | undefined;
|
|
995
|
-
format?: "SELECT" | undefined;
|
|
996
|
-
from_search?: boolean | undefined;
|
|
997
|
-
from_write?: boolean | undefined;
|
|
998
|
-
help_text?: string | undefined;
|
|
999
|
-
help_text_html?: string | undefined;
|
|
1000
|
-
input_format?: string[] | undefined;
|
|
1001
|
-
language?: string | undefined;
|
|
1002
|
-
parent_key?: string | undefined;
|
|
1003
|
-
placeholder?: string | undefined;
|
|
1004
|
-
prefill?: string | undefined;
|
|
1005
|
-
required?: boolean | undefined;
|
|
1006
|
-
searchfill?: string | undefined;
|
|
1007
|
-
send_in_json?: boolean | undefined;
|
|
1008
|
-
regex?: string | undefined;
|
|
1009
|
-
}[] | undefined;
|
|
1010
|
-
errors?: string[] | undefined;
|
|
1011
|
-
last_fetched_at?: string | undefined;
|
|
1012
|
-
schema?: Record<string, unknown> | undefined;
|
|
1013
|
-
}, {
|
|
1014
|
-
success: boolean;
|
|
1015
|
-
needs?: {
|
|
1016
|
-
key: string;
|
|
1017
|
-
default?: string | undefined;
|
|
1018
|
-
type?: "string" | "boolean" | "code" | "filter" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1019
|
-
list?: boolean | undefined;
|
|
1020
|
-
label?: string | undefined;
|
|
1021
|
-
alters_custom_fields?: boolean | null | undefined;
|
|
1022
|
-
capabilities?: string[] | undefined;
|
|
1023
|
-
choices?: {
|
|
1024
|
-
key?: string | undefined;
|
|
1025
|
-
value?: string | undefined;
|
|
1026
|
-
label?: string | undefined;
|
|
1027
|
-
sample?: string | undefined;
|
|
1028
|
-
}[] | undefined;
|
|
1029
|
-
computed?: boolean | null | undefined;
|
|
1030
|
-
custom_field?: boolean | undefined;
|
|
1031
|
-
depends_on?: string[] | undefined;
|
|
1032
|
-
format?: "SELECT" | undefined;
|
|
1033
|
-
from_search?: boolean | undefined;
|
|
1034
|
-
from_write?: boolean | undefined;
|
|
1035
|
-
help_text?: string | undefined;
|
|
1036
|
-
help_text_html?: string | undefined;
|
|
1037
|
-
input_format?: string[] | undefined;
|
|
1038
|
-
language?: string | undefined;
|
|
1039
|
-
parent_key?: string | undefined;
|
|
1040
|
-
placeholder?: string | undefined;
|
|
1041
|
-
prefill?: string | undefined;
|
|
1042
|
-
required?: boolean | undefined;
|
|
1043
|
-
searchfill?: string | undefined;
|
|
1044
|
-
send_in_json?: boolean | undefined;
|
|
1045
|
-
regex?: string | undefined;
|
|
1046
|
-
}[] | undefined;
|
|
1047
|
-
errors?: string[] | undefined;
|
|
1048
|
-
last_fetched_at?: string | undefined;
|
|
1049
|
-
schema?: Record<string, unknown> | undefined;
|
|
1050
|
-
}>;
|
|
355
|
+
}, z.core.$strip>;
|
|
1051
356
|
export declare const ImplementationSchema: z.ZodObject<{
|
|
1052
357
|
selected_api: z.ZodString;
|
|
1053
358
|
app_id: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1055,32 +360,23 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1055
360
|
auth_fields: z.ZodOptional<z.ZodString>;
|
|
1056
361
|
actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1057
362
|
id: z.ZodOptional<z.ZodString>;
|
|
1058
|
-
type: z.ZodEnum<
|
|
363
|
+
type: z.ZodEnum<{
|
|
364
|
+
search: "search";
|
|
365
|
+
filter: "filter";
|
|
366
|
+
read: "read";
|
|
367
|
+
read_bulk: "read_bulk";
|
|
368
|
+
run: "run";
|
|
369
|
+
search_and_write: "search_and_write";
|
|
370
|
+
search_or_write: "search_or_write";
|
|
371
|
+
write: "write";
|
|
372
|
+
}>;
|
|
1059
373
|
key: z.ZodString;
|
|
1060
374
|
name: z.ZodString;
|
|
1061
375
|
description: z.ZodString;
|
|
1062
376
|
is_important: z.ZodOptional<z.ZodBoolean>;
|
|
1063
377
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1064
378
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1065
|
-
},
|
|
1066
|
-
key: string;
|
|
1067
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1068
|
-
name: string;
|
|
1069
|
-
description: string;
|
|
1070
|
-
selected_api?: string | undefined;
|
|
1071
|
-
id?: string | undefined;
|
|
1072
|
-
is_important?: boolean | undefined;
|
|
1073
|
-
is_hidden?: boolean | undefined;
|
|
1074
|
-
}, {
|
|
1075
|
-
key: string;
|
|
1076
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1077
|
-
name: string;
|
|
1078
|
-
description: string;
|
|
1079
|
-
selected_api?: string | undefined;
|
|
1080
|
-
id?: string | undefined;
|
|
1081
|
-
is_important?: boolean | undefined;
|
|
1082
|
-
is_hidden?: boolean | undefined;
|
|
1083
|
-
}>, "many">>;
|
|
379
|
+
}, z.core.$strip>>>;
|
|
1084
380
|
is_deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1085
381
|
is_private_only: z.ZodOptional<z.ZodBoolean>;
|
|
1086
382
|
is_invite_only: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1094,63 +390,7 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1094
390
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
1095
391
|
current_implementation: z.ZodOptional<z.ZodString>;
|
|
1096
392
|
other_implementations: z.ZodOptional<z.ZodString>;
|
|
1097
|
-
},
|
|
1098
|
-
selected_api: string;
|
|
1099
|
-
is_beta: boolean;
|
|
1100
|
-
is_premium: boolean;
|
|
1101
|
-
actions?: {
|
|
1102
|
-
key: string;
|
|
1103
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1104
|
-
name: string;
|
|
1105
|
-
description: string;
|
|
1106
|
-
selected_api?: string | undefined;
|
|
1107
|
-
id?: string | undefined;
|
|
1108
|
-
is_important?: boolean | undefined;
|
|
1109
|
-
is_hidden?: boolean | undefined;
|
|
1110
|
-
}[] | undefined;
|
|
1111
|
-
app_id?: number | undefined;
|
|
1112
|
-
name?: string | undefined;
|
|
1113
|
-
is_hidden?: string | undefined;
|
|
1114
|
-
is_invite_only?: boolean | undefined;
|
|
1115
|
-
images?: Record<string, string | null> | undefined;
|
|
1116
|
-
primary_color?: string | undefined;
|
|
1117
|
-
slug?: string | undefined;
|
|
1118
|
-
auth_type?: string | undefined;
|
|
1119
|
-
auth_fields?: string | undefined;
|
|
1120
|
-
is_deprecated?: boolean | undefined;
|
|
1121
|
-
is_private_only?: boolean | undefined;
|
|
1122
|
-
secondary_color?: string | undefined;
|
|
1123
|
-
current_implementation?: string | undefined;
|
|
1124
|
-
other_implementations?: string | undefined;
|
|
1125
|
-
}, {
|
|
1126
|
-
selected_api: string;
|
|
1127
|
-
actions?: {
|
|
1128
|
-
key: string;
|
|
1129
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1130
|
-
name: string;
|
|
1131
|
-
description: string;
|
|
1132
|
-
selected_api?: string | undefined;
|
|
1133
|
-
id?: string | undefined;
|
|
1134
|
-
is_important?: boolean | undefined;
|
|
1135
|
-
is_hidden?: boolean | undefined;
|
|
1136
|
-
}[] | undefined;
|
|
1137
|
-
app_id?: number | undefined;
|
|
1138
|
-
name?: string | undefined;
|
|
1139
|
-
is_hidden?: string | undefined;
|
|
1140
|
-
is_invite_only?: boolean | undefined;
|
|
1141
|
-
images?: Record<string, string | null> | undefined;
|
|
1142
|
-
is_beta?: boolean | undefined;
|
|
1143
|
-
is_premium?: boolean | undefined;
|
|
1144
|
-
primary_color?: string | undefined;
|
|
1145
|
-
slug?: string | undefined;
|
|
1146
|
-
auth_type?: string | undefined;
|
|
1147
|
-
auth_fields?: string | undefined;
|
|
1148
|
-
is_deprecated?: boolean | undefined;
|
|
1149
|
-
is_private_only?: boolean | undefined;
|
|
1150
|
-
secondary_color?: string | undefined;
|
|
1151
|
-
current_implementation?: string | undefined;
|
|
1152
|
-
other_implementations?: string | undefined;
|
|
1153
|
-
}>;
|
|
393
|
+
}, z.core.$strip>;
|
|
1154
394
|
export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
1155
395
|
count: z.ZodNumber;
|
|
1156
396
|
next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1162,32 +402,23 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1162
402
|
auth_fields: z.ZodOptional<z.ZodString>;
|
|
1163
403
|
actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1164
404
|
id: z.ZodOptional<z.ZodString>;
|
|
1165
|
-
type: z.ZodEnum<
|
|
405
|
+
type: z.ZodEnum<{
|
|
406
|
+
search: "search";
|
|
407
|
+
filter: "filter";
|
|
408
|
+
read: "read";
|
|
409
|
+
read_bulk: "read_bulk";
|
|
410
|
+
run: "run";
|
|
411
|
+
search_and_write: "search_and_write";
|
|
412
|
+
search_or_write: "search_or_write";
|
|
413
|
+
write: "write";
|
|
414
|
+
}>;
|
|
1166
415
|
key: z.ZodString;
|
|
1167
416
|
name: z.ZodString;
|
|
1168
417
|
description: z.ZodString;
|
|
1169
418
|
is_important: z.ZodOptional<z.ZodBoolean>;
|
|
1170
419
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1171
420
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1172
|
-
},
|
|
1173
|
-
key: string;
|
|
1174
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1175
|
-
name: string;
|
|
1176
|
-
description: string;
|
|
1177
|
-
selected_api?: string | undefined;
|
|
1178
|
-
id?: string | undefined;
|
|
1179
|
-
is_important?: boolean | undefined;
|
|
1180
|
-
is_hidden?: boolean | undefined;
|
|
1181
|
-
}, {
|
|
1182
|
-
key: string;
|
|
1183
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1184
|
-
name: string;
|
|
1185
|
-
description: string;
|
|
1186
|
-
selected_api?: string | undefined;
|
|
1187
|
-
id?: string | undefined;
|
|
1188
|
-
is_important?: boolean | undefined;
|
|
1189
|
-
is_hidden?: boolean | undefined;
|
|
1190
|
-
}>, "many">>;
|
|
421
|
+
}, z.core.$strip>>>;
|
|
1191
422
|
is_deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1192
423
|
is_private_only: z.ZodOptional<z.ZodBoolean>;
|
|
1193
424
|
is_invite_only: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1201,130 +432,8 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1201
432
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
1202
433
|
current_implementation: z.ZodOptional<z.ZodString>;
|
|
1203
434
|
other_implementations: z.ZodOptional<z.ZodString>;
|
|
1204
|
-
},
|
|
1205
|
-
|
|
1206
|
-
is_beta: boolean;
|
|
1207
|
-
is_premium: boolean;
|
|
1208
|
-
actions?: {
|
|
1209
|
-
key: string;
|
|
1210
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1211
|
-
name: string;
|
|
1212
|
-
description: string;
|
|
1213
|
-
selected_api?: string | undefined;
|
|
1214
|
-
id?: string | undefined;
|
|
1215
|
-
is_important?: boolean | undefined;
|
|
1216
|
-
is_hidden?: boolean | undefined;
|
|
1217
|
-
}[] | undefined;
|
|
1218
|
-
app_id?: number | undefined;
|
|
1219
|
-
name?: string | undefined;
|
|
1220
|
-
is_hidden?: string | undefined;
|
|
1221
|
-
is_invite_only?: boolean | undefined;
|
|
1222
|
-
images?: Record<string, string | null> | undefined;
|
|
1223
|
-
primary_color?: string | undefined;
|
|
1224
|
-
slug?: string | undefined;
|
|
1225
|
-
auth_type?: string | undefined;
|
|
1226
|
-
auth_fields?: string | undefined;
|
|
1227
|
-
is_deprecated?: boolean | undefined;
|
|
1228
|
-
is_private_only?: boolean | undefined;
|
|
1229
|
-
secondary_color?: string | undefined;
|
|
1230
|
-
current_implementation?: string | undefined;
|
|
1231
|
-
other_implementations?: string | undefined;
|
|
1232
|
-
}, {
|
|
1233
|
-
selected_api: string;
|
|
1234
|
-
actions?: {
|
|
1235
|
-
key: string;
|
|
1236
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1237
|
-
name: string;
|
|
1238
|
-
description: string;
|
|
1239
|
-
selected_api?: string | undefined;
|
|
1240
|
-
id?: string | undefined;
|
|
1241
|
-
is_important?: boolean | undefined;
|
|
1242
|
-
is_hidden?: boolean | undefined;
|
|
1243
|
-
}[] | undefined;
|
|
1244
|
-
app_id?: number | undefined;
|
|
1245
|
-
name?: string | undefined;
|
|
1246
|
-
is_hidden?: string | undefined;
|
|
1247
|
-
is_invite_only?: boolean | undefined;
|
|
1248
|
-
images?: Record<string, string | null> | undefined;
|
|
1249
|
-
is_beta?: boolean | undefined;
|
|
1250
|
-
is_premium?: boolean | undefined;
|
|
1251
|
-
primary_color?: string | undefined;
|
|
1252
|
-
slug?: string | undefined;
|
|
1253
|
-
auth_type?: string | undefined;
|
|
1254
|
-
auth_fields?: string | undefined;
|
|
1255
|
-
is_deprecated?: boolean | undefined;
|
|
1256
|
-
is_private_only?: boolean | undefined;
|
|
1257
|
-
secondary_color?: string | undefined;
|
|
1258
|
-
current_implementation?: string | undefined;
|
|
1259
|
-
other_implementations?: string | undefined;
|
|
1260
|
-
}>, "many">;
|
|
1261
|
-
}, "strip", z.ZodTypeAny, {
|
|
1262
|
-
count: number;
|
|
1263
|
-
results: {
|
|
1264
|
-
selected_api: string;
|
|
1265
|
-
is_beta: boolean;
|
|
1266
|
-
is_premium: boolean;
|
|
1267
|
-
actions?: {
|
|
1268
|
-
key: string;
|
|
1269
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1270
|
-
name: string;
|
|
1271
|
-
description: string;
|
|
1272
|
-
selected_api?: string | undefined;
|
|
1273
|
-
id?: string | undefined;
|
|
1274
|
-
is_important?: boolean | undefined;
|
|
1275
|
-
is_hidden?: boolean | undefined;
|
|
1276
|
-
}[] | undefined;
|
|
1277
|
-
app_id?: number | undefined;
|
|
1278
|
-
name?: string | undefined;
|
|
1279
|
-
is_hidden?: string | undefined;
|
|
1280
|
-
is_invite_only?: boolean | undefined;
|
|
1281
|
-
images?: Record<string, string | null> | undefined;
|
|
1282
|
-
primary_color?: string | undefined;
|
|
1283
|
-
slug?: string | undefined;
|
|
1284
|
-
auth_type?: string | undefined;
|
|
1285
|
-
auth_fields?: string | undefined;
|
|
1286
|
-
is_deprecated?: boolean | undefined;
|
|
1287
|
-
is_private_only?: boolean | undefined;
|
|
1288
|
-
secondary_color?: string | undefined;
|
|
1289
|
-
current_implementation?: string | undefined;
|
|
1290
|
-
other_implementations?: string | undefined;
|
|
1291
|
-
}[];
|
|
1292
|
-
next?: string | null | undefined;
|
|
1293
|
-
previous?: string | null | undefined;
|
|
1294
|
-
}, {
|
|
1295
|
-
count: number;
|
|
1296
|
-
results: {
|
|
1297
|
-
selected_api: string;
|
|
1298
|
-
actions?: {
|
|
1299
|
-
key: string;
|
|
1300
|
-
type: "search" | "filter" | "read" | "read_bulk" | "run" | "search_and_write" | "search_or_write" | "write";
|
|
1301
|
-
name: string;
|
|
1302
|
-
description: string;
|
|
1303
|
-
selected_api?: string | undefined;
|
|
1304
|
-
id?: string | undefined;
|
|
1305
|
-
is_important?: boolean | undefined;
|
|
1306
|
-
is_hidden?: boolean | undefined;
|
|
1307
|
-
}[] | undefined;
|
|
1308
|
-
app_id?: number | undefined;
|
|
1309
|
-
name?: string | undefined;
|
|
1310
|
-
is_hidden?: string | undefined;
|
|
1311
|
-
is_invite_only?: boolean | undefined;
|
|
1312
|
-
images?: Record<string, string | null> | undefined;
|
|
1313
|
-
is_beta?: boolean | undefined;
|
|
1314
|
-
is_premium?: boolean | undefined;
|
|
1315
|
-
primary_color?: string | undefined;
|
|
1316
|
-
slug?: string | undefined;
|
|
1317
|
-
auth_type?: string | undefined;
|
|
1318
|
-
auth_fields?: string | undefined;
|
|
1319
|
-
is_deprecated?: boolean | undefined;
|
|
1320
|
-
is_private_only?: boolean | undefined;
|
|
1321
|
-
secondary_color?: string | undefined;
|
|
1322
|
-
current_implementation?: string | undefined;
|
|
1323
|
-
other_implementations?: string | undefined;
|
|
1324
|
-
}[];
|
|
1325
|
-
next?: string | null | undefined;
|
|
1326
|
-
previous?: string | null | undefined;
|
|
1327
|
-
}>;
|
|
435
|
+
}, z.core.$strip>>;
|
|
436
|
+
}, z.core.$strip>;
|
|
1328
437
|
export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
1329
438
|
id: z.ZodString;
|
|
1330
439
|
name: z.ZodString;
|
|
@@ -1336,31 +445,13 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1336
445
|
id: z.ZodNumber;
|
|
1337
446
|
name: z.ZodString;
|
|
1338
447
|
slug: z.ZodString;
|
|
1339
|
-
},
|
|
1340
|
-
id: number;
|
|
1341
|
-
name: string;
|
|
1342
|
-
slug: string;
|
|
1343
|
-
}, {
|
|
1344
|
-
id: number;
|
|
1345
|
-
name: string;
|
|
1346
|
-
slug: string;
|
|
1347
|
-
}>, "many">>;
|
|
448
|
+
}, z.core.$strip>>>;
|
|
1348
449
|
images: z.ZodOptional<z.ZodObject<{
|
|
1349
450
|
url_16x16: z.ZodOptional<z.ZodString>;
|
|
1350
451
|
url_32x32: z.ZodOptional<z.ZodString>;
|
|
1351
452
|
url_64x64: z.ZodOptional<z.ZodString>;
|
|
1352
453
|
url_128x128: z.ZodOptional<z.ZodString>;
|
|
1353
|
-
},
|
|
1354
|
-
url_16x16?: string | undefined;
|
|
1355
|
-
url_32x32?: string | undefined;
|
|
1356
|
-
url_64x64?: string | undefined;
|
|
1357
|
-
url_128x128?: string | undefined;
|
|
1358
|
-
}, {
|
|
1359
|
-
url_16x16?: string | undefined;
|
|
1360
|
-
url_32x32?: string | undefined;
|
|
1361
|
-
url_64x64?: string | undefined;
|
|
1362
|
-
url_128x128?: string | undefined;
|
|
1363
|
-
}>>;
|
|
454
|
+
}, z.core.$strip>>;
|
|
1364
455
|
popularity: z.ZodOptional<z.ZodNumber>;
|
|
1365
456
|
has_filters: z.ZodOptional<z.ZodBoolean>;
|
|
1366
457
|
has_reads: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1387,132 +478,14 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1387
478
|
search_or_write: z.ZodOptional<z.ZodNumber>;
|
|
1388
479
|
search_and_write: z.ZodOptional<z.ZodNumber>;
|
|
1389
480
|
filter: z.ZodOptional<z.ZodNumber>;
|
|
1390
|
-
},
|
|
1391
|
-
search?: number | undefined;
|
|
1392
|
-
filter?: number | undefined;
|
|
1393
|
-
read?: number | undefined;
|
|
1394
|
-
read_bulk?: number | undefined;
|
|
1395
|
-
search_and_write?: number | undefined;
|
|
1396
|
-
search_or_write?: number | undefined;
|
|
1397
|
-
write?: number | undefined;
|
|
1398
|
-
}, {
|
|
1399
|
-
search?: number | undefined;
|
|
1400
|
-
filter?: number | undefined;
|
|
1401
|
-
read?: number | undefined;
|
|
1402
|
-
read_bulk?: number | undefined;
|
|
1403
|
-
search_and_write?: number | undefined;
|
|
1404
|
-
search_or_write?: number | undefined;
|
|
1405
|
-
write?: number | undefined;
|
|
1406
|
-
}>>;
|
|
481
|
+
}, z.core.$strip>>;
|
|
1407
482
|
description: z.ZodOptional<z.ZodString>;
|
|
1408
483
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
1409
484
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
1410
485
|
classification: z.ZodOptional<z.ZodString>;
|
|
1411
486
|
api_docs_url: z.ZodOptional<z.ZodString>;
|
|
1412
487
|
image: z.ZodOptional<z.ZodString>;
|
|
1413
|
-
},
|
|
1414
|
-
id: string;
|
|
1415
|
-
name: string;
|
|
1416
|
-
slug: string;
|
|
1417
|
-
categories?: {
|
|
1418
|
-
id: number;
|
|
1419
|
-
name: string;
|
|
1420
|
-
slug: string;
|
|
1421
|
-
}[] | undefined;
|
|
1422
|
-
actions?: {
|
|
1423
|
-
search?: number | undefined;
|
|
1424
|
-
filter?: number | undefined;
|
|
1425
|
-
read?: number | undefined;
|
|
1426
|
-
read_bulk?: number | undefined;
|
|
1427
|
-
search_and_write?: number | undefined;
|
|
1428
|
-
search_or_write?: number | undefined;
|
|
1429
|
-
write?: number | undefined;
|
|
1430
|
-
} | undefined;
|
|
1431
|
-
description?: string | undefined;
|
|
1432
|
-
is_hidden?: boolean | undefined;
|
|
1433
|
-
age_in_days?: number | undefined;
|
|
1434
|
-
api_docs_url?: string | undefined;
|
|
1435
|
-
banner?: string | undefined;
|
|
1436
|
-
image?: string | undefined;
|
|
1437
|
-
images?: {
|
|
1438
|
-
url_16x16?: string | undefined;
|
|
1439
|
-
url_32x32?: string | undefined;
|
|
1440
|
-
url_64x64?: string | undefined;
|
|
1441
|
-
url_128x128?: string | undefined;
|
|
1442
|
-
} | undefined;
|
|
1443
|
-
is_beta?: boolean | undefined;
|
|
1444
|
-
is_built_in?: boolean | undefined;
|
|
1445
|
-
is_featured?: boolean | undefined;
|
|
1446
|
-
is_premium?: boolean | undefined;
|
|
1447
|
-
is_public?: boolean | undefined;
|
|
1448
|
-
is_upcoming?: boolean | undefined;
|
|
1449
|
-
popularity?: number | undefined;
|
|
1450
|
-
primary_color?: string | undefined;
|
|
1451
|
-
auth_type?: string | undefined;
|
|
1452
|
-
is_deprecated?: boolean | undefined;
|
|
1453
|
-
secondary_color?: string | undefined;
|
|
1454
|
-
has_filters?: boolean | undefined;
|
|
1455
|
-
has_reads?: boolean | undefined;
|
|
1456
|
-
has_searches?: boolean | undefined;
|
|
1457
|
-
has_searches_or_writes?: boolean | undefined;
|
|
1458
|
-
has_upfront_fields?: boolean | undefined;
|
|
1459
|
-
has_writes?: boolean | undefined;
|
|
1460
|
-
is_invite?: boolean | undefined;
|
|
1461
|
-
version?: string | undefined;
|
|
1462
|
-
visibility?: string | undefined;
|
|
1463
|
-
classification?: string | undefined;
|
|
1464
|
-
}, {
|
|
1465
|
-
id: string;
|
|
1466
|
-
name: string;
|
|
1467
|
-
slug: string;
|
|
1468
|
-
categories?: {
|
|
1469
|
-
id: number;
|
|
1470
|
-
name: string;
|
|
1471
|
-
slug: string;
|
|
1472
|
-
}[] | undefined;
|
|
1473
|
-
actions?: {
|
|
1474
|
-
search?: number | undefined;
|
|
1475
|
-
filter?: number | undefined;
|
|
1476
|
-
read?: number | undefined;
|
|
1477
|
-
read_bulk?: number | undefined;
|
|
1478
|
-
search_and_write?: number | undefined;
|
|
1479
|
-
search_or_write?: number | undefined;
|
|
1480
|
-
write?: number | undefined;
|
|
1481
|
-
} | undefined;
|
|
1482
|
-
description?: string | undefined;
|
|
1483
|
-
is_hidden?: boolean | undefined;
|
|
1484
|
-
age_in_days?: number | undefined;
|
|
1485
|
-
api_docs_url?: string | undefined;
|
|
1486
|
-
banner?: string | undefined;
|
|
1487
|
-
image?: string | undefined;
|
|
1488
|
-
images?: {
|
|
1489
|
-
url_16x16?: string | undefined;
|
|
1490
|
-
url_32x32?: string | undefined;
|
|
1491
|
-
url_64x64?: string | undefined;
|
|
1492
|
-
url_128x128?: string | undefined;
|
|
1493
|
-
} | undefined;
|
|
1494
|
-
is_beta?: boolean | undefined;
|
|
1495
|
-
is_built_in?: boolean | undefined;
|
|
1496
|
-
is_featured?: boolean | undefined;
|
|
1497
|
-
is_premium?: boolean | undefined;
|
|
1498
|
-
is_public?: boolean | undefined;
|
|
1499
|
-
is_upcoming?: boolean | undefined;
|
|
1500
|
-
popularity?: number | undefined;
|
|
1501
|
-
primary_color?: string | undefined;
|
|
1502
|
-
auth_type?: string | undefined;
|
|
1503
|
-
is_deprecated?: boolean | undefined;
|
|
1504
|
-
secondary_color?: string | undefined;
|
|
1505
|
-
has_filters?: boolean | undefined;
|
|
1506
|
-
has_reads?: boolean | undefined;
|
|
1507
|
-
has_searches?: boolean | undefined;
|
|
1508
|
-
has_searches_or_writes?: boolean | undefined;
|
|
1509
|
-
has_upfront_fields?: boolean | undefined;
|
|
1510
|
-
has_writes?: boolean | undefined;
|
|
1511
|
-
is_invite?: boolean | undefined;
|
|
1512
|
-
version?: string | undefined;
|
|
1513
|
-
visibility?: string | undefined;
|
|
1514
|
-
classification?: string | undefined;
|
|
1515
|
-
}>;
|
|
488
|
+
}, z.core.$strip>;
|
|
1516
489
|
export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
1517
490
|
count: z.ZodNumber;
|
|
1518
491
|
next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1528,31 +501,13 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1528
501
|
id: z.ZodNumber;
|
|
1529
502
|
name: z.ZodString;
|
|
1530
503
|
slug: z.ZodString;
|
|
1531
|
-
},
|
|
1532
|
-
id: number;
|
|
1533
|
-
name: string;
|
|
1534
|
-
slug: string;
|
|
1535
|
-
}, {
|
|
1536
|
-
id: number;
|
|
1537
|
-
name: string;
|
|
1538
|
-
slug: string;
|
|
1539
|
-
}>, "many">>;
|
|
504
|
+
}, z.core.$strip>>>;
|
|
1540
505
|
images: z.ZodOptional<z.ZodObject<{
|
|
1541
506
|
url_16x16: z.ZodOptional<z.ZodString>;
|
|
1542
507
|
url_32x32: z.ZodOptional<z.ZodString>;
|
|
1543
508
|
url_64x64: z.ZodOptional<z.ZodString>;
|
|
1544
509
|
url_128x128: z.ZodOptional<z.ZodString>;
|
|
1545
|
-
},
|
|
1546
|
-
url_16x16?: string | undefined;
|
|
1547
|
-
url_32x32?: string | undefined;
|
|
1548
|
-
url_64x64?: string | undefined;
|
|
1549
|
-
url_128x128?: string | undefined;
|
|
1550
|
-
}, {
|
|
1551
|
-
url_16x16?: string | undefined;
|
|
1552
|
-
url_32x32?: string | undefined;
|
|
1553
|
-
url_64x64?: string | undefined;
|
|
1554
|
-
url_128x128?: string | undefined;
|
|
1555
|
-
}>>;
|
|
510
|
+
}, z.core.$strip>>;
|
|
1556
511
|
popularity: z.ZodOptional<z.ZodNumber>;
|
|
1557
512
|
has_filters: z.ZodOptional<z.ZodBoolean>;
|
|
1558
513
|
has_reads: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1579,262 +534,22 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1579
534
|
search_or_write: z.ZodOptional<z.ZodNumber>;
|
|
1580
535
|
search_and_write: z.ZodOptional<z.ZodNumber>;
|
|
1581
536
|
filter: z.ZodOptional<z.ZodNumber>;
|
|
1582
|
-
},
|
|
1583
|
-
search?: number | undefined;
|
|
1584
|
-
filter?: number | undefined;
|
|
1585
|
-
read?: number | undefined;
|
|
1586
|
-
read_bulk?: number | undefined;
|
|
1587
|
-
search_and_write?: number | undefined;
|
|
1588
|
-
search_or_write?: number | undefined;
|
|
1589
|
-
write?: number | undefined;
|
|
1590
|
-
}, {
|
|
1591
|
-
search?: number | undefined;
|
|
1592
|
-
filter?: number | undefined;
|
|
1593
|
-
read?: number | undefined;
|
|
1594
|
-
read_bulk?: number | undefined;
|
|
1595
|
-
search_and_write?: number | undefined;
|
|
1596
|
-
search_or_write?: number | undefined;
|
|
1597
|
-
write?: number | undefined;
|
|
1598
|
-
}>>;
|
|
537
|
+
}, z.core.$strip>>;
|
|
1599
538
|
description: z.ZodOptional<z.ZodString>;
|
|
1600
539
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
1601
540
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
1602
541
|
classification: z.ZodOptional<z.ZodString>;
|
|
1603
542
|
api_docs_url: z.ZodOptional<z.ZodString>;
|
|
1604
543
|
image: z.ZodOptional<z.ZodString>;
|
|
1605
|
-
},
|
|
1606
|
-
|
|
1607
|
-
name: string;
|
|
1608
|
-
slug: string;
|
|
1609
|
-
categories?: {
|
|
1610
|
-
id: number;
|
|
1611
|
-
name: string;
|
|
1612
|
-
slug: string;
|
|
1613
|
-
}[] | undefined;
|
|
1614
|
-
actions?: {
|
|
1615
|
-
search?: number | undefined;
|
|
1616
|
-
filter?: number | undefined;
|
|
1617
|
-
read?: number | undefined;
|
|
1618
|
-
read_bulk?: number | undefined;
|
|
1619
|
-
search_and_write?: number | undefined;
|
|
1620
|
-
search_or_write?: number | undefined;
|
|
1621
|
-
write?: number | undefined;
|
|
1622
|
-
} | undefined;
|
|
1623
|
-
description?: string | undefined;
|
|
1624
|
-
is_hidden?: boolean | undefined;
|
|
1625
|
-
age_in_days?: number | undefined;
|
|
1626
|
-
api_docs_url?: string | undefined;
|
|
1627
|
-
banner?: string | undefined;
|
|
1628
|
-
image?: string | undefined;
|
|
1629
|
-
images?: {
|
|
1630
|
-
url_16x16?: string | undefined;
|
|
1631
|
-
url_32x32?: string | undefined;
|
|
1632
|
-
url_64x64?: string | undefined;
|
|
1633
|
-
url_128x128?: string | undefined;
|
|
1634
|
-
} | undefined;
|
|
1635
|
-
is_beta?: boolean | undefined;
|
|
1636
|
-
is_built_in?: boolean | undefined;
|
|
1637
|
-
is_featured?: boolean | undefined;
|
|
1638
|
-
is_premium?: boolean | undefined;
|
|
1639
|
-
is_public?: boolean | undefined;
|
|
1640
|
-
is_upcoming?: boolean | undefined;
|
|
1641
|
-
popularity?: number | undefined;
|
|
1642
|
-
primary_color?: string | undefined;
|
|
1643
|
-
auth_type?: string | undefined;
|
|
1644
|
-
is_deprecated?: boolean | undefined;
|
|
1645
|
-
secondary_color?: string | undefined;
|
|
1646
|
-
has_filters?: boolean | undefined;
|
|
1647
|
-
has_reads?: boolean | undefined;
|
|
1648
|
-
has_searches?: boolean | undefined;
|
|
1649
|
-
has_searches_or_writes?: boolean | undefined;
|
|
1650
|
-
has_upfront_fields?: boolean | undefined;
|
|
1651
|
-
has_writes?: boolean | undefined;
|
|
1652
|
-
is_invite?: boolean | undefined;
|
|
1653
|
-
version?: string | undefined;
|
|
1654
|
-
visibility?: string | undefined;
|
|
1655
|
-
classification?: string | undefined;
|
|
1656
|
-
}, {
|
|
1657
|
-
id: string;
|
|
1658
|
-
name: string;
|
|
1659
|
-
slug: string;
|
|
1660
|
-
categories?: {
|
|
1661
|
-
id: number;
|
|
1662
|
-
name: string;
|
|
1663
|
-
slug: string;
|
|
1664
|
-
}[] | undefined;
|
|
1665
|
-
actions?: {
|
|
1666
|
-
search?: number | undefined;
|
|
1667
|
-
filter?: number | undefined;
|
|
1668
|
-
read?: number | undefined;
|
|
1669
|
-
read_bulk?: number | undefined;
|
|
1670
|
-
search_and_write?: number | undefined;
|
|
1671
|
-
search_or_write?: number | undefined;
|
|
1672
|
-
write?: number | undefined;
|
|
1673
|
-
} | undefined;
|
|
1674
|
-
description?: string | undefined;
|
|
1675
|
-
is_hidden?: boolean | undefined;
|
|
1676
|
-
age_in_days?: number | undefined;
|
|
1677
|
-
api_docs_url?: string | undefined;
|
|
1678
|
-
banner?: string | undefined;
|
|
1679
|
-
image?: string | undefined;
|
|
1680
|
-
images?: {
|
|
1681
|
-
url_16x16?: string | undefined;
|
|
1682
|
-
url_32x32?: string | undefined;
|
|
1683
|
-
url_64x64?: string | undefined;
|
|
1684
|
-
url_128x128?: string | undefined;
|
|
1685
|
-
} | undefined;
|
|
1686
|
-
is_beta?: boolean | undefined;
|
|
1687
|
-
is_built_in?: boolean | undefined;
|
|
1688
|
-
is_featured?: boolean | undefined;
|
|
1689
|
-
is_premium?: boolean | undefined;
|
|
1690
|
-
is_public?: boolean | undefined;
|
|
1691
|
-
is_upcoming?: boolean | undefined;
|
|
1692
|
-
popularity?: number | undefined;
|
|
1693
|
-
primary_color?: string | undefined;
|
|
1694
|
-
auth_type?: string | undefined;
|
|
1695
|
-
is_deprecated?: boolean | undefined;
|
|
1696
|
-
secondary_color?: string | undefined;
|
|
1697
|
-
has_filters?: boolean | undefined;
|
|
1698
|
-
has_reads?: boolean | undefined;
|
|
1699
|
-
has_searches?: boolean | undefined;
|
|
1700
|
-
has_searches_or_writes?: boolean | undefined;
|
|
1701
|
-
has_upfront_fields?: boolean | undefined;
|
|
1702
|
-
has_writes?: boolean | undefined;
|
|
1703
|
-
is_invite?: boolean | undefined;
|
|
1704
|
-
version?: string | undefined;
|
|
1705
|
-
visibility?: string | undefined;
|
|
1706
|
-
classification?: string | undefined;
|
|
1707
|
-
}>, "many">;
|
|
1708
|
-
}, "strip", z.ZodTypeAny, {
|
|
1709
|
-
count: number;
|
|
1710
|
-
results: {
|
|
1711
|
-
id: string;
|
|
1712
|
-
name: string;
|
|
1713
|
-
slug: string;
|
|
1714
|
-
categories?: {
|
|
1715
|
-
id: number;
|
|
1716
|
-
name: string;
|
|
1717
|
-
slug: string;
|
|
1718
|
-
}[] | undefined;
|
|
1719
|
-
actions?: {
|
|
1720
|
-
search?: number | undefined;
|
|
1721
|
-
filter?: number | undefined;
|
|
1722
|
-
read?: number | undefined;
|
|
1723
|
-
read_bulk?: number | undefined;
|
|
1724
|
-
search_and_write?: number | undefined;
|
|
1725
|
-
search_or_write?: number | undefined;
|
|
1726
|
-
write?: number | undefined;
|
|
1727
|
-
} | undefined;
|
|
1728
|
-
description?: string | undefined;
|
|
1729
|
-
is_hidden?: boolean | undefined;
|
|
1730
|
-
age_in_days?: number | undefined;
|
|
1731
|
-
api_docs_url?: string | undefined;
|
|
1732
|
-
banner?: string | undefined;
|
|
1733
|
-
image?: string | undefined;
|
|
1734
|
-
images?: {
|
|
1735
|
-
url_16x16?: string | undefined;
|
|
1736
|
-
url_32x32?: string | undefined;
|
|
1737
|
-
url_64x64?: string | undefined;
|
|
1738
|
-
url_128x128?: string | undefined;
|
|
1739
|
-
} | undefined;
|
|
1740
|
-
is_beta?: boolean | undefined;
|
|
1741
|
-
is_built_in?: boolean | undefined;
|
|
1742
|
-
is_featured?: boolean | undefined;
|
|
1743
|
-
is_premium?: boolean | undefined;
|
|
1744
|
-
is_public?: boolean | undefined;
|
|
1745
|
-
is_upcoming?: boolean | undefined;
|
|
1746
|
-
popularity?: number | undefined;
|
|
1747
|
-
primary_color?: string | undefined;
|
|
1748
|
-
auth_type?: string | undefined;
|
|
1749
|
-
is_deprecated?: boolean | undefined;
|
|
1750
|
-
secondary_color?: string | undefined;
|
|
1751
|
-
has_filters?: boolean | undefined;
|
|
1752
|
-
has_reads?: boolean | undefined;
|
|
1753
|
-
has_searches?: boolean | undefined;
|
|
1754
|
-
has_searches_or_writes?: boolean | undefined;
|
|
1755
|
-
has_upfront_fields?: boolean | undefined;
|
|
1756
|
-
has_writes?: boolean | undefined;
|
|
1757
|
-
is_invite?: boolean | undefined;
|
|
1758
|
-
version?: string | undefined;
|
|
1759
|
-
visibility?: string | undefined;
|
|
1760
|
-
classification?: string | undefined;
|
|
1761
|
-
}[];
|
|
1762
|
-
next?: string | null | undefined;
|
|
1763
|
-
previous?: string | null | undefined;
|
|
1764
|
-
}, {
|
|
1765
|
-
count: number;
|
|
1766
|
-
results: {
|
|
1767
|
-
id: string;
|
|
1768
|
-
name: string;
|
|
1769
|
-
slug: string;
|
|
1770
|
-
categories?: {
|
|
1771
|
-
id: number;
|
|
1772
|
-
name: string;
|
|
1773
|
-
slug: string;
|
|
1774
|
-
}[] | undefined;
|
|
1775
|
-
actions?: {
|
|
1776
|
-
search?: number | undefined;
|
|
1777
|
-
filter?: number | undefined;
|
|
1778
|
-
read?: number | undefined;
|
|
1779
|
-
read_bulk?: number | undefined;
|
|
1780
|
-
search_and_write?: number | undefined;
|
|
1781
|
-
search_or_write?: number | undefined;
|
|
1782
|
-
write?: number | undefined;
|
|
1783
|
-
} | undefined;
|
|
1784
|
-
description?: string | undefined;
|
|
1785
|
-
is_hidden?: boolean | undefined;
|
|
1786
|
-
age_in_days?: number | undefined;
|
|
1787
|
-
api_docs_url?: string | undefined;
|
|
1788
|
-
banner?: string | undefined;
|
|
1789
|
-
image?: string | undefined;
|
|
1790
|
-
images?: {
|
|
1791
|
-
url_16x16?: string | undefined;
|
|
1792
|
-
url_32x32?: string | undefined;
|
|
1793
|
-
url_64x64?: string | undefined;
|
|
1794
|
-
url_128x128?: string | undefined;
|
|
1795
|
-
} | undefined;
|
|
1796
|
-
is_beta?: boolean | undefined;
|
|
1797
|
-
is_built_in?: boolean | undefined;
|
|
1798
|
-
is_featured?: boolean | undefined;
|
|
1799
|
-
is_premium?: boolean | undefined;
|
|
1800
|
-
is_public?: boolean | undefined;
|
|
1801
|
-
is_upcoming?: boolean | undefined;
|
|
1802
|
-
popularity?: number | undefined;
|
|
1803
|
-
primary_color?: string | undefined;
|
|
1804
|
-
auth_type?: string | undefined;
|
|
1805
|
-
is_deprecated?: boolean | undefined;
|
|
1806
|
-
secondary_color?: string | undefined;
|
|
1807
|
-
has_filters?: boolean | undefined;
|
|
1808
|
-
has_reads?: boolean | undefined;
|
|
1809
|
-
has_searches?: boolean | undefined;
|
|
1810
|
-
has_searches_or_writes?: boolean | undefined;
|
|
1811
|
-
has_upfront_fields?: boolean | undefined;
|
|
1812
|
-
has_writes?: boolean | undefined;
|
|
1813
|
-
is_invite?: boolean | undefined;
|
|
1814
|
-
version?: string | undefined;
|
|
1815
|
-
visibility?: string | undefined;
|
|
1816
|
-
classification?: string | undefined;
|
|
1817
|
-
}[];
|
|
1818
|
-
next?: string | null | undefined;
|
|
1819
|
-
previous?: string | null | undefined;
|
|
1820
|
-
}>;
|
|
544
|
+
}, z.core.$strip>>;
|
|
545
|
+
}, z.core.$strip>;
|
|
1821
546
|
export declare const NeedChoicesResponseMetaSchema: z.ZodObject<{
|
|
1822
547
|
page: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1823
|
-
},
|
|
1824
|
-
page?: string | null | undefined;
|
|
1825
|
-
}, {
|
|
1826
|
-
page?: string | null | undefined;
|
|
1827
|
-
}>;
|
|
548
|
+
}, z.core.$strip>;
|
|
1828
549
|
export declare const NeedChoicesResponseLinksSchema: z.ZodObject<{
|
|
1829
550
|
next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1830
551
|
prev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1831
|
-
},
|
|
1832
|
-
next?: string | null | undefined;
|
|
1833
|
-
prev?: string | null | undefined;
|
|
1834
|
-
}, {
|
|
1835
|
-
next?: string | null | undefined;
|
|
1836
|
-
prev?: string | null | undefined;
|
|
1837
|
-
}>;
|
|
552
|
+
}, z.core.$strip>;
|
|
1838
553
|
export declare const NeedChoicesRequestSchema: z.ZodObject<{
|
|
1839
554
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1840
555
|
authentication_id: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1843,23 +558,7 @@ export declare const NeedChoicesRequestSchema: z.ZodObject<{
|
|
|
1843
558
|
prefill: z.ZodOptional<z.ZodString>;
|
|
1844
559
|
action_id: z.ZodOptional<z.ZodString>;
|
|
1845
560
|
input_field_id: z.ZodOptional<z.ZodString>;
|
|
1846
|
-
},
|
|
1847
|
-
page: number;
|
|
1848
|
-
selected_api?: string | undefined;
|
|
1849
|
-
params?: Record<string, unknown> | undefined;
|
|
1850
|
-
prefill?: string | undefined;
|
|
1851
|
-
authentication_id?: number | undefined;
|
|
1852
|
-
action_id?: string | undefined;
|
|
1853
|
-
input_field_id?: string | undefined;
|
|
1854
|
-
}, {
|
|
1855
|
-
selected_api?: string | undefined;
|
|
1856
|
-
params?: Record<string, unknown> | undefined;
|
|
1857
|
-
prefill?: string | undefined;
|
|
1858
|
-
authentication_id?: number | undefined;
|
|
1859
|
-
page?: number | undefined;
|
|
1860
|
-
action_id?: string | undefined;
|
|
1861
|
-
input_field_id?: string | undefined;
|
|
1862
|
-
}>;
|
|
561
|
+
}, z.core.$strip>;
|
|
1863
562
|
export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
1864
563
|
success: z.ZodBoolean;
|
|
1865
564
|
choices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1867,69 +566,15 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
1867
566
|
label: z.ZodOptional<z.ZodString>;
|
|
1868
567
|
sample: z.ZodOptional<z.ZodString>;
|
|
1869
568
|
value: z.ZodOptional<z.ZodString>;
|
|
1870
|
-
},
|
|
1871
|
-
key?: string | undefined;
|
|
1872
|
-
value?: string | undefined;
|
|
1873
|
-
label?: string | undefined;
|
|
1874
|
-
sample?: string | undefined;
|
|
1875
|
-
}, {
|
|
1876
|
-
key?: string | undefined;
|
|
1877
|
-
value?: string | undefined;
|
|
1878
|
-
label?: string | undefined;
|
|
1879
|
-
sample?: string | undefined;
|
|
1880
|
-
}>, "many">>;
|
|
569
|
+
}, z.core.$strip>>>;
|
|
1881
570
|
next_page: z.ZodOptional<z.ZodNumber>;
|
|
1882
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodString
|
|
571
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1883
572
|
meta: z.ZodOptional<z.ZodObject<{
|
|
1884
573
|
page: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1885
|
-
},
|
|
1886
|
-
page?: string | null | undefined;
|
|
1887
|
-
}, {
|
|
1888
|
-
page?: string | null | undefined;
|
|
1889
|
-
}>>;
|
|
574
|
+
}, z.core.$strip>>;
|
|
1890
575
|
links: z.ZodOptional<z.ZodObject<{
|
|
1891
576
|
next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1892
577
|
prev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1893
|
-
},
|
|
1894
|
-
|
|
1895
|
-
prev?: string | null | undefined;
|
|
1896
|
-
}, {
|
|
1897
|
-
next?: string | null | undefined;
|
|
1898
|
-
prev?: string | null | undefined;
|
|
1899
|
-
}>>;
|
|
1900
|
-
}, "strip", z.ZodTypeAny, {
|
|
1901
|
-
success: boolean;
|
|
1902
|
-
choices?: {
|
|
1903
|
-
key?: string | undefined;
|
|
1904
|
-
value?: string | undefined;
|
|
1905
|
-
label?: string | undefined;
|
|
1906
|
-
sample?: string | undefined;
|
|
1907
|
-
}[] | undefined;
|
|
1908
|
-
errors?: string[] | undefined;
|
|
1909
|
-
next_page?: number | undefined;
|
|
1910
|
-
meta?: {
|
|
1911
|
-
page?: string | null | undefined;
|
|
1912
|
-
} | undefined;
|
|
1913
|
-
links?: {
|
|
1914
|
-
next?: string | null | undefined;
|
|
1915
|
-
prev?: string | null | undefined;
|
|
1916
|
-
} | undefined;
|
|
1917
|
-
}, {
|
|
1918
|
-
success: boolean;
|
|
1919
|
-
choices?: {
|
|
1920
|
-
key?: string | undefined;
|
|
1921
|
-
value?: string | undefined;
|
|
1922
|
-
label?: string | undefined;
|
|
1923
|
-
sample?: string | undefined;
|
|
1924
|
-
}[] | undefined;
|
|
1925
|
-
errors?: string[] | undefined;
|
|
1926
|
-
next_page?: number | undefined;
|
|
1927
|
-
meta?: {
|
|
1928
|
-
page?: string | null | undefined;
|
|
1929
|
-
} | undefined;
|
|
1930
|
-
links?: {
|
|
1931
|
-
next?: string | null | undefined;
|
|
1932
|
-
prev?: string | null | undefined;
|
|
1933
|
-
} | undefined;
|
|
1934
|
-
}>;
|
|
578
|
+
}, z.core.$strip>>;
|
|
579
|
+
}, z.core.$strip>;
|
|
1935
580
|
//# sourceMappingURL=schemas.d.ts.map
|