@membranehq/sdk 0.5.1 → 0.5.2

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.
Files changed (34) hide show
  1. package/dist/bundle.d.ts +160 -2153
  2. package/dist/dts/accessors/connections-accessors.d.ts +1 -15
  3. package/dist/dts/accessors/integrations-accessors.d.ts +1 -15
  4. package/dist/dts/workspace-elements/api/action-instances-api.d.ts +3 -3
  5. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +5 -99
  6. package/dist/dts/workspace-elements/api/actions-api.d.ts +0 -192
  7. package/dist/dts/workspace-elements/api/connections-api.d.ts +291 -211
  8. package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +5 -99
  9. package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +5 -99
  10. package/dist/dts/workspace-elements/api/data-sources-api.d.ts +0 -192
  11. package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +5 -99
  12. package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +5 -99
  13. package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +5 -99
  14. package/dist/dts/workspace-elements/api/external-events-api.d.ts +0 -108
  15. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +12 -228
  16. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +0 -192
  17. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +12 -228
  18. package/dist/dts/workspace-elements/api/flows-api.d.ts +42 -530
  19. package/dist/dts/workspace-elements/api/integrations-api.d.ts +109 -75
  20. package/dist/dts/workspace-elements/api/scenarios-api.d.ts +0 -84
  21. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +3 -3
  22. package/dist/dts/workspace-elements/base/connections/types.d.ts +3 -9
  23. package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +4 -4
  24. package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +2 -2
  25. package/dist/dts/workspace-elements/base/flows/types.d.ts +6 -6
  26. package/dist/dts/workspace-elements/base/integrations/types.d.ts +0 -407
  27. package/dist/dts/workspaces/types.d.ts +1 -1
  28. package/dist/index.d.ts +530 -3109
  29. package/dist/index.js +22 -18
  30. package/dist/index.js.map +1 -1
  31. package/dist/index.module.d.mts +530 -3109
  32. package/dist/index.module.mjs +22 -19
  33. package/dist/index.module.mjs.map +1 -1
  34. package/package.json +1 -1
@@ -240,44 +240,8 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
240
240
  logoUri: z.ZodString;
241
241
  connectorId: z.ZodOptional<z.ZodString>;
242
242
  connectorVersion: z.ZodOptional<z.ZodString>;
243
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
244
- key: z.ZodString;
245
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
246
- title: z.ZodOptional<z.ZodString>;
247
- description: z.ZodOptional<z.ZodString>;
248
- ui: z.ZodOptional<z.ZodObject<{
249
- schema: z.ZodOptional<z.ZodAny>;
250
- helpUri: z.ZodOptional<z.ZodString>;
251
- }, "strip", z.ZodTypeAny, {
252
- schema?: any;
253
- helpUri?: string | undefined;
254
- }, {
255
- schema?: any;
256
- helpUri?: string | undefined;
257
- }>>;
258
- }, "strip", z.ZodTypeAny, {
259
- key: string;
260
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
261
- description?: string | undefined;
262
- title?: string | undefined;
263
- ui?: {
264
- schema?: any;
265
- helpUri?: string | undefined;
266
- } | undefined;
267
- }, {
268
- key: string;
269
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
270
- description?: string | undefined;
271
- title?: string | undefined;
272
- ui?: {
273
- schema?: any;
274
- helpUri?: string | undefined;
275
- } | undefined;
276
- }>, "many">>;
277
243
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
278
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
279
244
  parameters: z.ZodOptional<z.ZodAny>;
280
- baseUri: z.ZodString;
281
245
  archivedAt: z.ZodOptional<z.ZodString>;
