@membranehq/sdk 0.5.2 → 0.6.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.
Files changed (66) hide show
  1. package/dist/bundle.d.ts +1661 -1666
  2. package/dist/bundle.js +9 -4
  3. package/dist/bundle.js.map +1 -1
  4. package/dist/dts/accessors/action-instances-accessors.d.ts +5 -2
  5. package/dist/dts/accessors/actions-accessors.d.ts +2 -2
  6. package/dist/dts/accessors/connections-accessors.d.ts +7 -7
  7. package/dist/dts/accessors/integrations-accessors.d.ts +7 -7
  8. package/dist/dts/errors/index.d.ts +10 -1
  9. package/dist/dts/workspace-elements/api/action-instances-api.d.ts +119 -65
  10. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +69 -90
  11. package/dist/dts/workspace-elements/api/actions-api.d.ts +253 -339
  12. package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +21 -21
  13. package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +7 -7
  14. package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +22 -22
  15. package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +18 -18
  16. package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +7 -7
  17. package/dist/dts/workspace-elements/api/connections-api.d.ts +90 -89
  18. package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +50 -50
  19. package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +7 -7
  20. package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +55 -55
  21. package/dist/dts/workspace-elements/api/data-sources-api.d.ts +62 -62
  22. package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +40 -40
  23. package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +40 -40
  24. package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +35 -35
  25. package/dist/dts/workspace-elements/api/external-events-api.d.ts +20 -20
  26. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +146 -146
  27. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +56 -56
  28. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +128 -128
  29. package/dist/dts/workspace-elements/api/flows-api.d.ts +223 -223
  30. package/dist/dts/workspace-elements/api/integrations-api.d.ts +26 -26
  31. package/dist/dts/workspace-elements/api/scenarios-api.d.ts +21 -21
  32. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +10 -10
  33. package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +4 -3
  34. package/dist/dts/workspace-elements/base/actions/index.d.ts +111 -1
  35. package/dist/dts/workspace-elements/base/app-data-schema-instances/types.d.ts +11 -10
  36. package/dist/dts/workspace-elements/base/app-data-schemas/types.d.ts +7 -7
  37. package/dist/dts/workspace-elements/base/app-event-subscriptions/types.d.ts +7 -7
  38. package/dist/dts/workspace-elements/base/app-event-types/types.d.ts +7 -7
  39. package/dist/dts/workspace-elements/base/connections/types.d.ts +11 -10
  40. package/dist/dts/workspace-elements/base/data-link-table-instances/types.d.ts +7 -7
  41. package/dist/dts/workspace-elements/base/data-link-tables/types.d.ts +7 -7
  42. package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +10 -9
  43. package/dist/dts/workspace-elements/base/data-sources/types.d.ts +8 -8
  44. package/dist/dts/workspace-elements/base/external-event-log-records/types.d.ts +4 -3
  45. package/dist/dts/workspace-elements/base/external-event-pulls/types.d.ts +4 -3
  46. package/dist/dts/workspace-elements/base/external-event-subscriptions/types.d.ts +4 -3
  47. package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +11 -10
  48. package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +9 -9
  49. package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +8 -8
  50. package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +15 -14
  51. package/dist/dts/workspace-elements/base/flow-runs/flow-node-runs.d.ts +16 -16
  52. package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +6 -5
  53. package/dist/dts/workspace-elements/base/flows/types.d.ts +15 -15
  54. package/dist/dts/workspace-elements/base/integrations/types.d.ts +48 -48
  55. package/dist/dts/workspace-elements/base/scenarios/types.d.ts +7 -7
  56. package/dist/dts/workspace-elements/types.d.ts +53 -9
  57. package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
  58. package/dist/dts/workspaces/types.d.ts +2 -0
  59. package/dist/index.d.ts +2269 -2236
  60. package/dist/index.js +48 -48
  61. package/dist/index.js.map +1 -1
  62. package/dist/index.module.d.mts +2269 -2236
  63. package/dist/index.module.mjs +46 -48
  64. package/dist/index.module.mjs.map +1 -1
  65. package/package.json +1 -3
  66. package/dist/dts/workspace-elements/base/actions/types.d.ts +0 -85
@@ -1,15 +1,15 @@
1
1
  import { z } from 'zod';
