@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
@@ -104,9 +104,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
104
104
  isDefunct: z.ZodOptional<z.ZodBoolean>;
105
105
  error: any;
106
106
  integrationId: z.ZodString;
107
- credentials: z.ZodOptional<z.ZodUnknown>;
108
- parameters: z.ZodOptional<z.ZodUnknown>;
109
- connectorParameters: z.ZodOptional<z.ZodUnknown>;
107
+ authOptionKey: z.ZodOptional<z.ZodString>;
110
108
  createdAt: z.ZodString;
111
109
  updatedAt: z.ZodString;
112
110
  lastActiveAt: z.ZodOptional<z.ZodString>;
@@ -128,9 +126,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
128
126
  errors?: any[] | undefined;
129
127
  isDeactivated?: boolean | undefined;
130
128
  archivedAt?: string | undefined;
131
- credentials?: unknown;
132
- parameters?: unknown;
133
- connectorParameters?: unknown;
129
+ authOptionKey?: string | undefined;
134
130
  isTest?: boolean | undefined;
135
131
  disconnected?: boolean | undefined;
136
132
  isDefunct?: boolean | undefined;
@@ -149,9 +145,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
149
145
  errors?: any[] | undefined;
150
146
  isDeactivated?: boolean | undefined;
151
147
  archivedAt?: string | undefined;
152
- credentials?: unknown;
153
- parameters?: unknown;
154
- connectorParameters?: unknown;
148
+ authOptionKey?: string | undefined;
155
149
  isTest?: boolean | undefined;
156
150
  disconnected?: boolean | undefined;
157
151
  isDefunct?: boolean | undefined;
@@ -174,44 +168,8 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
174
168
  logoUri: z.ZodString;
175
169
  connectorId: z.ZodOptional<z.ZodString>;
176
170
  connectorVersion: z.ZodOptional<z.ZodString>;
177
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
178
- key: z.ZodString;
179
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
180
- title: z.ZodOptional<z.ZodString>;
181
- description: z.ZodOptional<z.ZodString>;
182
- ui: z.ZodOptional<z.ZodObject<{
183
- schema: z.ZodOptional<z.ZodAny>;
184
- helpUri: z.ZodOptional<z.ZodString>;
185
- }, "strip", z.ZodTypeAny, {
186
- schema?: any;
187
- helpUri?: string | undefined;
188
- }, {
189
- schema?: any;
190
- helpUri?: string | undefined;
191
- }>>;
192
- }, "strip", z.ZodTypeAny, {
193
- key: string;
194
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
195
- description?: string | undefined;
196
- title?: string | undefined;
197
- ui?: {
198
- schema?: any;
199
- helpUri?: string | undefined;
200
- } | undefined;
201
- }, {
202
- key: string;
203
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
204
- description?: string | undefined;
205
- title?: string | undefined;
206
- ui?: {
207
- schema?: any;
208
- helpUri?: string | undefined;
209
- } | undefined;
210
- }>, "many">>;
211
171
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
212
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
213
172
  parameters: z.ZodOptional<z.ZodAny>;
214
- baseUri: z.ZodString;
215
173
  archivedAt: z.ZodOptional<z.ZodString>;
