@membranehq/sdk 0.9.8 → 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 +8 -10
- package/dist/dts/workspace-elements/api/actions-api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/actions/index.d.ts +1 -0
- 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 +24 -19
- package/dist/index.browser.d.ts +24 -19
- package/dist/index.browser.js +17 -11
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +17 -12
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +24 -19
- package/dist/index.node.d.ts +24 -19
- package/dist/index.node.js +17 -11
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +17 -12
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AxiosRequestConfig } from 'axios';
|
|
2
|
-
import { z } from 'zod';
|
|
2
|
+
import z$1, { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
interface MembraneClientOptions {
|
|
5
5
|
token?: string;
|
|
@@ -128,12 +128,13 @@ interface ElementInstanceSelector {
|
|
|
128
128
|
parentKey?: string;
|
|
129
129
|
parentId?: string;
|
|
130
130
|
}
|
|
131
|
-
|
|
132
|
-
id
|
|
133
|
-
key
|
|
134
|
-
integrationId
|
|
135
|
-
integrationKey
|
|
136
|
-
}
|
|
131
|
+
declare const IntegrationSpecificElementSelector: z$1.ZodObject<{
|
|
132
|
+
id: z$1.ZodOptional<z$1.ZodString>;
|
|
133
|
+
key: z$1.ZodOptional<z$1.ZodString>;
|
|
134
|
+
integrationId: z$1.ZodOptional<z$1.ZodString>;
|
|
135
|
+
integrationKey: z$1.ZodOptional<z$1.ZodString>;
|
|
136
|
+
}, z$1.core.$strip>;
|
|
137
|
+
type IntegrationSpecificElementSelector = z$1.infer<typeof IntegrationSpecificElementSelector>;
|
|
137
138
|
type SelectorType = {
|
|
138
139
|
id?: string;
|
|
139
140
|
} | string;
|
|
@@ -5195,7 +5196,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
5195
5196
|
type UpdateActionInstanceRequest = UpdateActionRequest;
|
|
5196
5197
|
declare const ActionRunResponse: z.ZodObject<{
|
|
5197
5198
|
output: z.ZodOptional<z.ZodAny>;
|
|
5198
|
-
|
|
5199
|
+
actionRunId: z.ZodOptional<z.ZodString>;
|
|
5199
5200
|
}, z.core.$strip>;
|
|
5200
5201
|
type ActionRunResponse<RunOutput = any> = Omit<z.infer<typeof ActionRunResponse>, 'output'> & {
|
|
5201
5202
|
output: RunOutput;
|