@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
|
@@ -766,7 +766,13 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
766
766
|
description: z.ZodOptional<z.ZodString>;
|
|
767
767
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
768
768
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
769
|
-
|
|
769
|
+
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
770
|
+
udm: z.ZodOptional<z.ZodString>;
|
|
771
|
+
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
772
|
+
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
773
|
+
collectionKey: z.ZodOptional<z.ZodString>;
|
|
774
|
+
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
775
|
+
defaultPath: z.ZodOptional<z.ZodString>;
|
|
770
776
|
} & {
|
|
771
777
|
name: z.ZodString;
|
|
772
778
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
@@ -777,16 +783,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
777
783
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
778
784
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
779
785
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
780
|
-
} & {
|
|
781
|
-
publishedRevision: z.ZodOptional<z.ZodString>;
|
|
782
|
-
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
783
786
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
784
|
-
udm: z.ZodOptional<z.ZodString>;
|
|
785
|
-
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
786
|
-
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
787
|
-
collectionKey: z.ZodOptional<z.ZodString>;
|
|
788
|
-
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
789
|
-
defaultPath: z.ZodOptional<z.ZodString>;
|
|
790
787
|
}, "strip", z.ZodTypeAny, {
|
|
791
788
|
id: string;
|
|
792
789
|
name: string;
|
|
@@ -802,9 +799,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
802
799
|
archivedAt?: string | undefined;
|
|
803
800
|
isDeactivated?: boolean | undefined;
|
|
804
801
|
integrationId?: string | undefined;
|
|
805
|
-
parentId?: string | undefined;
|
|
806
802
|
isCustomized?: boolean | undefined;
|
|
807
|
-
publishedRevision?: string | undefined;
|
|
808
803
|
udm?: string | undefined;
|
|
809
804
|
universalDataSourceId?: string | undefined;
|
|
810
805
|
collectionKey?: string | undefined;
|
|
@@ -828,9 +823,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
828
823
|
archivedAt?: string | undefined;
|
|
829
824
|
isDeactivated?: boolean | undefined;
|
|
830
825
|
integrationId?: string | undefined;
|
|
831
|
-
parentId?: string | undefined;
|
|
832
826
|
isCustomized?: boolean | undefined;
|
|
833
|
-
publishedRevision?: string | undefined;
|
|
834
827
|
udm?: string | undefined;
|
|
835
828
|
universalDataSourceId?: string | undefined;
|
|
836
829
|
collectionKey?: string | undefined;
|
|
@@ -1066,7 +1059,6 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1066
1059
|
isDeactivated?: boolean | undefined;
|
|
1067
1060
|
isCustomized?: boolean | undefined;
|
|
1068
1061
|
instanceKey?: string | undefined;
|
|
1069
|
-
dataSourceId?: string | undefined;
|
|
1070
1062
|
udm?: string | undefined;
|
|
1071
1063
|
collectionSpec?: {
|
|
1072
1064
|
type: "collection";
|
|
@@ -1216,6 +1208,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1216
1208
|
lastActiveAt?: string | undefined;
|
|
1217
1209
|
isBillable?: boolean | undefined;
|
|
1218
1210
|
} | undefined;
|
|
1211
|
+
dataSourceId?: string | undefined;
|
|
1219
1212
|
dataSourceRevision?: string | undefined;
|
|
1220
1213
|
universalDataSourceId?: string | undefined;
|
|
1221
1214
|
collectionKey?: string | undefined;
|
|
@@ -1240,9 +1233,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1240
1233
|
archivedAt?: string | undefined;
|
|
1241
1234
|
isDeactivated?: boolean | undefined;
|
|
1242
1235
|
integrationId?: string | undefined;
|
|
1243
|
-
parentId?: string | undefined;
|
|
1244
1236
|
isCustomized?: boolean | undefined;
|
|
1245
|
-
publishedRevision?: string | undefined;
|
|
1246
1237
|
udm?: string | undefined;
|
|
1247
1238
|
universalDataSourceId?: string | undefined;
|
|
1248
1239
|
collectionKey?: string | undefined;
|
|
@@ -1324,7 +1315,6 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1324
1315
|
isDeactivated?: boolean | undefined;
|
|
1325
1316
|
isCustomized?: boolean | undefined;
|
|
1326
1317
|
instanceKey?: string | undefined;
|
|
1327
|
-
dataSourceId?: string | undefined;
|
|
1328
1318
|
udm?: string | undefined;
|
|
1329
1319
|
collectionSpec?: {
|
|
1330
1320
|
type: "collection";
|
|
@@ -1474,6 +1464,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1474
1464
|
lastActiveAt?: string | undefined;
|
|
1475
1465
|
isBillable?: boolean | undefined;
|
|
1476
1466
|
} | undefined;
|
|
1467
|
+
dataSourceId?: string | undefined;
|
|
1477
1468
|
dataSourceRevision?: string | undefined;
|
|
1478
1469
|
universalDataSourceId?: string | undefined;
|
|
1479
1470
|
collectionKey?: string | undefined;
|
|
@@ -1498,9 +1489,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1498
1489
|
archivedAt?: string | undefined;
|
|
1499
1490
|
isDeactivated?: boolean | undefined;
|
|
1500
1491
|
integrationId?: string | undefined;
|
|
1501
|
-
parentId?: string | undefined;
|
|
1502
1492
|
isCustomized?: boolean | undefined;
|
|
1503
|
-
publishedRevision?: string | undefined;
|
|
1504
1493
|
udm?: string | undefined;
|
|
1505
1494
|
universalDataSourceId?: string | undefined;
|
|
1506
1495
|
collectionKey?: string | undefined;
|