@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
@@ -340,44 +340,8 @@ export declare const DataSourceApiResponse: z.ZodObject<{
340
340
  logoUri: z.ZodString;
341
341
  connectorId: z.ZodOptional<z.ZodString>;
342
342
  connectorVersion: z.ZodOptional<z.ZodString>;
343
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
344
- key: z.ZodString;
345
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
346
- title: z.ZodOptional<z.ZodString>;
347
- description: z.ZodOptional<z.ZodString>;
348
- ui: z.ZodOptional<z.ZodObject<{
349
- schema: z.ZodOptional<z.ZodAny>;
350
- helpUri: z.ZodOptional<z.ZodString>;
351
- }, "strip", z.ZodTypeAny, {
352
- schema?: any;
353
- helpUri?: string | undefined;
354
- }, {
355
- schema?: any;
356
- helpUri?: string | undefined;
357
- }>>;
358
- }, "strip", z.ZodTypeAny, {
359
- key: string;
360
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
361
- description?: string | undefined;
362
- title?: string | undefined;
363
- ui?: {
364
- schema?: any;
365
- helpUri?: string | undefined;
366
- } | undefined;
367
- }, {
368
- key: string;
369
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
370
- description?: string | undefined;
371
- title?: string | undefined;
372
- ui?: {
373
- schema?: any;
374
- helpUri?: string | undefined;
375
- } | undefined;
376
- }>, "many">>;
377
343
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
378
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
379
344
  parameters: z.ZodOptional<z.ZodAny>;
380
- baseUri: z.ZodString;
381
345
  archivedAt: z.ZodOptional<z.ZodString>;