2
2
  export declare const DataSourceInstanceApiResponse: z.ZodObject<{
3
3
  id: z.ZodString;
4
- name: z.ZodString;
5
4
  key: z.ZodOptional<z.ZodString>;
6
5
  uuid: z.ZodOptional<z.ZodString>;
7
6
  description: z.ZodOptional<z.ZodString>;
7
+ name: z.ZodString;
8
8
  state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
9
- isDeactivated: z.ZodOptional<z.ZodBoolean>;
10
9
  createdAt: z.ZodOptional<z.ZodString>;
11
10
  updatedAt: z.ZodOptional<z.ZodString>;
12
11
  archivedAt: z.ZodOptional<z.ZodString>;
12
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
13
13
  } & {
14
14
  userId: z.ZodString;
15
15
  revision: z.ZodString;
@@ -715,7 +715,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
715
715
  customFields?: boolean | undefined;
716
716
  }>>;
717
717
  isCustomized: z.ZodOptional<z.ZodBoolean>;
718
- errors: z.ZodOptional<z.ZodArray<any, "many">>;
718
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
719
719
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
720
720
  fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
721
721
  path: z.ZodOptional<z.ZodString>;
@@ -757,12 +757,12 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
757
757
  }>>;
758
758
  dataSource: z.ZodOptional<z.ZodObject<{
759
759
  id: z.ZodString;
760
- name: z.ZodString;
761
760
  key: z.ZodOptional<z.ZodString>;
762
761
  uuid: z.ZodOptional<z.ZodString>;
763
762
  description: z.ZodOptional<z.ZodString>;
763
+ name: z.ZodString;
764
764
  state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
765
- errors: z.ZodOptional<z.ZodArray<any, "many">>;
765
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
766
766
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
767
767
  } & {
768
768
  revision: z.ZodString;
@@ -788,15 +788,15 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
788
788
  uuid?: string | undefined;
789
789
  description?: string | undefined;
790
790
  state?: import("..").WorkspaceElementState | undefined;
791
- errors?: any[] | undefined;
792
- isDeactivated?: boolean | undefined;
791
+ errors?: import("../..").ErrorDataSchema[] | undefined;
793
792
  createdAt?: string | undefined;
794
793
  updatedAt?: string | undefined;
795
794
  archivedAt?: string | undefined;
795
+ isDeactivated?: boolean | undefined;
796
796
  integrationId?: string | undefined;
797
- udm?: string | undefined;
798
797
  publishedRevision?: string | undefined;
799
798
  customized?: boolean | undefined;
799
+ udm?: string | undefined;
800
800
  universalDataSourceId?: string | undefined;
801
801
  collectionKey?: string | undefined;
802
802
  collectionParameters?: any;
@@ -812,15 +812,15 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
812
812
  uuid?: string | undefined;
813
813
  description?: string | undefined;
814
814
  state?: import("..").WorkspaceElementState | undefined;
815
- errors?: any[] | undefined;
816
- isDeactivated?: boolean | undefined;
815
+ errors?: import("../..").ErrorDataSchema[] | undefined;
817
816
  createdAt?: string | undefined;
818
817
  updatedAt?: string | undefined;
819
818
  archivedAt?: string | undefined;
819
+ isDeactivated?: boolean | undefined;
820
820
  integrationId?: string | undefined;
821
- udm?: string | undefined;
822
821
  publishedRevision?: string | undefined;
823
822
  customized?: boolean | undefined;
823
+ udm?: string | undefined;
824
824
  universalDataSourceId?: string | undefined;
825
825
  collectionKey?: string | undefined;
826
826
  collectionParameters?: any;
@@ -837,7 +837,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
837
837
  isTest: z.ZodOptional<z.ZodBoolean>;
838
838
  disconnected: z.ZodOptional<z.ZodBoolean>;
839
839
  isDefunct: z.ZodOptional<z.ZodBoolean>;
840
- error: any;
840
+ error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
841
841
  integrationId: z.ZodString;
842
842
  authOptionKey: z.ZodOptional<z.ZodString>;
843
843
  createdAt: z.ZodString;
@@ -847,7 +847,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
847
847
  archivedAt: z.ZodOptional<z.ZodString>;
848
848
  isDeactivated: z.ZodOptional<z.ZodBoolean>;
849
849
  state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
850
- errors: z.ZodOptional<z.ZodArray<any, "many">>;
850
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
851
851
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
852
852
  }, "strip", z.ZodTypeAny, {
853
853
  id: string;
@@ -856,18 +856,18 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
856
856
  updatedAt: string;
857
857
  userId: string;
858
858
  integrationId: string;
859
- error?: any;
859
+ error?: import("../..").ErrorDataSchema | undefined;
860
860
  state?: import("..").WorkspaceElementState | undefined;
861
- errors?: any[] | undefined;
862
- isDeactivated?: boolean | undefined;
861
+ errors?: import("../..").ErrorDataSchema[] | undefined;
863
862
  archivedAt?: string | undefined;
863
+ isDeactivated?: boolean | undefined;
864
864
  authOptionKey?: string | undefined;
865
865
  isTest?: boolean | undefined;
866
+ meta?: Record<string, any> | undefined;
866
867
  disconnected?: boolean | undefined;
867
868
  isDefunct?: boolean | undefined;
868
869
  lastActiveAt?: string | undefined;
869
870
  nextCredentialsRefreshAt?: string | undefined;
870
- meta?: Record<string, any> | undefined;
871
871
  }, {
872
872
  id: string;
873
873
  name: string;
@@ -875,27 +875,27 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
875
875
  updatedAt: string;
876
876
  userId: string;
877
877
  integrationId: string;
878
- error?: any;
878
+ error?: import("../..").ErrorDataSchema | undefined;
879
879
  state?: import("..").WorkspaceElementState | undefined;
880
- errors?: any[] | undefined;
881
- isDeactivated?: boolean | undefined;
880
+ errors?: import("../..").ErrorDataSchema[] | undefined;
882
881
  archivedAt?: string | undefined;
882
+ isDeactivated?: boolean | undefined;
883
883
  authOptionKey?: string | undefined;
884
884
  isTest?: boolean | undefined;
885
+ meta?: Record<string, any> | undefined;
885
886
  disconnected?: boolean | undefined;
886
887
  isDefunct?: boolean | undefined;
887
888
  lastActiveAt?: string | undefined;
888
889
  nextCredentialsRefreshAt?: string | undefined;
889
- meta?: Record<string, any> | undefined;
890
890
  }>>;
