@membranehq/sdk 0.9.8 → 0.9.10
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 +290 -247
- package/dist/bundle.js +12284 -3529
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/base-accessors.d.ts +9 -7
- package/dist/dts/agent/session.d.ts +8 -10
- package/dist/dts/{entity-repository.d.ts → api/index.d.ts} +31 -8
- package/dist/dts/index.browser.d.ts +2 -2
- package/dist/dts/integration-elements/connection-level-element.accessor.d.ts +1 -1
- package/dist/dts/integration-elements/integration-level-element.accessor.d.ts +1 -1
- package/dist/dts/scenario-templates/index.d.ts +1 -1
- package/dist/dts/usage/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +212 -1
- package/dist/dts/workspace-elements/api/actions-api.d.ts +4 -1
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +12 -8
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +22 -13
- package/dist/dts/workspace-elements/api/connections-api.d.ts +11 -5
- package/dist/dts/workspace-elements/api/connectors-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +55 -17
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +17 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/external-apps-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +1 -8
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/flows-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +26 -8
- package/dist/dts/workspace-elements/api/packages-api.d.ts +23 -9
- package/dist/dts/workspace-elements/api/screens-api.d.ts +7 -4
- package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +1 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +3 -0
- package/dist/dts/{apps/types.d.ts → workspace-elements/base/external-apps/index.d.ts} +1 -0
- package/dist/dts/workspace-elements/base/external-events/api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +122 -1
- package/dist/dts/workspace-elements/base/packages/index.d.ts +37 -6
- package/dist/dts/workspace-elements/types.d.ts +17 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +8 -7
- package/dist/index.browser.d.mts +1801 -1356
- package/dist/index.browser.d.ts +1801 -1356
- package/dist/index.browser.js +258 -71
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +231 -72
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1801 -1356
- package/dist/index.node.d.ts +1801 -1356
- package/dist/index.node.js +258 -71
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +231 -72
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/dts/apps/index.d.ts +0 -1
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +0 -104
package/dist/index.browser.js
CHANGED
|
@@ -3394,28 +3394,42 @@ const zodBooleanCoercion = () => z.z.preprocess((val) => {
|
|
|
3394
3394
|
return Boolean(val);
|
|
3395
3395
|
}, z.z.boolean());
|
|
3396
3396
|
|
|
3397
|
+
const PaginationQuery = z.z.object({
|
|
3398
|
+
limit: z.z.coerce.number().int().min(1).max(1000).optional(),
|
|
3399
|
+
cursor: z.z.string().optional(),
|
|
3400
|
+
});
|
|
3401
|
+
function createPaginationResponseSchema(itemSchema) {
|
|
3402
|
+
return z.z.object({
|
|
3403
|
+
items: z.z.array(itemSchema),
|
|
3404
|
+
cursor: z.z.string().optional(),
|
|
3405
|
+
});
|
|
3406
|
+
}
|
|
3407
|
+
class PaginationResponse {
|
|
3408
|
+
}
|
|
3397
3409
|
const IncludeArchivedQuery = z.z.object({
|
|
3398
3410
|
includeArchived: zodBooleanCoercion().optional(),
|
|
3399
3411
|
});
|
|
3400
3412
|
const SearchQuery = z.z.object({
|
|
3401
3413
|
search: z.z.string().optional(),
|
|
3402
3414
|
});
|
|
3403
|
-
const PaginationQuery = z.z.object({
|
|
3404
|
-
limit: z.z.coerce.number().int().min(1).max(1000).optional(),
|
|
3405
|
-
cursor: z.z.string().optional(),
|
|
3406
|
-
});
|
|
3407
3415
|
const CommonListElementsQuery = SearchQuery.merge(PaginationQuery).merge(IncludeArchivedQuery);
|
|
3416
|
+
const CommonFindElementsQuery = CommonListElementsQuery.extend({
|
|
3417
|
+
connectorId: z.z.string().optional(),
|
|
3418
|
+
});
|
|
3408
3419
|
const CommonInstancesListQuery = CommonListElementsQuery.extend({
|
|
3409
3420
|
userId: z.z.string().optional(),
|
|
3410
3421
|
instanceKey: z.z.string().optional(),
|
|
3411
3422
|
});
|
|
3423
|
+
const CommonFindInstancesQuery = CommonFindElementsQuery.extend({
|
|
3424
|
+
id: z.z.string().optional(),
|
|
3425
|
+
userId: z.z.string().optional(),
|
|
3426
|
+
instanceKey: z.z.string().optional(),
|
|
3427
|
+
});
|
|
3412
3428
|
const CommonIntegrationOrConnectionQuery = z.z.object({
|
|
3413
3429
|
connectionId: z.z.string().optional(),
|
|
3414
3430
|
integrationId: z.z.string().optional(),
|
|
3415
3431
|
integrationKey: z.z.string().optional(),
|
|
3416
3432
|
});
|
|
3417
|
-
class PaginationResponse {
|
|
3418
|
-
}
|
|
3419
3433
|
|
|
3420
3434
|
exports.ConfigurationState = void 0;
|
|
3421
3435
|
(function (ConfigurationState) {
|
|
@@ -3511,6 +3525,7 @@ const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties = BaseMembraneInte
|
|
|
3511
3525
|
const BaseIntegrationLevelMembraneInterfaceExportProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
3512
3526
|
integrationUuid: z.z.string().optional(),
|
|
3513
3527
|
parentUuid: z.z.string().optional(),
|
|
3528
|
+
isCustomized: z.z.boolean().optional(),
|
|
3514
3529
|
});
|
|
3515
3530
|
const IntegrationLevelMembraneInterfaceSelectorQuery = z.z.object({
|
|
3516
3531
|
layer: z.z.enum(['universal', 'integration', 'connection']).optional(),
|
|
@@ -3525,6 +3540,17 @@ const FindIntegrationLevelMembraneInterfaceQuery = IntegrationLevelMembraneInter
|
|
|
3525
3540
|
userId: z.z.string().optional(),
|
|
3526
3541
|
});
|
|
3527
3542
|
const BaseIntegrationLevelMembraneInterface = BaseMembraneInterface.merge(BaseIntegrationLevelMembraneInterfaceEditableProperties).merge(BaseIntegrationLevelMembraneInterfaceReadOnlyProperties);
|
|
3543
|
+
const WorkspaceElementSearchQuery = z.z.object({
|
|
3544
|
+
q: z.z.string().min(1).max(200),
|
|
3545
|
+
elementType: z.z.enum(exports.WorkspaceElementType).optional(),
|
|
3546
|
+
limit: z.z.coerce.number().int().min(1).max(100).optional(),
|
|
3547
|
+
cursor: z.z.string().optional(),
|
|
3548
|
+
});
|
|
3549
|
+
const WorkspaceElementSearchResult = z.z.object({
|
|
3550
|
+
elementType: z.z.enum(exports.WorkspaceElementType),
|
|
3551
|
+
elementId: z.z.string(),
|
|
3552
|
+
name: z.z.string(),
|
|
3553
|
+
});
|
|
3528
3554
|
|
|
3529
3555
|
function mergeWithFormulas(a, b) {
|
|
3530
3556
|
if (Array.isArray(a) && Array.isArray(b)) {
|
|
@@ -8786,7 +8812,12 @@ const BackwardCompatibleDataSourceEditableProperties = DataSourceEditablePropert
|
|
|
8786
8812
|
path: z.z.string().optional().meta({ deprecated: true }),
|
|
8787
8813
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
8788
8814
|
});
|
|
8789
|
-
const DataSourceExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend(DataSourceSpecificProperties.shape)
|
|
8815
|
+
const DataSourceExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend(DataSourceSpecificProperties.shape)
|
|
8816
|
+
.extend({
|
|
8817
|
+
path: z.z.string().optional().meta({ deprecated: true }),
|
|
8818
|
+
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
8819
|
+
})
|
|
8820
|
+
.omit({
|
|
8790
8821
|
connectionId: true,
|
|
8791
8822
|
dataSourceId: true,
|
|
8792
8823
|
universalDataSourceId: true,
|
|
@@ -9311,51 +9342,39 @@ const BaseIntegration = BaseMembraneInterface.extend({
|
|
|
9311
9342
|
isDeactivated: z.z.boolean().optional(),
|
|
9312
9343
|
authType: z.z.enum(CONNECTOR_AUTH_TYPES).optional(),
|
|
9313
9344
|
});
|
|
9314
|
-
const
|
|
9315
|
-
|
|
9316
|
-
|
|
9317
|
-
connectorVersion: z.z.string().optional(),
|
|
9318
|
-
oAuthCallbackUri: z.z.string().optional(),
|
|
9319
|
-
parameters: z.z.any().optional(),
|
|
9345
|
+
const IntegrationEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
9346
|
+
baseUri: z.z.string().optional(),
|
|
9347
|
+
logoUri: z.z.string().optional(),
|
|
9320
9348
|
appUuid: z.z.string().optional(),
|
|
9349
|
+
oAuthCallbackUri: z.z.url().or(z.z.literal('')).optional(),
|
|
9350
|
+
logoBase64: z.z.string().optional(),
|
|
9351
|
+
connectorVersion: z.z.string().optional(),
|
|
9352
|
+
connectorId: z.z.string().optional(),
|
|
9353
|
+
connectorUuid: z.z.string().optional(),
|
|
9354
|
+
});
|
|
9355
|
+
const IntegrationExportProperties = IntegrationEditableProperties.extend({
|
|
9356
|
+
connectorUuid: z.z.string().optional(),
|
|
9321
9357
|
});
|
|
9322
9358
|
const AppliedToIntegrations = (elementSchema) => z.z.array(z.z.object({
|
|
9323
9359
|
element: elementSchema,
|
|
9324
9360
|
integration: BaseIntegration,
|
|
9325
9361
|
}));
|
|
9326
9362
|
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
IntegrationElementLevel["UNIVERSAL"] = "universal";
|
|
9330
|
-
IntegrationElementLevel["CONNECTOR"] = "connector";
|
|
9331
|
-
IntegrationElementLevel["CONNECTION"] = "connection";
|
|
9332
|
-
})(exports.IntegrationElementLevel || (exports.IntegrationElementLevel = {}));
|
|
9333
|
-
exports.IntegrationElementType = void 0;
|
|
9334
|
-
(function (IntegrationElementType) {
|
|
9335
|
-
IntegrationElementType["APP_DATA_SCHEMA"] = "app-data-schema";
|
|
9336
|
-
IntegrationElementType["APP_EVENT_TYPE"] = "app-event-type";
|
|
9337
|
-
IntegrationElementType["DATA_SOURCE"] = "data-source";
|
|
9338
|
-
IntegrationElementType["SCHEMA"] = "schema";
|
|
9339
|
-
IntegrationElementType["FIELD_MAPPING"] = "field-mapping";
|
|
9340
|
-
IntegrationElementType["FLOW"] = "flow";
|
|
9341
|
-
IntegrationElementType["INTEGRATION"] = "integration";
|
|
9342
|
-
IntegrationElementType["ACTION"] = "action";
|
|
9343
|
-
IntegrationElementType["DATA_LINK_TABLE"] = "data-link-table";
|
|
9344
|
-
IntegrationElementType["EXTERNAL_EVENT"] = "external-event";
|
|
9345
|
-
})(exports.IntegrationElementType || (exports.IntegrationElementType = {}));
|
|
9346
|
-
|
|
9363
|
+
const PACKAGE_VERSION_DEVELOPMENT = 'dev';
|
|
9364
|
+
const PACKAGE_VERSION_LATEST = 'latest';
|
|
9347
9365
|
const PackageElement = z.z.object({
|
|
9348
9366
|
id: z.z.string(),
|
|
9349
|
-
type: z.z.enum(exports.
|
|
9367
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9350
9368
|
element: z.z.any().optional(),
|
|
9351
9369
|
});
|
|
9352
9370
|
const PackageElementExport = z.z.object({
|
|
9353
9371
|
uuid: z.z.string(),
|
|
9354
|
-
type: z.z.enum(exports.
|
|
9372
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9355
9373
|
element: z.z.any().optional(),
|
|
9356
9374
|
});
|
|
9357
9375
|
const PackageEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.extend({
|
|
9358
9376
|
scenarioTemplateId: z.z.string().optional(),
|
|
9377
|
+
externalAppId: z.z.string().optional(),
|
|
9359
9378
|
elements: z.z.array(PackageElement).optional(),
|
|
9360
9379
|
});
|
|
9361
9380
|
const PackageExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend({
|
|
@@ -9367,6 +9386,20 @@ const PackageCalculatedProperties = z.z.object({
|
|
|
9367
9386
|
isCustomized: z.z.boolean().optional(),
|
|
9368
9387
|
});
|
|
9369
9388
|
const BasePackage = BaseMembraneInterface.merge(PackageEditableProperties).merge(PackageCalculatedProperties);
|
|
9389
|
+
const WritablePackageVersionData = z.z.object({
|
|
9390
|
+
elements: z.z.array(PackageElement).optional(),
|
|
9391
|
+
});
|
|
9392
|
+
const PackageVersionData = WritablePackageVersionData.extend({
|
|
9393
|
+
version: z.z.string().optional(),
|
|
9394
|
+
changelog: z.z.string().optional(),
|
|
9395
|
+
parentPackageVersion: z.z.string().optional(),
|
|
9396
|
+
});
|
|
9397
|
+
const PackageVersionListItem = z.z.object({
|
|
9398
|
+
id: z.z.string(),
|
|
9399
|
+
version: z.z.string(),
|
|
9400
|
+
changelog: z.z.string().optional(),
|
|
9401
|
+
parentPackageVersion: z.z.string().optional(),
|
|
9402
|
+
});
|
|
9370
9403
|
|
|
9371
9404
|
exports.ScreenType = void 0;
|
|
9372
9405
|
(function (ScreenType) {
|
|
@@ -9734,6 +9767,7 @@ exports.ActionRunLogStatus = void 0;
|
|
|
9734
9767
|
ActionRunLogStatus["ERROR"] = "error";
|
|
9735
9768
|
})(exports.ActionRunLogStatus || (exports.ActionRunLogStatus = {}));
|
|
9736
9769
|
const BaseActionRunLogRecord = BaseWorkspaceElement.extend({
|
|
9770
|
+
userId: z.z.string(),
|
|
9737
9771
|
actionId: z.z.string(),
|
|
9738
9772
|
actionInstanceId: z.z.string(),
|
|
9739
9773
|
integrationId: z.z.string(),
|
|
@@ -9757,9 +9791,11 @@ const ActionApiResponse = BaseAction.extend({
|
|
|
9757
9791
|
outputSchema: DataSchema.optional(),
|
|
9758
9792
|
dependencies: z.z.array(z.z.any()).optional(),
|
|
9759
9793
|
});
|
|
9760
|
-
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
9794
|
+
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
9795
|
+
externalAppId: z.z.string().optional(),
|
|
9796
|
+
});
|
|
9761
9797
|
const CreateActionRequest = ActionEditableProperties;
|
|
9762
|
-
const UpdateActionRequest = CreateActionRequest.
|
|
9798
|
+
const UpdateActionRequest = CreateActionRequest.partial();
|
|
9763
9799
|
const CreateActionInstanceRequest = CreateActionRequest;
|
|
9764
9800
|
const UpdateActionInstanceRequest = UpdateActionRequest;
|
|
9765
9801
|
const RunActionRequest = z.z.object({
|
|
@@ -9767,7 +9803,7 @@ const RunActionRequest = z.z.object({
|
|
|
9767
9803
|
});
|
|
9768
9804
|
const ActionRunResponse = z.z.object({
|
|
9769
9805
|
output: z.z.any().optional(),
|
|
9770
|
-
|
|
9806
|
+
actionRunId: z.z.string().optional(),
|
|
9771
9807
|
});
|
|
9772
9808
|
const ActionInstanceApiResponse = ActionApiResponse;
|
|
9773
9809
|
const ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
@@ -9775,19 +9811,33 @@ const FindActionInstancesQuery = FindActionsQuery;
|
|
|
9775
9811
|
|
|
9776
9812
|
const ActionRunLogRecordApiResponse = BaseActionRunLogRecord.extend({
|
|
9777
9813
|
action: BaseAction.optional(),
|
|
9814
|
+
actionInstance: BaseAction.optional(),
|
|
9778
9815
|
integration: BaseIntegration.optional(),
|
|
9779
9816
|
connection: BaseConnection.optional(),
|
|
9817
|
+
user: BaseCustomer.optional(),
|
|
9780
9818
|
});
|
|
9819
|
+
const FindActionRunLogsQuery = PaginationQuery.extend({
|
|
9820
|
+
actionInstanceId: z.z.string().optional(),
|
|
9821
|
+
actionId: z.z.string().optional(),
|
|
9822
|
+
integrationId: z.z.string().optional(),
|
|
9823
|
+
connectionId: z.z.string().optional(),
|
|
9824
|
+
userId: z.z.string().optional(),
|
|
9825
|
+
status: z.z.enum(exports.ActionRunLogStatus).optional(),
|
|
9826
|
+
startedAfter: z.z.string().optional(),
|
|
9827
|
+
});
|
|
9828
|
+
const FindActionRunLogsResponse = createPaginationResponseSchema(ActionRunLogRecordApiResponse);
|
|
9781
9829
|
|
|
9782
|
-
const FindConnectionsQuery =
|
|
9783
|
-
.
|
|
9830
|
+
const FindConnectionsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
9831
|
+
connectorId: z.z.string().optional(),
|
|
9832
|
+
id: z.z.string().optional(),
|
|
9784
9833
|
userId: z.z.string().optional(),
|
|
9834
|
+
name: z.z.string().optional(),
|
|
9785
9835
|
isTest: zodBooleanCoercion().optional(),
|
|
9786
|
-
|
|
9836
|
+
disconnected: zodBooleanCoercion().optional(),
|
|
9787
9837
|
integrationId: z.z.string().optional(),
|
|
9788
|
-
|
|
9789
|
-
|
|
9790
|
-
|
|
9838
|
+
integrationKey: z.z.string().optional(),
|
|
9839
|
+
includeSecrets: zodBooleanCoercion().optional(),
|
|
9840
|
+
});
|
|
9791
9841
|
const CreateConnectionRequest = z.z.object({
|
|
9792
9842
|
name: z.z.string(),
|
|
9793
9843
|
integrationId: z.z.string(),
|
|
@@ -9831,6 +9881,10 @@ const ConnectionMessagePayload = z.z.discriminatedUnion('type', [
|
|
|
9831
9881
|
}),
|
|
9832
9882
|
]);
|
|
9833
9883
|
|
|
9884
|
+
const ListPublicConnectorsQuery = PaginationQuery.extend({
|
|
9885
|
+
search: z.z.string().optional(),
|
|
9886
|
+
});
|
|
9887
|
+
|
|
9834
9888
|
const DataSourceApiResponse = BaseDataSource.extend({
|
|
9835
9889
|
integration: BaseIntegration.optional(),
|
|
9836
9890
|
appliedToIntegrations: AppliedToIntegrations(BaseDataSource).optional(),
|
|
@@ -9902,6 +9956,17 @@ const FindDataSourceInstanceSyncsQuery = ListDataSourceInstancesForConnectionQue
|
|
|
9902
9956
|
dataSourceInstanceId: z.z.string().optional(),
|
|
9903
9957
|
});
|
|
9904
9958
|
|
|
9959
|
+
const FindDataSourceInstanceQuery = CommonFindElementsQuery.extend({
|
|
9960
|
+
id: z.z.string().optional(),
|
|
9961
|
+
userId: z.z.string().optional(),
|
|
9962
|
+
connectionId: z.z.string().optional(),
|
|
9963
|
+
integrationKey: z.z.string().optional(),
|
|
9964
|
+
integrationId: z.z.string().optional(),
|
|
9965
|
+
dataSourceId: z.z.string().optional(),
|
|
9966
|
+
universalDataSourceId: z.z.string().optional(),
|
|
9967
|
+
udm: z.z.string().optional(),
|
|
9968
|
+
instanceKey: z.z.string().optional(),
|
|
9969
|
+
});
|
|
9905
9970
|
const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
9906
9971
|
user: BaseCustomer.optional(),
|
|
9907
9972
|
dataSource: BaseDataSource.optional(),
|
|
@@ -9911,6 +9976,13 @@ const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
|
9911
9976
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
9912
9977
|
});
|
|
9913
9978
|
|
|
9979
|
+
const ListExternalAppsQuery = PaginationQuery.extend({
|
|
9980
|
+
search: z.z.string().optional(),
|
|
9981
|
+
category: z.z.string().optional(),
|
|
9982
|
+
hasAuth: zodBooleanCoercion().optional(),
|
|
9983
|
+
hasData: zodBooleanCoercion().optional(),
|
|
9984
|
+
});
|
|
9985
|
+
|
|
9914
9986
|
const ExternalEvent = BaseExternalEvent.extend({
|
|
9915
9987
|
appliedToIntegrations: AppliedToIntegrations(BaseExternalEvent).optional(),
|
|
9916
9988
|
});
|
|
@@ -9988,18 +10060,8 @@ const FindFlowRunsResponse = z.z.object({
|
|
|
9988
10060
|
cursor: z.z.string().optional(),
|
|
9989
10061
|
});
|
|
9990
10062
|
|
|
9991
|
-
const CreateIntegrationRequest =
|
|
9992
|
-
|
|
9993
|
-
key: z.z.string(),
|
|
9994
|
-
baseUri: z.z.string(),
|
|
9995
|
-
logoUri: z.z.string(),
|
|
9996
|
-
});
|
|
9997
|
-
const UpdateIntegrationRequest = z.z.object({
|
|
9998
|
-
name: z.z.string().optional(),
|
|
9999
|
-
key: z.z.string().optional(),
|
|
10000
|
-
baseUri: z.z.string().optional(),
|
|
10001
|
-
logoUri: z.z.string().optional(),
|
|
10002
|
-
});
|
|
10063
|
+
const CreateIntegrationRequest = IntegrationEditableProperties;
|
|
10064
|
+
const UpdateIntegrationRequest = IntegrationEditableProperties.partial();
|
|
10003
10065
|
const FindIntegrationsQuery = z.z.object({}).merge(PaginationQuery).merge(SearchQuery);
|
|
10004
10066
|
const IntegrationAuthUi = z.z.object({
|
|
10005
10067
|
schema: z.z.any().optional(),
|
|
@@ -10021,16 +10083,25 @@ const IntegrationApiResponse = BaseIntegration.extend({
|
|
|
10021
10083
|
|
|
10022
10084
|
const PackageElementApi = z.z.object({
|
|
10023
10085
|
id: z.z.string(),
|
|
10024
|
-
type: z.z.enum(exports.
|
|
10086
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
10025
10087
|
element: z.z.any().optional(),
|
|
10026
10088
|
});
|
|
10027
|
-
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
10089
|
+
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
10090
|
+
externalAppId: z.z.string().optional(),
|
|
10091
|
+
});
|
|
10028
10092
|
const CreatePackageRequest = PackageEditableProperties;
|
|
10029
10093
|
const UpdatePackageRequest = CreatePackageRequest.extend({}).partial();
|
|
10030
|
-
const PackageApiResponse = BasePackage.extend({
|
|
10094
|
+
const PackageApiResponse = BasePackage.merge(PackageVersionData).extend({
|
|
10031
10095
|
appliedToIntegrations: AppliedToIntegrations(BasePackage).optional(),
|
|
10032
10096
|
});
|
|
10097
|
+
const ListPublicPackagesQuery = PaginationQuery.extend({
|
|
10098
|
+
search: z.z.string().optional(),
|
|
10099
|
+
});
|
|
10033
10100
|
|
|
10101
|
+
const FindScreensQuery = PaginationQuery.extend({
|
|
10102
|
+
type: z.z.enum(exports.ScreenType).optional(),
|
|
10103
|
+
key: z.z.string().optional(),
|
|
10104
|
+
});
|
|
10034
10105
|
const ScreenApiResponse = BaseScreen;
|
|
10035
10106
|
|
|
10036
10107
|
const CreateCustomerRequest = z.z.object({
|
|
@@ -10078,6 +10149,37 @@ const CreateDataLinkTableRequest = DataLinkTableEditableProperties;
|
|
|
10078
10149
|
const UpdateDataLinkTableRequest = CreateDataLinkTableRequest.partial();
|
|
10079
10150
|
const DataLinkTableApiResponse = BaseDataLinkTable;
|
|
10080
10151
|
|
|
10152
|
+
const FindDataLinkTableInstancesQuery = PaginationQuery.extend({
|
|
10153
|
+
id: z.z.string().optional(),
|
|
10154
|
+
userId: z.z.string().optional(),
|
|
10155
|
+
dataLinkTableId: z.z.string().optional(),
|
|
10156
|
+
connectionId: z.z.string().optional(),
|
|
10157
|
+
integrationId: z.z.string().optional(),
|
|
10158
|
+
});
|
|
10159
|
+
const FindDataLinksInTableQuery = PaginationQuery.extend({
|
|
10160
|
+
direction: z.z.enum(exports.DataLinkDirection).optional(),
|
|
10161
|
+
appRecordId: z.z.string().optional(),
|
|
10162
|
+
externalRecordId: z.z.string().optional(),
|
|
10163
|
+
});
|
|
10164
|
+
const FindDataLinksQuery = PaginationQuery.extend({
|
|
10165
|
+
dataLinkTableInstanceId: z.z.string(),
|
|
10166
|
+
externalRecordId: z.z.string().optional(),
|
|
10167
|
+
appRecordId: z.z.string().optional(),
|
|
10168
|
+
direction: z.z.enum(exports.DataLinkDirection).optional(),
|
|
10169
|
+
});
|
|
10170
|
+
const FindDataLinksResponse = createPaginationResponseSchema(DataLink);
|
|
10171
|
+
const FindDataLinkTableInstanceLinksQuery = ConnectionSelector.extend({
|
|
10172
|
+
id: z.z.string().optional(),
|
|
10173
|
+
instanceKey: z.z.string().optional(),
|
|
10174
|
+
dataLinkTableId: z.z.string().optional(),
|
|
10175
|
+
dataLinkTableKey: z.z.string().optional(),
|
|
10176
|
+
autoCreate: zodBooleanCoercion().optional(),
|
|
10177
|
+
direction: z.z.enum(exports.DataLinkDirection).optional(),
|
|
10178
|
+
appRecordId: z.z.string().optional(),
|
|
10179
|
+
externalRecordId: z.z.string().optional(),
|
|
10180
|
+
limit: z.z.coerce.number().int().min(1).max(1000).optional(),
|
|
10181
|
+
cursor: z.z.string().optional(),
|
|
10182
|
+
});
|
|
10081
10183
|
const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
10082
10184
|
dataLinkTable: BaseDataLinkTable.optional(),
|
|
10083
10185
|
connection: BaseConnection.optional(),
|
|
@@ -10085,8 +10187,25 @@ const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
|
10085
10187
|
user: BaseCustomer.optional(),
|
|
10086
10188
|
});
|
|
10087
10189
|
|
|
10190
|
+
const FindAppEventTypesQuery = CommonFindElementsQuery.extend({});
|
|
10191
|
+
const FindAppEventsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
10192
|
+
id: z.z.string().optional(),
|
|
10193
|
+
userId: z.z.string().optional(),
|
|
10194
|
+
appEventTypeId: z.z.string().optional(),
|
|
10195
|
+
appEventSubscriptionId: z.z.string().optional(),
|
|
10196
|
+
startDatetime: z.z.iso.datetime().optional(),
|
|
10197
|
+
endDatetime: z.z.iso.datetime().optional(),
|
|
10198
|
+
instanceKey: z.z.string().optional(),
|
|
10199
|
+
});
|
|
10088
10200
|
const AppEventTypeApiResponse = BaseAppEventType;
|
|
10089
10201
|
|
|
10202
|
+
const FindAppEventSubscriptionsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
10203
|
+
id: z.z.string().optional(),
|
|
10204
|
+
userId: z.z.string().optional(),
|
|
10205
|
+
appEventTypeId: z.z.string().optional(),
|
|
10206
|
+
isSubscribed: zodBooleanCoercion().optional(),
|
|
10207
|
+
instanceKey: z.z.string().optional(),
|
|
10208
|
+
});
|
|
10090
10209
|
const AppEventSubscriptionApiResponse = BaseAppEventSubscription.extend({
|
|
10091
10210
|
appEventType: BaseAppEventType.optional(),
|
|
10092
10211
|
user: BaseCustomer.optional(),
|
|
@@ -10120,6 +10239,14 @@ const ListExternalEventPullsQuery = CommonListElementsQuery.extend({
|
|
|
10120
10239
|
externalEventSubscriptionId: z.z.string().optional(),
|
|
10121
10240
|
status: z.z.enum(exports.ExternalEventPullStatus).optional(),
|
|
10122
10241
|
});
|
|
10242
|
+
const FindExternalEventPullsQuery = PaginationQuery.extend({
|
|
10243
|
+
externalEventSubscriptionId: z.z.string().optional(),
|
|
10244
|
+
integrationId: z.z.string().optional(),
|
|
10245
|
+
connectionId: z.z.string().optional(),
|
|
10246
|
+
userId: z.z.string().optional(),
|
|
10247
|
+
status: z.z.enum(exports.ExternalEventPullStatus).optional(),
|
|
10248
|
+
startedAfter: z.z.string().optional(),
|
|
10249
|
+
});
|
|
10123
10250
|
const ExternalEventPullApiResponse = BaseExternalEventPull.extend({
|
|
10124
10251
|
user: BaseCustomer.optional(),
|
|
10125
10252
|
externalEventSubscription: BaseExternalEventSubscription.optional(),
|
|
@@ -10309,6 +10436,7 @@ const WorkspaceElementSpecs = {
|
|
|
10309
10436
|
apiPath: 'integrations',
|
|
10310
10437
|
name: 'Integration',
|
|
10311
10438
|
namePlural: 'Integrations',
|
|
10439
|
+
editablePropertiesSchema: IntegrationEditableProperties,
|
|
10312
10440
|
exportPropertiesSchema: IntegrationExportProperties,
|
|
10313
10441
|
},
|
|
10314
10442
|
[exports.WorkspaceElementType.Connector]: {
|
|
@@ -10353,6 +10481,7 @@ const WorkspaceElementSpecs = {
|
|
|
10353
10481
|
findQuerySchema: FindActionsQuery,
|
|
10354
10482
|
isMembraneInterface: true,
|
|
10355
10483
|
isIntegrationLevel: true,
|
|
10484
|
+
canBeAddedToPackage: true,
|
|
10356
10485
|
},
|
|
10357
10486
|
[exports.WorkspaceElementType.ActionRunLogRecord]: {
|
|
10358
10487
|
type: exports.WorkspaceElementType.ActionRunLogRecord,
|
|
@@ -10372,6 +10501,7 @@ const WorkspaceElementSpecs = {
|
|
|
10372
10501
|
findQuerySchema: FindFlowsQuery,
|
|
10373
10502
|
isMembraneInterface: true,
|
|
10374
10503
|
isIntegrationLevel: true,
|
|
10504
|
+
canBeAddedToPackage: true,
|
|
10375
10505
|
},
|
|
10376
10506
|
[exports.WorkspaceElementType.FlowInstance]: {
|
|
10377
10507
|
type: exports.WorkspaceElementType.FlowInstance,
|
|
@@ -10402,6 +10532,7 @@ const WorkspaceElementSpecs = {
|
|
|
10402
10532
|
findQuerySchema: FindFieldMappingsQuery,
|
|
10403
10533
|
isMembraneInterface: true,
|
|
10404
10534
|
isIntegrationLevel: true,
|
|
10535
|
+
canBeAddedToPackage: true,
|
|
10405
10536
|
},
|
|
10406
10537
|
[exports.WorkspaceElementType.FieldMappingInstance]: {
|
|
10407
10538
|
type: exports.WorkspaceElementType.FieldMappingInstance,
|
|
@@ -10425,6 +10556,7 @@ const WorkspaceElementSpecs = {
|
|
|
10425
10556
|
findQuerySchema: FindDataSourcesQuery,
|
|
10426
10557
|
isMembraneInterface: true,
|
|
10427
10558
|
isIntegrationLevel: true,
|
|
10559
|
+
canBeAddedToPackage: true,
|
|
10428
10560
|
},
|
|
10429
10561
|
[exports.WorkspaceElementType.DataSourceInstance]: {
|
|
10430
10562
|
type: exports.WorkspaceElementType.DataSourceInstance,
|
|
@@ -10445,6 +10577,7 @@ const WorkspaceElementSpecs = {
|
|
|
10445
10577
|
apiResponseSchema: DataLinkTableApiResponse,
|
|
10446
10578
|
findQuerySchema: FindDataLinkTablesQuery,
|
|
10447
10579
|
isMembraneInterface: true,
|
|
10580
|
+
canBeAddedToPackage: true,
|
|
10448
10581
|
},
|
|
10449
10582
|
[exports.WorkspaceElementType.DataLinkTableInstance]: {
|
|
10450
10583
|
type: exports.WorkspaceElementType.DataLinkTableInstance,
|
|
@@ -10462,6 +10595,7 @@ const WorkspaceElementSpecs = {
|
|
|
10462
10595
|
isMembraneInterface: true,
|
|
10463
10596
|
exportPropertiesSchema: AppEventTypeExportProperties,
|
|
10464
10597
|
editablePropertiesSchema: AppEventTypeEditableProperties,
|
|
10598
|
+
canBeAddedToPackage: true,
|
|
10465
10599
|
},
|
|
10466
10600
|
[exports.WorkspaceElementType.AppEventSubscription]: {
|
|
10467
10601
|
type: exports.WorkspaceElementType.AppEventSubscription,
|
|
@@ -10484,6 +10618,7 @@ const WorkspaceElementSpecs = {
|
|
|
10484
10618
|
isMembraneInterface: true,
|
|
10485
10619
|
exportPropertiesSchema: AppDataSchemaExportProperties,
|
|
10486
10620
|
editablePropertiesSchema: AppDataSchemaEditableProperties,
|
|
10621
|
+
canBeAddedToPackage: true,
|
|
10487
10622
|
},
|
|
10488
10623
|
[exports.WorkspaceElementType.AppDataSchemaInstance]: {
|
|
10489
10624
|
type: exports.WorkspaceElementType.AppDataSchemaInstance,
|
|
@@ -10830,6 +10965,26 @@ function getBusinessDaysBetween(startDate, endDate) {
|
|
|
10830
10965
|
return businessDays;
|
|
10831
10966
|
}
|
|
10832
10967
|
|
|
10968
|
+
exports.IntegrationElementLevel = void 0;
|
|
10969
|
+
(function (IntegrationElementLevel) {
|
|
10970
|
+
IntegrationElementLevel["UNIVERSAL"] = "universal";
|
|
10971
|
+
IntegrationElementLevel["CONNECTOR"] = "connector";
|
|
10972
|
+
IntegrationElementLevel["CONNECTION"] = "connection";
|
|
10973
|
+
})(exports.IntegrationElementLevel || (exports.IntegrationElementLevel = {}));
|
|
10974
|
+
exports.IntegrationElementType = void 0;
|
|
10975
|
+
(function (IntegrationElementType) {
|
|
10976
|
+
IntegrationElementType["APP_DATA_SCHEMA"] = "app-data-schema";
|
|
10977
|
+
IntegrationElementType["APP_EVENT_TYPE"] = "app-event-type";
|
|
10978
|
+
IntegrationElementType["DATA_SOURCE"] = "data-source";
|
|
10979
|
+
IntegrationElementType["SCHEMA"] = "schema";
|
|
10980
|
+
IntegrationElementType["FIELD_MAPPING"] = "field-mapping";
|
|
10981
|
+
IntegrationElementType["FLOW"] = "flow";
|
|
10982
|
+
IntegrationElementType["INTEGRATION"] = "integration";
|
|
10983
|
+
IntegrationElementType["ACTION"] = "action";
|
|
10984
|
+
IntegrationElementType["DATA_LINK_TABLE"] = "data-link-table";
|
|
10985
|
+
IntegrationElementType["EXTERNAL_EVENT"] = "external-event";
|
|
10986
|
+
})(exports.IntegrationElementType || (exports.IntegrationElementType = {}));
|
|
10987
|
+
|
|
10833
10988
|
exports.UsageType = void 0;
|
|
10834
10989
|
(function (UsageType) {
|
|
10835
10990
|
UsageType["FLOW_RUNS_DURATION"] = "flow-runs-duration";
|
|
@@ -10850,6 +11005,7 @@ exports.UsageType = void 0;
|
|
|
10850
11005
|
UsageType["FILES_UPLOAD_NUMBER"] = "files-upload-number";
|
|
10851
11006
|
UsageType["FILES_UPLOAD_SIZE"] = "files-upload-size";
|
|
10852
11007
|
UsageType["CUSTOM_CODE_RUNTIME_DURATION"] = "custom-code-runtime-duration";
|
|
11008
|
+
UsageType["INSTANT_TASKS_DURATION"] = "instant-tasks-duration";
|
|
10853
11009
|
UsageType["MEMBRANE_AGENT"] = "membrane-agent";
|
|
10854
11010
|
})(exports.UsageType || (exports.UsageType = {}));
|
|
10855
11011
|
|
|
@@ -11355,6 +11511,12 @@ exports.AlertType = void 0;
|
|
|
11355
11511
|
AlertType["membraneAgentUsagePer30Days"] = "membraneAgentUsagePer30Days";
|
|
11356
11512
|
})(exports.AlertType || (exports.AlertType = {}));
|
|
11357
11513
|
|
|
11514
|
+
const IntegrationSpecificElementSelector = z.object({
|
|
11515
|
+
id: z.string().optional(),
|
|
11516
|
+
key: z.string().optional(),
|
|
11517
|
+
integrationId: z.string().optional(),
|
|
11518
|
+
integrationKey: z.string().optional(),
|
|
11519
|
+
});
|
|
11358
11520
|
class ElementAccessor {
|
|
11359
11521
|
constructor(options) {
|
|
11360
11522
|
this.options = options;
|
|
@@ -11781,11 +11943,10 @@ function injectStyles(mountTargetSelector) {
|
|
|
11781
11943
|
content: "";
|
|
11782
11944
|
width: 5rem;
|
|
11783
11945
|
height: 4rem;
|
|
11784
|
-
background-image: url(
|
|
11946
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='%23fff' %3E%3Cpath d='M56.45 13.17c0-.96 1.04-1.56 1.88-1.08l44.4 25.71c.47.28.77.8.77 1.35V90.6c0 .96-1.04 1.56-1.87 1.08l-11.1-6.43V48.78c0-.55-.3-1.07-.78-1.35l-33.3-19.28z' /%3E%3Cpath d='M36.48 26.8c0-.96 1.04-1.56 1.87-1.08l44.4 25.71c.48.28.78.8.78 1.35v51.44c0 .96-1.04 1.56-1.87 1.08l-11.11-6.43V62.43c0-.55-.3-1.07-.78-1.35L36.48 41.8z' /%3E%3Cpath d='M16.5 40.45c0-.96 1.04-1.56 1.87-1.08l44.4 25.71c.48.28.78.8.78 1.35v51.44c0 .96-1.04 1.56-1.87 1.08l-44.56-25.8a1.3 1.3 0 0 1-.62-1.09z' /%3E%3C/svg%3E");
|
|
11785
11947
|
background-size: contain;
|
|
11786
11948
|
background-repeat: no-repeat;
|
|
11787
11949
|
background-position: center;
|
|
11788
|
-
filter: invert(1);
|
|
11789
11950
|
}`,
|
|
11790
11951
|
`.${CONTAINER_ELEMENT_CLASS} iframe {
|
|
11791
11952
|
${hasCustomMountTarget ? '' : 'position: absolute;'}
|
|
@@ -13080,26 +13241,22 @@ exports.AgentSessionState = void 0;
|
|
|
13080
13241
|
})(exports.AgentSessionState || (exports.AgentSessionState = {}));
|
|
13081
13242
|
const AgentSession = z.z.object({
|
|
13082
13243
|
id: z.z.string(),
|
|
13083
|
-
workspaceId: z.z.string(),
|
|
13084
13244
|
userId: z.z.string().optional(),
|
|
13085
13245
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType),
|
|
13086
13246
|
workspaceElementId: z.z.string(),
|
|
13087
13247
|
type: z.z.string(),
|
|
13088
13248
|
status: z.z.enum(exports.AgentSessionStatus),
|
|
13089
|
-
workerId: z.z.string().optional(),
|
|
13090
|
-
workerUrl: z.z.string().url().optional(),
|
|
13091
13249
|
prompt: z.z.string(),
|
|
13092
13250
|
error: ErrorDataSchema.optional(),
|
|
13093
|
-
createdBy: z.z.string(),
|
|
13094
13251
|
lastActivityAt: z.z.iso.datetime(),
|
|
13252
|
+
title: z.z.string().optional(),
|
|
13253
|
+
summary: z.z.string().optional(),
|
|
13254
|
+
cost: z.z.number().optional(),
|
|
13255
|
+
state: z.z.enum(exports.AgentSessionState).default(exports.AgentSessionState.BUSY),
|
|
13256
|
+
usage: z.z.number().optional(),
|
|
13257
|
+
hasWorker: z.z.boolean(),
|
|
13095
13258
|
createdAt: z.z.iso.datetime(),
|
|
13096
13259
|
updatedAt: z.z.iso.datetime(),
|
|
13097
|
-
storedMessagesUri: z.z.string().url().optional(),
|
|
13098
|
-
sessionFilesZipUri: z.z.string().url().optional(),
|
|
13099
|
-
logs: z.z.array(z.z.any()).optional(),
|
|
13100
|
-
usage: z.z.number().optional(),
|
|
13101
|
-
summary: z.z.string().optional(),
|
|
13102
|
-
state: z.z.enum(exports.AgentSessionState).default(exports.AgentSessionState.IDLE),
|
|
13103
13260
|
});
|
|
13104
13261
|
const CreateAgentSession = z.z.object({
|
|
13105
13262
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType).optional(),
|
|
@@ -13115,7 +13272,9 @@ const AgentSessionInputSchema = z.z.object({
|
|
|
13115
13272
|
const PatchAgentSessionSchema = z.z.object({
|
|
13116
13273
|
state: z.z.enum(exports.AgentSessionState).optional(),
|
|
13117
13274
|
lastActivityAt: z.z.iso.datetime().optional(),
|
|
13275
|
+
title: z.z.string().optional(),
|
|
13118
13276
|
summary: z.z.string().optional(),
|
|
13277
|
+
cost: z.z.number().optional(),
|
|
13119
13278
|
status: z.z.enum(exports.AgentSessionStatus).optional(),
|
|
13120
13279
|
});
|
|
13121
13280
|
|
|
@@ -13513,6 +13672,8 @@ exports.CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES = CONNECTOR_METHOD_IMPLEMENTATI
|
|
|
13513
13672
|
exports.CONNECTOR_OPERATIONS_DIR = CONNECTOR_OPERATIONS_DIR;
|
|
13514
13673
|
exports.CONNECTOR_VERSION_DEVELOPMENT = CONNECTOR_VERSION_DEVELOPMENT;
|
|
13515
13674
|
exports.CONNECTOR_VERSION_LATEST = CONNECTOR_VERSION_LATEST;
|
|
13675
|
+
exports.CommonFindElementsQuery = CommonFindElementsQuery;
|
|
13676
|
+
exports.CommonFindInstancesQuery = CommonFindInstancesQuery;
|
|
13516
13677
|
exports.CommonInstancesListQuery = CommonInstancesListQuery;
|
|
13517
13678
|
exports.CommonIntegrationOrConnectionQuery = CommonIntegrationOrConnectionQuery;
|
|
13518
13679
|
exports.CommonListElementsQuery = CommonListElementsQuery;
|
|
@@ -13687,16 +13848,28 @@ exports.FieldMappingInstancesAccessor = FieldMappingInstancesAccessor;
|
|
|
13687
13848
|
exports.FieldMappingUnitConfig = FieldMappingUnitConfig;
|
|
13688
13849
|
exports.FieldMappingsAccessor = FieldMappingsAccessor;
|
|
13689
13850
|
exports.FindActionInstancesQuery = FindActionInstancesQuery;
|
|
13851
|
+
exports.FindActionRunLogsQuery = FindActionRunLogsQuery;
|
|
13852
|
+
exports.FindActionRunLogsResponse = FindActionRunLogsResponse;
|
|
13690
13853
|
exports.FindActionsQuery = FindActionsQuery;
|
|
13854
|
+
exports.FindAppEventSubscriptionsQuery = FindAppEventSubscriptionsQuery;
|
|
13855
|
+
exports.FindAppEventTypesQuery = FindAppEventTypesQuery;
|
|
13856
|
+
exports.FindAppEventsQuery = FindAppEventsQuery;
|
|
13691
13857
|
exports.FindConnectionsQuery = FindConnectionsQuery;
|
|
13692
13858
|
exports.FindConnectionsResponse = FindConnectionsResponse;
|
|
13693
13859
|
exports.FindCustomersQuery = FindCustomersQuery;
|
|
13860
|
+
exports.FindDataLinkTableInstanceLinksQuery = FindDataLinkTableInstanceLinksQuery;
|
|
13861
|
+
exports.FindDataLinkTableInstancesQuery = FindDataLinkTableInstancesQuery;
|
|
13694
13862
|
exports.FindDataLinkTablesQuery = FindDataLinkTablesQuery;
|
|
13863
|
+
exports.FindDataLinksInTableQuery = FindDataLinksInTableQuery;
|
|
13864
|
+
exports.FindDataLinksQuery = FindDataLinksQuery;
|
|
13865
|
+
exports.FindDataLinksResponse = FindDataLinksResponse;
|
|
13695
13866
|
exports.FindDataSourceEventsQuery = FindDataSourceEventsQuery;
|
|
13867
|
+
exports.FindDataSourceInstanceQuery = FindDataSourceInstanceQuery;
|
|
13696
13868
|
exports.FindDataSourceInstanceSyncsQuery = FindDataSourceInstanceSyncsQuery;
|
|
13697
13869
|
exports.FindDataSourceInstancesQuery = FindDataSourceInstancesQuery;
|
|
13698
13870
|
exports.FindDataSourceSyncsQuery = FindDataSourceSyncsQuery;
|
|
13699
13871
|
exports.FindDataSourcesQuery = FindDataSourcesQuery;
|
|
13872
|
+
exports.FindExternalEventPullsQuery = FindExternalEventPullsQuery;
|
|
13700
13873
|
exports.FindFieldMappingsQuery = FindFieldMappingsQuery;
|
|
13701
13874
|
exports.FindFlowInstancesQuery = FindFlowInstancesQuery;
|
|
13702
13875
|
exports.FindFlowRunsQuery = FindFlowRunsQuery;
|
|
@@ -13705,6 +13878,7 @@ exports.FindFlowsQuery = FindFlowsQuery;
|
|
|
13705
13878
|
exports.FindIntegrationLevelMembraneInterfaceQuery = FindIntegrationLevelMembraneInterfaceQuery;
|
|
13706
13879
|
exports.FindIntegrationsQuery = FindIntegrationsQuery;
|
|
13707
13880
|
exports.FindPackagesQuery = FindPackagesQuery;
|
|
13881
|
+
exports.FindScreensQuery = FindScreensQuery;
|
|
13708
13882
|
exports.FlowAccessor = FlowAccessor;
|
|
13709
13883
|
exports.FlowApiResponse = FlowApiResponse;
|
|
13710
13884
|
exports.FlowEditableProperties = FlowEditableProperties;
|
|
@@ -13750,6 +13924,7 @@ exports.IntegrationAppClient = MembraneClient;
|
|
|
13750
13924
|
exports.IntegrationAppError = IntegrationAppError;
|
|
13751
13925
|
exports.IntegrationAuthOption = IntegrationAuthOption;
|
|
13752
13926
|
exports.IntegrationAuthUi = IntegrationAuthUi;
|
|
13927
|
+
exports.IntegrationEditableProperties = IntegrationEditableProperties;
|
|
13753
13928
|
exports.IntegrationExportProperties = IntegrationExportProperties;
|
|
13754
13929
|
exports.IntegrationLevelActionAccessor = IntegrationLevelActionAccessor;
|
|
13755
13930
|
exports.IntegrationLevelActionsListAccessor = IntegrationLevelActionsListAccessor;
|
|
@@ -13760,16 +13935,20 @@ exports.IntegrationLevelFieldMappingsListAccessor = IntegrationLevelFieldMapping
|
|
|
13760
13935
|
exports.IntegrationLevelFlowAccessor = IntegrationLevelFlowAccessor;
|
|
13761
13936
|
exports.IntegrationLevelFlowsListAccessor = IntegrationLevelFlowsListAccessor;
|
|
13762
13937
|
exports.IntegrationLevelMembraneInterfaceSelectorQuery = IntegrationLevelMembraneInterfaceSelectorQuery;
|
|
13938
|
+
exports.IntegrationSpecificElementSelector = IntegrationSpecificElementSelector;
|
|
13763
13939
|
exports.IntegrationsAccessor = IntegrationsAccessor;
|
|
13764
13940
|
exports.InternalError = InternalError;
|
|
13765
13941
|
exports.InvalidLocatorError = InvalidLocatorError;
|
|
13766
13942
|
exports.JavascriptFunction = JavascriptFunction;
|
|
13767
13943
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13768
13944
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
13945
|
+
exports.ListExternalAppsQuery = ListExternalAppsQuery;
|
|
13769
13946
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
13770
13947
|
exports.ListExternalEventPullsQuery = ListExternalEventPullsQuery;
|
|
13771
13948
|
exports.ListExternalEventSubscriptionsQuery = ListExternalEventSubscriptionsQuery;
|
|
13772
13949
|
exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuery;
|
|
13950
|
+
exports.ListPublicConnectorsQuery = ListPublicConnectorsQuery;
|
|
13951
|
+
exports.ListPublicPackagesQuery = ListPublicPackagesQuery;
|
|
13773
13952
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13774
13953
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13775
13954
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
@@ -13791,6 +13970,8 @@ exports.OrgLimits = OrgLimits;
|
|
|
13791
13970
|
exports.OrgSchema = OrgSchema;
|
|
13792
13971
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
13793
13972
|
exports.OrgWorkspaceUser = OrgWorkspaceUser;
|
|
13973
|
+
exports.PACKAGE_VERSION_DEVELOPMENT = PACKAGE_VERSION_DEVELOPMENT;
|
|
13974
|
+
exports.PACKAGE_VERSION_LATEST = PACKAGE_VERSION_LATEST;
|
|
13794
13975
|
exports.PARALLEL_EXECUTION_LIMITS = PARALLEL_EXECUTION_LIMITS;
|
|
13795
13976
|
exports.PackageAccessor = PackageAccessor;
|
|
13796
13977
|
exports.PackageApiResponse = PackageApiResponse;
|
|
@@ -13800,6 +13981,8 @@ exports.PackageElement = PackageElement;
|
|
|
13800
13981
|
exports.PackageElementApi = PackageElementApi;
|
|
13801
13982
|
exports.PackageElementExport = PackageElementExport;
|
|
13802
13983
|
exports.PackageExportProperties = PackageExportProperties;
|
|
13984
|
+
exports.PackageVersionData = PackageVersionData;
|
|
13985
|
+
exports.PackageVersionListItem = PackageVersionListItem;
|
|
13803
13986
|
exports.PackagesAccessor = PackagesAccessor;
|
|
13804
13987
|
exports.PaginationQuery = PaginationQuery;
|
|
13805
13988
|
exports.PaginationResponse = PaginationResponse;
|
|
@@ -13841,10 +14024,13 @@ exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
|
13841
14024
|
exports.UserAccessor = UserAccessor;
|
|
13842
14025
|
exports.UsersAccessor = UsersAccessor;
|
|
13843
14026
|
exports.WORKSPACE_SIZE_LIMITS = WORKSPACE_SIZE_LIMITS;
|
|
14027
|
+
exports.WorkspaceElementSearchQuery = WorkspaceElementSearchQuery;
|
|
14028
|
+
exports.WorkspaceElementSearchResult = WorkspaceElementSearchResult;
|
|
13844
14029
|
exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
13845
14030
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
13846
14031
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
13847
14032
|
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
14033
|
+
exports.WritablePackageVersionData = WritablePackageVersionData;
|
|
13848
14034
|
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
13849
14035
|
exports.__resolveValue = __resolveValue;
|
|
13850
14036
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
@@ -13859,6 +14045,7 @@ exports.createCompoundSchema = createCompoundSchema;
|
|
|
13859
14045
|
exports.createFlowInstanceSchema = createFlowInstanceSchema;
|
|
13860
14046
|
exports.createObjectFromLocators = createObjectFromLocators;
|
|
13861
14047
|
exports.createOrUpdateConnection = createOrUpdateConnection;
|
|
14048
|
+
exports.createPaginationResponseSchema = createPaginationResponseSchema;
|
|
13862
14049
|
exports.createSchema = createSchema;
|
|
13863
14050
|
exports.dataCollectionEventTypeToExternalEventType = dataCollectionEventTypeToExternalEventType;
|
|
13864
14051
|
exports.dataLocationParametersMatch = dataLocationParametersMatch;
|