@membranehq/sdk 0.4.0 → 0.5.1

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.
Files changed (82) hide show
  1. package/dist/bundle.d.ts +16299 -1303
  2. package/dist/bundle.js +3980 -3701
  3. package/dist/bundle.js.map +1 -1
  4. package/dist/dts/accessors/connections-accessors.d.ts +78 -1
  5. package/dist/dts/accessors/integrations-accessors.d.ts +78 -1
  6. package/dist/dts/api-client.d.ts +1 -0
  7. package/dist/dts/client.d.ts +1 -0
  8. package/dist/dts/data-schema/index.d.ts +0 -1
  9. package/dist/dts/data-schema/types.d.ts +4 -3
  10. package/dist/dts/entity-repository.d.ts +88 -20
  11. package/dist/dts/formulas/dataSchemaRef.d.ts +2 -2
  12. package/dist/dts/http-requests.d.ts +20 -6
  13. package/dist/dts/iframe.d.ts +12 -4
  14. package/dist/dts/index.d.ts +2 -1
  15. package/dist/dts/sse/index.d.ts +1 -0
  16. package/dist/dts/sse/workspace-elements.d.ts +9 -0
  17. package/dist/dts/workspace-elements/api/action-instances-api.d.ts +269 -8
  18. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +529 -10
  19. package/dist/dts/workspace-elements/api/actions-api.d.ts +1010 -45
  20. package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +203 -8
  21. package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +49 -3
  22. package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +376 -0
  23. package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +293 -8
  24. package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +88 -3
  25. package/dist/dts/workspace-elements/api/connections-api.d.ts +993 -42
  26. package/dist/dts/workspace-elements/api/customers-api.d.ts +92 -16
  27. package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +541 -12
  28. package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +43 -2
  29. package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +1590 -12
  30. package/dist/dts/workspace-elements/api/data-sources-api.d.ts +1113 -78
  31. package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +696 -19
  32. package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +702 -19
  33. package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +559 -10
  34. package/dist/dts/workspace-elements/api/external-events-api.d.ts +582 -6
  35. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +2786 -14
  36. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +885 -7
  37. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +1652 -47
  38. package/dist/dts/workspace-elements/api/flows-api.d.ts +3202 -52
  39. package/dist/dts/workspace-elements/api/index.d.ts +1 -1
  40. package/dist/dts/workspace-elements/api/integrations-api.d.ts +339 -26
  41. package/dist/dts/workspace-elements/api/scenarios-api.d.ts +523 -35
  42. package/dist/dts/workspace-elements/api/screens-api.d.ts +35 -15
  43. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +78 -15
  44. package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +37 -12
  45. package/dist/dts/workspace-elements/base/actions/types.d.ts +78 -18
  46. package/dist/dts/workspace-elements/base/app-data-schema-instances/types.d.ts +59 -7
  47. package/dist/dts/workspace-elements/base/app-data-schemas/types.d.ts +49 -7
  48. package/dist/dts/workspace-elements/base/app-event-subscriptions/types.d.ts +92 -9
  49. package/dist/dts/workspace-elements/base/app-event-types/types.d.ts +84 -7
  50. package/dist/dts/workspace-elements/base/connections/types.d.ts +82 -20
  51. package/dist/dts/workspace-elements/base/connectors/types.d.ts +14 -2
  52. package/dist/dts/workspace-elements/base/customers/index.d.ts +32 -6
  53. package/dist/dts/workspace-elements/base/data-collections/schemas.d.ts +93 -92
  54. package/dist/dts/workspace-elements/base/data-link-table-instances/types.d.ts +78 -11
  55. package/dist/dts/workspace-elements/base/data-link-tables/types.d.ts +43 -4
  56. package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +1048 -19
  57. package/dist/dts/workspace-elements/base/data-sources/types.d.ts +97 -22
  58. package/dist/dts/workspace-elements/base/external-event-log-records/types.d.ts +31 -8
  59. package/dist/dts/workspace-elements/base/external-event-pulls/types.d.ts +35 -8
  60. package/dist/dts/workspace-elements/base/external-event-subscriptions/types.d.ts +197 -24
  61. package/dist/dts/workspace-elements/base/external-events/types.d.ts +145 -5
  62. package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +92 -16
  63. package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +105 -14
  64. package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +43 -43
  65. package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +170 -24
  66. package/dist/dts/workspace-elements/base/flow-runs/flow-node-runs.d.ts +20 -20
  67. package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +127 -19
  68. package/dist/dts/workspace-elements/base/flows/types.d.ts +234 -26
  69. package/dist/dts/workspace-elements/base/integrations/types.d.ts +988 -25
  70. package/dist/dts/workspace-elements/base/scenarios/types.d.ts +740 -23
  71. package/dist/dts/workspace-elements/base/screens/types.d.ts +48 -6
  72. package/dist/dts/workspace-elements/types.d.ts +25 -3
  73. package/dist/dts/workspaces/types.d.ts +4 -3
  74. package/dist/index.d.ts +26481 -3080
  75. package/dist/index.js +1717 -535
  76. package/dist/index.js.map +1 -1
  77. package/dist/index.module.d.mts +26481 -3080
  78. package/dist/index.module.mjs +1550 -502
  79. package/dist/index.module.mjs.map +1 -1
  80. package/package.json +3 -2
  81. package/dist/dts/data-schema/schemas.d.ts +0 -4
  82. package/dist/dts/workspace-elements/api/app-events-api.d.ts +0 -17
@@ -1,66 +1,1031 @@
1
+ import { z } from 'zod';
1
2
  import { ConnectionSelector } from './connections-api';
2
3
  import { ElementInstanceSelector, IntegrationSpecificElementSelector } from '../../accessors';
3
- import { PaginationQuery } from '../../entity-repository';
4
4
  import { OpenConfigurationOptions } from '../../iframe';
5
- import { BaseAction } from '../base/actions';
6
5
  import { ActionType } from '../base/actions/action-types';