891
891
  integration: z.ZodOptional<z.ZodObject<{
892
892
  id: z.ZodString;
893
- name: z.ZodString;
894
893
  key: z.ZodOptional<z.ZodString>;
895
894
  uuid: z.ZodOptional<z.ZodString>;
896
895
  description: z.ZodOptional<z.ZodString>;
896
+ name: z.ZodString;
897
897
  state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
898
- errors: z.ZodOptional<z.ZodArray<any, "many">>;
898
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
899
899
  revision: z.ZodOptional<z.ZodString>;
900
900
  createdAt: z.ZodOptional<z.ZodString>;
901
901
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -928,14 +928,13 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
928
928
  uuid?: string | undefined;
929
929
  description?: string | undefined;
930
930
  state?: import("..").WorkspaceElementState | undefined;
931
- errors?: any[] | undefined;
931
+ errors?: import("../..").ErrorDataSchema[] | undefined;
932
932
  revision?: string | undefined;
933
- isDeactivated?: boolean | undefined;
934
933
  createdAt?: string | undefined;
935
934
  updatedAt?: string | undefined;
936
935
  archivedAt?: string | undefined;
936
+ isDeactivated?: boolean | undefined;
937
937
  parameters?: any;
938
- isTest?: boolean | undefined;
939
938
  connectorId?: string | undefined;
940
939
  connectorVersion?: string | undefined;
941
940
  oAuthCallbackUri?: string | undefined;
@@ -949,6 +948,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
949
948
  eventsCount?: number | undefined;
950
949
  hasGlobalWebhooks?: boolean | undefined;
951
950
  hasUdm?: boolean | undefined;
951
+ isTest?: boolean | undefined;
952
952
  appUuid?: string | undefined;
953
953
  authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
954
954
  }, {
@@ -959,14 +959,13 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
959
959
  uuid?: string | undefined;
960
960
  description?: string | undefined;
961
961
  state?: import("..").WorkspaceElementState | undefined;
962
- errors?: any[] | undefined;
962
+ errors?: import("../..").ErrorDataSchema[] | undefined;
963
963
  revision?: string | undefined;
964
- isDeactivated?: boolean | undefined;
965
964
  createdAt?: string | undefined;
966
965
  updatedAt?: string | undefined;
967
966
  archivedAt?: string | undefined;
967
+ isDeactivated?: boolean | undefined;
968
968
  parameters?: any;
969
- isTest?: boolean | undefined;
970
969
  connectorId?: string | undefined;
971
970
  connectorVersion?: string | undefined;
972
971
  oAuthCallbackUri?: string | undefined;
@@ -980,6 +979,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
980
979
  eventsCount?: number | undefined;
981
980
  hasGlobalWebhooks?: boolean | undefined;
982
981
  hasUdm?: boolean | undefined;
982
+ isTest?: boolean | undefined;
983
983
  appUuid?: string | undefined;
984
984
  authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
985
985
  }>>;
