@n8n/api-types 1.11.0 → 1.11.1

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.
@@ -98,15 +98,35 @@ export declare const CreateDestinationDto: z.ZodDiscriminatedUnion<"__type", [z.
98
98
  }>>;
99
99
  allowUnauthorizedCerts: z.ZodOptional<z.ZodBoolean>;
100
100
  queryParameterArrays: z.ZodOptional<z.ZodEnum<["indices", "brackets", "repeat"]>>;
101
- redirect: z.ZodOptional<z.ZodObject<{
102
- followRedirects: z.ZodOptional<z.ZodBoolean>;
103
- maxRedirects: z.ZodOptional<z.ZodNumber>;
101
+ redirect: z.ZodOptional<z.ZodEffects<z.ZodObject<{
102
+ redirect: z.ZodObject<{
103
+ followRedirects: z.ZodOptional<z.ZodBoolean>;
104
+ maxRedirects: z.ZodOptional<z.ZodNumber>;
105
+ }, "strip", z.ZodTypeAny, {
106
+ followRedirects?: boolean | undefined;
107
+ maxRedirects?: number | undefined;
108
+ }, {
109
+ followRedirects?: boolean | undefined;
110
+ maxRedirects?: number | undefined;
111
+ }>;
104
112
  }, "strip", z.ZodTypeAny, {
105
- followRedirects?: boolean | undefined;
106
- maxRedirects?: number | undefined;
113
+ redirect: {
114
+ followRedirects?: boolean | undefined;
115
+ maxRedirects?: number | undefined;
116
+ };
107
117
  }, {
118
+ redirect: {
119
+ followRedirects?: boolean | undefined;
120
+ maxRedirects?: number | undefined;
121
+ };
122
+ }>, {
108
123
  followRedirects?: boolean | undefined;
109
124
  maxRedirects?: number | undefined;
125
+ }, {
126
+ redirect: {
127
+ followRedirects?: boolean | undefined;
128
+ maxRedirects?: number | undefined;
129
+ };
110
130
  }>>;
111
131
  response: z.ZodOptional<z.ZodObject<{
112
132
  response: z.ZodOptional<z.ZodObject<{
@@ -140,18 +160,42 @@ export declare const CreateDestinationDto: z.ZodDiscriminatedUnion<"__type", [z.
140
160
  outputPropertyName?: string | undefined;
141
161
  } | undefined;
142
162
  }>>;
143
- proxy: z.ZodOptional<z.ZodObject<{
144
- protocol: z.ZodEnum<["https", "http"]>;
145
- host: z.ZodString;
146
- port: z.ZodNumber;
163
+ proxy: z.ZodOptional<z.ZodEffects<z.ZodObject<{
164
+ proxy: z.ZodObject<{
165
+ protocol: z.ZodEnum<["https", "http"]>;
166
+ host: z.ZodString;
167
+ port: z.ZodNumber;
168
+ }, "strip", z.ZodTypeAny, {
169
+ protocol: "https" | "http";
170
+ host: string;
171
+ port: number;
172
+ }, {
173
+ protocol: "https" | "http";
174
+ host: string;
175
+ port: number;
176
+ }>;
147
177
  }, "strip", z.ZodTypeAny, {
148
- protocol: "https" | "http";
149
- host: string;
150
- port: number;
178
+ proxy: {
179
+ protocol: "https" | "http";
180
+ host: string;
181
+ port: number;
182
+ };
151
183
  }, {
184
+ proxy: {
185
+ protocol: "https" | "http";
186
+ host: string;
187
+ port: number;
188
+ };
189
+ }>, {
152
190
  protocol: "https" | "http";
153
191
  host: string;
154
192
  port: number;
193
+ }, {
194
+ proxy: {
195
+ protocol: "https" | "http";
196
+ host: string;
197
+ port: number;
198
+ };
155
199
  }>>;
156
200
  timeout: z.ZodOptional<z.ZodNumber>;
157
201
  socket: z.ZodOptional<z.ZodObject<{
@@ -208,9 +252,11 @@ export declare const CreateDestinationDto: z.ZodDiscriminatedUnion<"__type", [z.
208
252
  } | undefined;
209
253
  } | undefined;
210
254
  proxy?: {
211
- protocol: "https" | "http";
212
- host: string;
213
- port: number;
255
+ proxy: {
256
+ protocol: "https" | "http";
257
+ host: string;
258
+ port: number;
259
+ };
214
260
  } | undefined;
215
261
  batch?: {
216
262
  batchSize?: number | undefined;
@@ -219,8 +265,10 @@ export declare const CreateDestinationDto: z.ZodDiscriminatedUnion<"__type", [z.
219
265
  allowUnauthorizedCerts?: boolean | undefined;
220
266
  queryParameterArrays?: "repeat" | "indices" | "brackets" | undefined;
221
267
  redirect?: {
222
- followRedirects?: boolean | undefined;
223
- maxRedirects?: number | undefined;
268
+ redirect: {
269
+ followRedirects?: boolean | undefined;
270
+ maxRedirects?: number | undefined;
271
+ };
224
272
  } | undefined;
225
273
  socket?: {
226
274
  keepAlive?: boolean | undefined;
@@ -315,9 +363,11 @@ export declare const CreateDestinationDto: z.ZodDiscriminatedUnion<"__type", [z.
315
363
  } | undefined;
316
364
  } | undefined;
317
365
  proxy?: {
318
- protocol: "https" | "http";
319
- host: string;
320
- port: number;
366
+ proxy: {
367
+ protocol: "https" | "http";
368
+ host: string;
369
+ port: number;
370
+ };
321
371
  } | undefined;
322
372
  batch?: {
323
373
  batchSize?: number | undefined;
@@ -326,8 +376,10 @@ export declare const CreateDestinationDto: z.ZodDiscriminatedUnion<"__type", [z.
326
376
  allowUnauthorizedCerts?: boolean | undefined;
327
377
  queryParameterArrays?: "repeat" | "indices" | "brackets" | undefined;
328
378
  redirect?: {
329
- followRedirects?: boolean | undefined;
330
- maxRedirects?: number | undefined;
379
+ redirect: {
380
+ followRedirects?: boolean | undefined;
381
+ maxRedirects?: number | undefined;
382
+ };
331
383
  } | undefined;
332
384
  socket?: {
333
385
  keepAlive?: boolean | undefined;
@@ -4,6 +4,7 @@ type QuickConnectGenericOption = {
4
4
  text: string;
5
5
  quickConnectType: string;
6
6
  consentText?: string;
7
+ consentCheckbox?: string;
7
8
  config?: never;
8
9
  };
9
10
  export type QuickConnectPineconeOption = Omit<QuickConnectGenericOption, 'config'> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/api-types",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "src/index.ts",
6
6
  "types": "dist/index.d.ts",
@@ -10,13 +10,13 @@
10
10
  "LICENSE_EE.md"
11
11
  ],
12
12
  "devDependencies": {
13
- "@n8n/config": "2.10.0",
14
- "@n8n/typescript-config": "1.3.0"
13
+ "@n8n/typescript-config": "1.3.0",
14
+ "@n8n/config": "2.10.1"
15
15
  },
16
16
  "dependencies": {
17
17
  "xss": "1.0.15",
18
18
  "zod": "3.25.67",
19
- "n8n-workflow": "2.11.0",
19
+ "n8n-workflow": "2.11.1",
20
20
  "@n8n/permissions": "0.52.0"
21
21
  },
22
22
  "license": "SEE LICENSE IN LICENSE.md",