216
174
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
217
175
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -230,7 +188,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
230
188
  }, "strip", z.ZodTypeAny, {
231
189
  id: string;
232
190
  name: string;
233
- baseUri: string;
234
191
  logoUri: string;
235
192
  key?: string | undefined;
236
193
  uuid?: string | undefined;
@@ -243,20 +200,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
243
200
  updatedAt?: string | undefined;
244
201
  archivedAt?: string | undefined;
245
202
  parameters?: any;
246
- parametersSchema?: import("../..").DataSchema | undefined;
247
203
  isTest?: boolean | undefined;
248
204
  connectorId?: string | undefined;
249
205
  connectorVersion?: string | undefined;
250
- authOptions?: {
251
- key: string;
252
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
253
- description?: string | undefined;
254
- title?: string | undefined;
255
- ui?: {
256
- schema?: any;
257
- helpUri?: string | undefined;
258
- } | undefined;
259
- }[] | undefined;
260
206
  oAuthCallbackUri?: string | undefined;
261
207
  hasMissingParameters?: boolean | undefined;
262
208
  hasDocumentation?: boolean | undefined;
@@ -273,7 +219,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
273
219
  }, {
274
220
  id: string;
275
221
  name: string;
276
- baseUri: string;
277
222
  logoUri: string;
278
223
  key?: string | undefined;
279
224
  uuid?: string | undefined;
@@ -286,20 +231,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
286
231
  updatedAt?: string | undefined;
287
232
  archivedAt?: string | undefined;
288
233
  parameters?: any;
289
- parametersSchema?: import("../..").DataSchema | undefined;
290
234
  isTest?: boolean | undefined;
291
235
  connectorId?: string | undefined;
292
236
  connectorVersion?: string | undefined;
293
- authOptions?: {
294
- key: string;
295
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
296
- description?: string | undefined;
297
- title?: string | undefined;
298
- ui?: {
299
- schema?: any;
300
- helpUri?: string | undefined;
301
- } | undefined;
302
- }[] | undefined;
303
237
  oAuthCallbackUri?: string | undefined;
304
238
  hasMissingParameters?: boolean | undefined;
305
239
  hasDocumentation?: boolean | undefined;
@@ -1243,9 +1177,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1243
1177
  isDefunct: z.ZodOptional<z.ZodBoolean>;
1244
1178
  error: any;
1245
1179
  integrationId: z.ZodString;
1246
- credentials: z.ZodOptional<z.ZodUnknown>;
1247
- parameters: z.ZodOptional<z.ZodUnknown>;
1248
- connectorParameters: z.ZodOptional<z.ZodUnknown>;
1180
+ authOptionKey: z.ZodOptional<z.ZodString>;
1249
1181
  createdAt: z.ZodString;
1250
1182
  updatedAt: z.ZodString;
1251
1183
  lastActiveAt: z.ZodOptional<z.ZodString>;
@@ -1267,9 +1199,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1267
1199
  errors?: any[] | undefined;
1268
1200
  isDeactivated?: boolean | undefined;
1269
1201
  archivedAt?: string | undefined;
1270
- credentials?: unknown;
1271
- parameters?: unknown;
1272
- connectorParameters?: unknown;
1202
+ authOptionKey?: string | undefined;
1273
1203
  isTest?: boolean | undefined;
1274
1204
  disconnected?: boolean | undefined;
1275
1205
  isDefunct?: boolean | undefined;
@@ -1288,9 +1218,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1288
1218
  errors?: any[] | undefined;
1289
1219
  isDeactivated?: boolean | undefined;
1290
1220
  archivedAt?: string | undefined;
1291
- credentials?: unknown;
1292
- parameters?: unknown;
1293
- connectorParameters?: unknown;
1221
+ authOptionKey?: string | undefined;
1294
1222
  isTest?: boolean | undefined;
1295
1223
  disconnected?: boolean | undefined;
1296
1224
  isDefunct?: boolean | undefined;
@@ -1313,44 +1241,8 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1313
1241
  logoUri: z.ZodString;
1314
1242
  connectorId: z.ZodOptional<z.ZodString>;
1315
1243
  connectorVersion: z.ZodOptional<z.ZodString>;
1316
- authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1317
- key: z.ZodString;
1318
- type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
1319
- title: z.ZodOptional<z.ZodString>;
1320
- description: z.ZodOptional<z.ZodString>;
1321
- ui: z.ZodOptional<z.ZodObject<{
1322
- schema: z.ZodOptional<z.ZodAny>;
1323
- helpUri: z.ZodOptional<z.ZodString>;
1324
- }, "strip", z.ZodTypeAny, {
1325
- schema?: any;
1326
- helpUri?: string | undefined;
1327
- }, {
1328
- schema?: any;
1329
- helpUri?: string | undefined;
1330
- }>>;
1331
- }, "strip", z.ZodTypeAny, {
1332
- key: string;
1333
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1334
- description?: string | undefined;
1335
- title?: string | undefined;
1336
- ui?: {
1337
- schema?: any;
1338
- helpUri?: string | undefined;
1339
- } | undefined;
1340
- }, {
1341
- key: string;
1342
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1343
- description?: string | undefined;
1344
- title?: string | undefined;
1345
- ui?: {
1346
- schema?: any;
1347
- helpUri?: string | undefined;
1348
- } | undefined;
1349
- }>, "many">>;
1350
1244
  oAuthCallbackUri: z.ZodOptional<z.ZodString>;
