@membranehq/sdk 0.15.4 → 0.15.6
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 +69 -4
- package/dist/bundle.js +163 -6
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +1 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +1 -0
- package/dist/dts/api-client.d.ts +6 -2
- package/dist/dts/auth/auth-context-permissions.d.ts +59 -0
- package/dist/dts/auth/index.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +37 -0
- package/dist/dts/scenario-templates/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +25 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +12 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +32 -10
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +3 -0
- package/dist/dts/workspace-elements/base/action-instances/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +6 -0
- package/dist/dts/workspace-elements/base/app-data-schemas/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/app-event-subscriptions/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/app-event-types/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +2 -4
- package/dist/dts/workspace-elements/base/data-collections/schemas.d.ts +1 -1
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/packages/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +5 -0
- package/dist/dts/workspaces/types.d.ts +33 -1
- package/dist/index.browser.d.mts +309 -39
- package/dist/index.browser.d.ts +309 -39
- package/dist/index.browser.js +126 -9
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +124 -10
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +309 -39
- package/dist/index.node.d.ts +309 -39
- package/dist/index.node.js +126 -9
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +124 -10
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -92,6 +92,7 @@ export declare class ConnectionAccessor {
|
|
|
92
92
|
revision?: string | undefined;
|
|
93
93
|
createdAt?: string | undefined;
|
|
94
94
|
updatedAt?: string | undefined;
|
|
95
|
+
isReadOnly?: boolean | undefined;
|
|
95
96
|
connectorId?: string | undefined;
|
|
96
97
|
connectorVersion?: string | undefined;
|
|
97
98
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -99,6 +99,7 @@ export declare class IntegrationAccessor extends ElementAccessor<IntegrationApiR
|
|
|
99
99
|
revision?: string | undefined;
|
|
100
100
|
createdAt?: string | undefined;
|
|
101
101
|
updatedAt?: string | undefined;
|
|
102
|
+
isReadOnly?: boolean | undefined;
|
|
102
103
|
connectorId?: string | undefined;
|
|
103
104
|
connectorVersion?: string | undefined;
|
|
104
105
|
oAuthCallbackUri?: string | undefined;
|
package/dist/dts/api-client.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { AxiosRequestConfig } from 'axios';
|
|
2
|
+
import { LogRecord } from './logging';
|
|
2
3
|
export declare const axios: import("axios").AxiosInstance;
|
|
3
|
-
export declare const DEFAULT_API_URI = "https://api.
|
|
4
|
-
export declare const DEFAULT_UI_URI = "https://
|
|
4
|
+
export declare const DEFAULT_API_URI = "https://api.getmembrane.com";
|
|
5
|
+
export declare const DEFAULT_UI_URI = "https://console.getmembrane.com";
|
|
5
6
|
export interface MembraneClientOptions {
|
|
6
7
|
token?: string;
|
|
7
8
|
fetchToken?: () => Promise<string>;
|
|
@@ -16,6 +17,7 @@ export declare class MembraneApiClient {
|
|
|
16
17
|
uiUri: string;
|
|
17
18
|
token?: string;
|
|
18
19
|
protected fetchToken?: () => Promise<string>;
|
|
20
|
+
private logs;
|
|
19
21
|
constructor(options?: MembraneClientOptions);
|
|
20
22
|
setCredentials(credentials: any): Promise<any>;
|
|
21
23
|
getToken(): Promise<string>;
|
|
@@ -24,6 +26,7 @@ export declare class MembraneApiClient {
|
|
|
24
26
|
put<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
25
27
|
patch<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
26
28
|
delete<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
29
|
+
retrieveLogs(): LogRecord[];
|
|
27
30
|
createEventSource(uri: string, queryParams?: Record<string, any>): Promise<EventSource>;
|
|
28
31
|
getEmbedUri(page: string, pageParams?: Record<string, any>, options?: {
|
|
29
32
|
embedMode: 'isolated-embed' | 'popup-embed';
|
|
@@ -36,5 +39,6 @@ export declare class MembraneApiClient {
|
|
|
36
39
|
};
|
|
37
40
|
}>;
|
|
38
41
|
private makeApiRequest;
|
|
42
|
+
private log;
|
|
39
43
|
private handleRequestError;
|
|
40
44
|
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
declare const PlatformUserPermissionsSchema: z.ZodObject<{
|
|
3
|
+
isEngineAdmin: z.ZodBoolean;
|
|
4
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
5
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const OrgPermissionsSchema: z.ZodObject<{
|
|
8
|
+
orgId: z.ZodString;
|
|
9
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
10
|
+
admin: "admin";
|
|
11
|
+
member: "member";
|
|
12
|
+
}>>;
|
|
13
|
+
canRead: z.ZodBoolean;
|
|
14
|
+
canWrite: z.ZodBoolean;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
17
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
18
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
19
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
22
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
23
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
24
|
+
canRead: z.ZodBoolean;
|
|
25
|
+
canWrite: z.ZodBoolean;
|
|
26
|
+
}, z.core.$strip>;
|
|
27
|
+
export declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
28
|
+
platformUser: z.ZodObject<{
|
|
29
|
+
isEngineAdmin: z.ZodBoolean;
|
|
30
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
31
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
org: z.ZodOptional<z.ZodObject<{
|
|
34
|
+
orgId: z.ZodString;
|
|
35
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
36
|
+
admin: "admin";
|
|
37
|
+
member: "member";
|
|
38
|
+
}>>;
|
|
39
|
+
canRead: z.ZodBoolean;
|
|
40
|
+
canWrite: z.ZodBoolean;
|
|
41
|
+
}, z.core.$strip>>;
|
|
42
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
43
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
44
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
45
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
46
|
+
}, z.core.$strip>>;
|
|
47
|
+
tenant: z.ZodOptional<z.ZodObject<{
|
|
48
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
49
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
50
|
+
canRead: z.ZodBoolean;
|
|
51
|
+
canWrite: z.ZodBoolean;
|
|
52
|
+
}, z.core.$strip>>;
|
|
53
|
+
}, z.core.$strip>;
|
|
54
|
+
export type PlatformUserPermissions = z.infer<typeof PlatformUserPermissionsSchema>;
|
|
55
|
+
export type OrgPermissions = z.infer<typeof OrgPermissionsSchema>;
|
|
56
|
+
export type WorkspacePermissions = z.infer<typeof WorkspacePermissionsSchema>;
|
|
57
|
+
export type TenantPermissions = z.infer<typeof TenantPermissionsSchema>;
|
|
58
|
+
export type AuthContextPermissions = z.infer<typeof AuthContextPermissionsSchema>;
|
|
59
|
+
export {};
|
package/dist/dts/auth/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OrgWorkspace } from '../orgs/types';
|
|
2
2
|
import { CustomerApiResponse } from '../workspace-elements/api/customers-api';
|
|
3
3
|
export * from './accessors';
|
|
4
|
+
export * from './auth-context-permissions';
|
|
4
5
|
export interface Self {
|
|
5
6
|
user: CustomerApiResponse;
|
|
6
7
|
workspace: OrgWorkspace;
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -516,6 +516,16 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
516
516
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
517
517
|
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
518
518
|
}, z.core.$strip>>;
|
|
519
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
520
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
521
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
522
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
523
|
+
}, z.core.$strip>>;
|
|
524
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
525
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
526
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
527
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
528
|
+
}, z.core.$strip>>;
|
|
519
529
|
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
520
530
|
value: z.ZodOptional<z.ZodNumber>;
|
|
521
531
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -677,6 +687,33 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
677
687
|
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
678
688
|
}, z.core.$strip>>>;
|
|
679
689
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
690
|
+
authContextPermissions: z.ZodOptional<z.ZodObject<{
|
|
691
|
+
platformUser: z.ZodObject<{
|
|
692
|
+
isEngineAdmin: z.ZodBoolean;
|
|
693
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
694
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
695
|
+
}, z.core.$strip>;
|
|
696
|
+
org: z.ZodOptional<z.ZodObject<{
|
|
697
|
+
orgId: z.ZodString;
|
|
698
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
699
|
+
admin: "admin";
|
|
700
|
+
member: "member";
|
|
701
|
+
}>>;
|
|
702
|
+
canRead: z.ZodBoolean;
|
|
703
|
+
canWrite: z.ZodBoolean;
|
|
704
|
+
}, z.core.$strip>>;
|
|
705
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
706
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
707
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
708
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
709
|
+
}, z.core.$strip>>;
|
|
710
|
+
tenant: z.ZodOptional<z.ZodObject<{
|
|
711
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
712
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
713
|
+
canRead: z.ZodBoolean;
|
|
714
|
+
canWrite: z.ZodBoolean;
|
|
715
|
+
}, z.core.$strip>>;
|
|
716
|
+
}, z.core.$strip>>;
|
|
680
717
|
featureFlags: z.ZodOptional<z.ZodAny>;
|
|
681
718
|
message: z.ZodOptional<z.ZodString>;
|
|
682
719
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -133,6 +133,8 @@ export declare const ScenarioTemplate: z.ZodObject<{
|
|
|
133
133
|
key: z.ZodString;
|
|
134
134
|
name: z.ZodString;
|
|
135
135
|
logoUri: z.ZodString;
|
|
136
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
137
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
136
138
|
}, z.core.$strip>>>;
|
|
137
139
|
handyElements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
138
140
|
type: z.ZodString;
|
|
@@ -43,9 +43,12 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
43
43
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
44
44
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
45
45
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
46
47
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
47
48
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
48
49
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
50
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
51
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
49
52
|
userId: z.ZodOptional<z.ZodString>;
|
|
50
53
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
51
54
|
}, z.core.$strip>>;
|
|
@@ -75,9 +78,12 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
75
78
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
76
79
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
77
80
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
78
82
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
79
83
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
80
84
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
85
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
86
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
81
87
|
userId: z.ZodOptional<z.ZodString>;
|
|
82
88
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
83
89
|
}, z.core.$strip>>;
|
|
@@ -93,6 +99,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
93
99
|
revision: z.ZodOptional<z.ZodString>;
|
|
94
100
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
95
101
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
102
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
96
103
|
logoUri: z.ZodString;
|
|
97
104
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
98
105
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -224,9 +231,12 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
224
231
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
225
232
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
226
233
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
234
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
227
235
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
228
236
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
229
237
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
238
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
230
240
|
userId: z.ZodOptional<z.ZodString>;
|
|
231
241
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
232
242
|
}, z.core.$strip>>;
|
|
@@ -256,9 +266,12 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
256
266
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
257
267
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
258
268
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
259
270
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
260
271
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
261
272
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
273
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
274
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
262
275
|
userId: z.ZodOptional<z.ZodString>;
|
|
263
276
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
264
277
|
}, z.core.$strip>>;
|
|
@@ -274,6 +287,7 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
274
287
|
revision: z.ZodOptional<z.ZodString>;
|
|
275
288
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
276
289
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
290
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
277
291
|
logoUri: z.ZodString;
|
|
278
292
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
279
293
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -28,8 +28,11 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
28
28
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29
29
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
30
30
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
31
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
31
32
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
32
33
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
34
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
35
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
33
36
|
userId: z.ZodOptional<z.ZodString>;
|
|
34
37
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
35
38
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -44,6 +47,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
44
47
|
revision: z.ZodOptional<z.ZodString>;
|
|
45
48
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
46
49
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
50
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
47
51
|
logoUri: z.ZodString;
|
|
48
52
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
49
53
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -116,9 +120,12 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
116
120
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
117
121
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
118
122
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
123
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
119
124
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
120
125
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
121
126
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
127
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
128
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
122
129
|
userId: z.ZodOptional<z.ZodString>;
|
|
123
130
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
124
131
|
}, z.core.$strip>>;
|
|
@@ -149,9 +156,12 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
149
156
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
150
157
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
151
158
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
152
160
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
153
161
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
154
162
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
163
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
164
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
155
165
|
userId: z.ZodOptional<z.ZodString>;
|
|
156
166
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
157
167
|
}, z.core.$strip>;
|
|
@@ -167,6 +177,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
167
177
|
revision: z.ZodOptional<z.ZodString>;
|
|
168
178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
169
179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
180
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
170
181
|
logoUri: z.ZodString;
|
|
171
182
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
172
183
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -227,6 +238,7 @@ export declare const FindActionsQuery: z.ZodObject<{
|
|
|
227
238
|
}>>;
|
|
228
239
|
parentId: z.ZodOptional<z.ZodString>;
|
|
229
240
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
241
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
230
242
|
}, z.core.$strip>;
|
|
231
243
|
export type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
232
244
|
export declare const CreateActionRequest: z.ZodObject<{
|
|
@@ -347,8 +359,11 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
347
359
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
348
360
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
349
361
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
362
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
350
363
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
351
364
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
365
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
366
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
352
367
|
userId: z.ZodOptional<z.ZodString>;
|
|
353
368
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
354
369
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -363,6 +378,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
363
378
|
revision: z.ZodOptional<z.ZodString>;
|
|
364
379
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
365
380
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
381
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
366
382
|
logoUri: z.ZodString;
|
|
367
383
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
368
384
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -435,9 +451,12 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
435
451
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
436
452
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
437
453
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
454
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
438
455
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
439
456
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
440
457
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
458
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
441
460
|
userId: z.ZodOptional<z.ZodString>;
|
|
442
461
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
443
462
|
}, z.core.$strip>>;
|
|
@@ -468,9 +487,12 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
468
487
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
469
488
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
470
489
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
490
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
471
491
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
472
492
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
473
493
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
494
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
495
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
474
496
|
userId: z.ZodOptional<z.ZodString>;
|
|
475
497
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
476
498
|
}, z.core.$strip>;
|
|
@@ -486,6 +508,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
486
508
|
revision: z.ZodOptional<z.ZodString>;
|
|
487
509
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
488
510
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
511
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
489
512
|
logoUri: z.ZodString;
|
|
490
513
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
491
514
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -548,6 +571,7 @@ export declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
|
548
571
|
}>>;
|
|
549
572
|
parentId: z.ZodOptional<z.ZodString>;
|
|
550
573
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
574
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
551
575
|
}, z.core.$strip>;
|
|
552
576
|
export type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
553
577
|
export declare const FindActionInstancesQuery: z.ZodObject<{
|
|
@@ -570,6 +594,7 @@ export declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
570
594
|
}>>;
|
|
571
595
|
parentId: z.ZodOptional<z.ZodString>;
|
|
572
596
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
597
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
573
598
|
}, z.core.$strip>;
|
|
574
599
|
export type FindActionInstancesQuery = FindActionsQuery;
|
|
575
600
|
export interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
@@ -37,6 +37,7 @@ export declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
37
37
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
38
38
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
39
39
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
40
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
40
41
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
41
42
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
42
43
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -74,6 +75,7 @@ export declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
74
75
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
75
76
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
76
77
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
78
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
77
79
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
78
80
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
79
81
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -41,6 +41,7 @@ export declare const AppDataSchemaApiResponse: z.ZodObject<{
|
|
|
41
41
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
42
42
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
43
43
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
44
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
44
45
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
45
46
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
46
47
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -42,6 +42,7 @@ export declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
42
42
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
43
43
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
44
44
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
45
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
45
46
|
revision: z.ZodString;
|
|
46
47
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
47
48
|
webhookKey: z.ZodString;
|
|
@@ -71,6 +72,7 @@ export declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
71
72
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
72
73
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
73
74
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
75
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
74
76
|
revision: z.ZodString;
|
|
75
77
|
appEventTypeId: z.ZodString;
|
|
76
78
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -37,6 +37,7 @@ export declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
37
37
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
38
38
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
39
39
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
40
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
40
41
|
revision: z.ZodString;
|
|
41
42
|
appEventTypeId: z.ZodString;
|
|
42
43
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -66,6 +67,7 @@ export declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
66
67
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
67
68
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
68
69
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
70
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
69
71
|
revision: z.ZodString;
|
|
70
72
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
71
73
|
webhookKey: z.ZodString;
|
|
@@ -46,6 +46,7 @@ export declare const AppEventTypeApiResponse: z.ZodObject<{
|
|
|
46
46
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
47
47
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
48
48
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
49
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
49
50
|
revision: z.ZodString;
|
|
50
51
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
51
52
|
webhookKey: z.ZodString;
|
|
@@ -128,6 +128,7 @@ export declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
128
128
|
revision: z.ZodOptional<z.ZodString>;
|
|
129
129
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
130
130
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
131
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
131
132
|
logoUri: z.ZodString;
|
|
132
133
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
133
134
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -213,6 +214,7 @@ export declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
213
214
|
revision: z.ZodOptional<z.ZodString>;
|
|
214
215
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
215
216
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
217
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
216
218
|
logoUri: z.ZodString;
|
|
217
219
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
218
220
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -306,6 +308,7 @@ export declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
306
308
|
revision: z.ZodOptional<z.ZodString>;
|
|
307
309
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
308
310
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
311
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
309
312
|
logoUri: z.ZodString;
|
|
310
313
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
311
314
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const CreateCustomerRequest: z.ZodObject<{
|
|
3
3
|
name: z.ZodString;
|
|
4
|
-
internalId: z.ZodString
|
|
4
|
+
internalId: z.ZodOptional<z.ZodString>;
|
|
5
5
|
fields: z.ZodOptional<z.ZodAny>;
|
|
6
6
|
credentials: z.ZodOptional<z.ZodAny>;
|
|
7
7
|
}, z.core.$strip>;
|
|
@@ -108,6 +108,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
108
108
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
109
109
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
110
110
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
111
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
111
112
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
112
113
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
113
114
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -129,6 +130,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
129
130
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
130
131
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
131
132
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
133
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
132
134
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
133
135
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
134
136
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -173,6 +175,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
173
175
|
revision: z.ZodOptional<z.ZodString>;
|
|
174
176
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
175
177
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
178
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
176
179
|
logoUri: z.ZodString;
|
|
177
180
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
178
181
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -60,6 +60,7 @@ export declare const DataLinkTableApiResponse: z.ZodObject<{
|
|
|
60
60
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
61
61
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
62
62
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
63
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
63
64
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
64
65
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
65
66
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29,6 +29,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
29
29
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
30
30
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
31
31
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
32
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
32
33
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
33
34
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
34
35
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -159,6 +160,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
159
160
|
revision: z.ZodOptional<z.ZodString>;
|
|
160
161
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
161
162
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
163
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
162
164
|
logoUri: z.ZodString;
|
|
163
165
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
164
166
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -218,6 +220,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
218
220
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
219
221
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
220
222
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
223
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
221
224
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
222
225
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
223
226
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -349,6 +352,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
349
352
|
revision: z.ZodOptional<z.ZodString>;
|
|
350
353
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
351
354
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
355
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
352
356
|
logoUri: z.ZodString;
|
|
353
357
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
354
358
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -448,6 +452,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
448
452
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
449
453
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
450
454
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
455
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
451
456
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
452
457
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
453
458
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -597,6 +602,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
597
602
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
598
603
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
599
604
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
605
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
600
606
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
601
607
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
602
608
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -727,6 +733,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
727
733
|
revision: z.ZodOptional<z.ZodString>;
|
|
728
734
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
729
735
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
736
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
730
737
|
logoUri: z.ZodString;
|
|
731
738
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
732
739
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -786,6 +793,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
786
793
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
787
794
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
788
795
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
796
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
789
797
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
790
798
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
791
799
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -917,6 +925,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
917
925
|
revision: z.ZodOptional<z.ZodString>;
|
|
918
926
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
919
927
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
928
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
920
929
|
logoUri: z.ZodString;
|
|
921
930
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
922
931
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -1016,6 +1025,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1016
1025
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1017
1026
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
1018
1027
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
1028
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1019
1029
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
1020
1030
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
1021
1031
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -1158,6 +1168,7 @@ export declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
1158
1168
|
}>>;
|
|
1159
1169
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1160
1170
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1171
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1161
1172
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
1162
1173
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
1163
1174
|
}, z.core.$strip>;
|
|
@@ -1180,6 +1191,7 @@ export declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
1180
1191
|
}>>;
|
|
1181
1192
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1182
1193
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1194
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1183
1195
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
1184
1196
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
1185
1197
|
}, z.core.$strip>;
|
|
@@ -78,6 +78,7 @@ export declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
78
78
|
revision: z.ZodOptional<z.ZodString>;
|
|
79
79
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
80
80
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
81
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
81
82
|
logoUri: z.ZodString;
|
|
82
83
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
83
84
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -88,6 +88,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
88
88
|
revision: z.ZodOptional<z.ZodString>;
|
|
89
89
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
90
90
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
91
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
91
92
|
logoUri: z.ZodString;
|
|
92
93
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
93
94
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -101,6 +101,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
101
101
|
revision: z.ZodOptional<z.ZodString>;
|
|
102
102
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
103
103
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
104
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
104
105
|
logoUri: z.ZodString;
|
|
105
106
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
106
107
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -98,6 +98,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
98
98
|
revision: z.ZodOptional<z.ZodString>;
|
|
99
99
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
100
100
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
101
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
101
102
|
logoUri: z.ZodString;
|
|
102
103
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
103
104
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -104,6 +104,7 @@ export declare const ExternalEvent: z.ZodObject<{
|
|
|
104
104
|
revision: z.ZodOptional<z.ZodString>;
|
|
105
105
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
106
106
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
107
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
107
108
|
logoUri: z.ZodString;
|
|
108
109
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
109
110
|
connectorVersion: z.ZodOptional<z.ZodString>;
|