@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 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
- interface IntegrationSpecificElementSelector {
132
- id?: string;
133
- key?: string;
134
- integrationId?: string;
135
- integrationKey?: string;
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
- logs: z.ZodOptional<z.ZodArray<z.ZodAny>>;
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;