@membranehq/sdk 0.11.2 → 0.11.3
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 +35 -32
- package/dist/bundle.js +1 -0
- package/dist/bundle.js.map +1 -1
- package/dist/dts/async-requests/index.d.ts +1 -0
- package/dist/dts/async-requests/types.d.ts +20 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +18 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +19 -19
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +12 -9
- package/dist/dts/workspace-elements/api/connections-api.d.ts +5 -7
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +5 -4
- package/dist/dts/workspace-elements/api/external-apps-api.d.ts +0 -2
- package/dist/dts/workspace-elements/api/packages-api.d.ts +5 -5
- package/dist/dts/workspace-elements/types.d.ts +5 -5
- package/dist/index.browser.d.mts +84 -46
- package/dist/index.browser.d.ts +84 -46
- package/dist/index.browser.js +104 -16
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +102 -17
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +84 -46
- package/dist/index.node.d.ts +84 -46
- package/dist/index.node.js +104 -16
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +102 -17
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { ErrorDataSchema } from '../errors';
|
|
3
|
+
export declare enum AsyncRequestStatus {
|
|
4
|
+
PENDING = "pending",
|
|
5
|
+
ACTIVE = "active",
|
|
6
|
+
COMPLETED = "completed",
|
|
7
|
+
FAILED = "failed"
|
|
8
|
+
}
|
|
9
|
+
export type AsyncRequestStatusResponse<T = Record<string, any>> = {
|
|
10
|
+
id: string;
|
|
11
|
+
status: AsyncRequestStatus;
|
|
12
|
+
progress?: number;
|
|
13
|
+
result?: T;
|
|
14
|
+
error?: z.infer<typeof ErrorDataSchema>;
|
|
15
|
+
};
|
|
16
|
+
export declare const AsyncRequestTriggerResponse: z.ZodObject<{
|
|
17
|
+
jobId: z.ZodString;
|
|
18
|
+
accessKey: z.ZodString;
|
|
19
|
+
}, z.core.$strip>;
|
|
20
|
+
export type AsyncRequestTriggerResponse = z.infer<typeof AsyncRequestTriggerResponse>;
|
|
@@ -33,6 +33,7 @@ export * from './agent';
|
|
|
33
33
|
export * from './validation';
|
|
34
34
|
export * from './functions';
|
|
35
35
|
export * from './dto';
|
|
36
|
+
export * from './async-requests';
|
|
36
37
|
export { MembraneClient as IntegrationAppClient } from './client';
|
|
37
38
|
export { MembraneClient as MembraneClient } from './client';
|
|
38
39
|
export { axios as MembraneAxiosInstance } from './api-client';
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -139,6 +139,24 @@ export declare const OrgSchema: z.ZodObject<{
|
|
|
139
139
|
infraAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
140
140
|
effectiveFeatureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
141
141
|
}, z.core.$strip>;
|
|
142
|
+
export declare const EngineCreditsProjectionResponse: z.ZodObject<{
|
|
143
|
+
averageDailyUsage: z.ZodNumber;
|
|
144
|
+
daysRemainingInMonth: z.ZodNumber;
|
|
145
|
+
totalBudget: z.ZodNumber;
|
|
146
|
+
budgetBreakdown: z.ZodObject<{
|
|
147
|
+
currentCredits: z.ZodNumber;
|
|
148
|
+
freeMonthlyRefill: z.ZodNumber;
|
|
149
|
+
autoPurchaseBudget: z.ZodNumber;
|
|
150
|
+
}, z.core.$strip>;
|
|
151
|
+
dailyProjections: z.ZodArray<z.ZodObject<{
|
|
152
|
+
date: z.ZodString;
|
|
153
|
+
projectedUsage: z.ZodNumber;
|
|
154
|
+
projectedBalance: z.ZodNumber;
|
|
155
|
+
}, z.core.$strip>>;
|
|
156
|
+
daysUntilExhaustion: z.ZodNullable<z.ZodNumber>;
|
|
157
|
+
willRunOut: z.ZodBoolean;
|
|
158
|
+
}, z.core.$strip>;
|
|
159
|
+
export type EngineCreditsProjection = z.infer<typeof EngineCreditsProjectionResponse>;
|
|
142
160
|
export declare const AccountResponse: z.ZodObject<{
|
|
143
161
|
user: z.ZodOptional<z.ZodObject<{
|
|
144
162
|
id: z.ZodString;
|
|
@@ -205,11 +205,6 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
205
205
|
export type ActionApiResponse = z.infer<typeof ActionApiResponse>;
|
|
206
206
|
export type Action = ActionApiResponse;
|
|
207
207
|
export declare const FindActionsQuery: z.ZodObject<{
|
|
208
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
209
|
-
connection: "connection";
|
|
210
|
-
integration: "integration";
|
|
211
|
-
universal: "universal";
|
|
212
|
-
}>>;
|
|
213
208
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
214
209
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
215
210
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -218,12 +213,17 @@ export declare const FindActionsQuery: z.ZodObject<{
|
|
|
218
213
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
219
214
|
cursor: z.ZodOptional<z.ZodString>;
|
|
220
215
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
221
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
222
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
223
216
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
224
217
|
userId: z.ZodOptional<z.ZodString>;
|
|
225
218
|
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
226
219
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
220
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
221
|
+
connection: "connection";
|
|
222
|
+
integration: "integration";
|
|
223
|
+
universal: "universal";
|
|
224
|
+
}>>;
|
|
225
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
226
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
227
227
|
}, z.core.$strip>;
|
|
228
228
|
export type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
229
229
|
export declare const CreateActionRequest: z.ZodObject<{
|
|
@@ -522,11 +522,6 @@ export type ActionInstance = ActionInstanceApiResponse;
|
|
|
522
522
|
export interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
523
523
|
}
|
|
524
524
|
export declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
525
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
526
|
-
connection: "connection";
|
|
527
|
-
integration: "integration";
|
|
528
|
-
universal: "universal";
|
|
529
|
-
}>>;
|
|
530
525
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
531
526
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
532
527
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -535,20 +530,20 @@ export declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
|
535
530
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
536
531
|
cursor: z.ZodOptional<z.ZodString>;
|
|
537
532
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
538
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
539
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
540
533
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
541
534
|
userId: z.ZodOptional<z.ZodString>;
|
|
542
535
|
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
543
536
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
544
|
-
}, z.core.$strip>;
|
|
545
|
-
export type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
546
|
-
export declare const FindActionInstancesQuery: z.ZodObject<{
|
|
547
537
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
548
538
|
connection: "connection";
|
|
549
539
|
integration: "integration";
|
|
550
540
|
universal: "universal";
|
|
551
541
|
}>>;
|
|
542
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
543
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
544
|
+
}, z.core.$strip>;
|
|
545
|
+
export type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
546
|
+
export declare const FindActionInstancesQuery: z.ZodObject<{
|
|
552
547
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
553
548
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
554
549
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -557,12 +552,17 @@ export declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
557
552
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
558
553
|
cursor: z.ZodOptional<z.ZodString>;
|
|
559
554
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
560
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
561
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
562
555
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
563
556
|
userId: z.ZodOptional<z.ZodString>;
|
|
564
557
|
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
565
558
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
559
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
560
|
+
connection: "connection";
|
|
561
|
+
integration: "integration";
|
|
562
|
+
universal: "universal";
|
|
563
|
+
}>>;
|
|
564
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
565
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
566
566
|
}, z.core.$strip>;
|
|
567
567
|
export type FindActionInstancesQuery = FindActionsQuery;
|
|
568
568
|
export interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
export declare const FindAppDataSchemaInstancesQuery: z.ZodObject<{
|
|
3
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
5
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
7
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
8
|
+
appDataSchemaId: z.ZodOptional<z.ZodString>;
|
|
9
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
export type FindAppDataSchemaInstancesQuery = z.infer<typeof FindAppDataSchemaInstancesQuery>;
|
|
9
12
|
export interface AppDataSchemaInstanceSelector {
|
|
10
13
|
id?: string;
|
|
11
14
|
appDataSchemaKey?: string;
|
|
@@ -24,7 +27,7 @@ export declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
24
27
|
description: z.ZodOptional<z.ZodString>;
|
|
25
28
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26
29
|
name: z.ZodString;
|
|
27
|
-
state: z.ZodOptional<z.ZodEnum<typeof import("
|
|
30
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("../types").WorkspaceElementState>>;
|
|
28
31
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
29
32
|
revision: z.ZodOptional<z.ZodString>;
|
|
30
33
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -59,7 +62,7 @@ export declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
59
62
|
description: z.ZodOptional<z.ZodString>;
|
|
60
63
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
61
64
|
name: z.ZodString;
|
|
62
|
-
state: z.ZodOptional<z.ZodEnum<typeof import("
|
|
65
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("../types").WorkspaceElementState>>;
|
|
63
66
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
64
67
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
65
68
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -6,15 +6,13 @@ export declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
6
6
|
cursor: z.ZodOptional<z.ZodString>;
|
|
7
7
|
search: z.ZodOptional<z.ZodString>;
|
|
8
8
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
9
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
10
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11
|
-
id: z.ZodOptional<z.ZodString>;
|
|
12
9
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
14
|
-
name: z.ZodOptional<z.ZodString>;
|
|
15
|
-
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
16
|
-
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
17
10
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
12
|
+
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13
|
+
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
14
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
15
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
18
16
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
19
17
|
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
20
18
|
}, z.core.$strip>;
|
|
@@ -7,6 +7,7 @@ export declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
|
7
7
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8
8
|
cursor: z.ZodOptional<z.ZodString>;
|
|
9
9
|
id: z.ZodOptional<z.ZodString>;
|
|
10
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
10
11
|
userId: z.ZodOptional<z.ZodString>;
|
|
11
12
|
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
12
13
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -97,7 +98,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
97
98
|
description: z.ZodOptional<z.ZodString>;
|
|
98
99
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
99
100
|
name: z.ZodString;
|
|
100
|
-
state: z.ZodOptional<z.ZodEnum<typeof import("
|
|
101
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("../types").WorkspaceElementState>>;
|
|
101
102
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
102
103
|
revision: z.ZodOptional<z.ZodString>;
|
|
103
104
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -116,7 +117,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
116
117
|
description: z.ZodOptional<z.ZodString>;
|
|
117
118
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
118
119
|
name: z.ZodString;
|
|
119
|
-
state: z.ZodOptional<z.ZodEnum<typeof import("
|
|
120
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("../types").WorkspaceElementState>>;
|
|
120
121
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
121
122
|
revision: z.ZodOptional<z.ZodString>;
|
|
122
123
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -131,7 +132,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
131
132
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
132
133
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
133
134
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
134
|
-
state: z.ZodOptional<z.ZodEnum<typeof import("
|
|
135
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("../types").WorkspaceElementState>>;
|
|
135
136
|
error: z.ZodOptional<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>;
|
|
136
137
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
137
138
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -156,7 +157,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
156
157
|
description: z.ZodOptional<z.ZodString>;
|
|
157
158
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
158
159
|
name: z.ZodString;
|
|
159
|
-
state: z.ZodOptional<z.ZodEnum<typeof import("
|
|
160
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("../types").WorkspaceElementState>>;
|
|
160
161
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
161
162
|
revision: z.ZodOptional<z.ZodString>;
|
|
162
163
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -4,7 +4,5 @@ export declare const ListExternalAppsQuery: z.ZodObject<{
|
|
|
4
4
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5
5
|
search: z.ZodOptional<z.ZodString>;
|
|
6
6
|
category: z.ZodOptional<z.ZodString>;
|
|
7
|
-
hasAuth: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8
|
-
hasData: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
9
7
|
}, z.core.$strip>;
|
|
10
8
|
export type ListExternalAppsQuery = z.infer<typeof ListExternalAppsQuery>;
|
|
@@ -7,11 +7,6 @@ export declare const PackageElementApi: z.ZodObject<{
|
|
|
7
7
|
}, z.core.$strip>;
|
|
8
8
|
export type PackageElementApi = z.infer<typeof PackageElementApi>;
|
|
9
9
|
export declare const FindPackagesQuery: z.ZodObject<{
|
|
10
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
11
|
-
connection: "connection";
|
|
12
|
-
integration: "integration";
|
|
13
|
-
universal: "universal";
|
|
14
|
-
}>>;
|
|
15
10
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
16
11
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
17
12
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -25,6 +20,11 @@ export declare const FindPackagesQuery: z.ZodObject<{
|
|
|
25
20
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
26
21
|
userId: z.ZodOptional<z.ZodString>;
|
|
27
22
|
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
23
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
24
|
+
connection: "connection";
|
|
25
|
+
integration: "integration";
|
|
26
|
+
universal: "universal";
|
|
27
|
+
}>>;
|
|
28
28
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
29
29
|
}, z.core.$strip>;
|
|
30
30
|
export type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
|
|
@@ -158,11 +158,6 @@ export declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject
|
|
|
158
158
|
}, z.core.$strip>;
|
|
159
159
|
export type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
|
|
160
160
|
export declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
161
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
162
|
-
connection: "connection";
|
|
163
|
-
integration: "integration";
|
|
164
|
-
universal: "universal";
|
|
165
|
-
}>>;
|
|
166
161
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
167
162
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
168
163
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -176,6 +171,11 @@ export declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
|
176
171
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
177
172
|
userId: z.ZodOptional<z.ZodString>;
|
|
178
173
|
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
174
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
175
|
+
connection: "connection";
|
|
176
|
+
integration: "integration";
|
|
177
|
+
universal: "universal";
|
|
178
|
+
}>>;
|
|
179
179
|
}, z.core.$strip>;
|
|
180
180
|
export type FindIntegrationLevelMembraneInterfaceQuery = z.infer<typeof FindIntegrationLevelMembraneInterfaceQuery>;
|
|
181
181
|
export declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|