382
346
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
383
347
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -396,7 +360,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
396
360
  }, "strip", z.ZodTypeAny, {
397
361
  id: string;
398
362
  name: string;
399
- baseUri: string;
400
363
  logoUri: string;
401
364
  key?: string | undefined;
402
365
  uuid?: string | undefined;
@@ -409,20 +372,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
409
372
  updatedAt?: string | undefined;
410
373
  archivedAt?: string | undefined;
411
374
  parameters?: any;
412
- parametersSchema?: import("../..").DataSchema | undefined;
413
375
  isTest?: boolean | undefined;
414
376
  connectorId?: string | undefined;
415
377
  connectorVersion?: string | undefined;
416
- authOptions?: {
417
- key: string;
418
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
419
- description?: string | undefined;
420
- title?: string | undefined;
421
- ui?: {
422
- schema?: any;
423
- helpUri?: string | undefined;
424
- } | undefined;
425
- }[] | undefined;
426
378
  oAuthCallbackUri?: string | undefined;
427
379
  hasMissingParameters?: boolean | undefined;
428
380
  hasDocumentation?: boolean | undefined;
@@ -439,7 +391,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
439
391
  }, {
440
392
  id: string;
441
393
  name: string;
442
- baseUri: string;
443
394
  logoUri: string;
444
395
  key?: string | undefined;
445
396
  uuid?: string | undefined;
@@ -452,20 +403,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
452
403
  updatedAt?: string | undefined;
453
404
  archivedAt?: string | undefined;
454
405
  parameters?: any;
455
- parametersSchema?: import("../..").DataSchema | undefined;
456
406
  isTest?: boolean | undefined;
457
407
  connectorId?: string | undefined;
458
408
  connectorVersion?: string | undefined;
459
- authOptions?: {
460
- key: string;
461
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
462
- description?: string | undefined;
463
- title?: string | undefined;
464
- ui?: {
465
- schema?: any;
466
- helpUri?: string | undefined;
467
- } | undefined;
468
- }[] | undefined;
469
409
  oAuthCallbackUri?: string | undefined;
470
410
  hasMissingParameters?: boolean | undefined;
471
411
  hasDocumentation?: boolean | undefined;
@@ -570,44 +510,8 @@ export declare const DataSourceApiResponse: z.ZodObject<{
570
510
  logoUri: z.ZodString;
571
511
  connectorId: z.ZodOptional<z.ZodString>;
572
512
  connectorVersion: z.ZodOptional<z.ZodString>;
573
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
574
- key: z.ZodString;
575
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
576
- title: z.ZodOptional<z.ZodString>;
577
- description: z.ZodOptional<z.ZodString>;
578
- ui: z.ZodOptional<z.ZodObject<{
579
- schema: z.ZodOptional<z.ZodAny>;
580
- helpUri: z.ZodOptional<z.ZodString>;
581
- }, "strip", z.ZodTypeAny, {
582
- schema?: any;
583
- helpUri?: string | undefined;
584
- }, {
585
- schema?: any;
586
- helpUri?: string | undefined;
587
- }>>;
588
- }, "strip", z.ZodTypeAny, {
589
- key: string;
590
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
591
- description?: string | undefined;
592
- title?: string | undefined;
593
- ui?: {
594
- schema?: any;
595
- helpUri?: string | undefined;
596
- } | undefined;
597
- }, {
598
- key: string;
599
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
600
- description?: string | undefined;
601
- title?: string | undefined;
602
- ui?: {
603
- schema?: any;
604
- helpUri?: string | undefined;
605
- } | undefined;
606
- }>, "many">>;
607
513
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
608
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
609
514
  parameters: z.ZodOptional<z.ZodAny>;
610
- baseUri: z.ZodString;
611
515
  archivedAt: z.ZodOptional<z.ZodString>;
612
516
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
613
517
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -626,7 +530,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
626
530
  }, "strip", z.ZodTypeAny, {
627
531
  id: string;
628
532
  name: string;
629
- baseUri: string;
630
533
  logoUri: string;
631
534
  key?: string | undefined;
632
535
  uuid?: string | undefined;
@@ -639,20 +542,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
639
542
  updatedAt?: string | undefined;
640
543
  archivedAt?: string | undefined;
641
544
  parameters?: any;
642
- parametersSchema?: import("../..").DataSchema | undefined;
643
545
  isTest?: boolean | undefined;
644
546
  connectorId?: string | undefined;
645
547
  connectorVersion?: string | undefined;
646
- authOptions?: {
647
- key: string;
648
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
649
- description?: string | undefined;
650
- title?: string | undefined;
651
- ui?: {
652
- schema?: any;
653
- helpUri?: string | undefined;
654
- } | undefined;
655
- }[] | undefined;
656
548
  oAuthCallbackUri?: string | undefined;
657
549
  hasMissingParameters?: boolean | undefined;
658
550
  hasDocumentation?: boolean | undefined;
@@ -669,7 +561,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
669
561
  }, {
670
562
  id: string;
671
563
  name: string;
672
- baseUri: string;
673
564
  logoUri: string;
674
565
  key?: string | undefined;
675
566
  uuid?: string | undefined;
@@ -682,20 +573,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
682
573
  updatedAt?: string | undefined;
683
574
  archivedAt?: string | undefined;
684
575
  parameters?: any;
685
- parametersSchema?: import("../..").DataSchema | undefined;
686
576
  isTest?: boolean | undefined;
687
577
  connectorId?: string | undefined;
688
578
  connectorVersion?: string | undefined;
689
- authOptions?: {
690
- key: string;
691
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
692
- description?: string | undefined;
693
- title?: string | undefined;
694
- ui?: {
695
- schema?: any;
696
- helpUri?: string | undefined;
697
- } | undefined;
698
- }[] | undefined;
699
579
  oAuthCallbackUri?: string | undefined;
700
580
  hasMissingParameters?: boolean | undefined;
701
581
  hasDocumentation?: boolean | undefined;
@@ -714,7 +594,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
714
594
  integration: {
715
595
  id: string;
716
596
  name: string;
717
- baseUri: string;
718
597
  logoUri: string;
719
598
  key?: string | undefined;
720
599
  uuid?: string | undefined;
@@ -727,20 +606,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
727
606
  updatedAt?: string | undefined;
728
607
  archivedAt?: string | undefined;
729
608
  parameters?: any;
730
- parametersSchema?: import("../..").DataSchema | undefined;
731
609
  isTest?: boolean | undefined;
732
610
  connectorId?: string | undefined;
733
611
  connectorVersion?: string | undefined;
734
- authOptions?: {
735
- key: string;
736
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
737
- description?: string | undefined;
738
- title?: string | undefined;
739
- ui?: {
740
- schema?: any;
741
- helpUri?: string | undefined;
742
- } | undefined;
743
- }[] | undefined;
744
612
  oAuthCallbackUri?: string | undefined;
745
613
  hasMissingParameters?: boolean | undefined;
746
614
  hasDocumentation?: boolean | undefined;
@@ -784,7 +652,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
784
652
  integration: {
785
653
  id: string;
786
654
  name: string;
787
- baseUri: string;
788
655
  logoUri: string;
789
656
  key?: string | undefined;
790
657
  uuid?: string | undefined;
@@ -797,20 +664,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
797
664
  updatedAt?: string | undefined;
798
665
  archivedAt?: string | undefined;
799
666
  parameters?: any;
800
- parametersSchema?: import("../..").DataSchema | undefined;
801
667
  isTest?: boolean | undefined;
802
668
  connectorId?: string | undefined;
803
669
  connectorVersion?: string | undefined;
804
- authOptions?: {
805
- key: string;
806
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
807
- description?: string | undefined;
808
- title?: string | undefined;
809
- ui?: {
810
- schema?: any;
811
- helpUri?: string | undefined;
812
- } | undefined;
813
- }[] | undefined;
814
670
  oAuthCallbackUri?: string | undefined;
815
671
  hasMissingParameters?: boolean | undefined;
816
672
  hasDocumentation?: boolean | undefined;
@@ -859,7 +715,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
859
715
  integration?: {
860
716
  id: string;
861
717
  name: string;
862
- baseUri: string;
863
718
  logoUri: string;
864
719
  key?: string | undefined;
865
720
  uuid?: string | undefined;
@@ -872,20 +727,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
872
727
  updatedAt?: string | undefined;
873
728
  archivedAt?: string | undefined;
874
729
  parameters?: any;
875
- parametersSchema?: import("../..").DataSchema | undefined;
876
730
  isTest?: boolean | undefined;
877
731
  connectorId?: string | undefined;
878
732
  connectorVersion?: string | undefined;
879
- authOptions?: {
880
- key: string;
881
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
882
- description?: string | undefined;
883
- title?: string | undefined;
884
- ui?: {
885
- schema?: any;
886
- helpUri?: string | undefined;
887
- } | undefined;
888
- }[] | undefined;
889
733
  oAuthCallbackUri?: string | undefined;
890
734
  hasMissingParameters?: boolean | undefined;
891
735
  hasDocumentation?: boolean | undefined;
@@ -916,7 +760,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
916
760
  integration: {
917
761
  id: string;
918
762
  name: string;
919
- baseUri: string;
920
763
  logoUri: string;
921
764
  key?: string | undefined;
922
765
  uuid?: string | undefined;
@@ -929,20 +772,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
929
772
  updatedAt?: string | undefined;
930
773
  archivedAt?: string | undefined;
931
774
  parameters?: any;
932
- parametersSchema?: import("../..").DataSchema | undefined;
933
775
  isTest?: boolean | undefined;
934
776
  connectorId?: string | undefined;
935
777
  connectorVersion?: string | undefined;
936
- authOptions?: {
937
- key: string;
938
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
939
- description?: string | undefined;
940
- title?: string | undefined;
941
- ui?: {
942
- schema?: any;
943
- helpUri?: string | undefined;
944
- } | undefined;
945
- }[] | undefined;
946
778
  oAuthCallbackUri?: string | undefined;
947
779
  hasMissingParameters?: boolean | undefined;
948
780
  hasDocumentation?: boolean | undefined;
@@ -998,7 +830,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
998
830
  integration?: {
999
831
  id: string;
1000
832
  name: string;
1001
- baseUri: string;
1002
833
  logoUri: string;
1003
834
  key?: string | undefined;
1004
835
  uuid?: string | undefined;
@@ -1011,20 +842,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
1011
842
  updatedAt?: string | undefined;
1012
843
  archivedAt?: string | undefined;
1013
844
  parameters?: any;
1014
- parametersSchema?: import("../..").DataSchema | undefined;
1015
845
  isTest?: boolean | undefined;
1016
846
  connectorId?: string | undefined;
1017
847
  connectorVersion?: string | undefined;
1018
- authOptions?: {
1019
- key: string;
1020
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1021
- description?: string | undefined;
1022
- title?: string | undefined;
1023
- ui?: {
1024
- schema?: any;
1025
- helpUri?: string | undefined;
1026
- } | undefined;
1027
- }[] | undefined;
1028
848
  oAuthCallbackUri?: string | undefined;
1029
849
  hasMissingParameters?: boolean | undefined;
1030
850
  hasDocumentation?: boolean | undefined;
@@ -1055,7 +875,6 @@ export declare const DataSourceApiResponse: z.ZodObject<{
1055
875
  integration: {
1056
876
  id: string;
1057
877
  name: string;
1058
- baseUri: string;
1059
878
  logoUri: string;
1060
879
  key?: string | undefined;
1061
880
  uuid?: string | undefined;
@@ -1068,20 +887,9 @@ export declare const DataSourceApiResponse: z.ZodObject<{
1068
887
  updatedAt?: string | undefined;
1069
888
  archivedAt?: string | undefined;
1070
889
  parameters?: any;
1071
- parametersSchema?: import("../..").DataSchema | undefined;
1072
890
  isTest?: boolean | undefined;
1073
891
  connectorId?: string | undefined;
1074
892
  connectorVersion?: string | undefined;
1075
- authOptions?: {
1076
- key: string;
1077
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1078
- description?: string | undefined;
1079
- title?: string | undefined;
1080
- ui?: {
1081
- schema?: any;
1082
- helpUri?: string | undefined;
1083
- } | undefined;
1084
- }[] | undefined;
1085
893
  oAuthCallbackUri?: string | undefined;
1086
894
  hasMissingParameters?: boolean | undefined;
1087
895
  hasDocumentation?: boolean | undefined;
@@ -238,44 +238,8 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
238
238
  logoUri: z.ZodString;
239
239
  connectorId: z.ZodOptional<z.ZodString>;
240
240
  connectorVersion: z.ZodOptional<z.ZodString>;
241
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
242
- key: z.ZodString;
243
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
244
- title: z.ZodOptional<z.ZodString>;
245
- description: z.ZodOptional<z.ZodString>;
246
- ui: z.ZodOptional<z.ZodObject<{
247
- schema: z.ZodOptional<z.ZodAny>;
248
- helpUri: z.ZodOptional<z.ZodString>;
249
- }, "strip", z.ZodTypeAny, {
250
- schema?: any;
251
- helpUri?: string | undefined;
252
- }, {
253
- schema?: any;
254
- helpUri?: string | undefined;
255
- }>>;
256
- }, "strip", z.ZodTypeAny, {
257
- key: string;
258
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
259
- description?: string | undefined;
260
- title?: string | undefined;
261
- ui?: {
262
- schema?: any;
263
- helpUri?: string | undefined;
264
- } | undefined;
265
- }, {
266
- key: string;
267
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
268
- description?: string | undefined;
269
- title?: string | undefined;
270
- ui?: {
271
- schema?: any;
272
- helpUri?: string | undefined;
273
- } | undefined;
274
- }>, "many">>;
275
241
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
276
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
277
242
  parameters: z.ZodOptional<z.ZodAny>;
278
- baseUri: z.ZodString;
279
243
  archivedAt: z.ZodOptional<z.ZodString>;
280
244
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
281
245
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -294,7 +258,6 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
294
258
  }, "strip", z.ZodTypeAny, {
295
259
  id: string;
296
260
  name: string;
297
- baseUri: string;
298
261
  logoUri: string;
299
262
  key?: string | undefined;
300
263
  uuid?: string | undefined;
@@ -307,20 +270,9 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
307
270
  updatedAt?: string | undefined;
308
271
  archivedAt?: string | undefined;
309
272
  parameters?: any;
310
- parametersSchema?: import("../..").DataSchema | undefined;
311
273
  isTest?: boolean | undefined;
312
274
  connectorId?: string | undefined;
313
275
  connectorVersion?: string | undefined;
314
- authOptions?: {
315
- key: string;
316
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
317
- description?: string | undefined;
318
- title?: string | undefined;
319
- ui?: {
320
- schema?: any;
321
- helpUri?: string | undefined;
322
- } | undefined;
323
- }[] | undefined;
324
276
  oAuthCallbackUri?: string | undefined;
325
277
  hasMissingParameters?: boolean | undefined;
326
278
  hasDocumentation?: boolean | undefined;
@@ -337,7 +289,6 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
337
289
  }, {
338
290
  id: string;
339
291
  name: string;
340
- baseUri: string;
341
292
  logoUri: string;
342
293
  key?: string | undefined;
343
294
  uuid?: string | undefined;
@@ -350,20 +301,9 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
350
301
  updatedAt?: string | undefined;
351
302
  archivedAt?: string | undefined;
352
303
  parameters?: any;
353
- parametersSchema?: import("../..").DataSchema | undefined;
354
304
  isTest?: boolean | undefined;
355
305
  connectorId?: string | undefined;
356
306
  connectorVersion?: string | undefined;
357
- authOptions?: {
358
- key: string;
359
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
360
- description?: string | undefined;
361
- title?: string | undefined;
362
- ui?: {
363
- schema?: any;
364
- helpUri?: string | undefined;
365
- } | undefined;
366
- }[] | undefined;
367
307
  oAuthCallbackUri?: string | undefined;
368
308
  hasMissingParameters?: boolean | undefined;
369
309
  hasDocumentation?: boolean | undefined;
@@ -388,9 +328,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
388
328
  isDefunct: z.ZodOptional<z.ZodBoolean>;
389
329
  error: any;
390
330
  integrationId: z.ZodString;
391
- credentials: z.ZodOptional<z.ZodUnknown>;
392
- parameters: z.ZodOptional<z.ZodUnknown>;
393
- connectorParameters: z.ZodOptional<z.ZodUnknown>;
331
+ authOptionKey: z.ZodOptional<z.ZodString>;
394
332
  createdAt: z.ZodString;
395
333
  updatedAt: z.ZodString;
396
334
  lastActiveAt: z.ZodOptional<z.ZodString>;
@@ -412,9 +350,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
412
350
  errors?: any[] | undefined;
413
351
  isDeactivated?: boolean | undefined;
414
352
  archivedAt?: string | undefined;
415
- credentials?: unknown;
416
- parameters?: unknown;
417
- connectorParameters?: unknown;
353
+ authOptionKey?: string | undefined;
418
354
  isTest?: boolean | undefined;
419
355
  disconnected?: boolean | undefined;
420
356
  isDefunct?: boolean | undefined;
@@ -433,9 +369,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
433
369
  errors?: any[] | undefined;
434
370
  isDeactivated?: boolean | undefined;
435
371
  archivedAt?: string | undefined;
436
- credentials?: unknown;
437
- parameters?: unknown;
438
- connectorParameters?: unknown;
372
+ authOptionKey?: string | undefined;
439
373
  isTest?: boolean | undefined;
440
374
  disconnected?: boolean | undefined;
441
375
  isDefunct?: boolean | undefined;
@@ -462,9 +396,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
462
396
  errors?: any[] | undefined;
463
397
  isDeactivated?: boolean | undefined;
464
398
  archivedAt?: string | undefined;
465
- credentials?: unknown;
466
- parameters?: unknown;
467
- connectorParameters?: unknown;
399
+ authOptionKey?: string | undefined;
468
400
  isTest?: boolean | undefined;
469
401
  disconnected?: boolean | undefined;
470
402
  isDefunct?: boolean | undefined;
@@ -476,7 +408,6 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
476
408
  integration?: {
477
409
  id: string;
478
410
  name: string;
479
- baseUri: string;
480
411
  logoUri: string;
481
412
  key?: string | undefined;
482
413
  uuid?: string | undefined;
@@ -489,20 +420,9 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
489
420
  updatedAt?: string | undefined;
490
421
  archivedAt?: string | undefined;
491
422
  parameters?: any;
492
- parametersSchema?: import("../..").DataSchema | undefined;
493
423
  isTest?: boolean | undefined;
494
424
  connectorId?: string | undefined;
495
425
  connectorVersion?: string | undefined;
496
- authOptions?: {
497
- key: string;
498
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
499
- description?: string | undefined;
500
- title?: string | undefined;
501
- ui?: {
502
- schema?: any;
503
- helpUri?: string | undefined;
504
- } | undefined;
505
- }[] | undefined;
506
426
  oAuthCallbackUri?: string | undefined;
507
427
  hasMissingParameters?: boolean | undefined;
508
428
  hasDocumentation?: boolean | undefined;
@@ -586,9 +506,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
586
506
  errors?: any[] | undefined;
587
507
  isDeactivated?: boolean | undefined;
588
508
  archivedAt?: string | undefined;
589
- credentials?: unknown;
590
- parameters?: unknown;
591
- connectorParameters?: unknown;
509
+ authOptionKey?: string | undefined;
592
510
  isTest?: boolean | undefined;
593
511
  disconnected?: boolean | undefined;
594
512
  isDefunct?: boolean | undefined;
@@ -600,7 +518,6 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
600
518
  integration?: {
601
519
  id: string;
602
520
  name: string;
603
- baseUri: string;
604
521
  logoUri: string;
605
522
  key?: string | undefined;
606
523
  uuid?: string | undefined;
@@ -613,20 +530,9 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
613
530
  updatedAt?: string | undefined;
614
531
  archivedAt?: string | undefined;
615
532
  parameters?: any;
616
- parametersSchema?: import("../..").DataSchema | undefined;
617
533
  isTest?: boolean | undefined;
618
534
  connectorId?: string | undefined;
619
535
  connectorVersion?: string | undefined;
620
- authOptions?: {
621
- key: string;
622
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
623
- description?: string | undefined;
624
- title?: string | undefined;
625
- ui?: {
626
- schema?: any;
627
- helpUri?: string | undefined;
628
- } | undefined;
629
- }[] | undefined;
630
536
  oAuthCallbackUri?: string | undefined;
631
537
  hasMissingParameters?: boolean | undefined;
632
538
  hasDocumentation?: boolean | undefined;