@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.node.js
CHANGED
|
@@ -3418,28 +3418,42 @@ const zodBooleanCoercion = () => z.z.preprocess((val) => {
|
|
|
3418
3418
|
return Boolean(val);
|
|
3419
3419
|
}, z.z.boolean());
|
|
3420
3420
|
|
|
3421
|
+
const PaginationQuery = z.z.object({
|
|
3422
|
+
limit: z.z.coerce.number().int().min(1).max(1000).optional(),
|
|
3423
|
+
cursor: z.z.string().optional(),
|
|
3424
|
+
});
|
|
3425
|
+
function createPaginationResponseSchema(itemSchema) {
|
|
3426
|
+
return z.z.object({
|
|
3427
|
+
items: z.z.array(itemSchema),
|
|
3428
|
+
cursor: z.z.string().optional(),
|
|
3429
|
+
});
|
|
3430
|
+
}
|
|
3431
|
+
class PaginationResponse {
|
|
3432
|
+
}
|
|
3421
3433
|
const IncludeArchivedQuery = z.z.object({
|
|
3422
3434
|
includeArchived: zodBooleanCoercion().optional(),
|
|
3423
3435
|
});
|
|
3424
3436
|
const SearchQuery = z.z.object({
|
|
3425
3437
|
search: z.z.string().optional(),
|
|
3426
3438
|
});
|
|
3427
|
-
const PaginationQuery = z.z.object({
|
|
3428
|
-
limit: z.z.coerce.number().int().min(1).max(1000).optional(),
|
|
3429
|
-
cursor: z.z.string().optional(),
|
|
3430
|
-
});
|
|
3431
3439
|
const CommonListElementsQuery = SearchQuery.merge(PaginationQuery).merge(IncludeArchivedQuery);
|
|
3440
|
+
const CommonFindElementsQuery = CommonListElementsQuery.extend({
|
|
3441
|
+
connectorId: z.z.string().optional(),
|
|
3442
|
+
});
|
|
3432
3443
|
const CommonInstancesListQuery = CommonListElementsQuery.extend({
|
|
3433
3444
|
userId: z.z.string().optional(),
|
|
3434
3445
|
instanceKey: z.z.string().optional(),
|
|
3435
3446
|
});
|
|
3447
|
+
const CommonFindInstancesQuery = CommonFindElementsQuery.extend({
|
|
3448
|
+
id: z.z.string().optional(),
|
|
3449
|
+
userId: z.z.string().optional(),
|
|
3450
|
+
instanceKey: z.z.string().optional(),
|
|
3451
|
+
});
|
|
3436
3452
|
const CommonIntegrationOrConnectionQuery = z.z.object({
|
|
3437
3453
|
connectionId: z.z.string().optional(),
|
|
3438
3454
|
integrationId: z.z.string().optional(),
|
|
3439
3455
|
integrationKey: z.z.string().optional(),
|
|
3440
3456
|
});
|
|
3441
|
-
class PaginationResponse {
|
|
3442
|
-
}
|
|
3443
3457
|
|
|
3444
3458
|
exports.ConfigurationState = void 0;
|
|
3445
3459
|
(function (ConfigurationState) {
|
|
@@ -3535,6 +3549,7 @@ const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties = BaseMembraneInte
|
|
|
3535
3549
|
const BaseIntegrationLevelMembraneInterfaceExportProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
3536
3550
|
integrationUuid: z.z.string().optional(),
|
|
3537
3551
|
parentUuid: z.z.string().optional(),
|
|
3552
|
+
isCustomized: z.z.boolean().optional(),
|
|
3538
3553
|
});
|
|
3539
3554
|
const IntegrationLevelMembraneInterfaceSelectorQuery = z.z.object({
|
|
3540
3555
|
layer: z.z.enum(['universal', 'integration', 'connection']).optional(),
|
|
@@ -3549,6 +3564,17 @@ const FindIntegrationLevelMembraneInterfaceQuery = IntegrationLevelMembraneInter
|
|
|
3549
3564
|
userId: z.z.string().optional(),
|
|
3550
3565
|
});
|
|
3551
3566
|
const BaseIntegrationLevelMembraneInterface = BaseMembraneInterface.merge(BaseIntegrationLevelMembraneInterfaceEditableProperties).merge(BaseIntegrationLevelMembraneInterfaceReadOnlyProperties);
|
|
3567
|
+
const WorkspaceElementSearchQuery = z.z.object({
|
|
3568
|
+
q: z.z.string().min(1).max(200),
|
|
3569
|
+
elementType: z.z.enum(exports.WorkspaceElementType).optional(),
|
|
3570
|
+
limit: z.z.coerce.number().int().min(1).max(100).optional(),
|
|
3571
|
+
cursor: z.z.string().optional(),
|
|
3572
|
+
});
|
|
3573
|
+
const WorkspaceElementSearchResult = z.z.object({
|
|
3574
|
+
elementType: z.z.enum(exports.WorkspaceElementType),
|
|
3575
|
+
elementId: z.z.string(),
|
|
3576
|
+
name: z.z.string(),
|
|
3577
|
+
});
|
|
3552
3578
|
|
|
3553
3579
|
function mergeWithFormulas(a, b) {
|
|
3554
3580
|
if (Array.isArray(a) && Array.isArray(b)) {
|
|
@@ -8810,7 +8836,12 @@ const BackwardCompatibleDataSourceEditableProperties = DataSourceEditablePropert
|
|
|
8810
8836
|
path: z.z.string().optional().meta({ deprecated: true }),
|
|
8811
8837
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
8812
8838
|
});
|
|
8813
|
-
const DataSourceExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend(DataSourceSpecificProperties.shape)
|
|
8839
|
+
const DataSourceExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend(DataSourceSpecificProperties.shape)
|
|
8840
|
+
.extend({
|
|
8841
|
+
path: z.z.string().optional().meta({ deprecated: true }),
|
|
8842
|
+
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
8843
|
+
})
|
|
8844
|
+
.omit({
|
|
8814
8845
|
connectionId: true,
|
|
8815
8846
|
dataSourceId: true,
|
|
8816
8847
|
universalDataSourceId: true,
|
|
@@ -9335,51 +9366,39 @@ const BaseIntegration = BaseMembraneInterface.extend({
|
|
|
9335
9366
|
isDeactivated: z.z.boolean().optional(),
|
|
9336
9367
|
authType: z.z.enum(CONNECTOR_AUTH_TYPES).optional(),
|
|
9337
9368
|
});
|
|
9338
|
-
const
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
connectorVersion: z.z.string().optional(),
|
|
9342
|
-
oAuthCallbackUri: z.z.string().optional(),
|
|
9343
|
-
parameters: z.z.any().optional(),
|
|
9369
|
+
const IntegrationEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
9370
|
+
baseUri: z.z.string().optional(),
|
|
9371
|
+
logoUri: z.z.string().optional(),
|
|
9344
9372
|
appUuid: z.z.string().optional(),
|
|
9373
|
+
oAuthCallbackUri: z.z.url().or(z.z.literal('')).optional(),
|
|
9374
|
+
logoBase64: z.z.string().optional(),
|
|
9375
|
+
connectorVersion: z.z.string().optional(),
|
|
9376
|
+
connectorId: z.z.string().optional(),
|
|
9377
|
+
connectorUuid: z.z.string().optional(),
|
|
9378
|
+
});
|
|
9379
|
+
const IntegrationExportProperties = IntegrationEditableProperties.extend({
|
|
9380
|
+
connectorUuid: z.z.string().optional(),
|
|
9345
9381
|
});
|
|
9346
9382
|
const AppliedToIntegrations = (elementSchema) => z.z.array(z.z.object({
|
|
9347
9383
|
element: elementSchema,
|
|
9348
9384
|
integration: BaseIntegration,
|
|
9349
9385
|
}));
|
|
9350
9386
|
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
IntegrationElementLevel["UNIVERSAL"] = "universal";
|
|
9354
|
-
IntegrationElementLevel["CONNECTOR"] = "connector";
|
|
9355
|
-
IntegrationElementLevel["CONNECTION"] = "connection";
|
|
9356
|
-
})(exports.IntegrationElementLevel || (exports.IntegrationElementLevel = {}));
|
|
9357
|
-
exports.IntegrationElementType = void 0;
|
|
9358
|
-
(function (IntegrationElementType) {
|
|
9359
|
-
IntegrationElementType["APP_DATA_SCHEMA"] = "app-data-schema";
|
|
9360
|
-
IntegrationElementType["APP_EVENT_TYPE"] = "app-event-type";
|
|
9361
|
-
IntegrationElementType["DATA_SOURCE"] = "data-source";
|
|
9362
|
-
IntegrationElementType["SCHEMA"] = "schema";
|
|
9363
|
-
IntegrationElementType["FIELD_MAPPING"] = "field-mapping";
|
|
9364
|
-
IntegrationElementType["FLOW"] = "flow";
|
|
9365
|
-
IntegrationElementType["INTEGRATION"] = "integration";
|
|
9366
|
-
IntegrationElementType["ACTION"] = "action";
|
|
9367
|
-
IntegrationElementType["DATA_LINK_TABLE"] = "data-link-table";
|
|
9368
|
-
IntegrationElementType["EXTERNAL_EVENT"] = "external-event";
|
|
9369
|
-
})(exports.IntegrationElementType || (exports.IntegrationElementType = {}));
|
|
9370
|
-
|
|
9387
|
+
const PACKAGE_VERSION_DEVELOPMENT = 'dev';
|
|
9388
|
+
const PACKAGE_VERSION_LATEST = 'latest';
|
|
9371
9389
|
const PackageElement = z.z.object({
|
|
9372
9390
|
id: z.z.string(),
|
|
9373
|
-
type: z.z.enum(exports.
|
|
9391
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9374
9392
|
element: z.z.any().optional(),
|
|
9375
9393
|
});
|
|
9376
9394
|
const PackageElementExport = z.z.object({
|
|
9377
9395
|
uuid: z.z.string(),
|
|
9378
|
-
type: z.z.enum(exports.
|
|
9396
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9379
9397
|
element: z.z.any().optional(),
|
|
9380
9398
|
});
|
|
9381
9399
|
const PackageEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.extend({
|
|
9382
9400
|
scenarioTemplateId: z.z.string().optional(),
|
|
9401
|
+
externalAppId: z.z.string().optional(),
|
|
9383
9402
|
elements: z.z.array(PackageElement).optional(),
|
|
9384
9403
|
});
|
|
9385
9404
|
const PackageExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend({
|
|
@@ -9391,6 +9410,20 @@ const PackageCalculatedProperties = z.z.object({
|
|
|
9391
9410
|
isCustomized: z.z.boolean().optional(),
|
|
9392
9411
|
});
|
|
9393
9412
|
const BasePackage = BaseMembraneInterface.merge(PackageEditableProperties).merge(PackageCalculatedProperties);
|
|
9413
|
+
const WritablePackageVersionData = z.z.object({
|
|
9414
|
+
elements: z.z.array(PackageElement).optional(),
|
|
9415
|
+
});
|
|
9416
|
+
const PackageVersionData = WritablePackageVersionData.extend({
|
|
9417
|
+
version: z.z.string().optional(),
|
|
9418
|
+
changelog: z.z.string().optional(),
|
|
9419
|
+
parentPackageVersion: z.z.string().optional(),
|
|
9420
|
+
});
|
|
9421
|
+
const PackageVersionListItem = z.z.object({
|
|
9422
|
+
id: z.z.string(),
|
|
9423
|
+
version: z.z.string(),
|
|
9424
|
+
changelog: z.z.string().optional(),
|
|
9425
|
+
parentPackageVersion: z.z.string().optional(),
|
|
9426
|
+
});
|
|
9394
9427
|
|
|
9395
9428
|
exports.ScreenType = void 0;
|
|
9396
9429
|
(function (ScreenType) {
|
|
@@ -9758,6 +9791,7 @@ exports.ActionRunLogStatus = void 0;
|
|
|
9758
9791
|
ActionRunLogStatus["ERROR"] = "error";
|
|
9759
9792
|
})(exports.ActionRunLogStatus || (exports.ActionRunLogStatus = {}));
|
|
9760
9793
|
const BaseActionRunLogRecord = BaseWorkspaceElement.extend({
|
|
9794
|
+
userId: z.z.string(),
|
|
9761
9795
|
actionId: z.z.string(),
|
|
9762
9796
|
actionInstanceId: z.z.string(),
|
|
9763
9797
|
integrationId: z.z.string(),
|
|
@@ -9781,9 +9815,11 @@ const ActionApiResponse = BaseAction.extend({
|
|
|
9781
9815
|
outputSchema: DataSchema.optional(),
|
|
9782
9816
|
dependencies: z.z.array(z.z.any()).optional(),
|
|
9783
9817
|
});
|
|
9784
|
-
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
9818
|
+
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
9819
|
+
externalAppId: z.z.string().optional(),
|
|
9820
|
+
});
|
|
9785
9821
|
const CreateActionRequest = ActionEditableProperties;
|
|
9786
|
-
const UpdateActionRequest = CreateActionRequest.
|
|
9822
|
+
const UpdateActionRequest = CreateActionRequest.partial();
|
|
9787
9823
|
const CreateActionInstanceRequest = CreateActionRequest;
|
|
9788
9824
|
const UpdateActionInstanceRequest = UpdateActionRequest;
|
|
9789
9825
|
const RunActionRequest = z.z.object({
|
|
@@ -9791,7 +9827,7 @@ const RunActionRequest = z.z.object({
|
|
|
9791
9827
|
});
|
|
9792
9828
|
const ActionRunResponse = z.z.object({
|
|
9793
9829
|
output: z.z.any().optional(),
|
|
9794
|
-
|
|
9830
|
+
actionRunId: z.z.string().optional(),
|
|
9795
9831
|
});
|
|
9796
9832
|
const ActionInstanceApiResponse = ActionApiResponse;
|
|
9797
9833
|
const ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
@@ -9799,19 +9835,33 @@ const FindActionInstancesQuery = FindActionsQuery;
|
|
|
9799
9835
|
|
|
9800
9836
|
const ActionRunLogRecordApiResponse = BaseActionRunLogRecord.extend({
|
|
9801
9837
|
action: BaseAction.optional(),
|
|
9838
|
+
actionInstance: BaseAction.optional(),
|
|
9802
9839
|
integration: BaseIntegration.optional(),
|
|
9803
9840
|
connection: BaseConnection.optional(),
|
|
9841
|
+
user: BaseCustomer.optional(),
|
|
9804
9842
|
});
|
|
9843
|
+
const FindActionRunLogsQuery = PaginationQuery.extend({
|
|
9844
|
+
actionInstanceId: z.z.string().optional(),
|
|
9845
|
+
actionId: z.z.string().optional(),
|
|
9846
|
+
integrationId: z.z.string().optional(),
|
|
9847
|
+
connectionId: z.z.string().optional(),
|
|
9848
|
+
userId: z.z.string().optional(),
|
|
9849
|
+
status: z.z.enum(exports.ActionRunLogStatus).optional(),
|
|
9850
|
+
startedAfter: z.z.string().optional(),
|
|
9851
|
+
});
|
|
9852
|
+
const FindActionRunLogsResponse = createPaginationResponseSchema(ActionRunLogRecordApiResponse);
|
|
9805
9853
|
|
|
9806
|
-
const FindConnectionsQuery =
|
|
9807
|
-
.
|
|
9854
|
+
const FindConnectionsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
9855
|
+
connectorId: z.z.string().optional(),
|
|
9856
|
+
id: z.z.string().optional(),
|
|
9808
9857
|
userId: z.z.string().optional(),
|
|
9858
|
+
name: z.z.string().optional(),
|
|
9809
9859
|
isTest: zodBooleanCoercion().optional(),
|
|
9810
|
-
|
|
9860
|
+
disconnected: zodBooleanCoercion().optional(),
|
|
9811
9861
|
integrationId: z.z.string().optional(),
|
|
9812
|
-
|
|
9813
|
-
|
|
9814
|
-
|
|
9862
|
+
integrationKey: z.z.string().optional(),
|
|
9863
|
+
includeSecrets: zodBooleanCoercion().optional(),
|
|
9864
|
+
});
|
|
9815
9865
|
const CreateConnectionRequest = z.z.object({
|
|
9816
9866
|
name: z.z.string(),
|
|
9817
9867
|
integrationId: z.z.string(),
|
|
@@ -9855,6 +9905,10 @@ const ConnectionMessagePayload = z.z.discriminatedUnion('type', [
|
|
|
9855
9905
|
}),
|
|
9856
9906
|
]);
|
|
9857
9907
|
|
|
9908
|
+
const ListPublicConnectorsQuery = PaginationQuery.extend({
|
|
9909
|
+
search: z.z.string().optional(),
|
|
9910
|
+
});
|
|
9911
|
+
|
|
9858
9912
|
const DataSourceApiResponse = BaseDataSource.extend({
|
|
9859
9913
|
integration: BaseIntegration.optional(),
|
|
9860
9914
|
appliedToIntegrations: AppliedToIntegrations(BaseDataSource).optional(),
|
|
@@ -9926,6 +9980,17 @@ const FindDataSourceInstanceSyncsQuery = ListDataSourceInstancesForConnectionQue
|
|
|
9926
9980
|
dataSourceInstanceId: z.z.string().optional(),
|
|
9927
9981
|
});
|
|
9928
9982
|
|
|
9983
|
+
const FindDataSourceInstanceQuery = CommonFindElementsQuery.extend({
|
|
9984
|
+
id: z.z.string().optional(),
|
|
9985
|
+
userId: z.z.string().optional(),
|
|
9986
|
+
connectionId: z.z.string().optional(),
|
|
9987
|
+
integrationKey: z.z.string().optional(),
|
|
9988
|
+
integrationId: z.z.string().optional(),
|
|
9989
|
+
dataSourceId: z.z.string().optional(),
|
|
9990
|
+
universalDataSourceId: z.z.string().optional(),
|
|
9991
|
+
udm: z.z.string().optional(),
|
|
9992
|
+
instanceKey: z.z.string().optional(),
|
|
9993
|
+
});
|
|
9929
9994
|
const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
9930
9995
|
user: BaseCustomer.optional(),
|
|
9931
9996
|
dataSource: BaseDataSource.optional(),
|
|
@@ -9935,6 +10000,13 @@ const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
|
9935
10000
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
9936
10001
|
});
|
|
9937
10002
|
|
|
10003
|
+
const ListExternalAppsQuery = PaginationQuery.extend({
|
|
10004
|
+
search: z.z.string().optional(),
|
|
10005
|
+
category: z.z.string().optional(),
|
|
10006
|
+
hasAuth: zodBooleanCoercion().optional(),
|
|
10007
|
+
hasData: zodBooleanCoercion().optional(),
|
|
10008
|
+
});
|
|
10009
|
+
|
|
9938
10010
|
const ExternalEvent = BaseExternalEvent.extend({
|
|
9939
10011
|
appliedToIntegrations: AppliedToIntegrations(BaseExternalEvent).optional(),
|
|
9940
10012
|
});
|
|
@@ -10012,18 +10084,8 @@ const FindFlowRunsResponse = z.z.object({
|
|
|
10012
10084
|
cursor: z.z.string().optional(),
|
|
10013
10085
|
});
|
|
10014
10086
|
|
|
10015
|
-
const CreateIntegrationRequest =
|
|
10016
|
-
|
|
10017
|
-
key: z.z.string(),
|
|
10018
|
-
baseUri: z.z.string(),
|
|
10019
|
-
logoUri: z.z.string(),
|
|
10020
|
-
});
|
|
10021
|
-
const UpdateIntegrationRequest = z.z.object({
|
|
10022
|
-
name: z.z.string().optional(),
|
|
10023
|
-
key: z.z.string().optional(),
|
|
10024
|
-
baseUri: z.z.string().optional(),
|
|
10025
|
-
logoUri: z.z.string().optional(),
|
|
10026
|
-
});
|
|
10087
|
+
const CreateIntegrationRequest = IntegrationEditableProperties;
|
|
10088
|
+
const UpdateIntegrationRequest = IntegrationEditableProperties.partial();
|
|
10027
10089
|
const FindIntegrationsQuery = z.z.object({}).merge(PaginationQuery).merge(SearchQuery);
|
|
10028
10090
|
const IntegrationAuthUi = z.z.object({
|
|
10029
10091
|
schema: z.z.any().optional(),
|
|
@@ -10045,16 +10107,25 @@ const IntegrationApiResponse = BaseIntegration.extend({
|
|
|
10045
10107
|
|
|
10046
10108
|
const PackageElementApi = z.z.object({
|
|
10047
10109
|
id: z.z.string(),
|
|
10048
|
-
type: z.z.enum(exports.
|
|
10110
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
10049
10111
|
element: z.z.any().optional(),
|
|
10050
10112
|
});
|
|
10051
|
-
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
10113
|
+
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
10114
|
+
externalAppId: z.z.string().optional(),
|
|
10115
|
+
});
|
|
10052
10116
|
const CreatePackageRequest = PackageEditableProperties;
|
|
10053
10117
|
const UpdatePackageRequest = CreatePackageRequest.extend({}).partial();
|
|
10054
|
-
const PackageApiResponse = BasePackage.extend({
|
|
10118
|
+
const PackageApiResponse = BasePackage.merge(PackageVersionData).extend({
|
|
10055
10119
|
appliedToIntegrations: AppliedToIntegrations(BasePackage).optional(),
|
|
10056
10120
|
});
|
|
10121
|
+
const ListPublicPackagesQuery = PaginationQuery.extend({
|
|
10122
|
+
search: z.z.string().optional(),
|
|
10123
|
+
});
|
|
10057
10124
|
|
|
10125
|
+
const FindScreensQuery = PaginationQuery.extend({
|
|
10126
|
+
type: z.z.enum(exports.ScreenType).optional(),
|
|
10127
|
+
key: z.z.string().optional(),
|
|
10128
|
+
});
|
|
10058
10129
|
const ScreenApiResponse = BaseScreen;
|
|
10059
10130
|
|
|
10060
10131
|
const CreateCustomerRequest = z.z.object({
|
|
@@ -10102,6 +10173,37 @@ const CreateDataLinkTableRequest = DataLinkTableEditableProperties;
|
|
|
10102
10173
|
const UpdateDataLinkTableRequest = CreateDataLinkTableRequest.partial();
|
|
10103
10174
|
const DataLinkTableApiResponse = BaseDataLinkTable;
|
|
10104
10175
|
|
|
10176
|
+
const FindDataLinkTableInstancesQuery = PaginationQuery.extend({
|
|
10177
|
+
id: z.z.string().optional(),
|
|
10178
|
+
userId: z.z.string().optional(),
|
|
10179
|
+
dataLinkTableId: z.z.string().optional(),
|
|
10180
|
+
connectionId: z.z.string().optional(),
|
|
10181
|
+
integrationId: z.z.string().optional(),
|
|
10182
|
+
});
|
|
10183
|
+
const FindDataLinksInTableQuery = PaginationQuery.extend({
|
|
10184
|
+
direction: z.z.enum(exports.DataLinkDirection).optional(),
|
|
10185
|
+
appRecordId: z.z.string().optional(),
|
|
10186
|
+
externalRecordId: z.z.string().optional(),
|
|
10187
|
+
});
|
|
10188
|
+
const FindDataLinksQuery = PaginationQuery.extend({
|
|
10189
|
+
dataLinkTableInstanceId: z.z.string(),
|
|
10190
|
+
externalRecordId: z.z.string().optional(),
|
|
10191
|
+
appRecordId: z.z.string().optional(),
|
|
10192
|
+
direction: z.z.enum(exports.DataLinkDirection).optional(),
|
|
10193
|
+
});
|
|
10194
|
+
const FindDataLinksResponse = createPaginationResponseSchema(DataLink);
|
|
10195
|
+
const FindDataLinkTableInstanceLinksQuery = ConnectionSelector.extend({
|
|
10196
|
+
id: z.z.string().optional(),
|
|
10197
|
+
instanceKey: z.z.string().optional(),
|
|
10198
|
+
dataLinkTableId: z.z.string().optional(),
|
|
10199
|
+
dataLinkTableKey: z.z.string().optional(),
|
|
10200
|
+
autoCreate: zodBooleanCoercion().optional(),
|
|
10201
|
+
direction: z.z.enum(exports.DataLinkDirection).optional(),
|
|
10202
|
+
appRecordId: z.z.string().optional(),
|
|
10203
|
+
externalRecordId: z.z.string().optional(),
|
|
10204
|
+
limit: z.z.coerce.number().int().min(1).max(1000).optional(),
|
|
10205
|
+
cursor: z.z.string().optional(),
|
|
10206
|
+
});
|
|
10105
10207
|
const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
10106
10208
|
dataLinkTable: BaseDataLinkTable.optional(),
|
|
10107
10209
|
connection: BaseConnection.optional(),
|
|
@@ -10109,8 +10211,25 @@ const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
|
10109
10211
|
user: BaseCustomer.optional(),
|
|
10110
10212
|
});
|
|
10111
10213
|
|
|
10214
|
+
const FindAppEventTypesQuery = CommonFindElementsQuery.extend({});
|
|
10215
|
+
const FindAppEventsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
10216
|
+
id: z.z.string().optional(),
|
|
10217
|
+
userId: z.z.string().optional(),
|
|
10218
|
+
appEventTypeId: z.z.string().optional(),
|
|
10219
|
+
appEventSubscriptionId: z.z.string().optional(),
|
|
10220
|
+
startDatetime: z.z.iso.datetime().optional(),
|
|
10221
|
+
endDatetime: z.z.iso.datetime().optional(),
|
|
10222
|
+
instanceKey: z.z.string().optional(),
|
|
10223
|
+
});
|
|
10112
10224
|
const AppEventTypeApiResponse = BaseAppEventType;
|
|
10113
10225
|
|
|
10226
|
+
const FindAppEventSubscriptionsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
10227
|
+
id: z.z.string().optional(),
|
|
10228
|
+
userId: z.z.string().optional(),
|
|
10229
|
+
appEventTypeId: z.z.string().optional(),
|
|
10230
|
+
isSubscribed: zodBooleanCoercion().optional(),
|
|
10231
|
+
instanceKey: z.z.string().optional(),
|
|
10232
|
+
});
|
|
10114
10233
|
const AppEventSubscriptionApiResponse = BaseAppEventSubscription.extend({
|
|
10115
10234
|
appEventType: BaseAppEventType.optional(),
|
|
10116
10235
|
user: BaseCustomer.optional(),
|
|
@@ -10144,6 +10263,14 @@ const ListExternalEventPullsQuery = CommonListElementsQuery.extend({
|
|
|
10144
10263
|
externalEventSubscriptionId: z.z.string().optional(),
|
|
10145
10264
|
status: z.z.enum(exports.ExternalEventPullStatus).optional(),
|
|
10146
10265
|
});
|
|
10266
|
+
const FindExternalEventPullsQuery = PaginationQuery.extend({
|
|
10267
|
+
externalEventSubscriptionId: z.z.string().optional(),
|
|
10268
|
+
integrationId: z.z.string().optional(),
|
|
10269
|
+
connectionId: z.z.string().optional(),
|
|
10270
|
+
userId: z.z.string().optional(),
|
|
10271
|
+
status: z.z.enum(exports.ExternalEventPullStatus).optional(),
|
|
10272
|
+
startedAfter: z.z.string().optional(),
|
|
10273
|
+
});
|
|
10147
10274
|
const ExternalEventPullApiResponse = BaseExternalEventPull.extend({
|
|
10148
10275
|
user: BaseCustomer.optional(),
|
|
10149
10276
|
externalEventSubscription: BaseExternalEventSubscription.optional(),
|
|
@@ -10333,6 +10460,7 @@ const WorkspaceElementSpecs = {
|
|
|
10333
10460
|
apiPath: 'integrations',
|
|
10334
10461
|
name: 'Integration',
|
|
10335
10462
|
namePlural: 'Integrations',
|
|
10463
|
+
editablePropertiesSchema: IntegrationEditableProperties,
|
|
10336
10464
|
exportPropertiesSchema: IntegrationExportProperties,
|
|
10337
10465
|
},
|
|
10338
10466
|
[exports.WorkspaceElementType.Connector]: {
|
|
@@ -10377,6 +10505,7 @@ const WorkspaceElementSpecs = {
|
|
|
10377
10505
|
findQuerySchema: FindActionsQuery,
|
|
10378
10506
|
isMembraneInterface: true,
|
|
10379
10507
|
isIntegrationLevel: true,
|
|
10508
|
+
canBeAddedToPackage: true,
|
|
10380
10509
|
},
|
|
10381
10510
|
[exports.WorkspaceElementType.ActionRunLogRecord]: {
|
|
10382
10511
|
type: exports.WorkspaceElementType.ActionRunLogRecord,
|
|
@@ -10396,6 +10525,7 @@ const WorkspaceElementSpecs = {
|
|
|
10396
10525
|
findQuerySchema: FindFlowsQuery,
|
|
10397
10526
|
isMembraneInterface: true,
|
|
10398
10527
|
isIntegrationLevel: true,
|
|
10528
|
+
canBeAddedToPackage: true,
|
|
10399
10529
|
},
|
|
10400
10530
|
[exports.WorkspaceElementType.FlowInstance]: {
|
|
10401
10531
|
type: exports.WorkspaceElementType.FlowInstance,
|
|
@@ -10426,6 +10556,7 @@ const WorkspaceElementSpecs = {
|
|
|
10426
10556
|
findQuerySchema: FindFieldMappingsQuery,
|
|
10427
10557
|
isMembraneInterface: true,
|
|
10428
10558
|
isIntegrationLevel: true,
|
|
10559
|
+
canBeAddedToPackage: true,
|
|
10429
10560
|
},
|
|
10430
10561
|
[exports.WorkspaceElementType.FieldMappingInstance]: {
|
|
10431
10562
|
type: exports.WorkspaceElementType.FieldMappingInstance,
|
|
@@ -10449,6 +10580,7 @@ const WorkspaceElementSpecs = {
|
|
|
10449
10580
|
findQuerySchema: FindDataSourcesQuery,
|
|
10450
10581
|
isMembraneInterface: true,
|
|
10451
10582
|
isIntegrationLevel: true,
|
|
10583
|
+
canBeAddedToPackage: true,
|
|
10452
10584
|
},
|
|
10453
10585
|
[exports.WorkspaceElementType.DataSourceInstance]: {
|
|
10454
10586
|
type: exports.WorkspaceElementType.DataSourceInstance,
|
|
@@ -10469,6 +10601,7 @@ const WorkspaceElementSpecs = {
|
|
|
10469
10601
|
apiResponseSchema: DataLinkTableApiResponse,
|
|
10470
10602
|
findQuerySchema: FindDataLinkTablesQuery,
|
|
10471
10603
|
isMembraneInterface: true,
|
|
10604
|
+
canBeAddedToPackage: true,
|
|
10472
10605
|
},
|
|
10473
10606
|
[exports.WorkspaceElementType.DataLinkTableInstance]: {
|
|
10474
10607
|
type: exports.WorkspaceElementType.DataLinkTableInstance,
|
|
@@ -10486,6 +10619,7 @@ const WorkspaceElementSpecs = {
|
|
|
10486
10619
|
isMembraneInterface: true,
|
|
10487
10620
|
exportPropertiesSchema: AppEventTypeExportProperties,
|
|
10488
10621
|
editablePropertiesSchema: AppEventTypeEditableProperties,
|
|
10622
|
+
canBeAddedToPackage: true,
|
|
10489
10623
|
},
|
|
10490
10624
|
[exports.WorkspaceElementType.AppEventSubscription]: {
|
|
10491
10625
|
type: exports.WorkspaceElementType.AppEventSubscription,
|
|
@@ -10508,6 +10642,7 @@ const WorkspaceElementSpecs = {
|
|
|
10508
10642
|
isMembraneInterface: true,
|
|
10509
10643
|
exportPropertiesSchema: AppDataSchemaExportProperties,
|
|
10510
10644
|
editablePropertiesSchema: AppDataSchemaEditableProperties,
|
|
10645
|
+
canBeAddedToPackage: true,
|
|
10511
10646
|
},
|
|
10512
10647
|
[exports.WorkspaceElementType.AppDataSchemaInstance]: {
|
|
10513
10648
|
type: exports.WorkspaceElementType.AppDataSchemaInstance,
|
|
@@ -10854,6 +10989,26 @@ function getBusinessDaysBetween(startDate, endDate) {
|
|
|
10854
10989
|
return businessDays;
|
|
10855
10990
|
}
|
|
10856
10991
|
|
|
10992
|
+
exports.IntegrationElementLevel = void 0;
|
|
10993
|
+
(function (IntegrationElementLevel) {
|
|
10994
|
+
IntegrationElementLevel["UNIVERSAL"] = "universal";
|
|
10995
|
+
IntegrationElementLevel["CONNECTOR"] = "connector";
|
|
10996
|
+
IntegrationElementLevel["CONNECTION"] = "connection";
|
|
10997
|
+
})(exports.IntegrationElementLevel || (exports.IntegrationElementLevel = {}));
|
|
10998
|
+
exports.IntegrationElementType = void 0;
|
|
10999
|
+
(function (IntegrationElementType) {
|
|
11000
|
+
IntegrationElementType["APP_DATA_SCHEMA"] = "app-data-schema";
|
|
11001
|
+
IntegrationElementType["APP_EVENT_TYPE"] = "app-event-type";
|
|
11002
|
+
IntegrationElementType["DATA_SOURCE"] = "data-source";
|
|
11003
|
+
IntegrationElementType["SCHEMA"] = "schema";
|
|
11004
|
+
IntegrationElementType["FIELD_MAPPING"] = "field-mapping";
|
|
11005
|
+
IntegrationElementType["FLOW"] = "flow";
|
|
11006
|
+
IntegrationElementType["INTEGRATION"] = "integration";
|
|
11007
|
+
IntegrationElementType["ACTION"] = "action";
|
|
11008
|
+
IntegrationElementType["DATA_LINK_TABLE"] = "data-link-table";
|
|
11009
|
+
IntegrationElementType["EXTERNAL_EVENT"] = "external-event";
|
|
11010
|
+
})(exports.IntegrationElementType || (exports.IntegrationElementType = {}));
|
|
11011
|
+
|
|
10857
11012
|
exports.UsageType = void 0;
|
|
10858
11013
|
(function (UsageType) {
|
|
10859
11014
|
UsageType["FLOW_RUNS_DURATION"] = "flow-runs-duration";
|
|
@@ -10874,6 +11029,7 @@ exports.UsageType = void 0;
|
|
|
10874
11029
|
UsageType["FILES_UPLOAD_NUMBER"] = "files-upload-number";
|
|
10875
11030
|
UsageType["FILES_UPLOAD_SIZE"] = "files-upload-size";
|
|
10876
11031
|
UsageType["CUSTOM_CODE_RUNTIME_DURATION"] = "custom-code-runtime-duration";
|
|
11032
|
+
UsageType["INSTANT_TASKS_DURATION"] = "instant-tasks-duration";
|
|
10877
11033
|
UsageType["MEMBRANE_AGENT"] = "membrane-agent";
|
|
10878
11034
|
})(exports.UsageType || (exports.UsageType = {}));
|
|
10879
11035
|
|
|
@@ -11379,6 +11535,12 @@ exports.AlertType = void 0;
|
|
|
11379
11535
|
AlertType["membraneAgentUsagePer30Days"] = "membraneAgentUsagePer30Days";
|
|
11380
11536
|
})(exports.AlertType || (exports.AlertType = {}));
|
|
11381
11537
|
|
|
11538
|
+
const IntegrationSpecificElementSelector = z.object({
|
|
11539
|
+
id: z.string().optional(),
|
|
11540
|
+
key: z.string().optional(),
|
|
11541
|
+
integrationId: z.string().optional(),
|
|
11542
|
+
integrationKey: z.string().optional(),
|
|
11543
|
+
});
|
|
11382
11544
|
class ElementAccessor {
|
|
11383
11545
|
constructor(options) {
|
|
11384
11546
|
this.options = options;
|
|
@@ -11805,11 +11967,10 @@ function injectStyles(mountTargetSelector) {
|
|
|
11805
11967
|
content: "";
|
|
11806
11968
|
width: 5rem;
|
|
11807
11969
|
height: 4rem;
|
|
11808
|
-
background-image: url(
|
|
11970
|
+
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");
|
|
11809
11971
|
background-size: contain;
|
|
11810
11972
|
background-repeat: no-repeat;
|
|
11811
11973
|
background-position: center;
|
|
11812
|
-
filter: invert(1);
|
|
11813
11974
|
}`,
|
|
11814
11975
|
`.${CONTAINER_ELEMENT_CLASS} iframe {
|
|
11815
11976
|
${hasCustomMountTarget ? '' : 'position: absolute;'}
|
|
@@ -13104,26 +13265,22 @@ exports.AgentSessionState = void 0;
|
|
|
13104
13265
|
})(exports.AgentSessionState || (exports.AgentSessionState = {}));
|
|
13105
13266
|
const AgentSession = z.z.object({
|
|
13106
13267
|
id: z.z.string(),
|
|
13107
|
-
workspaceId: z.z.string(),
|
|
13108
13268
|
userId: z.z.string().optional(),
|
|
13109
13269
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType),
|
|
13110
13270
|
workspaceElementId: z.z.string(),
|
|
13111
13271
|
type: z.z.string(),
|
|
13112
13272
|
status: z.z.enum(exports.AgentSessionStatus),
|
|
13113
|
-
workerId: z.z.string().optional(),
|
|
13114
|
-
workerUrl: z.z.string().url().optional(),
|
|
13115
13273
|
prompt: z.z.string(),
|
|
13116
13274
|
error: ErrorDataSchema.optional(),
|
|
13117
|
-
createdBy: z.z.string(),
|
|
13118
13275
|
lastActivityAt: z.z.iso.datetime(),
|
|
13276
|
+
title: z.z.string().optional(),
|
|
13277
|
+
summary: z.z.string().optional(),
|
|
13278
|
+
cost: z.z.number().optional(),
|
|
13279
|
+
state: z.z.enum(exports.AgentSessionState).default(exports.AgentSessionState.BUSY),
|
|
13280
|
+
usage: z.z.number().optional(),
|
|
13281
|
+
hasWorker: z.z.boolean(),
|
|
13119
13282
|
createdAt: z.z.iso.datetime(),
|
|
13120
13283
|
updatedAt: z.z.iso.datetime(),
|
|
13121
|
-
storedMessagesUri: z.z.string().url().optional(),
|
|
13122
|
-
sessionFilesZipUri: z.z.string().url().optional(),
|
|
13123
|
-
logs: z.z.array(z.z.any()).optional(),
|
|
13124
|
-
usage: z.z.number().optional(),
|
|
13125
|
-
summary: z.z.string().optional(),
|
|
13126
|
-
state: z.z.enum(exports.AgentSessionState).default(exports.AgentSessionState.IDLE),
|
|
13127
13284
|
});
|
|
13128
13285
|
const CreateAgentSession = z.z.object({
|
|
13129
13286
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType).optional(),
|
|
@@ -13139,7 +13296,9 @@ const AgentSessionInputSchema = z.z.object({
|
|
|
13139
13296
|
const PatchAgentSessionSchema = z.z.object({
|
|
13140
13297
|
state: z.z.enum(exports.AgentSessionState).optional(),
|
|
13141
13298
|
lastActivityAt: z.z.iso.datetime().optional(),
|
|
13299
|
+
title: z.z.string().optional(),
|
|
13142
13300
|
summary: z.z.string().optional(),
|
|
13301
|
+
cost: z.z.number().optional(),
|
|
13143
13302
|
status: z.z.enum(exports.AgentSessionStatus).optional(),
|
|
13144
13303
|
});
|
|
13145
13304
|
|
|
@@ -13711,6 +13870,8 @@ exports.CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES = CONNECTOR_METHOD_IMPLEMENTATI
|
|
|
13711
13870
|
exports.CONNECTOR_OPERATIONS_DIR = CONNECTOR_OPERATIONS_DIR;
|
|
13712
13871
|
exports.CONNECTOR_VERSION_DEVELOPMENT = CONNECTOR_VERSION_DEVELOPMENT;
|
|
13713
13872
|
exports.CONNECTOR_VERSION_LATEST = CONNECTOR_VERSION_LATEST;
|
|
13873
|
+
exports.CommonFindElementsQuery = CommonFindElementsQuery;
|
|
13874
|
+
exports.CommonFindInstancesQuery = CommonFindInstancesQuery;
|
|
13714
13875
|
exports.CommonInstancesListQuery = CommonInstancesListQuery;
|
|
13715
13876
|
exports.CommonIntegrationOrConnectionQuery = CommonIntegrationOrConnectionQuery;
|
|
13716
13877
|
exports.CommonListElementsQuery = CommonListElementsQuery;
|
|
@@ -13885,16 +14046,28 @@ exports.FieldMappingInstancesAccessor = FieldMappingInstancesAccessor;
|
|
|
13885
14046
|
exports.FieldMappingUnitConfig = FieldMappingUnitConfig;
|
|
13886
14047
|
exports.FieldMappingsAccessor = FieldMappingsAccessor;
|
|
13887
14048
|
exports.FindActionInstancesQuery = FindActionInstancesQuery;
|
|
14049
|
+
exports.FindActionRunLogsQuery = FindActionRunLogsQuery;
|
|
14050
|
+
exports.FindActionRunLogsResponse = FindActionRunLogsResponse;
|
|
13888
14051
|
exports.FindActionsQuery = FindActionsQuery;
|
|
14052
|
+
exports.FindAppEventSubscriptionsQuery = FindAppEventSubscriptionsQuery;
|
|
14053
|
+
exports.FindAppEventTypesQuery = FindAppEventTypesQuery;
|
|
14054
|
+
exports.FindAppEventsQuery = FindAppEventsQuery;
|
|
13889
14055
|
exports.FindConnectionsQuery = FindConnectionsQuery;
|
|
13890
14056
|
exports.FindConnectionsResponse = FindConnectionsResponse;
|
|
13891
14057
|
exports.FindCustomersQuery = FindCustomersQuery;
|
|
14058
|
+
exports.FindDataLinkTableInstanceLinksQuery = FindDataLinkTableInstanceLinksQuery;
|
|
14059
|
+
exports.FindDataLinkTableInstancesQuery = FindDataLinkTableInstancesQuery;
|
|
13892
14060
|
exports.FindDataLinkTablesQuery = FindDataLinkTablesQuery;
|
|
14061
|
+
exports.FindDataLinksInTableQuery = FindDataLinksInTableQuery;
|
|
14062
|
+
exports.FindDataLinksQuery = FindDataLinksQuery;
|
|
14063
|
+
exports.FindDataLinksResponse = FindDataLinksResponse;
|
|
13893
14064
|
exports.FindDataSourceEventsQuery = FindDataSourceEventsQuery;
|
|
14065
|
+
exports.FindDataSourceInstanceQuery = FindDataSourceInstanceQuery;
|
|
13894
14066
|
exports.FindDataSourceInstanceSyncsQuery = FindDataSourceInstanceSyncsQuery;
|
|
13895
14067
|
exports.FindDataSourceInstancesQuery = FindDataSourceInstancesQuery;
|
|
13896
14068
|
exports.FindDataSourceSyncsQuery = FindDataSourceSyncsQuery;
|
|
13897
14069
|
exports.FindDataSourcesQuery = FindDataSourcesQuery;
|
|
14070
|
+
exports.FindExternalEventPullsQuery = FindExternalEventPullsQuery;
|
|
13898
14071
|
exports.FindFieldMappingsQuery = FindFieldMappingsQuery;
|
|
13899
14072
|
exports.FindFlowInstancesQuery = FindFlowInstancesQuery;
|
|
13900
14073
|
exports.FindFlowRunsQuery = FindFlowRunsQuery;
|
|
@@ -13903,6 +14076,7 @@ exports.FindFlowsQuery = FindFlowsQuery;
|
|
|
13903
14076
|
exports.FindIntegrationLevelMembraneInterfaceQuery = FindIntegrationLevelMembraneInterfaceQuery;
|
|
13904
14077
|
exports.FindIntegrationsQuery = FindIntegrationsQuery;
|
|
13905
14078
|
exports.FindPackagesQuery = FindPackagesQuery;
|
|
14079
|
+
exports.FindScreensQuery = FindScreensQuery;
|
|
13906
14080
|
exports.FlowAccessor = FlowAccessor;
|
|
13907
14081
|
exports.FlowApiResponse = FlowApiResponse;
|
|
13908
14082
|
exports.FlowEditableProperties = FlowEditableProperties;
|
|
@@ -13948,6 +14122,7 @@ exports.IntegrationAppClient = MembraneClient;
|
|
|
13948
14122
|
exports.IntegrationAppError = IntegrationAppError;
|
|
13949
14123
|
exports.IntegrationAuthOption = IntegrationAuthOption;
|
|
13950
14124
|
exports.IntegrationAuthUi = IntegrationAuthUi;
|
|
14125
|
+
exports.IntegrationEditableProperties = IntegrationEditableProperties;
|
|
13951
14126
|
exports.IntegrationExportProperties = IntegrationExportProperties;
|
|
13952
14127
|
exports.IntegrationLevelActionAccessor = IntegrationLevelActionAccessor;
|
|
13953
14128
|
exports.IntegrationLevelActionsListAccessor = IntegrationLevelActionsListAccessor;
|
|
@@ -13958,16 +14133,20 @@ exports.IntegrationLevelFieldMappingsListAccessor = IntegrationLevelFieldMapping
|
|
|
13958
14133
|
exports.IntegrationLevelFlowAccessor = IntegrationLevelFlowAccessor;
|
|
13959
14134
|
exports.IntegrationLevelFlowsListAccessor = IntegrationLevelFlowsListAccessor;
|
|
13960
14135
|
exports.IntegrationLevelMembraneInterfaceSelectorQuery = IntegrationLevelMembraneInterfaceSelectorQuery;
|
|
14136
|
+
exports.IntegrationSpecificElementSelector = IntegrationSpecificElementSelector;
|
|
13961
14137
|
exports.IntegrationsAccessor = IntegrationsAccessor;
|
|
13962
14138
|
exports.InternalError = InternalError;
|
|
13963
14139
|
exports.InvalidLocatorError = InvalidLocatorError;
|
|
13964
14140
|
exports.JavascriptFunction = JavascriptFunction;
|
|
13965
14141
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13966
14142
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
14143
|
+
exports.ListExternalAppsQuery = ListExternalAppsQuery;
|
|
13967
14144
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
13968
14145
|
exports.ListExternalEventPullsQuery = ListExternalEventPullsQuery;
|
|
13969
14146
|
exports.ListExternalEventSubscriptionsQuery = ListExternalEventSubscriptionsQuery;
|
|
13970
14147
|
exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuery;
|
|
14148
|
+
exports.ListPublicConnectorsQuery = ListPublicConnectorsQuery;
|
|
14149
|
+
exports.ListPublicPackagesQuery = ListPublicPackagesQuery;
|
|
13971
14150
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13972
14151
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13973
14152
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
@@ -13990,6 +14169,8 @@ exports.OrgLimits = OrgLimits;
|
|
|
13990
14169
|
exports.OrgSchema = OrgSchema;
|
|
13991
14170
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
13992
14171
|
exports.OrgWorkspaceUser = OrgWorkspaceUser;
|
|
14172
|
+
exports.PACKAGE_VERSION_DEVELOPMENT = PACKAGE_VERSION_DEVELOPMENT;
|
|
14173
|
+
exports.PACKAGE_VERSION_LATEST = PACKAGE_VERSION_LATEST;
|
|
13993
14174
|
exports.PARALLEL_EXECUTION_LIMITS = PARALLEL_EXECUTION_LIMITS;
|
|
13994
14175
|
exports.PackageAccessor = PackageAccessor;
|
|
13995
14176
|
exports.PackageApiResponse = PackageApiResponse;
|
|
@@ -13999,6 +14180,8 @@ exports.PackageElement = PackageElement;
|
|
|
13999
14180
|
exports.PackageElementApi = PackageElementApi;
|
|
14000
14181
|
exports.PackageElementExport = PackageElementExport;
|
|
14001
14182
|
exports.PackageExportProperties = PackageExportProperties;
|
|
14183
|
+
exports.PackageVersionData = PackageVersionData;
|
|
14184
|
+
exports.PackageVersionListItem = PackageVersionListItem;
|
|
14002
14185
|
exports.PackagesAccessor = PackagesAccessor;
|
|
14003
14186
|
exports.PaginationQuery = PaginationQuery;
|
|
14004
14187
|
exports.PaginationResponse = PaginationResponse;
|
|
@@ -14040,10 +14223,13 @@ exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
|
14040
14223
|
exports.UserAccessor = UserAccessor;
|
|
14041
14224
|
exports.UsersAccessor = UsersAccessor;
|
|
14042
14225
|
exports.WORKSPACE_SIZE_LIMITS = WORKSPACE_SIZE_LIMITS;
|
|
14226
|
+
exports.WorkspaceElementSearchQuery = WorkspaceElementSearchQuery;
|
|
14227
|
+
exports.WorkspaceElementSearchResult = WorkspaceElementSearchResult;
|
|
14043
14228
|
exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
14044
14229
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
14045
14230
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
14046
14231
|
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
14232
|
+
exports.WritablePackageVersionData = WritablePackageVersionData;
|
|
14047
14233
|
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
14048
14234
|
exports.__resolveValue = __resolveValue;
|
|
14049
14235
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
@@ -14058,6 +14244,7 @@ exports.createCompoundSchema = createCompoundSchema;
|
|
|
14058
14244
|
exports.createFlowInstanceSchema = createFlowInstanceSchema;
|
|
14059
14245
|
exports.createObjectFromLocators = createObjectFromLocators;
|
|
14060
14246
|
exports.createOrUpdateConnection = createOrUpdateConnection;
|
|
14247
|
+
exports.createPaginationResponseSchema = createPaginationResponseSchema;
|
|
14061
14248
|
exports.createSchema = createSchema;
|
|
14062
14249
|
exports.dataCollectionEventTypeToExternalEventType = dataCollectionEventTypeToExternalEventType;
|
|
14063
14250
|
exports.dataLocationParametersMatch = dataLocationParametersMatch;
|