7
- import { BaseIntegration, AppliedToIntegrations } from '../base/integrations';
8
- export interface ListActionsForIntegrationQuery extends PaginationQuery {
9
- parentId?: string | 'null';
10
- }
11
- export interface FindActionsQuery extends ListActionsForIntegrationQuery {
12
- integrationId?: string | 'null';
13
- }
14
- export type CreateActionRequest = {
6
+ export declare const ListActionsForIntegrationQuery: z.ZodObject<{
7
+ parentId: z.ZodOptional<z.ZodString>;
8
+ } & {
9
+ limit: z.ZodOptional<z.ZodNumber>;
10
+ cursor: z.ZodOptional<z.ZodString>;
11
+ }, "strip", z.ZodTypeAny, {
12
+ limit?: number | undefined;
13
+ cursor?: string | undefined;
14
+ parentId?: string | undefined;
15
+ }, {
16
+ limit?: number | undefined;
17
+ cursor?: string | undefined;
18
+ parentId?: string | undefined;
19
+ }>;
20
+ export type ListActionsForIntegrationQuery = z.infer<typeof ListActionsForIntegrationQuery>;
21
+ export declare const FindActionsQuery: z.ZodObject<{
22
+ parentId: z.ZodOptional<z.ZodString>;
23
+ } & {
24
+ limit: z.ZodOptional<z.ZodNumber>;
25
+ cursor: z.ZodOptional<z.ZodString>;
26
+ } & {
27
+ integrationId: z.ZodOptional<z.ZodString>;
28
+ }, "strip", z.ZodTypeAny, {
29
+ limit?: number | undefined;
30
+ cursor?: string | undefined;
31
+ integrationId?: string | undefined;
32
+ parentId?: string | undefined;
33
+ }, {
34
+ limit?: number | undefined;
35
+ cursor?: string | undefined;
36
+ integrationId?: string | undefined;
37
+ parentId?: string | undefined;
38
+ }>;
39
+ export type FindActionsQuery = z.infer<typeof FindActionsQuery>;
40
+ export declare const CreateActionRequest: z.ZodObject<{
41
+ key: z.ZodString;
42
+ name: z.ZodString;
43
+ type: z.ZodOptional<z.ZodNativeEnum<typeof ActionType>>;
44
+ inputSchema: z.ZodOptional<z.ZodAny>;
45
+ config: z.ZodOptional<z.ZodAny>;
46
+ integrationId: z.ZodOptional<z.ZodString>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ key: string;
49
+ name: string;
50
+ type?: ActionType | undefined;
51
+ integrationId?: string | undefined;
52
+ inputSchema?: any;
53
+ config?: any;
54
+ }, {
15
55
  key: string;
16
56
  name: string;
17
- type?: ActionType;
57
+ type?: ActionType | undefined;
58
+ integrationId?: string | undefined;
18
59
  inputSchema?: any;
19
60
  config?: any;
20
- integrationId?: string;
21
- };
22
- export type UpdateActionRequest = {
23
- key?: string;
24
- type?: ActionType;
25
- name?: string;
61
+ }>;
62
+ export type CreateActionRequest = z.infer<typeof CreateActionRequest>;
63
+ export declare const UpdateActionRequest: z.ZodObject<{
64
+ key: z.ZodOptional<z.ZodString>;
65
+ type: z.ZodOptional<z.ZodNativeEnum<typeof ActionType>>;
66
+ name: z.ZodOptional<z.ZodString>;
67
+ inputSchema: z.ZodOptional<z.ZodAny>;
68
+ config: z.ZodOptional<z.ZodAny>;
69
+ customOutputSchema: z.ZodOptional<z.ZodAny>;
70
+ outputMapping: z.ZodOptional<z.ZodAny>;
71
+ }, "strip", z.ZodTypeAny, {
72
+ key?: string | undefined;
73
+ type?: ActionType | undefined;
74
+ name?: string | undefined;
26
75
  inputSchema?: any;
27
76
  config?: any;
28
- archivedAt?: string;
29
- };
77
+ outputMapping?: any;
78
+ customOutputSchema?: any;
79
+ }, {
80
+ key?: string | undefined;
81
+ type?: ActionType | undefined;
82
+ name?: string | undefined;
83
+ inputSchema?: any;
84
+ config?: any;
85
+ outputMapping?: any;
86
+ customOutputSchema?: any;
87
+ }>;
88
+ export type UpdateActionRequest = z.infer<typeof UpdateActionRequest>;
30
89
  export interface ActionSelector extends IntegrationSpecificElementSelector {
31
90
  }
32
91
  export interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
33
92
  }
34
- export type ListActionInstancesForConnectionQuery = PaginationQuery & {
35
- parentId?: string;
36
- universalParentId?: string;
37
- };
38
- export interface FindActionInstancesQuery extends ListActionInstancesForConnectionQuery {
39
- integrationKey?: string;
40
- integrationId?: string;
41
- userId?: string;
42
- connectionId?: string;
43
- }
44
- export interface CreateActionInstanceRequest {
93
+ export declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
94
+ parentId: z.ZodOptional<z.ZodString>;
95
+ universalParentId: z.ZodOptional<z.ZodString>;
96
+ } & {
97
+ limit: z.ZodOptional<z.ZodNumber>;
98
+ cursor: z.ZodOptional<z.ZodString>;
99
+ }, "strip", z.ZodTypeAny, {
100
+ limit?: number | undefined;
101
+ cursor?: string | undefined;
102
+ parentId?: string | undefined;
103
+ universalParentId?: string | undefined;
104
+ }, {
105
+ limit?: number | undefined;
106
+ cursor?: string | undefined;
107
+ parentId?: string | undefined;
108
+ universalParentId?: string | undefined;
109
+ }>;
110
+ export type ListActionInstancesForConnectionQuery = z.infer<typeof ListActionInstancesForConnectionQuery>;
111
+ export declare const FindActionInstancesQuery: z.ZodObject<{
112
+ parentId: z.ZodOptional<z.ZodString>;
113
+ universalParentId: z.ZodOptional<z.ZodString>;
114
+ } & {
115
+ limit: z.ZodOptional<z.ZodNumber>;
116
+ cursor: z.ZodOptional<z.ZodString>;
117
+ } & {
118
+ integrationKey: z.ZodOptional<z.ZodString>;
119
+ integrationId: z.ZodOptional<z.ZodString>;
120
+ userId: z.ZodOptional<z.ZodString>;
121
+ connectionId: z.ZodOptional<z.ZodString>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ limit?: number | undefined;
124
+ cursor?: string | undefined;
125
+ userId?: string | undefined;
126
+ connectionId?: string | undefined;
127
+ integrationId?: string | undefined;
128
+ integrationKey?: string | undefined;
129
+ parentId?: string | undefined;
130
+ universalParentId?: string | undefined;
131
+ }, {
132
+ limit?: number | undefined;
133
+ cursor?: string | undefined;
134
+ userId?: string | undefined;
135
+ connectionId?: string | undefined;
136
+ integrationId?: string | undefined;
137
+ integrationKey?: string | undefined;
138
+ parentId?: string | undefined;
139
+ universalParentId?: string | undefined;
140
+ }>;
141
+ export type FindActionInstancesQuery = z.infer<typeof FindActionInstancesQuery>;
142
+ export declare const CreateActionInstanceRequest: z.ZodObject<{
143
+ parentId: z.ZodString;
144
+ connectionId: z.ZodString;
145
+ config: z.ZodOptional<z.ZodAny>;
146
+ }, "strip", z.ZodTypeAny, {
147
+ connectionId: string;
45
148
  parentId: string;
149
+ config?: any;
150
+ }, {
46
151
  connectionId: string;
152
+ parentId: string;
47
153
  config?: any;
48
- }
49
- export interface UpdateActionInstanceRequest {
154
+ }>;
155
+ export type CreateActionInstanceRequest = z.infer<typeof CreateActionInstanceRequest>;
156
+ export declare const UpdateActionInstanceRequest: z.ZodObject<{
157
+ config: z.ZodOptional<z.ZodAny>;
158
+ }, "strip", z.ZodTypeAny, {
50
159
  config?: any;
51
- }
160
+ }, {
161
+ config?: any;
162
+ }>;
163
+ export type UpdateActionInstanceRequest = z.infer<typeof UpdateActionInstanceRequest>;
52
164
  export interface OpenActionConfigurationOptions extends OpenConfigurationOptions {
53
165
  }