282
246
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
283
247
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -296,7 +260,6 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
296
260
  }, "strip", z.ZodTypeAny, {
297
261
  id: string;
298
262
  name: string;
299
- baseUri: string;
300
263
  logoUri: string;
301
264
  key?: string | undefined;
302
265
  uuid?: string | undefined;
@@ -309,20 +272,9 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
309
272
  updatedAt?: string | undefined;
310
273
  archivedAt?: string | undefined;
311
274
  parameters?: any;
312
- parametersSchema?: import("../..").DataSchema | undefined;
313
275
  isTest?: boolean | undefined;
314
276
  connectorId?: string | undefined;
315
277
  connectorVersion?: string | undefined;
316
- authOptions?: {
317
- key: string;
318
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
319
- description?: string | undefined;
320
- title?: string | undefined;
321
- ui?: {
322
- schema?: any;
323
- helpUri?: string | undefined;
324
- } | undefined;
325
- }[] | undefined;
326
278
  oAuthCallbackUri?: string | undefined;
327
279
  hasMissingParameters?: boolean | undefined;
328
280
  hasDocumentation?: boolean | undefined;
@@ -339,7 +291,6 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
339
291
  }, {
340
292
  id: string;
341
293
  name: string;
342
- baseUri: string;
343
294
  logoUri: string;
344
295
  key?: string | undefined;
345
296
  uuid?: string | undefined;
@@ -352,20 +303,9 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
352
303
  updatedAt?: string | undefined;
353
304
  archivedAt?: string | undefined;
354
305
  parameters?: any;
355
- parametersSchema?: import("../..").DataSchema | undefined;
356
306
  isTest?: boolean | undefined;
357
307
  connectorId?: string | undefined;
358
308
  connectorVersion?: string | undefined;
359
- authOptions?: {
360
- key: string;
361
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
362
- description?: string | undefined;
363
- title?: string | undefined;
364
- ui?: {
365
- schema?: any;
366
- helpUri?: string | undefined;
367
- } | undefined;
368
- }[] | undefined;
369
309
  oAuthCallbackUri?: string | undefined;
370
310
  hasMissingParameters?: boolean | undefined;
371
311
  hasDocumentation?: boolean | undefined;
@@ -390,9 +330,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
390
330
  isDefunct: z.ZodOptional<z.ZodBoolean>;
391
331
  error: any;
392
332
  integrationId: z.ZodString;
393
- credentials: z.ZodOptional<z.ZodUnknown>;
394
- parameters: z.ZodOptional<z.ZodUnknown>;
395
- connectorParameters: z.ZodOptional<z.ZodUnknown>;
333
+ authOptionKey: z.ZodOptional<z.ZodString>;
396
334
  createdAt: z.ZodString;
397
335
  updatedAt: z.ZodString;
398
336
  lastActiveAt: z.ZodOptional<z.ZodString>;
@@ -414,9 +352,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
414
352
  errors?: any[] | undefined;
415
353
  isDeactivated?: boolean | undefined;
416
354
  archivedAt?: string | undefined;
417
- credentials?: unknown;
418
- parameters?: unknown;
419
- connectorParameters?: unknown;
355
+ authOptionKey?: string | undefined;
420
356
  isTest?: boolean | undefined;
421
357
  disconnected?: boolean | undefined;
422
358
  isDefunct?: boolean | undefined;
@@ -435,9 +371,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
435
371
  errors?: any[] | undefined;
436
372
  isDeactivated?: boolean | undefined;
437
373
  archivedAt?: string | undefined;
438
- credentials?: unknown;
439
- parameters?: unknown;
440
- connectorParameters?: unknown;
374
+ authOptionKey?: string | undefined;
441
375
  isTest?: boolean | undefined;
442
376
  disconnected?: boolean | undefined;
443
377
  isDefunct?: boolean | undefined;
@@ -467,9 +401,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
467
401
  errors?: any[] | undefined;
468
402
  isDeactivated?: boolean | undefined;
469
403
  archivedAt?: string | undefined;
470
- credentials?: unknown;
471
- parameters?: unknown;
472
- connectorParameters?: unknown;
404
+ authOptionKey?: string | undefined;
473
405
  isTest?: boolean | undefined;
474
406
  disconnected?: boolean | undefined;
475
407
  isDefunct?: boolean | undefined;
@@ -481,7 +413,6 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
481
413
  integration?: {
482
414
  id: string;
483
415
  name: string;
484
- baseUri: string;
485
416
  logoUri: string;
486
417
  key?: string | undefined;
487
418
  uuid?: string | undefined;
@@ -494,20 +425,9 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
494
425
  updatedAt?: string | undefined;
495
426
  archivedAt?: string | undefined;
496
427
  parameters?: any;
497
- parametersSchema?: import("../..").DataSchema | undefined;
498
428
  isTest?: boolean | undefined;
499
429
  connectorId?: string | undefined;
500
430
  connectorVersion?: string | undefined;
501
- authOptions?: {
502
- key: string;
503
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
504
- description?: string | undefined;
505
- title?: string | undefined;
506
- ui?: {
507
- schema?: any;
508
- helpUri?: string | undefined;
509
- } | undefined;
510
- }[] | undefined;
511
431
  oAuthCallbackUri?: string | undefined;
512
432
  hasMissingParameters?: boolean | undefined;
513
433
  hasDocumentation?: boolean | undefined;
@@ -593,9 +513,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
593
513
  errors?: any[] | undefined;
594
514
  isDeactivated?: boolean | undefined;
595
515
  archivedAt?: string | undefined;
596
- credentials?: unknown;
597
- parameters?: unknown;
598
- connectorParameters?: unknown;
516
+ authOptionKey?: string | undefined;
599
517
  isTest?: boolean | undefined;
600
518
  disconnected?: boolean | undefined;
601
519
  isDefunct?: boolean | undefined;
@@ -607,7 +525,6 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
607
525
  integration?: {
608
526
  id: string;
609
527
  name: string;
610
- baseUri: string;
611
528
  logoUri: string;
612
529
  key?: string | undefined;
613
530
  uuid?: string | undefined;
@@ -620,20 +537,9 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
620
537
  updatedAt?: string | undefined;
621
538
  archivedAt?: string | undefined;
622
539
  parameters?: any;
623
- parametersSchema?: import("../..").DataSchema | undefined;
624
540
  isTest?: boolean | undefined;
625
541
  connectorId?: string | undefined;
626
542
  connectorVersion?: string | undefined;
627
- authOptions?: {
628
- key: string;
629
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
630
- description?: string | undefined;
631
- title?: string | undefined;
632
- ui?: {
633
- schema?: any;
634
- helpUri?: string | undefined;
635
- } | undefined;
636
- }[] | undefined;
637
543
  oAuthCallbackUri?: string | undefined;
638
544
  hasMissingParameters?: boolean | undefined;
639
545
  hasDocumentation?: boolean | undefined;
@@ -120,9 +120,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
120
120
  isDefunct: z.ZodOptional<z.ZodBoolean>;
121
121
  error: any;
122
122
  integrationId: z.ZodString;
123
- credentials: z.ZodOptional<z.ZodUnknown>;
124
- parameters: z.ZodOptional<z.ZodUnknown>;
125
- connectorParameters: z.ZodOptional<z.ZodUnknown>;
123
+ authOptionKey: z.ZodOptional<z.ZodString>;
126
124
  createdAt: z.ZodString;
127
125
  updatedAt: z.ZodString;
128
126
  lastActiveAt: z.ZodOptional<z.ZodString>;
@@ -144,9 +142,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
144
142
  errors?: any[] | undefined;
145
143
  isDeactivated?: boolean | undefined;
146
144
  archivedAt?: string | undefined;
147
- credentials?: unknown;
148
- parameters?: unknown;
149
- connectorParameters?: unknown;
145
+ authOptionKey?: string | undefined;
150
146
  isTest?: boolean | undefined;
151
147
  disconnected?: boolean | undefined;
152
148
  isDefunct?: boolean | undefined;
@@ -165,9 +161,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
165
161
  errors?: any[] | undefined;
166
162
  isDeactivated?: boolean | undefined;
167
163
  archivedAt?: string | undefined;
168
- credentials?: unknown;
169
- parameters?: unknown;
170
- connectorParameters?: unknown;
164
+ authOptionKey?: string | undefined;
171
165
  isTest?: boolean | undefined;
172
166
  disconnected?: boolean | undefined;
173
167
  isDefunct?: boolean | undefined;
@@ -190,44 +184,8 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
190
184
  logoUri: z.ZodString;
191
185
  connectorId: z.ZodOptional<z.ZodString>;
192
186
  connectorVersion: z.ZodOptional<z.ZodString>;
193
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
194
- key: z.ZodString;
195
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
196
- title: z.ZodOptional<z.ZodString>;
197
- description: z.ZodOptional<z.ZodString>;
198
- ui: z.ZodOptional<z.ZodObject<{
199
- schema: z.ZodOptional<z.ZodAny>;
200
- helpUri: z.ZodOptional<z.ZodString>;
201
- }, "strip", z.ZodTypeAny, {
202
- schema?: any;
203
- helpUri?: string | undefined;
204
- }, {
205
- schema?: any;
206
- helpUri?: string | undefined;
207
- }>>;
208
- }, "strip", z.ZodTypeAny, {
209
- key: string;
210
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
211
- description?: string | undefined;
212
- title?: string | undefined;
213
- ui?: {
214
- schema?: any;
215
- helpUri?: string | undefined;
216
- } | undefined;
217
- }, {
218
- key: string;
219
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
220
- description?: string | undefined;
221
- title?: string | undefined;
222
- ui?: {
223
- schema?: any;
224
- helpUri?: string | undefined;
225
- } | undefined;
226
- }>, "many">>;
227
187
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
228
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
229
188
  parameters: z.ZodOptional<z.ZodAny>;
230
- baseUri: z.ZodString;
231
189
  archivedAt: z.ZodOptional<z.ZodString>;
232
190
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
233
191
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -246,7 +204,6 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
246
204
  }, "strip", z.ZodTypeAny, {
247
205
  id: string;
248
206
  name: string;
249
- baseUri: string;
250
207
  logoUri: string;
251
208
  key?: string | undefined;
252
209
  uuid?: string | undefined;
@@ -259,20 +216,9 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
259
216
  updatedAt?: string | undefined;
260
217
  archivedAt?: string | undefined;
261
218
  parameters?: any;
262
- parametersSchema?: import("../..").DataSchema | undefined;
263
219
  isTest?: boolean | undefined;
264
220
  connectorId?: string | undefined;
265
221
  connectorVersion?: string | undefined;
266
- authOptions?: {
267
- key: string;
268
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
269
- description?: string | undefined;
270
- title?: string | undefined;
271
- ui?: {
272
- schema?: any;
273
- helpUri?: string | undefined;
274
- } | undefined;
275
- }[] | undefined;
276
222
  oAuthCallbackUri?: string | undefined;
277
223
  hasMissingParameters?: boolean | undefined;
278
224
  hasDocumentation?: boolean | undefined;
@@ -289,7 +235,6 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
289
235
  }, {
290
236
  id: string;
291
237
  name: string;
292
- baseUri: string;
293
238
  logoUri: string;
294
239
  key?: string | undefined;
295
240
  uuid?: string | undefined;
@@ -302,20 +247,9 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
302
247
  updatedAt?: string | undefined;
303
248
  archivedAt?: string | undefined;
304
249
  parameters?: any;
305
- parametersSchema?: import("../..").DataSchema | undefined;
306
250
  isTest?: boolean | undefined;
307
251
  connectorId?: string | undefined;
308
252
  connectorVersion?: string | undefined;
309
- authOptions?: {
310
- key: string;
311
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
312
- description?: string | undefined;
313
- title?: string | undefined;
314
- ui?: {
315
- schema?: any;
316
- helpUri?: string | undefined;
317
- } | undefined;
318
- }[] | undefined;
319
253
  oAuthCallbackUri?: string | undefined;
320
254
  hasMissingParameters?: boolean | undefined;
321
255
  hasDocumentation?: boolean | undefined;
@@ -347,9 +281,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
347
281
  errors?: any[] | undefined;
348
282
  isDeactivated?: boolean | undefined;
349
283
  archivedAt?: string | undefined;
350
- credentials?: unknown;
351
- parameters?: unknown;
352
- connectorParameters?: unknown;
284
+ authOptionKey?: string | undefined;
353
285
  isTest?: boolean | undefined;
354
286
  disconnected?: boolean | undefined;
355
287
  isDefunct?: boolean | undefined;
@@ -362,7 +294,6 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
362
294
  integration?: {
363
295
  id: string;
364
296
  name: string;
365
- baseUri: string;
366
297
  logoUri: string;
367
298
  key?: string | undefined;
368
299
  uuid?: string | undefined;
@@ -375,20 +306,9 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
375
306
  updatedAt?: string | undefined;
376
307
  archivedAt?: string | undefined;
377
308
  parameters?: any;
378
- parametersSchema?: import("../..").DataSchema | undefined;
379
309
  isTest?: boolean | undefined;
380
310
  connectorId?: string | undefined;
381
311
  connectorVersion?: string | undefined;
382
- authOptions?: {
383
- key: string;
384
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
385
- description?: string | undefined;
386
- title?: string | undefined;
387
- ui?: {
388
- schema?: any;
389
- helpUri?: string | undefined;
390
- } | undefined;
391
- }[] | undefined;
392
312
  oAuthCallbackUri?: string | undefined;
393
313
  hasMissingParameters?: boolean | undefined;
394
314
  hasDocumentation?: boolean | undefined;
@@ -459,9 +379,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
459
379
  errors?: any[] | undefined;
460
380
  isDeactivated?: boolean | undefined;
461
381
  archivedAt?: string | undefined;
462
- credentials?: unknown;
463
- parameters?: unknown;
464
- connectorParameters?: unknown;
382
+ authOptionKey?: string | undefined;
465
383
  isTest?: boolean | undefined;
466
384
  disconnected?: boolean | undefined;
467
385
  isDefunct?: boolean | undefined;
@@ -474,7 +392,6 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
474
392
  integration?: {
475
393
  id: string;
476
394
  name: string;
477
- baseUri: string;
478
395
  logoUri: string;
479
396
  key?: string | undefined;
480
397
  uuid?: string | undefined;
@@ -487,20 +404,9 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
487
404
  updatedAt?: string | undefined;
488
405
  archivedAt?: string | undefined;
489
406
  parameters?: any;
490
- parametersSchema?: import("../..").DataSchema | undefined;
491
407
  isTest?: boolean | undefined;
492
408
  connectorId?: string | undefined;
493
409
  connectorVersion?: string | undefined;
494
- authOptions?: {
495
- key: string;
496
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
497
- description?: string | undefined;
498
- title?: string | undefined;
499
- ui?: {
500
- schema?: any;
501
- helpUri?: string | undefined;
502
- } | undefined;
503
- }[] | undefined;
504
410
  oAuthCallbackUri?: string | undefined;
505
411
  hasMissingParameters?: boolean | undefined;
506
412
  hasDocumentation?: boolean | undefined;
@@ -227,44 +227,8 @@ export declare const ExternalEvent: z.ZodObject<{
227
227
  logoUri: z.ZodString;
228
228
  connectorId: z.ZodOptional<z.ZodString>;
229
229
  connectorVersion: z.ZodOptional<z.ZodString>;
230
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
231
- key: z.ZodString;
232
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
233
- title: z.ZodOptional<z.ZodString>;
234
- description: z.ZodOptional<z.ZodString>;
235
- ui: z.ZodOptional<z.ZodObject<{
236
- schema: z.ZodOptional<z.ZodAny>;
237
- helpUri: z.ZodOptional<z.ZodString>;
238
- }, "strip", z.ZodTypeAny, {
239
- schema?: any;
240
- helpUri?: string | undefined;
241
- }, {
242
- schema?: any;
243
- helpUri?: string | undefined;
244
- }>>;
245
- }, "strip", z.ZodTypeAny, {
246
- key: string;
247
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
248
- description?: string | undefined;
249
- title?: string | undefined;
250
- ui?: {
251
- schema?: any;
252
- helpUri?: string | undefined;
253
- } | undefined;
254
- }, {
255
- key: string;
256
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
257
- description?: string | undefined;
258
- title?: string | undefined;
259
- ui?: {
260
- schema?: any;
261
- helpUri?: string | undefined;
262
- } | undefined;
263
- }>, "many">>;
264
230
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
265
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
266
231
  parameters: z.ZodOptional<z.ZodAny>;
267
- baseUri: z.ZodString;
268
232
  archivedAt: z.ZodOptional<z.ZodString>;
269
233
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
270
234
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -283,7 +247,6 @@ export declare const ExternalEvent: z.ZodObject<{
283
247
  }, "strip", z.ZodTypeAny, {
284
248
  id: string;
285
249
  name: string;
286
- baseUri: string;
287
250
  logoUri: string;
288
251
  key?: string | undefined;
289
252
  uuid?: string | undefined;
@@ -296,20 +259,9 @@ export declare const ExternalEvent: z.ZodObject<{
296
259
  updatedAt?: string | undefined;
297
260
  archivedAt?: string | undefined;
298
261
  parameters?: any;
299
- parametersSchema?: import("../..").DataSchema | undefined;
300
262
  isTest?: boolean | undefined;
301
263
  connectorId?: string | undefined;
302
264
  connectorVersion?: string | undefined;
303
- authOptions?: {
304
- key: string;
305
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
306
- description?: string | undefined;
307
- title?: string | undefined;
308
- ui?: {
309
- schema?: any;
310
- helpUri?: string | undefined;
311
- } | undefined;
312
- }[] | undefined;
313
265
  oAuthCallbackUri?: string | undefined;
314
266
  hasMissingParameters?: boolean | undefined;
315
267
  hasDocumentation?: boolean | undefined;
@@ -326,7 +278,6 @@ export declare const ExternalEvent: z.ZodObject<{
326
278
  }, {
327
279
  id: string;
328
280
  name: string;
329
- baseUri: string;
330
281
  logoUri: string;
331
282
  key?: string | undefined;
332
283
  uuid?: string | undefined;
@@ -339,20 +290,9 @@ export declare const ExternalEvent: z.ZodObject<{
339
290
  updatedAt?: string | undefined;
340
291
  archivedAt?: string | undefined;
341
292
  parameters?: any;
342
- parametersSchema?: import("../..").DataSchema | undefined;
343
293
  isTest?: boolean | undefined;
344
294
  connectorId?: string | undefined;
345
295
  connectorVersion?: string | undefined;
346
- authOptions?: {
347
- key: string;
348
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
349
- description?: string | undefined;
350
- title?: string | undefined;
351
- ui?: {
352
- schema?: any;
353
- helpUri?: string | undefined;
354
- } | undefined;
355
- }[] | undefined;
356
296
  oAuthCallbackUri?: string | undefined;
357
297
  hasMissingParameters?: boolean | undefined;
358
298
  hasDocumentation?: boolean | undefined;
@@ -371,7 +311,6 @@ export declare const ExternalEvent: z.ZodObject<{
371
311
  integration: {
372
312
  id: string;
373
313
  name: string;
374
- baseUri: string;
375
314
  logoUri: string;
376
315
  key?: string | undefined;
377
316
  uuid?: string | undefined;
@@ -384,20 +323,9 @@ export declare const ExternalEvent: z.ZodObject<{
384
323
  updatedAt?: string | undefined;
385
324
  archivedAt?: string | undefined;
386
325
  parameters?: any;
387
- parametersSchema?: import("../..").DataSchema | undefined;
388
326
  isTest?: boolean | undefined;
389
327
  connectorId?: string | undefined;
390
328
  connectorVersion?: string | undefined;
391
- authOptions?: {
392
- key: string;
393
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
394
- description?: string | undefined;
395
- title?: string | undefined;
396
- ui?: {
397
- schema?: any;
398
- helpUri?: string | undefined;
399
- } | undefined;
400
- }[] | undefined;
401
329
  oAuthCallbackUri?: string | undefined;
402
330
  hasMissingParameters?: boolean | undefined;
403
331
  hasDocumentation?: boolean | undefined;
@@ -432,7 +360,6 @@ export declare const ExternalEvent: z.ZodObject<{
432
360
  integration: {
433
361
  id: string;
434
362
  name: string;
435
- baseUri: string;
436
363
  logoUri: string;
437
364
  key?: string | undefined;
438
365
  uuid?: string | undefined;
@@ -445,20 +372,9 @@ export declare const ExternalEvent: z.ZodObject<{
445
372
  updatedAt?: string | undefined;
446
373
  archivedAt?: string | undefined;
447
374
  parameters?: any;
448
- parametersSchema?: import("../..").DataSchema | undefined;
449
375
  isTest?: boolean | undefined;
450
376
  connectorId?: string | undefined;
451
377
  connectorVersion?: string | undefined;
452
- authOptions?: {
453
- key: string;
454
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
455
- description?: string | undefined;
456
- title?: string | undefined;
457
- ui?: {
458
- schema?: any;
459
- helpUri?: string | undefined;
460
- } | undefined;
461
- }[] | undefined;
462
378
  oAuthCallbackUri?: string | undefined;
463
379
  hasMissingParameters?: boolean | undefined;
464
380
  hasDocumentation?: boolean | undefined;
@@ -509,7 +425,6 @@ export declare const ExternalEvent: z.ZodObject<{
509
425
  integration: {
510
426
  id: string;
511
427
  name: string;
512
- baseUri: string;
513
428
  logoUri: string;
514
429
  key?: string | undefined;
515
430
  uuid?: string | undefined;
@@ -522,20 +437,9 @@ export declare const ExternalEvent: z.ZodObject<{
522
437
  updatedAt?: string | undefined;
523
438
  archivedAt?: string | undefined;
524
439
  parameters?: any;
525
- parametersSchema?: import("../..").DataSchema | undefined;
526
440
  isTest?: boolean | undefined;
527
441
  connectorId?: string | undefined;
528
442
  connectorVersion?: string | undefined;
529
- authOptions?: {
530
- key: string;
531
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
532
- description?: string | undefined;
533
- title?: string | undefined;
534
- ui?: {
535
- schema?: any;
536
- helpUri?: string | undefined;
537
- } | undefined;
538
- }[] | undefined;
539
443
  oAuthCallbackUri?: string | undefined;
540
444
  hasMissingParameters?: boolean | undefined;
541
445
  hasDocumentation?: boolean | undefined;
@@ -586,7 +490,6 @@ export declare const ExternalEvent: z.ZodObject<{
586
490
  integration: {
587
491
  id: string;
588
492
  name: string;
589
- baseUri: string;
590
493
  logoUri: string;
591
494
  key?: string | undefined;
592
495
  uuid?: string | undefined;
@@ -599,20 +502,9 @@ export declare const ExternalEvent: z.ZodObject<{
599
502
  updatedAt?: string | undefined;
600
503
  archivedAt?: string | undefined;
601
504
  parameters?: any;
602
- parametersSchema?: import("../..").DataSchema | undefined;
603
505
  isTest?: boolean | undefined;
604
506
  connectorId?: string | undefined;
605
507
  connectorVersion?: string | undefined;
606
- authOptions?: {
607
- key: string;
608
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
609
- description?: string | undefined;
610
- title?: string | undefined;
611
- ui?: {
612
- schema?: any;
613
- helpUri?: string | undefined;
614
- } | undefined;
615
- }[] | undefined;
616
508
  oAuthCallbackUri?: string | undefined;
617
509
  hasMissingParameters?: boolean | undefined;
618
510
  hasDocumentation?: boolean | undefined;