@membranehq/sdk 0.15.5 → 0.16.0
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 +51 -2
- package/dist/bundle.js +94 -30
- 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/auth/auth-context-permissions.d.ts +59 -0
- package/dist/dts/auth/index.d.ts +1 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +27 -0
- package/dist/dts/self-hosting-tokens/index.d.ts +1 -0
- package/dist/dts/self-hosting-tokens/types.d.ts +38 -0
- package/dist/dts/ui.test.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +16 -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 +8 -0
- package/dist/dts/workspace-elements/api/connections-api.test.d.ts +1 -0
- 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 +2 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +4 -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 +0 -4
- 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/workspace-elements/utils/index.d.ts +1 -0
- package/dist/dts/workspace-elements/utils/zod-schema-utils.d.ts +2 -0
- package/dist/dts/workspace-elements/utils/zod-schema-utils.test.d.ts +1 -0
- package/dist/index.browser.d.mts +257 -6
- package/dist/index.browser.d.ts +257 -6
- package/dist/index.browser.js +199 -38
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +190 -39
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +257 -6
- package/dist/index.node.d.ts +257 -6
- package/dist/index.node.js +199 -38
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +190 -39
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -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;
|
|
@@ -34,6 +34,7 @@ export * from './validation';
|
|
|
34
34
|
export * from './functions';
|
|
35
35
|
export * from './dto';
|
|
36
36
|
export * from './async-requests';
|
|
37
|
+
export * from './self-hosting-tokens';
|
|
37
38
|
export * from './console-paths';
|
|
38
39
|
export { MembraneClient as IntegrationAppClient, MembraneClient } from './client';
|
|
39
40
|
export { axios as MembraneAxiosInstance } from './api-client';
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -687,6 +687,33 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
687
687
|
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
688
688
|
}, z.core.$strip>>>;
|
|
689
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>>;
|
|
690
717
|
featureFlags: z.ZodOptional<z.ZodAny>;
|
|
691
718
|
message: z.ZodOptional<z.ZodString>;
|
|
692
719
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const SelfHostingToken: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
orgId: z.ZodString;
|
|
6
|
+
tokenPrefix: z.ZodString;
|
|
7
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
8
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
9
|
+
lastUsedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
export type SelfHostingToken = z.infer<typeof SelfHostingToken>;
|
|
12
|
+
export declare const CreateSelfHostingTokenRequest: z.ZodObject<{
|
|
13
|
+
name: z.ZodString;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
|
+
export type CreateSelfHostingTokenRequest = z.infer<typeof CreateSelfHostingTokenRequest>;
|
|
16
|
+
export declare const CreateSelfHostingTokenResponse: z.ZodObject<{
|
|
17
|
+
id: z.ZodString;
|
|
18
|
+
name: z.ZodString;
|
|
19
|
+
orgId: z.ZodString;
|
|
20
|
+
tokenPrefix: z.ZodString;
|
|
21
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
22
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
23
|
+
lastUsedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24
|
+
token: z.ZodString;
|
|
25
|
+
}, z.core.$strip>;
|
|
26
|
+
export type CreateSelfHostingTokenResponse = z.infer<typeof CreateSelfHostingTokenResponse>;
|
|
27
|
+
export declare const UpdateSelfHostingTokenRequest: z.ZodObject<{
|
|
28
|
+
name: z.ZodString;
|
|
29
|
+
}, z.core.$strip>;
|
|
30
|
+
export type UpdateSelfHostingTokenRequest = z.infer<typeof UpdateSelfHostingTokenRequest>;
|
|
31
|
+
export declare const ValidateSelfHostingTokenRequest: z.ZodObject<{}, z.core.$strip>;
|
|
32
|
+
export type ValidateSelfHostingTokenRequest = z.infer<typeof ValidateSelfHostingTokenRequest>;
|
|
33
|
+
export declare const ValidateSelfHostingTokenResponse: z.ZodObject<{
|
|
34
|
+
valid: z.ZodBoolean;
|
|
35
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
36
|
+
orgName: z.ZodOptional<z.ZodString>;
|
|
37
|
+
}, z.core.$strip>;
|
|
38
|
+
export type ValidateSelfHostingTokenResponse = z.infer<typeof ValidateSelfHostingTokenResponse>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -43,10 +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>;
|
|
49
50
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
51
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
50
52
|
userId: z.ZodOptional<z.ZodString>;
|
|
51
53
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
52
54
|
}, z.core.$strip>>;
|
|
@@ -76,10 +78,12 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
76
78
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
77
79
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
78
80
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
79
82
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
80
83
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
81
84
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
82
85
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
86
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
83
87
|
userId: z.ZodOptional<z.ZodString>;
|
|
84
88
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
85
89
|
}, z.core.$strip>>;
|
|
@@ -95,6 +99,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
95
99
|
revision: z.ZodOptional<z.ZodString>;
|
|
96
100
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
97
101
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
102
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
98
103
|
logoUri: z.ZodString;
|
|
99
104
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
100
105
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -226,10 +231,12 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
226
231
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
227
232
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
228
233
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
234
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
229
235
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
230
236
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
231
237
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
232
238
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
233
240
|
userId: z.ZodOptional<z.ZodString>;
|
|
234
241
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
235
242
|
}, z.core.$strip>>;
|
|
@@ -259,10 +266,12 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
259
266
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
260
267
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
261
268
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
262
270
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
263
271
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
264
272
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
265
273
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
274
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
266
275
|
userId: z.ZodOptional<z.ZodString>;
|
|
267
276
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
268
277
|
}, z.core.$strip>>;
|
|
@@ -278,6 +287,7 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
278
287
|
revision: z.ZodOptional<z.ZodString>;
|
|
279
288
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
280
289
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
290
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
281
291
|
logoUri: z.ZodString;
|
|
282
292
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
283
293
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -28,9 +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>;
|
|
33
34
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
35
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
34
36
|
userId: z.ZodOptional<z.ZodString>;
|
|
35
37
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
36
38
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -45,6 +47,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
45
47
|
revision: z.ZodOptional<z.ZodString>;
|
|
46
48
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
47
49
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
50
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
48
51
|
logoUri: z.ZodString;
|
|
49
52
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
50
53
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -117,10 +120,12 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
117
120
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
118
121
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
119
122
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
123
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
120
124
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
121
125
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
122
126
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
123
127
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
128
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
124
129
|
userId: z.ZodOptional<z.ZodString>;
|
|
125
130
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
126
131
|
}, z.core.$strip>>;
|
|
@@ -151,10 +156,12 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
151
156
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
152
157
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
153
158
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
154
160
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
155
161
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
156
162
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
157
163
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
164
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
158
165
|
userId: z.ZodOptional<z.ZodString>;
|
|
159
166
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
160
167
|
}, z.core.$strip>;
|
|
@@ -170,6 +177,7 @@ export declare const ActionApiResponse: z.ZodObject<{
|
|
|
170
177
|
revision: z.ZodOptional<z.ZodString>;
|
|
171
178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
172
179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
180
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
173
181
|
logoUri: z.ZodString;
|
|
174
182
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
175
183
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -351,9 +359,11 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
351
359
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
352
360
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
353
361
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
362
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
354
363
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
355
364
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
356
365
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
366
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
357
367
|
userId: z.ZodOptional<z.ZodString>;
|
|
358
368
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
359
369
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -368,6 +378,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
368
378
|
revision: z.ZodOptional<z.ZodString>;
|
|
369
379
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
370
380
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
381
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
371
382
|
logoUri: z.ZodString;
|
|
372
383
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
373
384
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -440,10 +451,12 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
440
451
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
441
452
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
442
453
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
454
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
443
455
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
444
456
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
445
457
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
446
458
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
459
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
447
460
|
userId: z.ZodOptional<z.ZodString>;
|
|
448
461
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
449
462
|
}, z.core.$strip>>;
|
|
@@ -474,10 +487,12 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
474
487
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
475
488
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
476
489
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
490
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
477
491
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
478
492
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
479
493
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
480
494
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
495
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
481
496
|
userId: z.ZodOptional<z.ZodString>;
|
|
482
497
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
483
498
|
}, z.core.$strip>;
|
|
@@ -493,6 +508,7 @@ export declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
493
508
|
revision: z.ZodOptional<z.ZodString>;
|
|
494
509
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
495
510
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
511
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
496
512
|
logoUri: z.ZodString;
|
|
497
513
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
498
514
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -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>;
|
|
@@ -387,6 +390,11 @@ export declare const ConnectUIOptions: z.ZodObject<{
|
|
|
387
390
|
connectionParameters: z.ZodOptional<z.ZodAny>;
|
|
388
391
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
389
392
|
customState: z.ZodOptional<z.ZodString>;
|
|
393
|
+
theme: z.ZodOptional<z.ZodEnum<{
|
|
394
|
+
light: "light";
|
|
395
|
+
dark: "dark";
|
|
396
|
+
auto: "auto";
|
|
397
|
+
}>>;
|
|
390
398
|
}, z.core.$strip>;
|
|
391
399
|
export type ConnectUIOptions = z.infer<typeof ConnectUIOptions>;
|
|
392
400
|
export type ConnectOptions = ConnectPayload & {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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>;
|