@@ -998,18 +998,18 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
998
998
  updatedAt: string;
999
999
  userId: string;
1000
1000
  integrationId: string;
1001
- error?: any;
1001
+ error?: import("../..").ErrorDataSchema | undefined;
1002
1002
  state?: import("..").WorkspaceElementState | undefined;
1003
- errors?: any[] | undefined;
1004
- isDeactivated?: boolean | undefined;
1003
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1005
1004
  archivedAt?: string | undefined;
1005
+ isDeactivated?: boolean | undefined;
1006
1006
  authOptionKey?: string | undefined;
1007
1007
  isTest?: boolean | undefined;
1008
+ meta?: Record<string, any> | undefined;
1008
1009
  disconnected?: boolean | undefined;
1009
1010
  isDefunct?: boolean | undefined;
1010
1011
  lastActiveAt?: string | undefined;
1011
1012
  nextCredentialsRefreshAt?: string | undefined;
1012
- meta?: Record<string, any> | undefined;
1013
1013
  } | undefined;
1014
1014
  path?: string | undefined;
1015
1015
  integration?: {
@@ -1020,14 +1020,13 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1020
1020
  uuid?: string | undefined;
1021
1021
  description?: string | undefined;
1022
1022
  state?: import("..").WorkspaceElementState | undefined;
1023
- errors?: any[] | undefined;
1023
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1024
1024
  revision?: string | undefined;
1025
- isDeactivated?: boolean | undefined;
1026
1025
  createdAt?: string | undefined;
1027
1026
  updatedAt?: string | undefined;
1028
1027
  archivedAt?: string | undefined;
1028
+ isDeactivated?: boolean | undefined;
1029
1029
  parameters?: any;
1030
- isTest?: boolean | undefined;
1031
1030
  connectorId?: string | undefined;
1032
1031
  connectorVersion?: string | undefined;
1033
1032
  oAuthCallbackUri?: string | undefined;
@@ -1041,18 +1040,20 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1041
1040
  eventsCount?: number | undefined;
1042
1041
  hasGlobalWebhooks?: boolean | undefined;
1043
1042
  hasUdm?: boolean | undefined;
1043
+ isTest?: boolean | undefined;
1044
1044
  appUuid?: string | undefined;
1045
1045
  authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
1046
1046
  } | undefined;
1047
1047
  uuid?: string | undefined;
1048
1048
  description?: string | undefined;
1049
1049
  state?: import("..").WorkspaceElementState | undefined;
1050
- errors?: any[] | undefined;
1051
- isDeactivated?: boolean | undefined;
1050
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1052
1051
  createdAt?: string | undefined;
1053
1052
  updatedAt?: string | undefined;
1054
1053
  archivedAt?: string | undefined;
1054
+ isDeactivated?: boolean | undefined;
1055
1055
  instanceKey?: string | undefined;
1056
+ dataSourceId?: string | undefined;
1056
1057
  udm?: string | undefined;
1057
1058
  collectionSpec?: {
1058
1059
  type: "collection";
@@ -1201,7 +1202,6 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1201
1202
  lastActiveAt?: string | undefined;
1202
1203
  isBillable?: boolean | undefined;
1203
1204
  } | undefined;
1204
- dataSourceId?: string | undefined;
1205
1205
  isCustomized?: boolean | undefined;
1206
1206
  dataSourceRevision?: string | undefined;
1207
1207
  universalDataSourceId?: string | undefined;
@@ -1220,15 +1220,15 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1220
1220
  uuid?: string | undefined;
1221
1221
  description?: string | undefined;
1222
1222
  state?: import("..").WorkspaceElementState | undefined;
1223
- errors?: any[] | undefined;
1224
- isDeactivated?: boolean | undefined;
1223
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1225
1224
  createdAt?: string | undefined;
1226
1225
  updatedAt?: string | undefined;
1227
1226
  archivedAt?: string | undefined;
1227
+ isDeactivated?: boolean | undefined;
1228
1228
  integrationId?: string | undefined;
1229
- udm?: string | undefined;
1230
1229
  publishedRevision?: string | undefined;
1231
1230
  customized?: boolean | undefined;
1231
+ udm?: string | undefined;
1232
1232
  universalDataSourceId?: string | undefined;
