@membranehq/sdk 0.17.2 → 0.17.4
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 +12 -4
- package/dist/bundle.js +5 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/clusters/types.d.ts +19 -0
- package/dist/dts/index.browser.d.ts +2 -0
- package/dist/dts/orgs/types.d.ts +2 -2
- package/dist/dts/pending-tasks/index.d.ts +1 -0
- package/dist/dts/pending-tasks/types.d.ts +48 -0
- package/dist/dts/platform-users/index.d.ts +1 -3
- package/dist/dts/stats/index.d.ts +3 -3
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +15 -6
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/customers-api.d.ts +16 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +12 -4
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -1
- package/dist/dts/workspace-elements/base/action-run-log-records/index.d.ts +5 -2
- package/dist/dts/workspace-elements/base/external-events/api.d.ts +4 -2
- package/dist/dts/workspace-elements/base/flow-runs/index.d.ts +4 -1
- package/dist/dts/workspace-elements/filter-meta.d.ts +2 -0
- package/dist/index.browser.d.mts +141 -31
- package/dist/index.browser.d.ts +141 -31
- package/dist/index.browser.js +152 -44
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +146 -45
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +141 -31
- package/dist/index.node.d.ts +141 -31
- package/dist/index.node.js +152 -44
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +146 -45
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.ts
CHANGED
|
@@ -10829,8 +10829,11 @@ declare const BaseFlowRun: z.ZodObject<{
|
|
|
10829
10829
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10830
10830
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
10831
10831
|
name: z.ZodOptional<z.ZodString>;
|
|
10832
|
-
|
|
10832
|
+
connectionFlowId: z.ZodString;
|
|
10833
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
10833
10834
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
10835
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
10836
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
10834
10837
|
startNodeKey: z.ZodString;
|
|
10835
10838
|
input: z.ZodOptional<z.ZodAny>;
|
|
10836
10839
|
state: z.ZodEnum<typeof FlowRunState>;
|
|
@@ -11929,8 +11932,11 @@ declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
11929
11932
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
11930
11933
|
id: z.ZodString;
|
|
11931
11934
|
name: z.ZodString;
|
|
11932
|
-
|
|
11933
|
-
|
|
11935
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
11936
|
+
integrationActionId: z.ZodString;
|
|
11937
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
11938
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
11939
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
11934
11940
|
integrationId: z.ZodString;
|
|
11935
11941
|
connectionId: z.ZodString;
|
|
11936
11942
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -12730,15 +12736,17 @@ type CreateFlowRunRequest = z.infer<typeof CreateFlowRunRequest>;
|
|
|
12730
12736
|
declare const FindFlowRunsQuery: z.ZodObject<{
|
|
12731
12737
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12732
12738
|
cursor: z.ZodOptional<z.ZodString>;
|
|
12733
|
-
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
12734
12739
|
flowId: z.ZodOptional<z.ZodString>;
|
|
12735
12740
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
12741
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
12742
|
+
connectionFlowId: z.ZodOptional<z.ZodString>;
|
|
12736
12743
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12737
12744
|
userId: z.ZodOptional<z.ZodString>;
|
|
12738
12745
|
state: z.ZodOptional<z.ZodEnum<typeof FlowRunState>>;
|
|
12739
12746
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12740
12747
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12741
|
-
|
|
12748
|
+
from: z.ZodOptional<z.ZodString>;
|
|
12749
|
+
to: z.ZodOptional<z.ZodString>;
|
|
12742
12750
|
}, z.core.$strip>;
|
|
12743
12751
|
type FindFlowRunsQuery = z.infer<typeof FindFlowRunsQuery>;
|
|
12744
12752
|
declare const FlowRunLaunchedByApi: z.ZodObject<{
|
|
@@ -12753,8 +12761,11 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12753
12761
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12754
12762
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12755
12763
|
name: z.ZodOptional<z.ZodString>;
|
|
12756
|
-
|
|
12764
|
+
connectionFlowId: z.ZodString;
|
|
12765
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
12757
12766
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
12767
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
12768
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
12758
12769
|
startNodeKey: z.ZodString;
|
|
12759
12770
|
input: z.ZodOptional<z.ZodAny>;
|
|
12760
12771
|
state: z.ZodEnum<typeof FlowRunState>;
|
|
@@ -12935,8 +12946,11 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12935
12946
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12936
12947
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12937
12948
|
name: z.ZodOptional<z.ZodString>;
|
|
12938
|
-
|
|
12949
|
+
connectionFlowId: z.ZodString;
|
|
12950
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
12939
12951
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
12952
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
12953
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
12940
12954
|
startNodeKey: z.ZodString;
|
|
12941
12955
|
input: z.ZodOptional<z.ZodAny>;
|
|
12942
12956
|
state: z.ZodEnum<typeof FlowRunState>;
|
|
@@ -17037,6 +17051,22 @@ declare const CustomerApiResponse: z.ZodObject<{
|
|
|
17037
17051
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17038
17052
|
}, z.core.$strip>;
|
|
17039
17053
|
type CustomerApiResponse = z.infer<typeof CustomerApiResponse>;
|
|
17054
|
+
declare const TenantSelfResponse: z.ZodObject<{
|
|
17055
|
+
id: z.ZodString;
|
|
17056
|
+
name: z.ZodString;
|
|
17057
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17058
|
+
internalId: z.ZodString;
|
|
17059
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17060
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
17061
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
17062
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
17063
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
17064
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
17065
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
17066
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17067
|
+
workspaceKey: z.ZodOptional<z.ZodString>;
|
|
17068
|
+
}, z.core.$strip>;
|
|
17069
|
+
type TenantSelfResponse = z.infer<typeof TenantSelfResponse>;
|
|
17040
17070
|
type Customer = CustomerApiResponse;
|
|
17041
17071
|
type User = Customer;
|
|
17042
17072
|
|
|
@@ -17365,7 +17395,8 @@ interface FindExternalEventLogsQuery extends PaginationQuery {
|
|
|
17365
17395
|
externalEventSubscriptionId?: string;
|
|
17366
17396
|
connectionId?: string;
|
|
17367
17397
|
integrationId?: string;
|
|
17368
|
-
|
|
17398
|
+
from?: string;
|
|
17399
|
+
to?: string;
|
|
17369
17400
|
status?: ExternalEventLogStatus;
|
|
17370
17401
|
}
|
|
17371
17402
|
interface ExternalEventCustomPullSubscribeResponse {
|
|
@@ -18141,8 +18172,11 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
18141
18172
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18142
18173
|
id: z.ZodString;
|
|
18143
18174
|
name: z.ZodString;
|
|
18144
|
-
|
|
18145
|
-
|
|
18175
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
18176
|
+
integrationActionId: z.ZodString;
|
|
18177
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
18178
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
18179
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
18146
18180
|
integrationId: z.ZodString;
|
|
18147
18181
|
connectionId: z.ZodString;
|
|
18148
18182
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -18318,14 +18352,17 @@ type ActionRunLogRecordApiResponse = z.infer<typeof ActionRunLogRecordApiRespons
|
|
|
18318
18352
|
declare const FindActionRunLogsQuery: z.ZodObject<{
|
|
18319
18353
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
18320
18354
|
cursor: z.ZodOptional<z.ZodString>;
|
|
18321
|
-
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
18322
18355
|
actionId: z.ZodOptional<z.ZodString>;
|
|
18356
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
18357
|
+
integrationActionId: z.ZodOptional<z.ZodString>;
|
|
18358
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
18323
18359
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18324
18360
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
18325
18361
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18326
18362
|
userId: z.ZodOptional<z.ZodString>;
|
|
18327
18363
|
status: z.ZodOptional<z.ZodEnum<typeof ActionRunLogStatus>>;
|
|
18328
|
-
|
|
18364
|
+
from: z.ZodOptional<z.ZodString>;
|
|
18365
|
+
to: z.ZodOptional<z.ZodString>;
|
|
18329
18366
|
}, z.core.$strip>;
|
|
18330
18367
|
type FindActionRunLogsQuery = z.infer<typeof FindActionRunLogsQuery>;
|
|
18331
18368
|
declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
@@ -18334,8 +18371,11 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18334
18371
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18335
18372
|
id: z.ZodString;
|
|
18336
18373
|
name: z.ZodString;
|
|
18337
|
-
|
|
18338
|
-
|
|
18374
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
18375
|
+
integrationActionId: z.ZodString;
|
|
18376
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
18377
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
18378
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
18339
18379
|
integrationId: z.ZodString;
|
|
18340
18380
|
connectionId: z.ZodString;
|
|
18341
18381
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -19078,7 +19118,8 @@ declare const ListExternalEventLogRecordsQuery: z.ZodObject<{
|
|
|
19078
19118
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
19079
19119
|
externalEventSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
19080
19120
|
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventLogStatus>>;
|
|
19081
|
-
|
|
19121
|
+
from: z.ZodOptional<z.ZodString>;
|
|
19122
|
+
to: z.ZodOptional<z.ZodString>;
|
|
19082
19123
|
}, z.core.$strip>;
|
|
19083
19124
|
type ListExternalEventLogRecordsQuery = z.infer<typeof ListExternalEventLogRecordsQuery>;
|
|
19084
19125
|
declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
@@ -19241,7 +19282,8 @@ declare const FindExternalEventPullsQuery: z.ZodObject<{
|
|
|
19241
19282
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19242
19283
|
userId: z.ZodOptional<z.ZodString>;
|
|
19243
19284
|
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventPullStatus>>;
|
|
19244
|
-
|
|
19285
|
+
from: z.ZodOptional<z.ZodString>;
|
|
19286
|
+
to: z.ZodOptional<z.ZodString>;
|
|
19245
19287
|
}, z.core.$strip>;
|
|
19246
19288
|
type FindExternalEventPullsQuery = z.infer<typeof FindExternalEventPullsQuery>;
|
|
19247
19289
|
declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
@@ -19394,8 +19436,8 @@ declare const ListAppEventLogRecordsQuery: z.ZodObject<{
|
|
|
19394
19436
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19395
19437
|
userId: z.ZodOptional<z.ZodString>;
|
|
19396
19438
|
appEventTypeId: z.ZodOptional<z.ZodString>;
|
|
19397
|
-
|
|
19398
|
-
|
|
19439
|
+
from: z.ZodOptional<z.ZodString>;
|
|
19440
|
+
to: z.ZodOptional<z.ZodString>;
|
|
19399
19441
|
}, z.core.$strip>;
|
|
19400
19442
|
type ListAppEventLogRecordsQuery = z.infer<typeof ListAppEventLogRecordsQuery>;
|
|
19401
19443
|
declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
@@ -19492,8 +19534,8 @@ declare const ListExternalApiLogsQuery: z.ZodObject<{
|
|
|
19492
19534
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
19493
19535
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
19494
19536
|
isSuccess: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
19495
|
-
|
|
19496
|
-
|
|
19537
|
+
from: z.ZodOptional<z.ZodString>;
|
|
19538
|
+
to: z.ZodOptional<z.ZodString>;
|
|
19497
19539
|
sortOrder: z.ZodOptional<z.ZodEnum<{
|
|
19498
19540
|
desc: "desc";
|
|
19499
19541
|
asc: "asc";
|
|
@@ -19608,7 +19650,8 @@ declare const ListIncomingWebhooksQuery: z.ZodObject<{
|
|
|
19608
19650
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
19609
19651
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
19610
19652
|
status: z.ZodOptional<z.ZodEnum<typeof IncomingWebhooksState>>;
|
|
19611
|
-
|
|
19653
|
+
from: z.ZodOptional<z.ZodString>;
|
|
19654
|
+
to: z.ZodOptional<z.ZodString>;
|
|
19612
19655
|
}, z.core.$strip>;
|
|
19613
19656
|
type ListIncomingWebhooksQuery = z.infer<typeof ListIncomingWebhooksQuery>;
|
|
19614
19657
|
declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
@@ -19885,6 +19928,8 @@ interface FilterFieldMeta {
|
|
|
19885
19928
|
filterTitle?: string;
|
|
19886
19929
|
hidden?: boolean;
|
|
19887
19930
|
isFlag?: boolean;
|
|
19931
|
+
isDatetime?: boolean;
|
|
19932
|
+
useWorkspaceSearch?: boolean;
|
|
19888
19933
|
}
|
|
19889
19934
|
declare function getFilterFieldMeta(meta: unknown): FilterFieldMeta | undefined;
|
|
19890
19935
|
|
|
@@ -21148,7 +21193,6 @@ declare function getElementSelector(type: WorkspaceElementType, key: string, int
|
|
|
21148
21193
|
declare const IneligibilityReasonSchema: z.ZodEnum<{
|
|
21149
21194
|
disposable: "disposable";
|
|
21150
21195
|
blockedDomain: "blockedDomain";
|
|
21151
|
-
notCompanyEmail: "notCompanyEmail";
|
|
21152
21196
|
}>;
|
|
21153
21197
|
type IneligibilityReason = z.infer<typeof IneligibilityReasonSchema>;
|
|
21154
21198
|
declare const PlatformUser: z.ZodObject<{
|
|
@@ -21160,7 +21204,6 @@ declare const PlatformUser: z.ZodObject<{
|
|
|
21160
21204
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
21161
21205
|
disposable: "disposable";
|
|
21162
21206
|
blockedDomain: "blockedDomain";
|
|
21163
|
-
notCompanyEmail: "notCompanyEmail";
|
|
21164
21207
|
}>>;
|
|
21165
21208
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
21166
21209
|
}, z.core.$strip>;
|
|
@@ -21179,9 +21222,9 @@ declare const FullPlatformUser: z.ZodObject<{
|
|
|
21179
21222
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
21180
21223
|
disposable: "disposable";
|
|
21181
21224
|
blockedDomain: "blockedDomain";
|
|
21182
|
-
notCompanyEmail: "notCompanyEmail";
|
|
21183
21225
|
}>>;
|
|
21184
21226
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
21227
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
21185
21228
|
}, z.core.$strip>;
|
|
21186
21229
|
type FullPlatformUser = z.infer<typeof FullPlatformUser>;
|
|
21187
21230
|
|
|
@@ -21364,9 +21407,9 @@ declare const FullOrgUser: z.ZodObject<{
|
|
|
21364
21407
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
21365
21408
|
disposable: "disposable";
|
|
21366
21409
|
blockedDomain: "blockedDomain";
|
|
21367
|
-
notCompanyEmail: "notCompanyEmail";
|
|
21368
21410
|
}>>;
|
|
21369
21411
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
21412
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
21370
21413
|
}, z.core.$strip>;
|
|
21371
21414
|
org: z.ZodObject<{
|
|
21372
21415
|
id: z.ZodString;
|
|
@@ -21501,9 +21544,9 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21501
21544
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
21502
21545
|
disposable: "disposable";
|
|
21503
21546
|
blockedDomain: "blockedDomain";
|
|
21504
|
-
notCompanyEmail: "notCompanyEmail";
|
|
21505
21547
|
}>>;
|
|
21506
21548
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
21549
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
21507
21550
|
}, z.core.$strip>>;
|
|
21508
21551
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
21509
21552
|
id: z.ZodString;
|
|
@@ -22613,13 +22656,13 @@ declare const IntegrationLayerStatsQuery: z.ZodObject<{
|
|
|
22613
22656
|
type IntegrationLayerStatsQuery = z.infer<typeof IntegrationLayerStatsQuery>;
|
|
22614
22657
|
declare const ActionRunsStatsQuery: z.ZodObject<{
|
|
22615
22658
|
actionId: z.ZodOptional<z.ZodString>;
|
|
22616
|
-
|
|
22659
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
22617
22660
|
startDatetime: z.ZodString;
|
|
22618
22661
|
}, z.core.$strip>;
|
|
22619
22662
|
type ActionRunsStatsQuery = z.infer<typeof ActionRunsStatsQuery>;
|
|
22620
22663
|
declare const FlowRunsStatsQuery: z.ZodObject<{
|
|
22621
|
-
|
|
22622
|
-
|
|
22664
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
22665
|
+
connectionFlowId: z.ZodOptional<z.ZodString>;
|
|
22623
22666
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
22624
22667
|
startDatetime: z.ZodString;
|
|
22625
22668
|
}, z.core.$strip>;
|
|
@@ -23461,6 +23504,73 @@ type OAuthTokenResponse = z.infer<typeof OAuthTokenResponse>;
|
|
|
23461
23504
|
|
|
23462
23505
|
declare const CONSOLE_ACCOUNT_API_TOKEN_PATH = "settings/account/api-token";
|
|
23463
23506
|
|
|
23507
|
+
declare const PendingQueueCountSchema: z.ZodObject<{
|
|
23508
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23509
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23510
|
+
}, z.core.$strip>;
|
|
23511
|
+
type PendingQueueCount = z.infer<typeof PendingQueueCountSchema>;
|
|
23512
|
+
declare const DbBackedCountsSchema: z.ZodObject<{
|
|
23513
|
+
flowRuns: z.ZodObject<{
|
|
23514
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23515
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23516
|
+
}, z.core.$strip>;
|
|
23517
|
+
eventPulls: z.ZodObject<{
|
|
23518
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23519
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23520
|
+
}, z.core.$strip>;
|
|
23521
|
+
eventLogs: z.ZodObject<{
|
|
23522
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23523
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23524
|
+
}, z.core.$strip>;
|
|
23525
|
+
}, z.core.$strip>;
|
|
23526
|
+
type DbBackedCounts = z.infer<typeof DbBackedCountsSchema>;
|
|
23527
|
+
declare const PendingTasksSummarySchema: z.ZodObject<{
|
|
23528
|
+
instant: z.ZodOptional<z.ZodObject<{
|
|
23529
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23530
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23531
|
+
}, z.core.$strip>>;
|
|
23532
|
+
queued: z.ZodOptional<z.ZodObject<{
|
|
23533
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23534
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23535
|
+
}, z.core.$strip>>;
|
|
23536
|
+
dbBacked: z.ZodOptional<z.ZodObject<{
|
|
23537
|
+
flowRuns: z.ZodObject<{
|
|
23538
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23539
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23540
|
+
}, z.core.$strip>;
|
|
23541
|
+
eventPulls: z.ZodObject<{
|
|
23542
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23543
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23544
|
+
}, z.core.$strip>;
|
|
23545
|
+
eventLogs: z.ZodObject<{
|
|
23546
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
23547
|
+
error: z.ZodOptional<z.ZodString>;
|
|
23548
|
+
}, z.core.$strip>;
|
|
23549
|
+
}, z.core.$strip>>;
|
|
23550
|
+
total: z.ZodNumber;
|
|
23551
|
+
}, z.core.$strip>;
|
|
23552
|
+
type PendingTasksSummary = z.infer<typeof PendingTasksSummarySchema>;
|
|
23553
|
+
type WorkerTypeFilter = 'instant' | 'queued';
|
|
23554
|
+
|
|
23555
|
+
declare const Cluster: z.ZodObject<{
|
|
23556
|
+
id: z.ZodString;
|
|
23557
|
+
name: z.ZodString;
|
|
23558
|
+
apiBaseUri: z.ZodString;
|
|
23559
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
23560
|
+
}, z.core.$strip>;
|
|
23561
|
+
type ClusterDto = z.infer<typeof Cluster>;
|
|
23562
|
+
declare const CreateClusterRequest: z.ZodObject<{
|
|
23563
|
+
name: z.ZodString;
|
|
23564
|
+
apiBaseUri: z.ZodString;
|
|
23565
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
23566
|
+
}, z.core.$strip>;
|
|
23567
|
+
type CreateClusterRequest = z.infer<typeof CreateClusterRequest>;
|
|
23568
|
+
declare const ListClustersQuery: z.ZodObject<{
|
|
23569
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
23570
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
23571
|
+
}, z.core.$strip>;
|
|
23572
|
+
type ListClustersQuery = z.infer<typeof ListClustersQuery>;
|
|
23573
|
+
|
|
23464
23574
|
declare class UI {
|
|
23465
23575
|
private client;
|
|
23466
23576
|
constructor(client: MembraneApiClient);
|
|
@@ -23521,5 +23631,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
23521
23631
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
23522
23632
|
}
|
|
23523
23633
|
|
|
23524
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
23525
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
23634
|
+
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, Cluster, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateClusterRequest, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListClustersQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
23635
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ClusterDto, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DbBackedCounts, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|