@membranehq/sdk 0.28.0 → 0.28.2
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 +60 -4
- package/dist/bundle.js +233 -126
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/actions-accessors.d.ts +1 -0
- package/dist/dts/accessors/connections-accessors.d.ts +3 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +2 -0
- package/dist/dts/agent/index.d.ts +1 -0
- package/dist/dts/agent/session-cost.d.ts +1 -0
- package/dist/dts/agent/session.d.ts +10 -2
- package/dist/dts/ai-gateway/models.d.ts +43 -0
- package/dist/dts/ai-gateway/models.test.d.ts +1 -0
- package/dist/dts/alerts/types.d.ts +7 -0
- package/dist/dts/api-client.d.ts +22 -3
- package/dist/dts/api-version.generated.d.ts +1 -1
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/membrane-instances/types.d.ts +19 -35
- package/dist/dts/membrane-instances/types.test.d.ts +1 -0
- package/dist/dts/oauth/types.d.ts +11 -5
- package/dist/dts/orgs/types.d.ts +154 -281
- package/dist/dts/webhooks/types.d.ts +4 -2
- package/dist/dts/workspace-elements/api/act-api.d.ts +33 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/connected-products-api.d.ts +6 -21
- package/dist/dts/workspace-elements/api/connection-attempt-logs-api.d.ts +53 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +15 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +5 -1
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +5 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +113 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connected-products/index.d.ts +9 -14
- package/dist/dts/workspace-elements/base/connection-attempt-logs/index.d.ts +21 -0
- package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +1 -1
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connectors/rest-api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/index.d.ts +1 -0
- package/dist/dts/workspace-elements/paths.d.ts +2 -2
- package/dist/dts/workspace-elements/types.d.ts +4 -1
- package/dist/dts/workspaces/api.d.ts +20 -0
- package/dist/dts/workspaces/compare.d.ts +1 -1
- package/dist/dts/workspaces/types.d.ts +29 -0
- package/dist/index.browser.d.mts +637 -373
- package/dist/index.browser.d.ts +637 -373
- package/dist/index.browser.js +307 -47
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +287 -44
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +637 -373
- package/dist/index.node.d.ts +637 -373
- package/dist/index.node.js +307 -47
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +287 -44
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/bundle.d.ts
CHANGED
|
@@ -25,24 +25,42 @@ interface LogRecord {
|
|
|
25
25
|
data?: any;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
interface
|
|
29
|
-
token?: string;
|
|
30
|
-
fetchToken?: () => Promise<string>;
|
|
28
|
+
interface BaseClientOptions {
|
|
31
29
|
credentials?: any;
|
|
32
30
|
fetchCredentials?: () => Promise<any>;
|
|
33
31
|
apiUri?: string;
|
|
34
32
|
uiUri?: string;
|
|
33
|
+
}
|
|
34
|
+
interface TokenBasedClientOptions extends BaseClientOptions {
|
|
35
|
+
token?: string;
|
|
36
|
+
fetchToken?: () => Promise<string>;
|
|
37
|
+
workspaceKey?: never;
|
|
38
|
+
workspaceSecret?: never;
|
|
39
|
+
tenantKey?: never;
|
|
35
40
|
accessToken?: string;
|
|
36
41
|
}
|
|
42
|
+
interface WorkspaceCredentialClientOptions extends BaseClientOptions {
|
|
43
|
+
token?: never;
|
|
44
|
+
fetchToken?: never;
|
|
45
|
+
workspaceKey: string;
|
|
46
|
+
workspaceSecret: string;
|
|
47
|
+
tenantKey: string;
|
|
48
|
+
accessToken?: never;
|
|
49
|
+
}
|
|
50
|
+
type MembraneClientOptions = TokenBasedClientOptions | WorkspaceCredentialClientOptions;
|
|
37
51
|
declare class MembraneApiClient {
|
|
38
52
|
apiUri: string;
|
|
39
53
|
uiUri: string;
|
|
40
54
|
token?: string;
|
|
41
55
|
protected fetchToken?: () => Promise<string>;
|
|
42
56
|
private logs;
|
|
57
|
+
private _workspaceKey?;
|
|
58
|
+
private _workspaceSecret?;
|
|
59
|
+
private _tenantKey?;
|
|
43
60
|
constructor(options?: MembraneClientOptions);
|
|
44
61
|
setCredentials(credentials: any): Promise<any>;
|
|
45
62
|
getToken(): Promise<string>;
|
|
63
|
+
private mintToken;
|
|
46
64
|
get<T = any>(uri: string, queryParams?: Record<string, any>, options?: AxiosRequestConfig): Promise<T>;
|
|
47
65
|
post<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
48
66
|
put<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
@@ -129,7 +147,8 @@ declare enum WorkspaceElementState {
|
|
|
129
147
|
CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
|
|
130
148
|
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
131
149
|
SETUP_FAILED = "SETUP_FAILED",
|
|
132
|
-
READY = "READY"
|
|
150
|
+
READY = "READY",
|
|
151
|
+
DISCONNECTING = "DISCONNECTING"
|
|
133
152
|
}
|
|
134
153
|
|
|
135
154
|
interface BaseElementInstance {
|
|
@@ -357,6 +376,7 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
357
376
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
358
377
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
359
378
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
379
|
+
connected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
360
380
|
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
361
381
|
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
362
382
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -369,6 +389,7 @@ declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
369
389
|
name: z.ZodOptional<z.ZodString>;
|
|
370
390
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
371
391
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
392
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
372
393
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
373
394
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
374
395
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -388,6 +409,7 @@ declare const UpdateConnectionRequest: z.ZodObject<{
|
|
|
388
409
|
name: z.ZodOptional<z.ZodString>;
|
|
389
410
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
390
411
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
412
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
391
413
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
392
414
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
393
415
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -408,12 +430,15 @@ declare const ConnectionSelector: z.ZodObject<{
|
|
|
408
430
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
409
431
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
410
432
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
433
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
411
434
|
}, z.core.$strip>;
|
|
412
435
|
type ConnectionSelector = z.infer<typeof ConnectionSelector>;
|
|
413
436
|
declare const ConnectionApiResponse: z.ZodObject<{
|
|
414
437
|
id: z.ZodString;
|
|
415
438
|
name: z.ZodString;
|
|
439
|
+
key: z.ZodOptional<z.ZodString>;
|
|
416
440
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
441
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
417
442
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
418
443
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
419
444
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -519,6 +544,7 @@ declare const ConnectPayload: z.ZodObject<{
|
|
|
519
544
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
520
545
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
521
546
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
547
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
522
548
|
name: z.ZodOptional<z.ZodString>;
|
|
523
549
|
input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
524
550
|
connectionParameters: z.ZodOptional<z.ZodAny>;
|
|
@@ -528,6 +554,7 @@ declare const ConnectPayload: z.ZodObject<{
|
|
|
528
554
|
redirectUri: z.ZodOptional<z.ZodString>;
|
|
529
555
|
customState: z.ZodOptional<z.ZodString>;
|
|
530
556
|
connectionRequestId: z.ZodOptional<z.ZodString>;
|
|
557
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
531
558
|
}, z.core.$strip>;
|
|
532
559
|
type ConnectPayload = z.infer<typeof ConnectPayload>;
|
|
533
560
|
declare const ConnectUIOptions: z.ZodObject<{
|
|
@@ -535,6 +562,8 @@ declare const ConnectUIOptions: z.ZodObject<{
|
|
|
535
562
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
536
563
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
537
564
|
name: z.ZodOptional<z.ZodString>;
|
|
565
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
566
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
538
567
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
539
568
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
540
569
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -794,6 +823,7 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
794
823
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
795
824
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
796
825
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
826
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
797
827
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
798
828
|
search: z.ZodOptional<z.ZodString>;
|
|
799
829
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -938,6 +968,7 @@ declare class ActionAccessor<RunInput = any, RunOutput = any> extends ElementAcc
|
|
|
938
968
|
run(input?: RunInput, options?: {
|
|
939
969
|
integrationKey?: string;
|
|
940
970
|
connectionId?: string;
|
|
971
|
+
connectionKey?: string;
|
|
941
972
|
}): Promise<ActionRunResponse<RunOutput>>;
|
|
942
973
|
}
|
|
943
974
|
declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<ActionApiResponse, UpdateActionRequest> {
|
|
@@ -3629,7 +3660,9 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
3629
3660
|
connection: z.ZodOptional<z.ZodObject<{
|
|
3630
3661
|
id: z.ZodString;
|
|
3631
3662
|
name: z.ZodString;
|
|
3663
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3632
3664
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
3665
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
3633
3666
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
3634
3667
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
3635
3668
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -3832,7 +3865,9 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
3832
3865
|
connection: z.ZodOptional<z.ZodObject<{
|
|
3833
3866
|
id: z.ZodString;
|
|
3834
3867
|
name: z.ZodString;
|
|
3868
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3835
3869
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
3870
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
3836
3871
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
3837
3872
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
3838
3873
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -4185,7 +4220,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
4185
4220
|
connection: z.ZodOptional<z.ZodObject<{
|
|
4186
4221
|
id: z.ZodString;
|
|
4187
4222
|
name: z.ZodString;
|
|
4223
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4188
4224
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4225
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
4189
4226
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
4190
4227
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
4191
4228
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -4309,6 +4346,7 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
4309
4346
|
integration: "integration";
|
|
4310
4347
|
universal: "universal";
|
|
4311
4348
|
}>>;
|
|
4349
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
4312
4350
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
4313
4351
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
4314
4352
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -4868,7 +4906,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
4868
4906
|
connection: z.ZodOptional<z.ZodObject<{
|
|
4869
4907
|
id: z.ZodString;
|
|
4870
4908
|
name: z.ZodString;
|
|
4909
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4871
4910
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4911
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
4872
4912
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
4873
4913
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
4874
4914
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -5075,6 +5115,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
5075
5115
|
integration: "integration";
|
|
5076
5116
|
universal: "universal";
|
|
5077
5117
|
}>>;
|
|
5118
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
5078
5119
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
5079
5120
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5080
5121
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -5230,6 +5271,9 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
5230
5271
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
5231
5272
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
5232
5273
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
5274
|
+
connectors: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5275
|
+
externalApps: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5276
|
+
websearch: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5233
5277
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5234
5278
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5235
5279
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -5289,7 +5333,9 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
5289
5333
|
connection: z.ZodOptional<z.ZodObject<{
|
|
5290
5334
|
id: z.ZodString;
|
|
5291
5335
|
name: z.ZodString;
|
|
5336
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5292
5337
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
5338
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
5293
5339
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
5294
5340
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
5295
5341
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -5351,6 +5397,7 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
5351
5397
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
5352
5398
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5353
5399
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5400
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
5354
5401
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5355
5402
|
search: z.ZodOptional<z.ZodString>;
|
|
5356
5403
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -5798,7 +5845,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
5798
5845
|
connection: z.ZodOptional<z.ZodObject<{
|
|
5799
5846
|
id: z.ZodString;
|
|
5800
5847
|
name: z.ZodString;
|
|
5848
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5801
5849
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
5850
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
5802
5851
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
5803
5852
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
5804
5853
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -5903,6 +5952,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
5903
5952
|
integration: "integration";
|
|
5904
5953
|
universal: "universal";
|
|
5905
5954
|
}>>;
|
|
5955
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
5906
5956
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
5907
5957
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5908
5958
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -6359,7 +6409,9 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
6359
6409
|
connection: z.ZodOptional<z.ZodObject<{
|
|
6360
6410
|
id: z.ZodString;
|
|
6361
6411
|
name: z.ZodString;
|
|
6412
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6362
6413
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
6414
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
6363
6415
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
6364
6416
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
6365
6417
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -6609,7 +6661,9 @@ declare class ConnectionAccessor {
|
|
|
6609
6661
|
createdAt: string;
|
|
6610
6662
|
updatedAt: string;
|
|
6611
6663
|
userId: string;
|
|
6664
|
+
key?: string | undefined;
|
|
6612
6665
|
isTest?: boolean | undefined;
|
|
6666
|
+
connected?: boolean | undefined;
|
|
6613
6667
|
disconnected?: boolean | undefined;
|
|
6614
6668
|
isDefunct?: boolean | undefined;
|
|
6615
6669
|
state?: WorkspaceElementState | undefined;
|
|
@@ -6845,7 +6899,9 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
6845
6899
|
createdAt: string;
|
|
6846
6900
|
updatedAt: string;
|
|
6847
6901
|
userId: string;
|
|
6902
|
+
key?: string | undefined;
|
|
6848
6903
|
isTest?: boolean | undefined;
|
|
6904
|
+
connected?: boolean | undefined;
|
|
6849
6905
|
disconnected?: boolean | undefined;
|
|
6850
6906
|
isDefunct?: boolean | undefined;
|
|
6851
6907
|
state?: WorkspaceElementState | undefined;
|