1233
1233
  collectionKey?: string | undefined;
1234
1234
  collectionParameters?: any;
@@ -1252,18 +1252,18 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1252
1252
  updatedAt: string;
1253
1253
  userId: string;
1254
1254
  integrationId: string;
1255
- error?: any;
1255
+ error?: import("../..").ErrorDataSchema | undefined;
1256
1256
  state?: import("..").WorkspaceElementState | undefined;
1257
- errors?: any[] | undefined;
1258
- isDeactivated?: boolean | undefined;
1257
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1259
1258
  archivedAt?: string | undefined;
1259
+ isDeactivated?: boolean | undefined;
1260
1260
  authOptionKey?: string | undefined;
1261
1261
  isTest?: boolean | undefined;
1262
+ meta?: Record<string, any> | undefined;
1262
1263
  disconnected?: boolean | undefined;
1263
1264
  isDefunct?: boolean | undefined;
1264
1265
  lastActiveAt?: string | undefined;
1265
1266
  nextCredentialsRefreshAt?: string | undefined;
1266
- meta?: Record<string, any> | undefined;
1267
1267
  } | undefined;
1268
1268
  path?: string | undefined;
1269
1269
  integration?: {
@@ -1274,14 +1274,13 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1274
1274
  uuid?: string | undefined;
1275
1275
  description?: string | undefined;
1276
1276
  state?: import("..").WorkspaceElementState | undefined;
1277
- errors?: any[] | undefined;
1277
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1278
1278
  revision?: string | undefined;
1279
- isDeactivated?: boolean | undefined;
1280
1279
  createdAt?: string | undefined;
1281
1280
  updatedAt?: string | undefined;
1282
1281
  archivedAt?: string | undefined;
1282
+ isDeactivated?: boolean | undefined;
1283
1283
  parameters?: any;
1284
- isTest?: boolean | undefined;
1285
1284
  connectorId?: string | undefined;
1286
1285
  connectorVersion?: string | undefined;
1287
1286
  oAuthCallbackUri?: string | undefined;
@@ -1295,18 +1294,20 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1295
1294
  eventsCount?: number | undefined;
1296
1295
  hasGlobalWebhooks?: boolean | undefined;
1297
1296
  hasUdm?: boolean | undefined;
1297
+ isTest?: boolean | undefined;
1298
1298
  appUuid?: string | undefined;
1299
1299
  authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
1300
1300
  } | undefined;
1301
1301
  uuid?: string | undefined;
1302
1302
  description?: string | undefined;
1303
1303
  state?: import("..").WorkspaceElementState | undefined;
1304
- errors?: any[] | undefined;
1305
- isDeactivated?: boolean | undefined;
1304
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1306
1305
  createdAt?: string | undefined;
1307
1306
  updatedAt?: string | undefined;
1308
1307
  archivedAt?: string | undefined;
1308
+ isDeactivated?: boolean | undefined;
1309
1309
  instanceKey?: string | undefined;
1310
+ dataSourceId?: string | undefined;
1310
1311
  udm?: string | undefined;
1311
1312
  collectionSpec?: {
1312
1313
  type: "collection";
@@ -1455,7 +1456,6 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1455
1456
  lastActiveAt?: string | undefined;
1456
1457
  isBillable?: boolean | undefined;
1457
1458
  } | undefined;
1458
- dataSourceId?: string | undefined;
1459
1459
  isCustomized?: boolean | undefined;
1460
1460
  dataSourceRevision?: string | undefined;
1461
1461
  universalDataSourceId?: string | undefined;
@@ -1474,15 +1474,15 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
1474
1474
  uuid?: string | undefined;
1475
1475
  description?: string | undefined;
1476
1476
  state?: import("..").WorkspaceElementState | undefined;
1477
- errors?: any[] | undefined;
1478
- isDeactivated?: boolean | undefined;
1477
+ errors?: import("../..").ErrorDataSchema[] | undefined;
1479
1478
  createdAt?: string | undefined;
1480
1479
  updatedAt?: string | undefined;
1481
1480
  archivedAt?: string | undefined;
1481
+ isDeactivated?: boolean | undefined;
1482
1482
  integrationId?: string | undefined;
1483
- udm?: string | undefined;
1484
1483
  publishedRevision?: string | undefined;
1485
1484
  customized?: boolean | undefined;
1485
+ udm?: string | undefined;
1486
1486
  universalDataSourceId?: string | undefined;
1487
1487
  collectionKey?: string | undefined;
1488
1488
  collectionParameters?: any;