1351
- parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
1352
1245
  parameters: z.ZodOptional<z.ZodAny>;
1353
- baseUri: z.ZodString;
1354
1246
  archivedAt: z.ZodOptional<z.ZodString>;
1355
1247
  hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
1356
1248
  hasDocumentation: z.ZodOptional<z.ZodBoolean>;
@@ -1369,7 +1261,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1369
1261
  }, "strip", z.ZodTypeAny, {
1370
1262
  id: string;
1371
1263
  name: string;
1372
- baseUri: string;
1373
1264
  logoUri: string;
1374
1265
  key?: string | undefined;
1375
1266
  uuid?: string | undefined;
@@ -1382,20 +1273,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1382
1273
  updatedAt?: string | undefined;
1383
1274
  archivedAt?: string | undefined;
1384
1275
  parameters?: any;
1385
- parametersSchema?: import("../..").DataSchema | undefined;
1386
1276
  isTest?: boolean | undefined;
1387
1277
  connectorId?: string | undefined;
1388
1278
  connectorVersion?: string | undefined;
1389
- authOptions?: {
1390
- key: string;
1391
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1392
- description?: string | undefined;
1393
- title?: string | undefined;
1394
- ui?: {
1395
- schema?: any;
1396
- helpUri?: string | undefined;
1397
- } | undefined;
1398
- }[] | undefined;
1399
1279
  oAuthCallbackUri?: string | undefined;
1400
1280
  hasMissingParameters?: boolean | undefined;
1401
1281
  hasDocumentation?: boolean | undefined;
@@ -1412,7 +1292,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1412
1292
  }, {
1413
1293
  id: string;
1414
1294
  name: string;
1415
- baseUri: string;
1416
1295
  logoUri: string;
1417
1296
  key?: string | undefined;
1418
1297
  uuid?: string | undefined;
@@ -1425,20 +1304,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1425
1304
  updatedAt?: string | undefined;
1426
1305
  archivedAt?: string | undefined;
1427
1306
  parameters?: any;
1428
- parametersSchema?: import("../..").DataSchema | undefined;
1429
1307
  isTest?: boolean | undefined;
1430
1308
  connectorId?: string | undefined;
1431
1309
  connectorVersion?: string | undefined;
1432
- authOptions?: {
1433
- key: string;
1434
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1435
- description?: string | undefined;
1436
- title?: string | undefined;
1437
- ui?: {
1438
- schema?: any;
1439
- helpUri?: string | undefined;
1440
- } | undefined;
1441
- }[] | undefined;
1442
1310
  oAuthCallbackUri?: string | undefined;
1443
1311
  hasMissingParameters?: boolean | undefined;
1444
1312
  hasDocumentation?: boolean | undefined;
@@ -1473,9 +1341,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1473
1341
  errors?: any[] | undefined;
1474
1342
  isDeactivated?: boolean | undefined;
1475
1343
  archivedAt?: string | undefined;
1476
- credentials?: unknown;
1477
- parameters?: unknown;
1478
- connectorParameters?: unknown;
1344
+ authOptionKey?: string | undefined;
1479
1345
  isTest?: boolean | undefined;
1480
1346
  disconnected?: boolean | undefined;
1481
1347
  isDefunct?: boolean | undefined;
@@ -1487,7 +1353,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1487
1353
  integration?: {
1488
1354
  id: string;
1489
1355
  name: string;
1490
- baseUri: string;
1491
1356
  logoUri: string;
1492
1357
  key?: string | undefined;
1493
1358
  uuid?: string | undefined;
@@ -1500,20 +1365,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1500
1365
  updatedAt?: string | undefined;
1501
1366
  archivedAt?: string | undefined;
1502
1367
  parameters?: any;
1503
- parametersSchema?: import("../..").DataSchema | undefined;
1504
1368
  isTest?: boolean | undefined;
1505
1369
  connectorId?: string | undefined;
1506
1370
  connectorVersion?: string | undefined;
1507
- authOptions?: {
1508
- key: string;
1509
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1510
- description?: string | undefined;
1511
- title?: string | undefined;
1512
- ui?: {
1513
- schema?: any;
1514
- helpUri?: string | undefined;
1515
- } | undefined;
1516
- }[] | undefined;
1517
1371
  oAuthCallbackUri?: string | undefined;
1518
1372
  hasMissingParameters?: boolean | undefined;
1519
1373
  hasDocumentation?: boolean | undefined;
@@ -1741,9 +1595,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1741
1595
  errors?: any[] | undefined;
1742
1596
  isDeactivated?: boolean | undefined;
1743
1597
  archivedAt?: string | undefined;
1744
- credentials?: unknown;
1745
- parameters?: unknown;
1746
- connectorParameters?: unknown;
1598
+ authOptionKey?: string | undefined;
1747
1599
  isTest?: boolean | undefined;
1748
1600
  disconnected?: boolean | undefined;
1749
1601
  isDefunct?: boolean | undefined;
@@ -1755,7 +1607,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1755
1607
  integration?: {
1756
1608
  id: string;
1757
1609
  name: string;
1758
- baseUri: string;
1759
1610
  logoUri: string;
1760
1611
  key?: string | undefined;
1761
1612
  uuid?: string | undefined;
@@ -1768,20 +1619,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
1768
1619
  updatedAt?: string | undefined;
1769
1620
  archivedAt?: string | undefined;
1770
1621
  parameters?: any;
1771
- parametersSchema?: import("../..").DataSchema | undefined;
1772
1622
  isTest?: boolean | undefined;
1773
1623
  connectorId?: string | undefined;
1774
1624
  connectorVersion?: string | undefined;
1775
- authOptions?: {
1776
- key: string;
1777
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
1778
- description?: string | undefined;
1779
- title?: string | undefined;
1780
- ui?: {
1781
- schema?: any;
1782
- helpUri?: string | undefined;
1783
- } | undefined;
1784
- }[] | undefined;
1785
1625
  oAuthCallbackUri?: string | undefined;
1786
1626
  hasMissingParameters?: boolean | undefined;
1787
1627
  hasDocumentation?: boolean | undefined;
@@ -2010,9 +1850,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2010
1850
  errors?: any[] | undefined;
2011
1851
  isDeactivated?: boolean | undefined;
2012
1852
  archivedAt?: string | undefined;
2013
- credentials?: unknown;
2014
- parameters?: unknown;
2015
- connectorParameters?: unknown;
1853
+ authOptionKey?: string | undefined;
2016
1854
  isTest?: boolean | undefined;
2017
1855
  disconnected?: boolean | undefined;
2018
1856
  isDefunct?: boolean | undefined;
@@ -2024,7 +1862,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2024
1862
  integration?: {
2025
1863
  id: string;
2026
1864
  name: string;
2027
- baseUri: string;
2028
1865
  logoUri: string;
2029
1866
  key?: string | undefined;
2030
1867
  uuid?: string | undefined;
@@ -2037,20 +1874,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2037
1874
  updatedAt?: string | undefined;
2038
1875
  archivedAt?: string | undefined;
2039
1876
  parameters?: any;
2040
- parametersSchema?: import("../..").DataSchema | undefined;
2041
1877
  isTest?: boolean | undefined;
2042
1878
  connectorId?: string | undefined;
2043
1879
  connectorVersion?: string | undefined;
2044
- authOptions?: {
2045
- key: string;
2046
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
2047
- description?: string | undefined;
2048
- title?: string | undefined;
2049
- ui?: {
2050
- schema?: any;
2051
- helpUri?: string | undefined;
2052
- } | undefined;
2053
- }[] | undefined;
2054
1880
  oAuthCallbackUri?: string | undefined;
2055
1881
  hasMissingParameters?: boolean | undefined;
2056
1882
  hasDocumentation?: boolean | undefined;
@@ -2150,9 +1976,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2150
1976
  errors?: any[] | undefined;
2151
1977
  isDeactivated?: boolean | undefined;
2152
1978
  archivedAt?: string | undefined;
2153
- credentials?: unknown;
2154
- parameters?: unknown;
2155
- connectorParameters?: unknown;
1979
+ authOptionKey?: string | undefined;
2156
1980
  isTest?: boolean | undefined;
2157
1981
  disconnected?: boolean | undefined;
2158
1982
  isDefunct?: boolean | undefined;
@@ -2164,7 +1988,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2164
1988
  integration?: {
2165
1989
  id: string;
2166
1990
  name: string;
2167
- baseUri: string;
2168
1991
  logoUri: string;
2169
1992
  key?: string | undefined;
2170
1993
  uuid?: string | undefined;
@@ -2177,20 +2000,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2177
2000
  updatedAt?: string | undefined;
2178
2001
  archivedAt?: string | undefined;
2179
2002
  parameters?: any;
2180
- parametersSchema?: import("../..").DataSchema | undefined;
2181
2003
  isTest?: boolean | undefined;
2182
2004
  connectorId?: string | undefined;
2183
2005
  connectorVersion?: string | undefined;
2184
- authOptions?: {
2185
- key: string;
2186
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
2187
- description?: string | undefined;
2188
- title?: string | undefined;
2189
- ui?: {
2190
- schema?: any;
2191
- helpUri?: string | undefined;
2192
- } | undefined;
2193
- }[] | undefined;
2194
2006
  oAuthCallbackUri?: string | undefined;
2195
2007
  hasMissingParameters?: boolean | undefined;
2196
2008
  hasDocumentation?: boolean | undefined;
@@ -2419,9 +2231,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2419
2231
  errors?: any[] | undefined;
2420
2232
  isDeactivated?: boolean | undefined;
2421
2233
  archivedAt?: string | undefined;
2422
- credentials?: unknown;
2423
- parameters?: unknown;
2424
- connectorParameters?: unknown;
2234
+ authOptionKey?: string | undefined;
2425
2235
  isTest?: boolean | undefined;
2426
2236
  disconnected?: boolean | undefined;
2427
2237
  isDefunct?: boolean | undefined;
@@ -2433,7 +2243,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2433
2243
  integration?: {
2434
2244
  id: string;
2435
2245
  name: string;
2436
- baseUri: string;
2437
2246
  logoUri: string;
2438
2247
  key?: string | undefined;
2439
2248
  uuid?: string | undefined;
@@ -2446,20 +2255,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2446
2255
  updatedAt?: string | undefined;
2447
2256
  archivedAt?: string | undefined;
2448
2257
  parameters?: any;
2449
- parametersSchema?: import("../..").DataSchema | undefined;
2450
2258
  isTest?: boolean | undefined;
2451
2259
  connectorId?: string | undefined;
2452
2260
  connectorVersion?: string | undefined;
2453
- authOptions?: {
2454
- key: string;
2455
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
2456
- description?: string | undefined;
2457
- title?: string | undefined;
2458
- ui?: {
2459
- schema?: any;
2460
- helpUri?: string | undefined;
2461
- } | undefined;
2462
- }[] | undefined;
2463
2261
  oAuthCallbackUri?: string | undefined;
2464
2262
  hasMissingParameters?: boolean | undefined;
2465
2263
  hasDocumentation?: boolean | undefined;
@@ -2559,9 +2357,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2559
2357
  errors?: any[] | undefined;
2560
2358
  isDeactivated?: boolean | undefined;
2561
2359
  archivedAt?: string | undefined;
2562
- credentials?: unknown;
2563
- parameters?: unknown;
2564
- connectorParameters?: unknown;
2360
+ authOptionKey?: string | undefined;
2565
2361
  isTest?: boolean | undefined;
2566
2362
  disconnected?: boolean | undefined;
2567
2363
  isDefunct?: boolean | undefined;
@@ -2573,7 +2369,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2573
2369
  integration?: {
2574
2370
  id: string;
2575
2371
  name: string;
2576
- baseUri: string;
2577
2372
  logoUri: string;
2578
2373
  key?: string | undefined;
2579
2374
  uuid?: string | undefined;
@@ -2586,20 +2381,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
2586
2381
  updatedAt?: string | undefined;
2587
2382
  archivedAt?: string | undefined;
2588
2383
  parameters?: any;
2589
- parametersSchema?: import("../..").DataSchema | undefined;
2590
2384
  isTest?: boolean | undefined;
2591
2385
  connectorId?: string | undefined;
2592
2386
  connectorVersion?: string | undefined;
2593
- authOptions?: {
2594
- key: string;
2595
- type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
2596
- description?: string | undefined;
2597
- title?: string | undefined;
2598
- ui?: {
2599
- schema?: any;
2600
- helpUri?: string | undefined;
2601
- } | undefined;
2602
- }[] | undefined;
2603
2387
  oAuthCallbackUri?: string | undefined;
2604
2388
  hasMissingParameters?: boolean | undefined;
2605
2389
  hasDocumentation?: boolean | undefined;