@membranehq/sdk 0.7.3 → 0.7.4
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.
- package/dist/bundle.d.ts +1180 -1049
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +9 -20
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +452 -453
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +43 -69
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +208 -110
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +6 -6
- package/dist/dts/workspace-elements/api/flows-api.d.ts +583 -497
- package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +153 -2
- package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +1 -1
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +191 -1
- package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +2 -2
- package/dist/dts/workspace-elements/base/flows/index.d.ts +300 -1
- package/dist/dts/workspace-elements/base/flows/nodes/base.d.ts +79 -1
- package/dist/dts/workspace-elements/base/flows/nodes/index.d.ts +1 -1
- package/dist/index.browser.d.mts +1749 -1375
- package/dist/index.browser.d.ts +1749 -1375
- package/dist/index.browser.js +128 -133
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +123 -132
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1749 -1375
- package/dist/index.node.d.ts +1749 -1375
- package/dist/index.node.js +128 -133
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +123 -132
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/dts/workspace-elements/base/data-sources/constants.d.ts +0 -4
- package/dist/dts/workspace-elements/base/data-sources/types.d.ts +0 -109
- package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +0 -136
- package/dist/dts/workspace-elements/base/flows/types.d.ts +0 -248
|
@@ -259,23 +259,9 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
259
259
|
description: z.ZodOptional<z.ZodString>;
|
|
260
260
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
261
261
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
262
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
263
|
-
} & {
|
|
264
|
-
name: z.ZodString;
|
|
265
|
-
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
266
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
267
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
268
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
269
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
270
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
271
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
272
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
273
|
-
} & {
|
|
274
|
-
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
275
262
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
276
|
-
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
277
|
-
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
278
263
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
264
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
279
265
|
appSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
280
266
|
direction: z.ZodOptional<z.ZodNativeEnum<typeof import("../base/field-mappings").FieldMappingDirection>>;
|
|
281
267
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -285,6 +271,17 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
285
271
|
frozenImportFields: z.ZodOptional<z.ZodAny>;
|
|
286
272
|
frozenExportFields: z.ZodOptional<z.ZodAny>;
|
|
287
273
|
frozenUnifiedExportFields: z.ZodOptional<z.ZodAny>;
|
|
274
|
+
} & {
|
|
275
|
+
name: z.ZodString;
|
|
276
|
+
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
277
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
278
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
279
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
280
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
281
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
282
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
283
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
284
|
+
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
288
285
|
}, "strip", z.ZodTypeAny, {
|
|
289
286
|
id: string;
|
|
290
287
|
name: string;
|
|
@@ -300,13 +297,10 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
300
297
|
archivedAt?: string | undefined;
|
|
301
298
|
isDeactivated?: boolean | undefined;
|
|
302
299
|
integrationId?: string | undefined;
|
|
303
|
-
parentId?: string | undefined;
|
|
304
300
|
isCustomized?: boolean | undefined;
|
|
305
|
-
publishedRevision?: string | undefined;
|
|
306
301
|
universalFieldMappingId?: string | undefined;
|
|
307
|
-
universalFieldMappingRevision?: string | undefined;
|
|
308
|
-
dataSourceId?: string | undefined;
|
|
309
302
|
dataSourceKey?: string | undefined;
|
|
303
|
+
dataSourceId?: string | undefined;
|
|
310
304
|
appSchema?: import("../..").DataSchema | undefined;
|
|
311
305
|
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
312
306
|
defaultImportValue?: any;
|
|
@@ -316,6 +310,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
316
310
|
frozenImportFields?: any;
|
|
317
311
|
frozenExportFields?: any;
|
|
318
312
|
frozenUnifiedExportFields?: any;
|
|
313
|
+
universalFieldMappingRevision?: string | undefined;
|
|
319
314
|
}, {
|
|
320
315
|
id: string;
|
|
321
316
|
name: string;
|
|
@@ -331,13 +326,10 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
331
326
|
archivedAt?: string | undefined;
|
|
332
327
|
isDeactivated?: boolean | undefined;
|
|
333
328
|
integrationId?: string | undefined;
|
|
334
|
-
parentId?: string | undefined;
|
|
335
329
|
isCustomized?: boolean | undefined;
|
|
336
|
-
publishedRevision?: string | undefined;
|
|
337
330
|
universalFieldMappingId?: string | undefined;
|
|
338
|
-
universalFieldMappingRevision?: string | undefined;
|
|
339
|
-
dataSourceId?: string | undefined;
|
|
340
331
|
dataSourceKey?: string | undefined;
|
|
332
|
+
dataSourceId?: string | undefined;
|
|
341
333
|
appSchema?: import("../..").DataSchema | undefined;
|
|
342
334
|
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
343
335
|
defaultImportValue?: any;
|
|
@@ -347,6 +339,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
347
339
|
frozenImportFields?: any;
|
|
348
340
|
frozenExportFields?: any;
|
|
349
341
|
frozenUnifiedExportFields?: any;
|
|
342
|
+
universalFieldMappingRevision?: string | undefined;
|
|
350
343
|
}>>;
|
|
351
344
|
dataSourceInstance: z.ZodOptional<z.ZodObject<{
|
|
352
345
|
id: z.ZodString;
|
|
@@ -1115,7 +1108,13 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1115
1108
|
description: z.ZodOptional<z.ZodString>;
|
|
1116
1109
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1117
1110
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
1118
|
-
|
|
1111
|
+
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
1112
|
+
udm: z.ZodOptional<z.ZodString>;
|
|
1113
|
+
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1114
|
+
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1115
|
+
collectionKey: z.ZodOptional<z.ZodString>;
|
|
1116
|
+
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
1117
|
+
defaultPath: z.ZodOptional<z.ZodString>;
|
|
1119
1118
|
} & {
|
|
1120
1119
|
name: z.ZodString;
|
|
1121
1120
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
@@ -1126,16 +1125,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1126
1125
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
1127
1126
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
1128
1127
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
1129
|
-
} & {
|
|
1130
|
-
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
1131
|
-
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
1132
1128
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
1133
|
-
udm: z.ZodOptional<z.ZodString>;
|
|
1134
|
-
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1135
|
-
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1136
|
-
collectionKey: z.ZodOptional<z.ZodString>;
|
|
1137
|
-
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
1138
|
-
defaultPath: z.ZodOptional<z.ZodString>;
|
|
1139
1129
|
}, "strip", z.ZodTypeAny, {
|
|
1140
1130
|
id: string;
|
|
1141
1131
|
name: string;
|
|
@@ -1151,9 +1141,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1151
1141
|
archivedAt?: string | undefined;
|
|
1152
1142
|
isDeactivated?: boolean | undefined;
|
|
1153
1143
|
integrationId?: string | undefined;
|
|
1154
|
-
parentId?: string | undefined;
|
|
1155
1144
|
isCustomized?: boolean | undefined;
|
|
1156
|
-
publishedRevision?: string | undefined;
|
|
1157
1145
|
udm?: string | undefined;
|
|
1158
1146
|
universalDataSourceId?: string | undefined;
|
|
1159
1147
|
collectionKey?: string | undefined;
|
|
@@ -1177,9 +1165,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1177
1165
|
archivedAt?: string | undefined;
|
|
1178
1166
|
isDeactivated?: boolean | undefined;
|
|
1179
1167
|
integrationId?: string | undefined;
|
|
1180
|
-
parentId?: string | undefined;
|
|
1181
1168
|
isCustomized?: boolean | undefined;
|
|
1182
|
-
publishedRevision?: string | undefined;
|
|
1183
1169
|
udm?: string | undefined;
|
|
1184
1170
|
universalDataSourceId?: string | undefined;
|
|
1185
1171
|
collectionKey?: string | undefined;
|
|
@@ -1415,7 +1401,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1415
1401
|
isDeactivated?: boolean | undefined;
|
|
1416
1402
|
isCustomized?: boolean | undefined;
|
|
1417
1403
|
instanceKey?: string | undefined;
|
|
1418
|
-
dataSourceId?: string | undefined;
|
|
1419
1404
|
udm?: string | undefined;
|
|
1420
1405
|
collectionSpec?: {
|
|
1421
1406
|
type: "collection";
|
|
@@ -1565,6 +1550,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1565
1550
|
lastActiveAt?: string | undefined;
|
|
1566
1551
|
isBillable?: boolean | undefined;
|
|
1567
1552
|
} | undefined;
|
|
1553
|
+
dataSourceId?: string | undefined;
|
|
1568
1554
|
dataSourceRevision?: string | undefined;
|
|
1569
1555
|
universalDataSourceId?: string | undefined;
|
|
1570
1556
|
collectionKey?: string | undefined;
|
|
@@ -1589,9 +1575,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1589
1575
|
archivedAt?: string | undefined;
|
|
1590
1576
|
isDeactivated?: boolean | undefined;
|
|
1591
1577
|
integrationId?: string | undefined;
|
|
1592
|
-
parentId?: string | undefined;
|
|
1593
1578
|
isCustomized?: boolean | undefined;
|
|
1594
|
-
publishedRevision?: string | undefined;
|
|
1595
1579
|
udm?: string | undefined;
|
|
1596
1580
|
universalDataSourceId?: string | undefined;
|
|
1597
1581
|
collectionKey?: string | undefined;
|
|
@@ -1673,7 +1657,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1673
1657
|
isDeactivated?: boolean | undefined;
|
|
1674
1658
|
isCustomized?: boolean | undefined;
|
|
1675
1659
|
instanceKey?: string | undefined;
|
|
1676
|
-
dataSourceId?: string | undefined;
|
|
1677
1660
|
udm?: string | undefined;
|
|
1678
1661
|
collectionSpec?: {
|
|
1679
1662
|
type: "collection";
|
|
@@ -1823,6 +1806,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1823
1806
|
lastActiveAt?: string | undefined;
|
|
1824
1807
|
isBillable?: boolean | undefined;
|
|
1825
1808
|
} | undefined;
|
|
1809
|
+
dataSourceId?: string | undefined;
|
|
1826
1810
|
dataSourceRevision?: string | undefined;
|
|
1827
1811
|
universalDataSourceId?: string | undefined;
|
|
1828
1812
|
collectionKey?: string | undefined;
|
|
@@ -1847,9 +1831,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1847
1831
|
archivedAt?: string | undefined;
|
|
1848
1832
|
isDeactivated?: boolean | undefined;
|
|
1849
1833
|
integrationId?: string | undefined;
|
|
1850
|
-
parentId?: string | undefined;
|
|
1851
1834
|
isCustomized?: boolean | undefined;
|
|
1852
|
-
publishedRevision?: string | undefined;
|
|
1853
1835
|
udm?: string | undefined;
|
|
1854
1836
|
universalDataSourceId?: string | undefined;
|
|
1855
1837
|
collectionKey?: string | undefined;
|
|
@@ -1932,12 +1914,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1932
1914
|
isDeactivated?: boolean | undefined;
|
|
1933
1915
|
isCustomized?: boolean | undefined;
|
|
1934
1916
|
instanceKey?: string | undefined;
|
|
1935
|
-
appSchema?: import("../..").DataSchema | undefined;
|
|
1936
|
-
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
1937
|
-
importValue?: any;
|
|
1938
|
-
exportValue?: any;
|
|
1939
|
-
frozenImportFields?: string[] | undefined;
|
|
1940
|
-
frozenExportFields?: string[] | undefined;
|
|
1941
1917
|
user?: {
|
|
1942
1918
|
id: string;
|
|
1943
1919
|
name: string;
|
|
@@ -1951,6 +1927,12 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1951
1927
|
lastActiveAt?: string | undefined;
|
|
1952
1928
|
isBillable?: boolean | undefined;
|
|
1953
1929
|
} | undefined;
|
|
1930
|
+
appSchema?: import("../..").DataSchema | undefined;
|
|
1931
|
+
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
1932
|
+
importValue?: any;
|
|
1933
|
+
exportValue?: any;
|
|
1934
|
+
frozenImportFields?: string[] | undefined;
|
|
1935
|
+
frozenExportFields?: string[] | undefined;
|
|
1954
1936
|
dataSourceInstanceId?: string | undefined;
|
|
1955
1937
|
fieldMappingRevision?: string | undefined;
|
|
1956
1938
|
fieldMappingId?: string | undefined;
|
|
@@ -1973,13 +1955,10 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1973
1955
|
archivedAt?: string | undefined;
|
|
1974
1956
|
isDeactivated?: boolean | undefined;
|
|
1975
1957
|
integrationId?: string | undefined;
|
|
1976
|
-
parentId?: string | undefined;
|
|
1977
1958
|
isCustomized?: boolean | undefined;
|
|
1978
|
-
publishedRevision?: string | undefined;
|
|
1979
1959
|
universalFieldMappingId?: string | undefined;
|
|
1980
|
-
universalFieldMappingRevision?: string | undefined;
|
|
1981
|
-
dataSourceId?: string | undefined;
|
|
1982
1960
|
dataSourceKey?: string | undefined;
|
|
1961
|
+
dataSourceId?: string | undefined;
|
|
1983
1962
|
appSchema?: import("../..").DataSchema | undefined;
|
|
1984
1963
|
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
1985
1964
|
defaultImportValue?: any;
|
|
@@ -1989,6 +1968,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
1989
1968
|
frozenImportFields?: any;
|
|
1990
1969
|
frozenExportFields?: any;
|
|
1991
1970
|
frozenUnifiedExportFields?: any;
|
|
1971
|
+
universalFieldMappingRevision?: string | undefined;
|
|
1992
1972
|
} | undefined;
|
|
1993
1973
|
dataSourceInstance?: {
|
|
1994
1974
|
id: string;
|
|
@@ -2062,7 +2042,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2062
2042
|
isDeactivated?: boolean | undefined;
|
|
2063
2043
|
isCustomized?: boolean | undefined;
|
|
2064
2044
|
instanceKey?: string | undefined;
|
|
2065
|
-
dataSourceId?: string | undefined;
|
|
2066
2045
|
udm?: string | undefined;
|
|
2067
2046
|
collectionSpec?: {
|
|
2068
2047
|
type: "collection";
|
|
@@ -2212,6 +2191,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2212
2191
|
lastActiveAt?: string | undefined;
|
|
2213
2192
|
isBillable?: boolean | undefined;
|
|
2214
2193
|
} | undefined;
|
|
2194
|
+
dataSourceId?: string | undefined;
|
|
2215
2195
|
dataSourceRevision?: string | undefined;
|
|
2216
2196
|
universalDataSourceId?: string | undefined;
|
|
2217
2197
|
collectionKey?: string | undefined;
|
|
@@ -2236,9 +2216,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2236
2216
|
archivedAt?: string | undefined;
|
|
2237
2217
|
isDeactivated?: boolean | undefined;
|
|
2238
2218
|
integrationId?: string | undefined;
|
|
2239
|
-
parentId?: string | undefined;
|
|
2240
2219
|
isCustomized?: boolean | undefined;
|
|
2241
|
-
publishedRevision?: string | undefined;
|
|
2242
2220
|
udm?: string | undefined;
|
|
2243
2221
|
universalDataSourceId?: string | undefined;
|
|
2244
2222
|
collectionKey?: string | undefined;
|
|
@@ -2321,12 +2299,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2321
2299
|
isDeactivated?: boolean | undefined;
|
|
2322
2300
|
isCustomized?: boolean | undefined;
|
|
2323
2301
|
instanceKey?: string | undefined;
|
|
2324
|
-
appSchema?: import("../..").DataSchema | undefined;
|
|
2325
|
-
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
2326
|
-
importValue?: any;
|
|
2327
|
-
exportValue?: any;
|
|
2328
|
-
frozenImportFields?: string[] | undefined;
|
|
2329
|
-
frozenExportFields?: string[] | undefined;
|
|
2330
2302
|
user?: {
|
|
2331
2303
|
id: string;
|
|
2332
2304
|
name: string;
|
|
@@ -2340,6 +2312,12 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2340
2312
|
lastActiveAt?: string | undefined;
|
|
2341
2313
|
isBillable?: boolean | undefined;
|
|
2342
2314
|
} | undefined;
|
|
2315
|
+
appSchema?: import("../..").DataSchema | undefined;
|
|
2316
|
+
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
2317
|
+
importValue?: any;
|
|
2318
|
+
exportValue?: any;
|
|
2319
|
+
frozenImportFields?: string[] | undefined;
|
|
2320
|
+
frozenExportFields?: string[] | undefined;
|
|
2343
2321
|
dataSourceInstanceId?: string | undefined;
|
|
2344
2322
|
fieldMappingRevision?: string | undefined;
|
|
2345
2323
|
fieldMappingId?: string | undefined;
|
|
@@ -2362,13 +2340,10 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2362
2340
|
archivedAt?: string | undefined;
|
|
2363
2341
|
isDeactivated?: boolean | undefined;
|
|
2364
2342
|
integrationId?: string | undefined;
|
|
2365
|
-
parentId?: string | undefined;
|
|
2366
2343
|
isCustomized?: boolean | undefined;
|
|
2367
|
-
publishedRevision?: string | undefined;
|
|
2368
2344
|
universalFieldMappingId?: string | undefined;
|
|
2369
|
-
universalFieldMappingRevision?: string | undefined;
|
|
2370
|
-
dataSourceId?: string | undefined;
|
|
2371
2345
|
dataSourceKey?: string | undefined;
|
|
2346
|
+
dataSourceId?: string | undefined;
|
|
2372
2347
|
appSchema?: import("../..").DataSchema | undefined;
|
|
2373
2348
|
direction?: import("../base/field-mappings").FieldMappingDirection | undefined;
|
|
2374
2349
|
defaultImportValue?: any;
|
|
@@ -2378,6 +2353,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2378
2353
|
frozenImportFields?: any;
|
|
2379
2354
|
frozenExportFields?: any;
|
|
2380
2355
|
frozenUnifiedExportFields?: any;
|
|
2356
|
+
universalFieldMappingRevision?: string | undefined;
|
|
2381
2357
|
} | undefined;
|
|
2382
2358
|
dataSourceInstance?: {
|
|
2383
2359
|
id: string;
|
|
@@ -2451,7 +2427,6 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2451
2427
|
isDeactivated?: boolean | undefined;
|
|
2452
2428
|
isCustomized?: boolean | undefined;
|
|
2453
2429
|
instanceKey?: string | undefined;
|
|
2454
|
-
dataSourceId?: string | undefined;
|
|
2455
2430
|
udm?: string | undefined;
|
|
2456
2431
|
collectionSpec?: {
|
|
2457
2432
|
type: "collection";
|
|
@@ -2601,6 +2576,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2601
2576
|
lastActiveAt?: string | undefined;
|
|
2602
2577
|
isBillable?: boolean | undefined;
|
|
2603
2578
|
} | undefined;
|
|
2579
|
+
dataSourceId?: string | undefined;
|
|
2604
2580
|
dataSourceRevision?: string | undefined;
|
|
2605
2581
|
universalDataSourceId?: string | undefined;
|
|
2606
2582
|
collectionKey?: string | undefined;
|
|
@@ -2625,9 +2601,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
2625
2601
|
archivedAt?: string | undefined;
|
|
2626
2602
|
isDeactivated?: boolean | undefined;
|
|
2627
2603
|
integrationId?: string | undefined;
|
|
2628
|
-
parentId?: string | undefined;
|
|
2629
2604
|
isCustomized?: boolean | undefined;
|
|
2630
|
-
publishedRevision?: string | undefined;
|
|
2631
2605
|
udm?: string | undefined;
|
|
2632
2606
|
universalDataSourceId?: string | undefined;
|
|
2633
2607
|
collectionKey?: string | undefined;
|