@membranehq/sdk 0.9.9 → 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 +281 -239
- package/dist/bundle.js +24 -6
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/base-accessors.d.ts +1 -1
- 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 +3 -0
- 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/data-sources/index.d.ts +2 -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/integrations/index.d.ts +122 -1
- package/dist/dts/workspace-elements/base/packages/index.d.ts +36 -6
- package/dist/dts/workspace-elements/types.d.ts +16 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +8 -7
- package/dist/index.browser.d.mts +1446 -1006
- package/dist/index.browser.d.ts +1446 -1006
- package/dist/index.browser.js +241 -60
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +215 -61
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1446 -1006
- package/dist/index.node.d.ts +1446 -1006
- package/dist/index.node.js +241 -60
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +215 -61
- 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) {
|
|
@@ -3550,6 +3564,17 @@ const FindIntegrationLevelMembraneInterfaceQuery = IntegrationLevelMembraneInter
|
|
|
3550
3564
|
userId: z.z.string().optional(),
|
|
3551
3565
|
});
|
|
3552
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
|
+
});
|
|
3553
3578
|
|
|
3554
3579
|
function mergeWithFormulas(a, b) {
|
|
3555
3580
|
if (Array.isArray(a) && Array.isArray(b)) {
|
|
@@ -8811,7 +8836,12 @@ const BackwardCompatibleDataSourceEditableProperties = DataSourceEditablePropert
|
|
|
8811
8836
|
path: z.z.string().optional().meta({ deprecated: true }),
|
|
8812
8837
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
8813
8838
|
});
|
|
8814
|
-
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({
|
|
8815
8845
|
connectionId: true,
|
|
8816
8846
|
dataSourceId: true,
|
|
8817
8847
|
universalDataSourceId: true,
|
|
@@ -9336,51 +9366,39 @@ const BaseIntegration = BaseMembraneInterface.extend({
|
|
|
9336
9366
|
isDeactivated: z.z.boolean().optional(),
|
|
9337
9367
|
authType: z.z.enum(CONNECTOR_AUTH_TYPES).optional(),
|
|
9338
9368
|
});
|
|
9339
|
-
const
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
connectorVersion: z.z.string().optional(),
|
|
9343
|
-
oAuthCallbackUri: z.z.string().optional(),
|
|
9344
|
-
parameters: z.z.any().optional(),
|
|
9369
|
+
const IntegrationEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
9370
|
+
baseUri: z.z.string().optional(),
|
|
9371
|
+
logoUri: z.z.string().optional(),
|
|
9345
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(),
|
|
9346
9381
|
});
|
|
9347
9382
|
const AppliedToIntegrations = (elementSchema) => z.z.array(z.z.object({
|
|
9348
9383
|
element: elementSchema,
|
|
9349
9384
|
integration: BaseIntegration,
|
|
9350
9385
|
}));
|
|
9351
9386
|
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
IntegrationElementLevel["UNIVERSAL"] = "universal";
|
|
9355
|
-
IntegrationElementLevel["CONNECTOR"] = "connector";
|
|
9356
|
-
IntegrationElementLevel["CONNECTION"] = "connection";
|
|
9357
|
-
})(exports.IntegrationElementLevel || (exports.IntegrationElementLevel = {}));
|
|
9358
|
-
exports.IntegrationElementType = void 0;
|
|
9359
|
-
(function (IntegrationElementType) {
|
|
9360
|
-
IntegrationElementType["APP_DATA_SCHEMA"] = "app-data-schema";
|
|
9361
|
-
IntegrationElementType["APP_EVENT_TYPE"] = "app-event-type";
|
|
9362
|
-
IntegrationElementType["DATA_SOURCE"] = "data-source";
|
|
9363
|
-
IntegrationElementType["SCHEMA"] = "schema";
|
|
9364
|
-
IntegrationElementType["FIELD_MAPPING"] = "field-mapping";
|
|
9365
|
-
IntegrationElementType["FLOW"] = "flow";
|
|
9366
|
-
IntegrationElementType["INTEGRATION"] = "integration";
|
|
9367
|
-
IntegrationElementType["ACTION"] = "action";
|
|
9368
|
-
IntegrationElementType["DATA_LINK_TABLE"] = "data-link-table";
|
|
9369
|
-
IntegrationElementType["EXTERNAL_EVENT"] = "external-event";
|
|
9370
|
-
})(exports.IntegrationElementType || (exports.IntegrationElementType = {}));
|
|
9371
|
-
|
|
9387
|
+
const PACKAGE_VERSION_DEVELOPMENT = 'dev';
|
|
9388
|
+
const PACKAGE_VERSION_LATEST = 'latest';
|
|
9372
9389
|
const PackageElement = z.z.object({
|
|
9373
9390
|
id: z.z.string(),
|
|
9374
|
-
type: z.z.enum(exports.
|
|
9391
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9375
9392
|
element: z.z.any().optional(),
|
|
9376
9393
|
});
|
|
9377
9394
|
const PackageElementExport = z.z.object({
|
|
9378
9395
|
uuid: z.z.string(),
|
|
9379
|
-
type: z.z.enum(exports.
|
|
9396
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9380
9397
|
element: z.z.any().optional(),
|
|
9381
9398
|
});
|
|
9382
9399
|
const PackageEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.extend({
|
|
9383
9400
|
scenarioTemplateId: z.z.string().optional(),
|
|
9401
|
+
externalAppId: z.z.string().optional(),
|
|
9384
9402
|
elements: z.z.array(PackageElement).optional(),
|
|
9385
9403
|
});
|
|
9386
9404
|
const PackageExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend({
|
|
@@ -9392,6 +9410,20 @@ const PackageCalculatedProperties = z.z.object({
|
|
|
9392
9410
|
isCustomized: z.z.boolean().optional(),
|
|
9393
9411
|
});
|
|
9394
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
|
+
});
|
|
9395
9427
|
|
|
9396
9428
|
exports.ScreenType = void 0;
|
|
9397
9429
|
(function (ScreenType) {
|
|
@@ -9759,6 +9791,7 @@ exports.ActionRunLogStatus = void 0;
|
|
|
9759
9791
|
ActionRunLogStatus["ERROR"] = "error";
|
|
9760
9792
|
})(exports.ActionRunLogStatus || (exports.ActionRunLogStatus = {}));
|
|
9761
9793
|
const BaseActionRunLogRecord = BaseWorkspaceElement.extend({
|
|
9794
|
+
userId: z.z.string(),
|
|
9762
9795
|
actionId: z.z.string(),
|
|
9763
9796
|
actionInstanceId: z.z.string(),
|
|
9764
9797
|
integrationId: z.z.string(),
|
|
@@ -9782,9 +9815,11 @@ const ActionApiResponse = BaseAction.extend({
|
|
|
9782
9815
|
outputSchema: DataSchema.optional(),
|
|
9783
9816
|
dependencies: z.z.array(z.z.any()).optional(),
|
|
9784
9817
|
});
|
|
9785
|
-
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
9818
|
+
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
9819
|
+
externalAppId: z.z.string().optional(),
|
|
9820
|
+
});
|
|
9786
9821
|
const CreateActionRequest = ActionEditableProperties;
|
|
9787
|
-
const UpdateActionRequest = CreateActionRequest.
|
|
9822
|
+
const UpdateActionRequest = CreateActionRequest.partial();
|
|
9788
9823
|
const CreateActionInstanceRequest = CreateActionRequest;
|
|
9789
9824
|
const UpdateActionInstanceRequest = UpdateActionRequest;
|
|
9790
9825
|
const RunActionRequest = z.z.object({
|
|
@@ -9800,19 +9835,33 @@ const FindActionInstancesQuery = FindActionsQuery;
|
|
|
9800
9835
|
|
|
9801
9836
|
const ActionRunLogRecordApiResponse = BaseActionRunLogRecord.extend({
|
|
9802
9837
|
action: BaseAction.optional(),
|
|
9838
|
+
actionInstance: BaseAction.optional(),
|
|
9803
9839
|
integration: BaseIntegration.optional(),
|
|
9804
9840
|
connection: BaseConnection.optional(),
|
|
9841
|
+
user: BaseCustomer.optional(),
|
|
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(),
|
|
9805
9851
|
});
|
|
9852
|
+
const FindActionRunLogsResponse = createPaginationResponseSchema(ActionRunLogRecordApiResponse);
|
|
9806
9853
|
|
|
9807
|
-
const FindConnectionsQuery =
|
|
9808
|
-
.
|
|
9854
|
+
const FindConnectionsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
9855
|
+
connectorId: z.z.string().optional(),
|
|
9856
|
+
id: z.z.string().optional(),
|
|
9809
9857
|
userId: z.z.string().optional(),
|
|
9858
|
+
name: z.z.string().optional(),
|
|
9810
9859
|
isTest: zodBooleanCoercion().optional(),
|
|
9811
|
-
|
|
9860
|
+
disconnected: zodBooleanCoercion().optional(),
|
|
9812
9861
|
integrationId: z.z.string().optional(),
|
|
9813
|
-
|
|
9814
|
-
|
|
9815
|
-
|
|
9862
|
+
integrationKey: z.z.string().optional(),
|
|
9863
|
+
includeSecrets: zodBooleanCoercion().optional(),
|
|
9864
|
+
});
|
|
9816
9865
|
const CreateConnectionRequest = z.z.object({
|
|
9817
9866
|
name: z.z.string(),
|
|
9818
9867
|
integrationId: z.z.string(),
|
|
@@ -9856,6 +9905,10 @@ const ConnectionMessagePayload = z.z.discriminatedUnion('type', [
|
|
|
9856
9905
|
}),
|
|
9857
9906
|
]);
|
|
9858
9907
|
|
|
9908
|
+
const ListPublicConnectorsQuery = PaginationQuery.extend({
|
|
9909
|
+
search: z.z.string().optional(),
|
|
9910
|
+
});
|
|
9911
|
+
|
|
9859
9912
|
const DataSourceApiResponse = BaseDataSource.extend({
|
|
9860
9913
|
integration: BaseIntegration.optional(),
|
|
9861
9914
|
appliedToIntegrations: AppliedToIntegrations(BaseDataSource).optional(),
|
|
@@ -9927,6 +9980,17 @@ const FindDataSourceInstanceSyncsQuery = ListDataSourceInstancesForConnectionQue
|
|
|
9927
9980
|
dataSourceInstanceId: z.z.string().optional(),
|
|
9928
9981
|
});
|
|
9929
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
|
+
});
|
|
9930
9994
|
const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
9931
9995
|
user: BaseCustomer.optional(),
|
|
9932
9996
|
dataSource: BaseDataSource.optional(),
|
|
@@ -9936,6 +10000,13 @@ const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
|
9936
10000
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
9937
10001
|
});
|
|
9938
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
|
+
|
|
9939
10010
|
const ExternalEvent = BaseExternalEvent.extend({
|
|
9940
10011
|
appliedToIntegrations: AppliedToIntegrations(BaseExternalEvent).optional(),
|
|
9941
10012
|
});
|
|
@@ -10013,18 +10084,8 @@ const FindFlowRunsResponse = z.z.object({
|
|
|
10013
10084
|
cursor: z.z.string().optional(),
|
|
10014
10085
|
});
|
|
10015
10086
|
|
|
10016
|
-
const CreateIntegrationRequest =
|
|
10017
|
-
|
|
10018
|
-
key: z.z.string(),
|
|
10019
|
-
baseUri: z.z.string(),
|
|
10020
|
-
logoUri: z.z.string(),
|
|
10021
|
-
});
|
|
10022
|
-
const UpdateIntegrationRequest = z.z.object({
|
|
10023
|
-
name: z.z.string().optional(),
|
|
10024
|
-
key: z.z.string().optional(),
|
|
10025
|
-
baseUri: z.z.string().optional(),
|
|
10026
|
-
logoUri: z.z.string().optional(),
|
|
10027
|
-
});
|
|
10087
|
+
const CreateIntegrationRequest = IntegrationEditableProperties;
|
|
10088
|
+
const UpdateIntegrationRequest = IntegrationEditableProperties.partial();
|
|
10028
10089
|
const FindIntegrationsQuery = z.z.object({}).merge(PaginationQuery).merge(SearchQuery);
|
|
10029
10090
|
const IntegrationAuthUi = z.z.object({
|
|
10030
10091
|
schema: z.z.any().optional(),
|
|
@@ -10046,16 +10107,25 @@ const IntegrationApiResponse = BaseIntegration.extend({
|
|
|
10046
10107
|
|
|
10047
10108
|
const PackageElementApi = z.z.object({
|
|
10048
10109
|
id: z.z.string(),
|
|
10049
|
-
type: z.z.enum(exports.
|
|
10110
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
10050
10111
|
element: z.z.any().optional(),
|
|
10051
10112
|
});
|
|
10052
|
-
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
10113
|
+
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
10114
|
+
externalAppId: z.z.string().optional(),
|
|
10115
|
+
});
|
|
10053
10116
|
const CreatePackageRequest = PackageEditableProperties;
|
|
10054
10117
|
const UpdatePackageRequest = CreatePackageRequest.extend({}).partial();
|
|
10055
|
-
const PackageApiResponse = BasePackage.extend({
|
|
10118
|
+
const PackageApiResponse = BasePackage.merge(PackageVersionData).extend({
|
|
10056
10119
|
appliedToIntegrations: AppliedToIntegrations(BasePackage).optional(),
|
|
10057
10120
|
});
|
|
10121
|
+
const ListPublicPackagesQuery = PaginationQuery.extend({
|
|
10122
|
+
search: z.z.string().optional(),
|
|
10123
|
+
});
|
|
10058
10124
|
|
|
10125
|
+
const FindScreensQuery = PaginationQuery.extend({
|
|
10126
|
+
type: z.z.enum(exports.ScreenType).optional(),
|
|
10127
|
+
key: z.z.string().optional(),
|
|
10128
|
+
});
|
|
10059
10129
|
const ScreenApiResponse = BaseScreen;
|
|
10060
10130
|
|
|
10061
10131
|
const CreateCustomerRequest = z.z.object({
|
|
@@ -10103,6 +10173,37 @@ const CreateDataLinkTableRequest = DataLinkTableEditableProperties;
|
|
|
10103
10173
|
const UpdateDataLinkTableRequest = CreateDataLinkTableRequest.partial();
|
|
10104
10174
|
const DataLinkTableApiResponse = BaseDataLinkTable;
|
|
10105
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
|
+
});
|
|
10106
10207
|
const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
10107
10208
|
dataLinkTable: BaseDataLinkTable.optional(),
|
|
10108
10209
|
connection: BaseConnection.optional(),
|
|
@@ -10110,8 +10211,25 @@ const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
|
10110
10211
|
user: BaseCustomer.optional(),
|
|
10111
10212
|
});
|
|
10112
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
|
+
});
|
|
10113
10224
|
const AppEventTypeApiResponse = BaseAppEventType;
|
|
10114
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
|
+
});
|
|
10115
10233
|
const AppEventSubscriptionApiResponse = BaseAppEventSubscription.extend({
|
|
10116
10234
|
appEventType: BaseAppEventType.optional(),
|
|
10117
10235
|
user: BaseCustomer.optional(),
|
|
@@ -10145,6 +10263,14 @@ const ListExternalEventPullsQuery = CommonListElementsQuery.extend({
|
|
|
10145
10263
|
externalEventSubscriptionId: z.z.string().optional(),
|
|
10146
10264
|
status: z.z.enum(exports.ExternalEventPullStatus).optional(),
|
|
10147
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
|
+
});
|
|
10148
10274
|
const ExternalEventPullApiResponse = BaseExternalEventPull.extend({
|
|
10149
10275
|
user: BaseCustomer.optional(),
|
|
10150
10276
|
externalEventSubscription: BaseExternalEventSubscription.optional(),
|
|
@@ -10334,6 +10460,7 @@ const WorkspaceElementSpecs = {
|
|
|
10334
10460
|
apiPath: 'integrations',
|
|
10335
10461
|
name: 'Integration',
|
|
10336
10462
|
namePlural: 'Integrations',
|
|
10463
|
+
editablePropertiesSchema: IntegrationEditableProperties,
|
|
10337
10464
|
exportPropertiesSchema: IntegrationExportProperties,
|
|
10338
10465
|
},
|
|
10339
10466
|
[exports.WorkspaceElementType.Connector]: {
|
|
@@ -10378,6 +10505,7 @@ const WorkspaceElementSpecs = {
|
|
|
10378
10505
|
findQuerySchema: FindActionsQuery,
|
|
10379
10506
|
isMembraneInterface: true,
|
|
10380
10507
|
isIntegrationLevel: true,
|
|
10508
|
+
canBeAddedToPackage: true,
|
|
10381
10509
|
},
|
|
10382
10510
|
[exports.WorkspaceElementType.ActionRunLogRecord]: {
|
|
10383
10511
|
type: exports.WorkspaceElementType.ActionRunLogRecord,
|
|
@@ -10397,6 +10525,7 @@ const WorkspaceElementSpecs = {
|
|
|
10397
10525
|
findQuerySchema: FindFlowsQuery,
|
|
10398
10526
|
isMembraneInterface: true,
|
|
10399
10527
|
isIntegrationLevel: true,
|
|
10528
|
+
canBeAddedToPackage: true,
|
|
10400
10529
|
},
|
|
10401
10530
|
[exports.WorkspaceElementType.FlowInstance]: {
|
|
10402
10531
|
type: exports.WorkspaceElementType.FlowInstance,
|
|
@@ -10427,6 +10556,7 @@ const WorkspaceElementSpecs = {
|
|
|
10427
10556
|
findQuerySchema: FindFieldMappingsQuery,
|
|
10428
10557
|
isMembraneInterface: true,
|
|
10429
10558
|
isIntegrationLevel: true,
|
|
10559
|
+
canBeAddedToPackage: true,
|
|
10430
10560
|
},
|
|
10431
10561
|
[exports.WorkspaceElementType.FieldMappingInstance]: {
|
|
10432
10562
|
type: exports.WorkspaceElementType.FieldMappingInstance,
|
|
@@ -10450,6 +10580,7 @@ const WorkspaceElementSpecs = {
|
|
|
10450
10580
|
findQuerySchema: FindDataSourcesQuery,
|
|
10451
10581
|
isMembraneInterface: true,
|
|
10452
10582
|
isIntegrationLevel: true,
|
|
10583
|
+
canBeAddedToPackage: true,
|
|
10453
10584
|
},
|
|
10454
10585
|
[exports.WorkspaceElementType.DataSourceInstance]: {
|
|
10455
10586
|
type: exports.WorkspaceElementType.DataSourceInstance,
|
|
@@ -10470,6 +10601,7 @@ const WorkspaceElementSpecs = {
|
|
|
10470
10601
|
apiResponseSchema: DataLinkTableApiResponse,
|
|
10471
10602
|
findQuerySchema: FindDataLinkTablesQuery,
|
|
10472
10603
|
isMembraneInterface: true,
|
|
10604
|
+
canBeAddedToPackage: true,
|
|
10473
10605
|
},
|
|
10474
10606
|
[exports.WorkspaceElementType.DataLinkTableInstance]: {
|
|
10475
10607
|
type: exports.WorkspaceElementType.DataLinkTableInstance,
|
|
@@ -10487,6 +10619,7 @@ const WorkspaceElementSpecs = {
|
|
|
10487
10619
|
isMembraneInterface: true,
|
|
10488
10620
|
exportPropertiesSchema: AppEventTypeExportProperties,
|
|
10489
10621
|
editablePropertiesSchema: AppEventTypeEditableProperties,
|
|
10622
|
+
canBeAddedToPackage: true,
|
|
10490
10623
|
},
|
|
10491
10624
|
[exports.WorkspaceElementType.AppEventSubscription]: {
|
|
10492
10625
|
type: exports.WorkspaceElementType.AppEventSubscription,
|
|
@@ -10509,6 +10642,7 @@ const WorkspaceElementSpecs = {
|
|
|
10509
10642
|
isMembraneInterface: true,
|
|
10510
10643
|
exportPropertiesSchema: AppDataSchemaExportProperties,
|
|
10511
10644
|
editablePropertiesSchema: AppDataSchemaEditableProperties,
|
|
10645
|
+
canBeAddedToPackage: true,
|
|
10512
10646
|
},
|
|
10513
10647
|
[exports.WorkspaceElementType.AppDataSchemaInstance]: {
|
|
10514
10648
|
type: exports.WorkspaceElementType.AppDataSchemaInstance,
|
|
@@ -10855,6 +10989,26 @@ function getBusinessDaysBetween(startDate, endDate) {
|
|
|
10855
10989
|
return businessDays;
|
|
10856
10990
|
}
|
|
10857
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
|
+
|
|
10858
11012
|
exports.UsageType = void 0;
|
|
10859
11013
|
(function (UsageType) {
|
|
10860
11014
|
UsageType["FLOW_RUNS_DURATION"] = "flow-runs-duration";
|
|
@@ -10875,6 +11029,7 @@ exports.UsageType = void 0;
|
|
|
10875
11029
|
UsageType["FILES_UPLOAD_NUMBER"] = "files-upload-number";
|
|
10876
11030
|
UsageType["FILES_UPLOAD_SIZE"] = "files-upload-size";
|
|
10877
11031
|
UsageType["CUSTOM_CODE_RUNTIME_DURATION"] = "custom-code-runtime-duration";
|
|
11032
|
+
UsageType["INSTANT_TASKS_DURATION"] = "instant-tasks-duration";
|
|
10878
11033
|
UsageType["MEMBRANE_AGENT"] = "membrane-agent";
|
|
10879
11034
|
})(exports.UsageType || (exports.UsageType = {}));
|
|
10880
11035
|
|
|
@@ -11812,11 +11967,10 @@ function injectStyles(mountTargetSelector) {
|
|
|
11812
11967
|
content: "";
|
|
11813
11968
|
width: 5rem;
|
|
11814
11969
|
height: 4rem;
|
|
11815
|
-
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");
|
|
11816
11971
|
background-size: contain;
|
|
11817
11972
|
background-repeat: no-repeat;
|
|
11818
11973
|
background-position: center;
|
|
11819
|
-
filter: invert(1);
|
|
11820
11974
|
}`,
|
|
11821
11975
|
`.${CONTAINER_ELEMENT_CLASS} iframe {
|
|
11822
11976
|
${hasCustomMountTarget ? '' : 'position: absolute;'}
|
|
@@ -13716,6 +13870,8 @@ exports.CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES = CONNECTOR_METHOD_IMPLEMENTATI
|
|
|
13716
13870
|
exports.CONNECTOR_OPERATIONS_DIR = CONNECTOR_OPERATIONS_DIR;
|
|
13717
13871
|
exports.CONNECTOR_VERSION_DEVELOPMENT = CONNECTOR_VERSION_DEVELOPMENT;
|
|
13718
13872
|
exports.CONNECTOR_VERSION_LATEST = CONNECTOR_VERSION_LATEST;
|
|
13873
|
+
exports.CommonFindElementsQuery = CommonFindElementsQuery;
|
|
13874
|
+
exports.CommonFindInstancesQuery = CommonFindInstancesQuery;
|
|
13719
13875
|
exports.CommonInstancesListQuery = CommonInstancesListQuery;
|
|
13720
13876
|
exports.CommonIntegrationOrConnectionQuery = CommonIntegrationOrConnectionQuery;
|
|
13721
13877
|
exports.CommonListElementsQuery = CommonListElementsQuery;
|
|
@@ -13890,16 +14046,28 @@ exports.FieldMappingInstancesAccessor = FieldMappingInstancesAccessor;
|
|
|
13890
14046
|
exports.FieldMappingUnitConfig = FieldMappingUnitConfig;
|
|
13891
14047
|
exports.FieldMappingsAccessor = FieldMappingsAccessor;
|
|
13892
14048
|
exports.FindActionInstancesQuery = FindActionInstancesQuery;
|
|
14049
|
+
exports.FindActionRunLogsQuery = FindActionRunLogsQuery;
|
|
14050
|
+
exports.FindActionRunLogsResponse = FindActionRunLogsResponse;
|
|
13893
14051
|
exports.FindActionsQuery = FindActionsQuery;
|
|
14052
|
+
exports.FindAppEventSubscriptionsQuery = FindAppEventSubscriptionsQuery;
|
|
14053
|
+
exports.FindAppEventTypesQuery = FindAppEventTypesQuery;
|
|
14054
|
+
exports.FindAppEventsQuery = FindAppEventsQuery;
|
|
13894
14055
|
exports.FindConnectionsQuery = FindConnectionsQuery;
|
|
13895
14056
|
exports.FindConnectionsResponse = FindConnectionsResponse;
|
|
13896
14057
|
exports.FindCustomersQuery = FindCustomersQuery;
|
|
14058
|
+
exports.FindDataLinkTableInstanceLinksQuery = FindDataLinkTableInstanceLinksQuery;
|
|
14059
|
+
exports.FindDataLinkTableInstancesQuery = FindDataLinkTableInstancesQuery;
|
|
13897
14060
|
exports.FindDataLinkTablesQuery = FindDataLinkTablesQuery;
|
|
14061
|
+
exports.FindDataLinksInTableQuery = FindDataLinksInTableQuery;
|
|
14062
|
+
exports.FindDataLinksQuery = FindDataLinksQuery;
|
|
14063
|
+
exports.FindDataLinksResponse = FindDataLinksResponse;
|
|
13898
14064
|
exports.FindDataSourceEventsQuery = FindDataSourceEventsQuery;
|
|
14065
|
+
exports.FindDataSourceInstanceQuery = FindDataSourceInstanceQuery;
|
|
13899
14066
|
exports.FindDataSourceInstanceSyncsQuery = FindDataSourceInstanceSyncsQuery;
|
|
13900
14067
|
exports.FindDataSourceInstancesQuery = FindDataSourceInstancesQuery;
|
|
13901
14068
|
exports.FindDataSourceSyncsQuery = FindDataSourceSyncsQuery;
|
|
13902
14069
|
exports.FindDataSourcesQuery = FindDataSourcesQuery;
|
|
14070
|
+
exports.FindExternalEventPullsQuery = FindExternalEventPullsQuery;
|
|
13903
14071
|
exports.FindFieldMappingsQuery = FindFieldMappingsQuery;
|
|
13904
14072
|
exports.FindFlowInstancesQuery = FindFlowInstancesQuery;
|
|
13905
14073
|
exports.FindFlowRunsQuery = FindFlowRunsQuery;
|
|
@@ -13908,6 +14076,7 @@ exports.FindFlowsQuery = FindFlowsQuery;
|
|
|
13908
14076
|
exports.FindIntegrationLevelMembraneInterfaceQuery = FindIntegrationLevelMembraneInterfaceQuery;
|
|
13909
14077
|
exports.FindIntegrationsQuery = FindIntegrationsQuery;
|
|
13910
14078
|
exports.FindPackagesQuery = FindPackagesQuery;
|
|
14079
|
+
exports.FindScreensQuery = FindScreensQuery;
|
|
13911
14080
|
exports.FlowAccessor = FlowAccessor;
|
|
13912
14081
|
exports.FlowApiResponse = FlowApiResponse;
|
|
13913
14082
|
exports.FlowEditableProperties = FlowEditableProperties;
|
|
@@ -13953,6 +14122,7 @@ exports.IntegrationAppClient = MembraneClient;
|
|
|
13953
14122
|
exports.IntegrationAppError = IntegrationAppError;
|
|
13954
14123
|
exports.IntegrationAuthOption = IntegrationAuthOption;
|
|
13955
14124
|
exports.IntegrationAuthUi = IntegrationAuthUi;
|
|
14125
|
+
exports.IntegrationEditableProperties = IntegrationEditableProperties;
|
|
13956
14126
|
exports.IntegrationExportProperties = IntegrationExportProperties;
|
|
13957
14127
|
exports.IntegrationLevelActionAccessor = IntegrationLevelActionAccessor;
|
|
13958
14128
|
exports.IntegrationLevelActionsListAccessor = IntegrationLevelActionsListAccessor;
|
|
@@ -13970,10 +14140,13 @@ exports.InvalidLocatorError = InvalidLocatorError;
|
|
|
13970
14140
|
exports.JavascriptFunction = JavascriptFunction;
|
|
13971
14141
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13972
14142
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
14143
|
+
exports.ListExternalAppsQuery = ListExternalAppsQuery;
|
|
13973
14144
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
13974
14145
|
exports.ListExternalEventPullsQuery = ListExternalEventPullsQuery;
|
|
13975
14146
|
exports.ListExternalEventSubscriptionsQuery = ListExternalEventSubscriptionsQuery;
|
|
13976
14147
|
exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuery;
|
|
14148
|
+
exports.ListPublicConnectorsQuery = ListPublicConnectorsQuery;
|
|
14149
|
+
exports.ListPublicPackagesQuery = ListPublicPackagesQuery;
|
|
13977
14150
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13978
14151
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13979
14152
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
@@ -13996,6 +14169,8 @@ exports.OrgLimits = OrgLimits;
|
|
|
13996
14169
|
exports.OrgSchema = OrgSchema;
|
|
13997
14170
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
13998
14171
|
exports.OrgWorkspaceUser = OrgWorkspaceUser;
|
|
14172
|
+
exports.PACKAGE_VERSION_DEVELOPMENT = PACKAGE_VERSION_DEVELOPMENT;
|
|
14173
|
+
exports.PACKAGE_VERSION_LATEST = PACKAGE_VERSION_LATEST;
|
|
13999
14174
|
exports.PARALLEL_EXECUTION_LIMITS = PARALLEL_EXECUTION_LIMITS;
|
|
14000
14175
|
exports.PackageAccessor = PackageAccessor;
|
|
14001
14176
|
exports.PackageApiResponse = PackageApiResponse;
|
|
@@ -14005,6 +14180,8 @@ exports.PackageElement = PackageElement;
|
|
|
14005
14180
|
exports.PackageElementApi = PackageElementApi;
|
|
14006
14181
|
exports.PackageElementExport = PackageElementExport;
|
|
14007
14182
|
exports.PackageExportProperties = PackageExportProperties;
|
|
14183
|
+
exports.PackageVersionData = PackageVersionData;
|
|
14184
|
+
exports.PackageVersionListItem = PackageVersionListItem;
|
|
14008
14185
|
exports.PackagesAccessor = PackagesAccessor;
|
|
14009
14186
|
exports.PaginationQuery = PaginationQuery;
|
|
14010
14187
|
exports.PaginationResponse = PaginationResponse;
|
|
@@ -14046,10 +14223,13 @@ exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
|
14046
14223
|
exports.UserAccessor = UserAccessor;
|
|
14047
14224
|
exports.UsersAccessor = UsersAccessor;
|
|
14048
14225
|
exports.WORKSPACE_SIZE_LIMITS = WORKSPACE_SIZE_LIMITS;
|
|
14226
|
+
exports.WorkspaceElementSearchQuery = WorkspaceElementSearchQuery;
|
|
14227
|
+
exports.WorkspaceElementSearchResult = WorkspaceElementSearchResult;
|
|
14049
14228
|
exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
14050
14229
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
14051
14230
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
14052
14231
|
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
14232
|
+
exports.WritablePackageVersionData = WritablePackageVersionData;
|
|
14053
14233
|
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
14054
14234
|
exports.__resolveValue = __resolveValue;
|
|
14055
14235
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
@@ -14064,6 +14244,7 @@ exports.createCompoundSchema = createCompoundSchema;
|
|
|
14064
14244
|
exports.createFlowInstanceSchema = createFlowInstanceSchema;
|
|
14065
14245
|
exports.createObjectFromLocators = createObjectFromLocators;
|
|
14066
14246
|
exports.createOrUpdateConnection = createOrUpdateConnection;
|
|
14247
|
+
exports.createPaginationResponseSchema = createPaginationResponseSchema;
|
|
14067
14248
|
exports.createSchema = createSchema;
|
|
14068
14249
|
exports.dataCollectionEventTypeToExternalEventType = dataCollectionEventTypeToExternalEventType;
|
|
14069
14250
|
exports.dataLocationParametersMatch = dataLocationParametersMatch;
|