@membranehq/sdk 0.9.7 → 0.9.9
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 +9 -8
- package/dist/bundle.js +12251 -3514
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/base-accessors.d.ts +8 -6
- package/dist/dts/agent/session.d.ts +10 -10
- package/dist/dts/functions/base.d.ts +28 -0
- package/dist/dts/functions/function-types/graphql-api-mapping.d.ts +67 -0
- package/dist/dts/functions/function-types/index.d.ts +61 -0
- package/dist/dts/functions/function-types/javascript.d.ts +7 -0
- package/dist/dts/functions/function-types/mapping.d.ts +9 -0
- package/dist/dts/functions/function-types/operation-mapping.d.ts +17 -0
- package/dist/dts/functions/function-types/rest-api-mapping.d.ts +48 -0
- package/dist/dts/functions/index.d.ts +2 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/actions/index.d.ts +2 -1
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +491 -0
- package/dist/dts/workspace-elements/base/connectors/types.d.ts +1521 -3043
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/packages/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +1 -0
- package/dist/index.browser.d.mts +1769 -3057
- package/dist/index.browser.d.ts +1769 -3057
- package/dist/index.browser.js +184 -15
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +163 -16
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1769 -3057
- package/dist/index.node.d.ts +1769 -3057
- package/dist/index.node.js +184 -15
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +163 -16
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -53,6 +53,7 @@ export declare const DataSourceExportProperties: z.ZodObject<{
|
|
|
53
53
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
54
54
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
55
55
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
56
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
56
57
|
udm: z.ZodOptional<z.ZodString>;
|
|
57
58
|
collectionKey: z.ZodOptional<z.ZodString>;
|
|
58
59
|
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
@@ -39,6 +39,7 @@ export declare const FieldMappingExportProperties: z.ZodObject<{
|
|
|
39
39
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
40
40
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
41
41
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
42
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
42
43
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
43
44
|
appSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
44
45
|
direction: z.ZodOptional<z.ZodEnum<typeof FieldMappingDirection>>;
|
|
@@ -50,6 +50,7 @@ export declare const FlowExportProperties: z.ZodObject<{
|
|
|
50
50
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
51
51
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
52
52
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
53
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
53
54
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
54
55
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
55
56
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40,6 +40,7 @@ export declare const PackageExportProperties: z.ZodObject<{
|
|
|
40
40
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
41
41
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
42
42
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
43
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
43
44
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
44
45
|
uuid: z.ZodString;
|
|
45
46
|
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
@@ -132,6 +132,7 @@ export declare const BaseIntegrationLevelMembraneInterfaceExportProperties: z.Zo
|
|
|
132
132
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
133
133
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
134
134
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
135
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
135
136
|
}, z.core.$strip>;
|
|
136
137
|
export declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
|
|
137
138
|
layer: z.ZodOptional<z.ZodEnum<{
|