54
- export interface ActionRunResponse {
166
+ export declare const ActionRunResponse: z.ZodObject<{
167
+ output: z.ZodOptional<z.ZodAny>;
168
+ logs: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
169
+ }, "strip", z.ZodTypeAny, {
170
+ logs?: any[] | undefined;
55
171
  output?: any;
56
- logs?: any[];
57
- }
58
- export declare enum ActionRunLogStatus {
59
- SUCCESS = "success",
60
- ERROR = "error"
61
- }
62
- export interface Action extends BaseAction {
63
- integration?: BaseIntegration;
64
- appliedToIntegrations?: AppliedToIntegrations<Action>;
65
- }
66
- export type ActionApiResponse = Action;
172
+ }, {
173
+ logs?: any[] | undefined;
174
+ output?: any;
175
+ }>;
176
+ export type ActionRunResponse = z.infer<typeof ActionRunResponse>;
177
+ export declare const ActionApiResponse: z.ZodObject<{
178
+ id: z.ZodString;
179
+ name: z.ZodString;
180
+ } & {
181
+ key: z.ZodOptional<z.ZodString>;
182
+ uuid: z.ZodOptional<z.ZodString>;
183
+ description: z.ZodOptional<z.ZodString>;
184
+ state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
185
+ errors: z.ZodOptional<z.ZodArray<any, "many">>;
186
+ revision: z.ZodOptional<z.ZodString>;
187
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
188
+ createdAt: z.ZodOptional<z.ZodString>;
189
+ updatedAt: z.ZodOptional<z.ZodString>;
190
+ archivedAt: z.ZodOptional<z.ZodString>;
191
+ } & {
192
+ integrationId: z.ZodOptional<z.ZodString>;
193
+ parentId: z.ZodOptional<z.ZodString>;
194
+ parentRevision: z.ZodOptional<z.ZodString>;
195
+ isCustomized: z.ZodOptional<z.ZodBoolean>;
196
+ type: z.ZodNativeEnum<typeof ActionType>;
197
+ inputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
198
+ config: z.ZodOptional<z.ZodAny>;
199
+ outputMapping: z.ZodOptional<z.ZodAny>;
200
+ customOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
201
+ defaultOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
202
+ transformedOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
203
+ outputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
204
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
205
+ } & {
206
+ integration: z.ZodOptional<z.ZodObject<{
207
+ id: z.ZodString;
208
+ name: z.ZodString;
209
+ key: z.ZodOptional<z.ZodString>;
210
+ uuid: z.ZodOptional<z.ZodString>;
211
+ description: z.ZodOptional<z.ZodString>;
212
+ state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
213
+ errors: z.ZodOptional<z.ZodArray<any, "many">>;
214
+ revision: z.ZodOptional<z.ZodString>;
215
+ createdAt: z.ZodOptional<z.ZodString>;
216
+ updatedAt: z.ZodOptional<z.ZodString>;
217
+ } & {
218
+ logoUri: z.ZodString;
219
+ connectorId: z.ZodOptional<z.ZodString>;
220
+ connectorVersion: z.ZodOptional<z.ZodString>;
221
+ authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
222
+ key: z.ZodString;
223
+ type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
224
+ title: z.ZodOptional<z.ZodString>;
225
+ description: z.ZodOptional<z.ZodString>;
226
+ ui: z.ZodOptional<z.ZodObject<{
227
+ schema: z.ZodOptional<z.ZodAny>;
228
+ helpUri: z.ZodOptional<z.ZodString>;
229
+ }, "strip", z.ZodTypeAny, {
230
+ schema?: any;
231
+ helpUri?: string | undefined;
232
+ }, {
233
+ schema?: any;
234
+ helpUri?: string | undefined;
235
+ }>>;
236
+ }, "strip", z.ZodTypeAny, {
237
+ key: string;
238
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
239
+ description?: string | undefined;
240
+ title?: string | undefined;
241
+ ui?: {
242
+ schema?: any;
243
+ helpUri?: string | undefined;
244
+ } | undefined;
245
+ }, {
246
+ key: string;
247
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
248
+ description?: string | undefined;
249
+ title?: string | undefined;
250
+ ui?: {
251
+ schema?: any;
252
+ helpUri?: string | undefined;
253
+ } | undefined;
254
+ }>, "many">>;
255
+ oAuthCallbackUri: z.ZodOptional<z.ZodString>;
256
+ parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
257
+ parameters: z.ZodOptional<z.ZodAny>;
258
+ baseUri: z.ZodString;
259
+ archivedAt: z.ZodOptional<z.ZodString>;
260
+ hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
261
+ hasDocumentation: z.ZodOptional<z.ZodBoolean>;
262
+ hasOperations: z.ZodOptional<z.ZodBoolean>;
263
+ operationsCount: z.ZodOptional<z.ZodNumber>;
264
+ hasData: z.ZodOptional<z.ZodBoolean>;
265
+ dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
266
+ hasEvents: z.ZodOptional<z.ZodBoolean>;
267
+ eventsCount: z.ZodOptional<z.ZodNumber>;
268
+ hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
269
+ hasUdm: z.ZodOptional<z.ZodBoolean>;
270
+ isTest: z.ZodOptional<z.ZodBoolean>;
271
+ appUuid: z.ZodOptional<z.ZodString>;
272
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
273
+ authType: z.ZodOptional<z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ id: string;
276
+ name: string;
277
+ baseUri: string;
278
+ logoUri: string;
279
+ key?: string | undefined;
280
+ uuid?: string | undefined;
281
+ description?: string | undefined;
282
+ state?: import("..").WorkspaceElementState | undefined;
283
+ errors?: any[] | undefined;
284
+ revision?: string | undefined;
285
+ isDeactivated?: boolean | undefined;
286
+ createdAt?: string | undefined;
287
+ updatedAt?: string | undefined;
288
+ archivedAt?: string | undefined;
289
+ parameters?: any;
290
+ parametersSchema?: import("../..").DataSchema | undefined;
291
+ isTest?: boolean | undefined;
292
+ connectorId?: string | undefined;
293
+ connectorVersion?: string | undefined;
294
+ authOptions?: {
295
+ key: string;
296
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
297
+ description?: string | undefined;
298
+ title?: string | undefined;
299
+ ui?: {
300
+ schema?: any;
301
+ helpUri?: string | undefined;
302
+ } | undefined;
303
+ }[] | undefined;
304
+ oAuthCallbackUri?: string | undefined;
305
+ hasMissingParameters?: boolean | undefined;
306
+ hasDocumentation?: boolean | undefined;
307
+ hasOperations?: boolean | undefined;
308
+ operationsCount?: number | undefined;
309
+ hasData?: boolean | undefined;
310
+ dataCollectionsCount?: number | undefined;
311
+ hasEvents?: boolean | undefined;
312
+ eventsCount?: number | undefined;
313
+ hasGlobalWebhooks?: boolean | undefined;
314
+ hasUdm?: boolean | undefined;
315
+ appUuid?: string | undefined;
316
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
317
+ }, {
318
+ id: string;
319
+ name: string;
320
+ baseUri: string;
321
+ logoUri: string;
322
+ key?: string | undefined;
323
+ uuid?: string | undefined;
324
+ description?: string | undefined;
325
+ state?: import("..").WorkspaceElementState | undefined;
326
+ errors?: any[] | undefined;
327
+ revision?: string | undefined;
328
+ isDeactivated?: boolean | undefined;
329
+ createdAt?: string | undefined;
330
+ updatedAt?: string | undefined;
331
+ archivedAt?: string | undefined;
332
+ parameters?: any;
333
+ parametersSchema?: import("../..").DataSchema | undefined;
334
+ isTest?: boolean | undefined;
335
+ connectorId?: string | undefined;
336
+ connectorVersion?: string | undefined;
337
+ authOptions?: {
338
+ key: string;
339
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
340
+ description?: string | undefined;
341
+ title?: string | undefined;
342
+ ui?: {
343
+ schema?: any;
344
+ helpUri?: string | undefined;
345
+ } | undefined;
346
+ }[] | undefined;
347
+ oAuthCallbackUri?: string | undefined;
348
+ hasMissingParameters?: boolean | undefined;
349
+ hasDocumentation?: boolean | undefined;
350
+ hasOperations?: boolean | undefined;
351
+ operationsCount?: number | undefined;
352
+ hasData?: boolean | undefined;
353
+ dataCollectionsCount?: number | undefined;
354
+ hasEvents?: boolean | undefined;
355
+ eventsCount?: number | undefined;
356
+ hasGlobalWebhooks?: boolean | undefined;
357
+ hasUdm?: boolean | undefined;
358
+ appUuid?: string | undefined;
359
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
360
+ }>>;
361
+ appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
362
+ element: z.ZodObject<{
363
+ id: z.ZodString;
364
+ name: z.ZodString;
365
+ } & {
366
+ key: z.ZodOptional<z.ZodString>;
367
+ uuid: z.ZodOptional<z.ZodString>;
368
+ description: z.ZodOptional<z.ZodString>;
369
+ state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
370
+ errors: z.ZodOptional<z.ZodArray<any, "many">>;
371
+ revision: z.ZodOptional<z.ZodString>;
372
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
373
+ createdAt: z.ZodOptional<z.ZodString>;
374
+ updatedAt: z.ZodOptional<z.ZodString>;
375
+ archivedAt: z.ZodOptional<z.ZodString>;
376
+ } & {
377
+ integrationId: z.ZodOptional<z.ZodString>;
378
+ parentId: z.ZodOptional<z.ZodString>;
379
+ parentRevision: z.ZodOptional<z.ZodString>;
380
+ isCustomized: z.ZodOptional<z.ZodBoolean>;
381
+ type: z.ZodNativeEnum<typeof ActionType>;
382
+ inputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
383
+ config: z.ZodOptional<z.ZodAny>;
384
+ outputMapping: z.ZodOptional<z.ZodAny>;
385
+ customOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
386
+ defaultOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
387
+ transformedOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
388
+ outputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
389
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
390
+ }, "strip", z.ZodTypeAny, {
391
+ type: ActionType;
392
+ id: string;
393
+ name: string;
394
+ key?: string | undefined;
395
+ uuid?: string | undefined;
396
+ description?: string | undefined;
397
+ state?: import("..").WorkspaceElementState | undefined;
398
+ errors?: any[] | undefined;
399
+ revision?: string | undefined;
400
+ isDeactivated?: boolean | undefined;
401
+ createdAt?: string | undefined;
402
+ updatedAt?: string | undefined;
403
+ archivedAt?: string | undefined;
404
+ integrationId?: string | undefined;
405
+ parentId?: string | undefined;
406
+ parentRevision?: string | undefined;
407
+ isCustomized?: boolean | undefined;
408
+ inputSchema?: import("../..").DataSchema | undefined;
409
+ config?: any;
410
+ outputMapping?: any;
411
+ customOutputSchema?: import("../..").DataSchema | undefined;
412
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
413
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
414
+ outputSchema?: import("../..").DataSchema | undefined;
415
+ dependencies?: any[] | undefined;
416
+ }, {
417
+ type: ActionType;
418
+ id: string;
419
+ name: string;
420
+ key?: string | undefined;
421
+ uuid?: string | undefined;
422
+ description?: string | undefined;
423
+ state?: import("..").WorkspaceElementState | undefined;
424
+ errors?: any[] | undefined;
425
+ revision?: string | undefined;
426
+ isDeactivated?: boolean | undefined;
427
+ createdAt?: string | undefined;
428
+ updatedAt?: string | undefined;
429
+ archivedAt?: string | undefined;
430
+ integrationId?: string | undefined;
431
+ parentId?: string | undefined;
432
+ parentRevision?: string | undefined;
433
+ isCustomized?: boolean | undefined;
434
+ inputSchema?: import("../..").DataSchema | undefined;
435
+ config?: any;
436
+ outputMapping?: any;
437
+ customOutputSchema?: import("../..").DataSchema | undefined;
438
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
439
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
440
+ outputSchema?: import("../..").DataSchema | undefined;
441
+ dependencies?: any[] | undefined;
442
+ }>;
443
+ integration: z.ZodObject<{
444
+ id: z.ZodString;
445
+ name: z.ZodString;
446
+ key: z.ZodOptional<z.ZodString>;
447
+ uuid: z.ZodOptional<z.ZodString>;
448
+ description: z.ZodOptional<z.ZodString>;
449
+ state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
450
+ errors: z.ZodOptional<z.ZodArray<any, "many">>;
451
+ revision: z.ZodOptional<z.ZodString>;
452
+ createdAt: z.ZodOptional<z.ZodString>;
453
+ updatedAt: z.ZodOptional<z.ZodString>;
454
+ } & {
455
+ logoUri: z.ZodString;
456
+ connectorId: z.ZodOptional<z.ZodString>;
457
+ connectorVersion: z.ZodOptional<z.ZodString>;
458
+ authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
459
+ key: z.ZodString;
460
+ type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
461
+ title: z.ZodOptional<z.ZodString>;
462
+ description: z.ZodOptional<z.ZodString>;
463
+ ui: z.ZodOptional<z.ZodObject<{
464
+ schema: z.ZodOptional<z.ZodAny>;
465
+ helpUri: z.ZodOptional<z.ZodString>;
466
+ }, "strip", z.ZodTypeAny, {
467
+ schema?: any;
468
+ helpUri?: string | undefined;
469
+ }, {
470
+ schema?: any;
471
+ helpUri?: string | undefined;
472
+ }>>;
473
+ }, "strip", z.ZodTypeAny, {
474
+ key: string;
475
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
476
+ description?: string | undefined;
477
+ title?: string | undefined;
478
+ ui?: {
479
+ schema?: any;
480
+ helpUri?: string | undefined;
481
+ } | undefined;
482
+ }, {
483
+ key: string;
484
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
485
+ description?: string | undefined;
486
+ title?: string | undefined;
487
+ ui?: {
488
+ schema?: any;
489
+ helpUri?: string | undefined;
490
+ } | undefined;
491
+ }>, "many">>;
492
+ oAuthCallbackUri: z.ZodOptional<z.ZodString>;
493
+ parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
494
+ parameters: z.ZodOptional<z.ZodAny>;
495
+ baseUri: z.ZodString;
496
+ archivedAt: z.ZodOptional<z.ZodString>;
497
+ hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
498
+ hasDocumentation: z.ZodOptional<z.ZodBoolean>;
499
+ hasOperations: z.ZodOptional<z.ZodBoolean>;
500
+ operationsCount: z.ZodOptional<z.ZodNumber>;
501
+ hasData: z.ZodOptional<z.ZodBoolean>;
502
+ dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
503
+ hasEvents: z.ZodOptional<z.ZodBoolean>;
504
+ eventsCount: z.ZodOptional<z.ZodNumber>;
505
+ hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
506
+ hasUdm: z.ZodOptional<z.ZodBoolean>;
507
+ isTest: z.ZodOptional<z.ZodBoolean>;
508
+ appUuid: z.ZodOptional<z.ZodString>;
509
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
510
+ authType: z.ZodOptional<z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>>;
511
+ }, "strip", z.ZodTypeAny, {
512
+ id: string;
513
+ name: string;
514
+ baseUri: string;
515
+ logoUri: string;
516
+ key?: string | undefined;
517
+ uuid?: string | undefined;
518
+ description?: string | undefined;
519
+ state?: import("..").WorkspaceElementState | undefined;
520
+ errors?: any[] | undefined;
521
+ revision?: string | undefined;
522
+ isDeactivated?: boolean | undefined;
523
+ createdAt?: string | undefined;
524
+ updatedAt?: string | undefined;
525
+ archivedAt?: string | undefined;
526
+ parameters?: any;
527
+ parametersSchema?: import("../..").DataSchema | undefined;
528
+ isTest?: boolean | undefined;
529
+ connectorId?: string | undefined;
530
+ connectorVersion?: string | undefined;
531
+ authOptions?: {
532
+ key: string;
533
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
534
+ description?: string | undefined;
535
+ title?: string | undefined;
536
+ ui?: {
537
+ schema?: any;
538
+ helpUri?: string | undefined;
539
+ } | undefined;
540
+ }[] | undefined;
541
+ oAuthCallbackUri?: string | undefined;
542
+ hasMissingParameters?: boolean | undefined;
543
+ hasDocumentation?: boolean | undefined;
544
+ hasOperations?: boolean | undefined;
545
+ operationsCount?: number | undefined;
546
+ hasData?: boolean | undefined;
547
+ dataCollectionsCount?: number | undefined;
548
+ hasEvents?: boolean | undefined;
549
+ eventsCount?: number | undefined;
550
+ hasGlobalWebhooks?: boolean | undefined;
551
+ hasUdm?: boolean | undefined;
552
+ appUuid?: string | undefined;
553
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
554
+ }, {
555
+ id: string;
556
+ name: string;
557
+ baseUri: string;
558
+ logoUri: string;
559
+ key?: string | undefined;
560
+ uuid?: string | undefined;
561
+ description?: string | undefined;
562
+ state?: import("..").WorkspaceElementState | undefined;
563
+ errors?: any[] | undefined;
564
+ revision?: string | undefined;
565
+ isDeactivated?: boolean | undefined;
566
+ createdAt?: string | undefined;
567
+ updatedAt?: string | undefined;
568
+ archivedAt?: string | undefined;
569
+ parameters?: any;
570
+ parametersSchema?: import("../..").DataSchema | undefined;
571
+ isTest?: boolean | undefined;
572
+ connectorId?: string | undefined;
573
+ connectorVersion?: string | undefined;
574
+ authOptions?: {
575
+ key: string;
576
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
577
+ description?: string | undefined;
578
+ title?: string | undefined;
579
+ ui?: {
580
+ schema?: any;
581
+ helpUri?: string | undefined;
582
+ } | undefined;
583
+ }[] | undefined;
584
+ oAuthCallbackUri?: string | undefined;
585
+ hasMissingParameters?: boolean | undefined;
586
+ hasDocumentation?: boolean | undefined;
587
+ hasOperations?: boolean | undefined;
588
+ operationsCount?: number | undefined;
589
+ hasData?: boolean | undefined;
590
+ dataCollectionsCount?: number | undefined;
591
+ hasEvents?: boolean | undefined;
592
+ eventsCount?: number | undefined;
593
+ hasGlobalWebhooks?: boolean | undefined;
594
+ hasUdm?: boolean | undefined;
595
+ appUuid?: string | undefined;
596
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
597
+ }>;
598
+ }, "strip", z.ZodTypeAny, {
599
+ integration: {
600
+ id: string;
601
+ name: string;
602
+ baseUri: string;
603
+ logoUri: string;
604
+ key?: string | undefined;
605
+ uuid?: string | undefined;
606
+ description?: string | undefined;
607
+ state?: import("..").WorkspaceElementState | undefined;
608
+ errors?: any[] | undefined;
609
+ revision?: string | undefined;
610
+ isDeactivated?: boolean | undefined;
611
+ createdAt?: string | undefined;
612
+ updatedAt?: string | undefined;
613
+ archivedAt?: string | undefined;
614
+ parameters?: any;
615
+ parametersSchema?: import("../..").DataSchema | undefined;
616
+ isTest?: boolean | undefined;
617
+ connectorId?: string | undefined;
618
+ connectorVersion?: string | undefined;
619
+ authOptions?: {
620
+ key: string;
621
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
622
+ description?: string | undefined;
623
+ title?: string | undefined;
624
+ ui?: {
625
+ schema?: any;
626
+ helpUri?: string | undefined;
627
+ } | undefined;
628
+ }[] | undefined;
629
+ oAuthCallbackUri?: string | undefined;
630
+ hasMissingParameters?: boolean | undefined;
631
+ hasDocumentation?: boolean | undefined;
632
+ hasOperations?: boolean | undefined;
633
+ operationsCount?: number | undefined;
634
+ hasData?: boolean | undefined;
635
+ dataCollectionsCount?: number | undefined;
636
+ hasEvents?: boolean | undefined;
637
+ eventsCount?: number | undefined;
638
+ hasGlobalWebhooks?: boolean | undefined;
639
+ hasUdm?: boolean | undefined;
640
+ appUuid?: string | undefined;
641
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
642
+ };
643
+ element: {
644
+ type: ActionType;
645
+ id: string;
646
+ name: string;
647
+ key?: string | undefined;
648
+ uuid?: string | undefined;
649
+ description?: string | undefined;
650
+ state?: import("..").WorkspaceElementState | undefined;
651
+ errors?: any[] | undefined;
652
+ revision?: string | undefined;
653
+ isDeactivated?: boolean | undefined;
654
+ createdAt?: string | undefined;
655
+ updatedAt?: string | undefined;
656
+ archivedAt?: string | undefined;
657
+ integrationId?: string | undefined;
658
+ parentId?: string | undefined;
659
+ parentRevision?: string | undefined;
660
+ isCustomized?: boolean | undefined;
661
+ inputSchema?: import("../..").DataSchema | undefined;
662
+ config?: any;
663
+ outputMapping?: any;
664
+ customOutputSchema?: import("../..").DataSchema | undefined;
665
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
666
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
667
+ outputSchema?: import("../..").DataSchema | undefined;
668
+ dependencies?: any[] | undefined;
669
+ };
670
+ }, {
671
+ integration: {
672
+ id: string;
673
+ name: string;
674
+ baseUri: string;
675
+ logoUri: string;
676
+ key?: string | undefined;
677
+ uuid?: string | undefined;
678
+ description?: string | undefined;
679
+ state?: import("..").WorkspaceElementState | undefined;
680
+ errors?: any[] | undefined;
681
+ revision?: string | undefined;
682
+ isDeactivated?: boolean | undefined;
683
+ createdAt?: string | undefined;
684
+ updatedAt?: string | undefined;
685
+ archivedAt?: string | undefined;
686
+ parameters?: any;
687
+ parametersSchema?: import("../..").DataSchema | undefined;
688
+ isTest?: boolean | undefined;
689
+ connectorId?: string | undefined;
690
+ connectorVersion?: string | undefined;
691
+ authOptions?: {
692
+ key: string;
693
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
694
+ description?: string | undefined;
695
+ title?: string | undefined;
696
+ ui?: {
697
+ schema?: any;
698
+ helpUri?: string | undefined;
699
+ } | undefined;
700
+ }[] | undefined;
701
+ oAuthCallbackUri?: string | undefined;
702
+ hasMissingParameters?: boolean | undefined;
703
+ hasDocumentation?: boolean | undefined;
704
+ hasOperations?: boolean | undefined;
705
+ operationsCount?: number | undefined;
706
+ hasData?: boolean | undefined;
707
+ dataCollectionsCount?: number | undefined;
708
+ hasEvents?: boolean | undefined;
709
+ eventsCount?: number | undefined;
710
+ hasGlobalWebhooks?: boolean | undefined;
711
+ hasUdm?: boolean | undefined;
712
+ appUuid?: string | undefined;
713
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
714
+ };
715
+ element: {
716
+ type: ActionType;
717
+ id: string;
718
+ name: string;
719
+ key?: string | undefined;
720
+ uuid?: string | undefined;
721
+ description?: string | undefined;
722
+ state?: import("..").WorkspaceElementState | undefined;
723
+ errors?: any[] | undefined;
724
+ revision?: string | undefined;
725
+ isDeactivated?: boolean | undefined;
726
+ createdAt?: string | undefined;
727
+ updatedAt?: string | undefined;
728
+ archivedAt?: string | undefined;
729
+ integrationId?: string | undefined;
730
+ parentId?: string | undefined;
731
+ parentRevision?: string | undefined;
732
+ isCustomized?: boolean | undefined;
733
+ inputSchema?: import("../..").DataSchema | undefined;
734
+ config?: any;
735
+ outputMapping?: any;
736
+ customOutputSchema?: import("../..").DataSchema | undefined;
737
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
738
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
739
+ outputSchema?: import("../..").DataSchema | undefined;
740
+ dependencies?: any[] | undefined;
741
+ };
742
+ }>, "many">>;
743
+ }, "strip", z.ZodTypeAny, {
744
+ type: ActionType;
745
+ id: string;
746
+ name: string;
747
+ key?: string | undefined;
748
+ integration?: {
749
+ id: string;
750
+ name: string;
751
+ baseUri: string;
752
+ logoUri: string;
753
+ key?: string | undefined;
754
+ uuid?: string | undefined;
755
+ description?: string | undefined;
756
+ state?: import("..").WorkspaceElementState | undefined;
757
+ errors?: any[] | undefined;
758
+ revision?: string | undefined;
759
+ isDeactivated?: boolean | undefined;
760
+ createdAt?: string | undefined;
761
+ updatedAt?: string | undefined;
762
+ archivedAt?: string | undefined;
763
+ parameters?: any;
764
+ parametersSchema?: import("../..").DataSchema | undefined;
765
+ isTest?: boolean | undefined;
766
+ connectorId?: string | undefined;
767
+ connectorVersion?: string | undefined;
768
+ authOptions?: {
769
+ key: string;
770
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
771
+ description?: string | undefined;
772
+ title?: string | undefined;
773
+ ui?: {
774
+ schema?: any;
775
+ helpUri?: string | undefined;
776
+ } | undefined;
777
+ }[] | undefined;
778
+ oAuthCallbackUri?: string | undefined;
779
+ hasMissingParameters?: boolean | undefined;
780
+ hasDocumentation?: boolean | undefined;
781
+ hasOperations?: boolean | undefined;
782
+ operationsCount?: number | undefined;
783
+ hasData?: boolean | undefined;
784
+ dataCollectionsCount?: number | undefined;
785
+ hasEvents?: boolean | undefined;
786
+ eventsCount?: number | undefined;
787
+ hasGlobalWebhooks?: boolean | undefined;
788
+ hasUdm?: boolean | undefined;
789
+ appUuid?: string | undefined;
790
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
791
+ } | undefined;
792
+ uuid?: string | undefined;
793
+ description?: string | undefined;
794
+ state?: import("..").WorkspaceElementState | undefined;
795
+ errors?: any[] | undefined;
796
+ revision?: string | undefined;
797
+ isDeactivated?: boolean | undefined;
798
+ createdAt?: string | undefined;
799
+ updatedAt?: string | undefined;
800
+ archivedAt?: string | undefined;
801
+ integrationId?: string | undefined;
802
+ parentId?: string | undefined;
803
+ parentRevision?: string | undefined;
804
+ isCustomized?: boolean | undefined;
805
+ inputSchema?: import("../..").DataSchema | undefined;
806
+ config?: any;
807
+ outputMapping?: any;
808
+ customOutputSchema?: import("../..").DataSchema | undefined;
809
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
810
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
811
+ outputSchema?: import("../..").DataSchema | undefined;
812
+ dependencies?: any[] | undefined;
813
+ appliedToIntegrations?: {
814
+ integration: {
815
+ id: string;
816
+ name: string;
817
+ baseUri: string;
818
+ logoUri: string;
819
+ key?: string | undefined;
820
+ uuid?: string | undefined;
821
+ description?: string | undefined;
822
+ state?: import("..").WorkspaceElementState | undefined;
823
+ errors?: any[] | undefined;
824
+ revision?: string | undefined;
825
+ isDeactivated?: boolean | undefined;
826
+ createdAt?: string | undefined;
827
+ updatedAt?: string | undefined;
828
+ archivedAt?: string | undefined;
829
+ parameters?: any;
830
+ parametersSchema?: import("../..").DataSchema | undefined;
831
+ isTest?: boolean | undefined;
832
+ connectorId?: string | undefined;
833
+ connectorVersion?: string | undefined;
834
+ authOptions?: {
835
+ key: string;
836
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
837
+ description?: string | undefined;
838
+ title?: string | undefined;
839
+ ui?: {
840
+ schema?: any;
841
+ helpUri?: string | undefined;
842
+ } | undefined;
843
+ }[] | undefined;
844
+ oAuthCallbackUri?: string | undefined;
845
+ hasMissingParameters?: boolean | undefined;
846
+ hasDocumentation?: boolean | undefined;
847
+ hasOperations?: boolean | undefined;
848
+ operationsCount?: number | undefined;
849
+ hasData?: boolean | undefined;
850
+ dataCollectionsCount?: number | undefined;
851
+ hasEvents?: boolean | undefined;
852
+ eventsCount?: number | undefined;
853
+ hasGlobalWebhooks?: boolean | undefined;
854
+ hasUdm?: boolean | undefined;
855
+ appUuid?: string | undefined;
856
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
857
+ };
858
+ element: {
859
+ type: ActionType;
860
+ id: string;
861
+ name: string;
862
+ key?: string | undefined;
863
+ uuid?: string | undefined;
864
+ description?: string | undefined;
865
+ state?: import("..").WorkspaceElementState | undefined;
866
+ errors?: any[] | undefined;
867
+ revision?: string | undefined;
868
+ isDeactivated?: boolean | undefined;
869
+ createdAt?: string | undefined;
870
+ updatedAt?: string | undefined;
871
+ archivedAt?: string | undefined;
872
+ integrationId?: string | undefined;
873
+ parentId?: string | undefined;
874
+ parentRevision?: string | undefined;
875
+ isCustomized?: boolean | undefined;
876
+ inputSchema?: import("../..").DataSchema | undefined;
877
+ config?: any;
878
+ outputMapping?: any;
879
+ customOutputSchema?: import("../..").DataSchema | undefined;
880
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
881
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
882
+ outputSchema?: import("../..").DataSchema | undefined;
883
+ dependencies?: any[] | undefined;
884
+ };
885
+ }[] | undefined;
886
+ }, {
887
+ type: ActionType;
888
+ id: string;
889
+ name: string;
890
+ key?: string | undefined;
891
+ integration?: {
892
+ id: string;
893
+ name: string;
894
+ baseUri: string;
895
+ logoUri: string;
896
+ key?: string | undefined;
897
+ uuid?: string | undefined;
898
+ description?: string | undefined;
899
+ state?: import("..").WorkspaceElementState | undefined;
900
+ errors?: any[] | undefined;
901
+ revision?: string | undefined;
902
+ isDeactivated?: boolean | undefined;
903
+ createdAt?: string | undefined;
904
+ updatedAt?: string | undefined;
905
+ archivedAt?: string | undefined;
906
+ parameters?: any;
907
+ parametersSchema?: import("../..").DataSchema | undefined;
908
+ isTest?: boolean | undefined;
909
+ connectorId?: string | undefined;
910
+ connectorVersion?: string | undefined;
911
+ authOptions?: {
912
+ key: string;
913
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
914
+ description?: string | undefined;
915
+ title?: string | undefined;
916
+ ui?: {
917
+ schema?: any;
918
+ helpUri?: string | undefined;
919
+ } | undefined;
920
+ }[] | undefined;
921
+ oAuthCallbackUri?: string | undefined;
922
+ hasMissingParameters?: boolean | undefined;
923
+ hasDocumentation?: boolean | undefined;
924
+ hasOperations?: boolean | undefined;
925
+ operationsCount?: number | undefined;
926
+ hasData?: boolean | undefined;
927
+ dataCollectionsCount?: number | undefined;
928
+ hasEvents?: boolean | undefined;
929
+ eventsCount?: number | undefined;
930
+ hasGlobalWebhooks?: boolean | undefined;
931
+ hasUdm?: boolean | undefined;
932
+ appUuid?: string | undefined;
933
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
934
+ } | undefined;
935
+ uuid?: string | undefined;
936
+ description?: string | undefined;
937
+ state?: import("..").WorkspaceElementState | undefined;
938
+ errors?: any[] | undefined;
939
+ revision?: string | undefined;
940
+ isDeactivated?: boolean | undefined;
941
+ createdAt?: string | undefined;
942
+ updatedAt?: string | undefined;
943
+ archivedAt?: string | undefined;
944
+ integrationId?: string | undefined;
945
+ parentId?: string | undefined;
946
+ parentRevision?: string | undefined;
947
+ isCustomized?: boolean | undefined;
948
+ inputSchema?: import("../..").DataSchema | undefined;
949
+ config?: any;
950
+ outputMapping?: any;
951
+ customOutputSchema?: import("../..").DataSchema | undefined;
952
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
953
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
954
+ outputSchema?: import("../..").DataSchema | undefined;
955
+ dependencies?: any[] | undefined;
956
+ appliedToIntegrations?: {
957
+ integration: {
958
+ id: string;
959
+ name: string;
960
+ baseUri: string;
961
+ logoUri: string;
962
+ key?: string | undefined;
963
+ uuid?: string | undefined;
964
+ description?: string | undefined;
965
+ state?: import("..").WorkspaceElementState | undefined;
966
+ errors?: any[] | undefined;
967
+ revision?: string | undefined;
968
+ isDeactivated?: boolean | undefined;
969
+ createdAt?: string | undefined;
970
+ updatedAt?: string | undefined;
971
+ archivedAt?: string | undefined;
972
+ parameters?: any;
973
+ parametersSchema?: import("../..").DataSchema | undefined;
974
+ isTest?: boolean | undefined;
975
+ connectorId?: string | undefined;
976
+ connectorVersion?: string | undefined;
977
+ authOptions?: {
978
+ key: string;
979
+ type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
980
+ description?: string | undefined;
981
+ title?: string | undefined;
982
+ ui?: {
983
+ schema?: any;
984
+ helpUri?: string | undefined;
985
+ } | undefined;
986
+ }[] | undefined;
987
+ oAuthCallbackUri?: string | undefined;
988
+ hasMissingParameters?: boolean | undefined;
989
+ hasDocumentation?: boolean | undefined;
990
+ hasOperations?: boolean | undefined;
991
+ operationsCount?: number | undefined;
992
+ hasData?: boolean | undefined;
993
+ dataCollectionsCount?: number | undefined;
994
+ hasEvents?: boolean | undefined;
995
+ eventsCount?: number | undefined;
996
+ hasGlobalWebhooks?: boolean | undefined;
997
+ hasUdm?: boolean | undefined;
998
+ appUuid?: string | undefined;
999
+ authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
1000
+ };
1001
+ element: {
1002
+ type: ActionType;
1003
+ id: string;
1004
+ name: string;
1005
+ key?: string | undefined;
1006
+ uuid?: string | undefined;
1007
+ description?: string | undefined;
1008
+ state?: import("..").WorkspaceElementState | undefined;
1009
+ errors?: any[] | undefined;
1010
+ revision?: string | undefined;
1011
+ isDeactivated?: boolean | undefined;
1012
+ createdAt?: string | undefined;
1013
+ updatedAt?: string | undefined;
1014
+ archivedAt?: string | undefined;
1015
+ integrationId?: string | undefined;
1016
+ parentId?: string | undefined;
1017
+ parentRevision?: string | undefined;
1018
+ isCustomized?: boolean | undefined;
1019
+ inputSchema?: import("../..").DataSchema | undefined;
1020
+ config?: any;
1021
+ outputMapping?: any;
1022
+ customOutputSchema?: import("../..").DataSchema | undefined;
1023
+ defaultOutputSchema?: import("../..").DataSchema | undefined;
1024
+ transformedOutputSchema?: import("../..").DataSchema | undefined;
1025
+ outputSchema?: import("../..").DataSchema | undefined;
1026
+ dependencies?: any[] | undefined;
1027
+ };
1028
+ }[] | undefined;
1029
+ }>;
1030
+ export type ActionApiResponse = z.infer<typeof ActionApiResponse>;
1031
+ export type Action = ActionApiResponse;