@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.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) {
|
|
@@ -3526,6 +3540,17 @@ const FindIntegrationLevelMembraneInterfaceQuery = IntegrationLevelMembraneInter
|
|
|
3526
3540
|
userId: z.z.string().optional(),
|
|
3527
3541
|
});
|
|
3528
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
|
+
});
|
|
3529
3554
|
|
|
3530
3555
|
function mergeWithFormulas(a, b) {
|
|
3531
3556
|
if (Array.isArray(a) && Array.isArray(b)) {
|
|
@@ -8787,7 +8812,12 @@ const BackwardCompatibleDataSourceEditableProperties = DataSourceEditablePropert
|
|
|
8787
8812
|
path: z.z.string().optional().meta({ deprecated: true }),
|
|
8788
8813
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
8789
8814
|
});
|
|
8790
|
-
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({
|
|
8791
8821
|
connectionId: true,
|
|
8792
8822
|
dataSourceId: true,
|
|
8793
8823
|
universalDataSourceId: true,
|
|
@@ -9312,51 +9342,39 @@ const BaseIntegration = BaseMembraneInterface.extend({
|
|
|
9312
9342
|
isDeactivated: z.z.boolean().optional(),
|
|
9313
9343
|
authType: z.z.enum(CONNECTOR_AUTH_TYPES).optional(),
|
|
9314
9344
|
});
|
|
9315
|
-
const
|
|
9316
|
-
|
|
9317
|
-
|
|
9318
|
-
connectorVersion: z.z.string().optional(),
|
|
9319
|
-
oAuthCallbackUri: z.z.string().optional(),
|
|
9320
|
-
parameters: z.z.any().optional(),
|
|
9345
|
+
const IntegrationEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
9346
|
+
baseUri: z.z.string().optional(),
|
|
9347
|
+
logoUri: z.z.string().optional(),
|
|
9321
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(),
|
|
9322
9357
|
});
|
|
9323
9358
|
const AppliedToIntegrations = (elementSchema) => z.z.array(z.z.object({
|
|
9324
9359
|
element: elementSchema,
|
|
9325
9360
|
integration: BaseIntegration,
|
|
9326
9361
|
}));
|
|
9327
9362
|
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
IntegrationElementLevel["UNIVERSAL"] = "universal";
|
|
9331
|
-
IntegrationElementLevel["CONNECTOR"] = "connector";
|
|
9332
|
-
IntegrationElementLevel["CONNECTION"] = "connection";
|
|
9333
|
-
})(exports.IntegrationElementLevel || (exports.IntegrationElementLevel = {}));
|
|
9334
|
-
exports.IntegrationElementType = void 0;
|
|
9335
|
-
(function (IntegrationElementType) {
|
|
9336
|
-
IntegrationElementType["APP_DATA_SCHEMA"] = "app-data-schema";
|
|
9337
|
-
IntegrationElementType["APP_EVENT_TYPE"] = "app-event-type";
|
|
9338
|
-
IntegrationElementType["DATA_SOURCE"] = "data-source";
|
|
9339
|
-
IntegrationElementType["SCHEMA"] = "schema";
|
|
9340
|
-
IntegrationElementType["FIELD_MAPPING"] = "field-mapping";
|
|
9341
|
-
IntegrationElementType["FLOW"] = "flow";
|
|
9342
|
-
IntegrationElementType["INTEGRATION"] = "integration";
|
|
9343
|
-
IntegrationElementType["ACTION"] = "action";
|
|
9344
|
-
IntegrationElementType["DATA_LINK_TABLE"] = "data-link-table";
|
|
9345
|
-
IntegrationElementType["EXTERNAL_EVENT"] = "external-event";
|
|
9346
|
-
})(exports.IntegrationElementType || (exports.IntegrationElementType = {}));
|
|
9347
|
-
|
|
9363
|
+
const PACKAGE_VERSION_DEVELOPMENT = 'dev';
|
|
9364
|
+
const PACKAGE_VERSION_LATEST = 'latest';
|
|
9348
9365
|
const PackageElement = z.z.object({
|
|
9349
9366
|
id: z.z.string(),
|
|
9350
|
-
type: z.z.enum(exports.
|
|
9367
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9351
9368
|
element: z.z.any().optional(),
|
|
9352
9369
|
});
|
|
9353
9370
|
const PackageElementExport = z.z.object({
|
|
9354
9371
|
uuid: z.z.string(),
|
|
9355
|
-
type: z.z.enum(exports.
|
|
9372
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
9356
9373
|
element: z.z.any().optional(),
|
|
9357
9374
|
});
|
|
9358
9375
|
const PackageEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.extend({
|
|
9359
9376
|
scenarioTemplateId: z.z.string().optional(),
|
|
9377
|
+
externalAppId: z.z.string().optional(),
|
|
9360
9378
|
elements: z.z.array(PackageElement).optional(),
|
|
9361
9379
|
});
|
|
9362
9380
|
const PackageExportProperties = BaseIntegrationLevelMembraneInterfaceExportProperties.extend({
|
|
@@ -9368,6 +9386,20 @@ const PackageCalculatedProperties = z.z.object({
|
|
|
9368
9386
|
isCustomized: z.z.boolean().optional(),
|
|
9369
9387
|
});
|
|
9370
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
|
+
});
|
|
9371
9403
|
|
|
9372
9404
|
exports.ScreenType = void 0;
|
|
9373
9405
|
(function (ScreenType) {
|
|
@@ -9735,6 +9767,7 @@ exports.ActionRunLogStatus = void 0;
|
|
|
9735
9767
|
ActionRunLogStatus["ERROR"] = "error";
|
|
9736
9768
|
})(exports.ActionRunLogStatus || (exports.ActionRunLogStatus = {}));
|
|
9737
9769
|
const BaseActionRunLogRecord = BaseWorkspaceElement.extend({
|
|
9770
|
+
userId: z.z.string(),
|
|
9738
9771
|
actionId: z.z.string(),
|
|
9739
9772
|
actionInstanceId: z.z.string(),
|
|
9740
9773
|
integrationId: z.z.string(),
|
|
@@ -9758,9 +9791,11 @@ const ActionApiResponse = BaseAction.extend({
|
|
|
9758
9791
|
outputSchema: DataSchema.optional(),
|
|
9759
9792
|
dependencies: z.z.array(z.z.any()).optional(),
|
|
9760
9793
|
});
|
|
9761
|
-
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
9794
|
+
const FindActionsQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
9795
|
+
externalAppId: z.z.string().optional(),
|
|
9796
|
+
});
|
|
9762
9797
|
const CreateActionRequest = ActionEditableProperties;
|
|
9763
|
-
const UpdateActionRequest = CreateActionRequest.
|
|
9798
|
+
const UpdateActionRequest = CreateActionRequest.partial();
|
|
9764
9799
|
const CreateActionInstanceRequest = CreateActionRequest;
|
|
9765
9800
|
const UpdateActionInstanceRequest = UpdateActionRequest;
|
|
9766
9801
|
const RunActionRequest = z.z.object({
|
|
@@ -9776,19 +9811,33 @@ const FindActionInstancesQuery = FindActionsQuery;
|
|
|
9776
9811
|
|
|
9777
9812
|
const ActionRunLogRecordApiResponse = BaseActionRunLogRecord.extend({
|
|
9778
9813
|
action: BaseAction.optional(),
|
|
9814
|
+
actionInstance: BaseAction.optional(),
|
|
9779
9815
|
integration: BaseIntegration.optional(),
|
|
9780
9816
|
connection: BaseConnection.optional(),
|
|
9817
|
+
user: BaseCustomer.optional(),
|
|
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(),
|
|
9781
9827
|
});
|
|
9828
|
+
const FindActionRunLogsResponse = createPaginationResponseSchema(ActionRunLogRecordApiResponse);
|
|
9782
9829
|
|
|
9783
|
-
const FindConnectionsQuery =
|
|
9784
|
-
.
|
|
9830
|
+
const FindConnectionsQuery = PaginationQuery.merge(SearchQuery).merge(IncludeArchivedQuery).extend({
|
|
9831
|
+
connectorId: z.z.string().optional(),
|
|
9832
|
+
id: z.z.string().optional(),
|
|
9785
9833
|
userId: z.z.string().optional(),
|
|
9834
|
+
name: z.z.string().optional(),
|
|
9786
9835
|
isTest: zodBooleanCoercion().optional(),
|
|
9787
|
-
|
|
9836
|
+
disconnected: zodBooleanCoercion().optional(),
|
|
9788
9837
|
integrationId: z.z.string().optional(),
|
|
9789
|
-
|
|
9790
|
-
|
|
9791
|
-
|
|
9838
|
+
integrationKey: z.z.string().optional(),
|
|
9839
|
+
includeSecrets: zodBooleanCoercion().optional(),
|
|
9840
|
+
});
|
|
9792
9841
|
const CreateConnectionRequest = z.z.object({
|
|
9793
9842
|
name: z.z.string(),
|
|
9794
9843
|
integrationId: z.z.string(),
|
|
@@ -9832,6 +9881,10 @@ const ConnectionMessagePayload = z.z.discriminatedUnion('type', [
|
|
|
9832
9881
|
}),
|
|
9833
9882
|
]);
|
|
9834
9883
|
|
|
9884
|
+
const ListPublicConnectorsQuery = PaginationQuery.extend({
|
|
9885
|
+
search: z.z.string().optional(),
|
|
9886
|
+
});
|
|
9887
|
+
|
|
9835
9888
|
const DataSourceApiResponse = BaseDataSource.extend({
|
|
9836
9889
|
integration: BaseIntegration.optional(),
|
|
9837
9890
|
appliedToIntegrations: AppliedToIntegrations(BaseDataSource).optional(),
|
|
@@ -9903,6 +9956,17 @@ const FindDataSourceInstanceSyncsQuery = ListDataSourceInstancesForConnectionQue
|
|
|
9903
9956
|
dataSourceInstanceId: z.z.string().optional(),
|
|
9904
9957
|
});
|
|
9905
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
|
+
});
|
|
9906
9970
|
const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
9907
9971
|
user: BaseCustomer.optional(),
|
|
9908
9972
|
dataSource: BaseDataSource.optional(),
|
|
@@ -9912,6 +9976,13 @@ const DataSourceInstanceApiResponse = BaseDataSourceInstance.extend({
|
|
|
9912
9976
|
defaultPath: z.z.string().optional().meta({ deprecated: true }),
|
|
9913
9977
|
});
|
|
9914
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
|
+
|
|
9915
9986
|
const ExternalEvent = BaseExternalEvent.extend({
|
|
9916
9987
|
appliedToIntegrations: AppliedToIntegrations(BaseExternalEvent).optional(),
|
|
9917
9988
|
});
|
|
@@ -9989,18 +10060,8 @@ const FindFlowRunsResponse = z.z.object({
|
|
|
9989
10060
|
cursor: z.z.string().optional(),
|
|
9990
10061
|
});
|
|
9991
10062
|
|
|
9992
|
-
const CreateIntegrationRequest =
|
|
9993
|
-
|
|
9994
|
-
key: z.z.string(),
|
|
9995
|
-
baseUri: z.z.string(),
|
|
9996
|
-
logoUri: z.z.string(),
|
|
9997
|
-
});
|
|
9998
|
-
const UpdateIntegrationRequest = z.z.object({
|
|
9999
|
-
name: z.z.string().optional(),
|
|
10000
|
-
key: z.z.string().optional(),
|
|
10001
|
-
baseUri: z.z.string().optional(),
|
|
10002
|
-
logoUri: z.z.string().optional(),
|
|
10003
|
-
});
|
|
10063
|
+
const CreateIntegrationRequest = IntegrationEditableProperties;
|
|
10064
|
+
const UpdateIntegrationRequest = IntegrationEditableProperties.partial();
|
|
10004
10065
|
const FindIntegrationsQuery = z.z.object({}).merge(PaginationQuery).merge(SearchQuery);
|
|
10005
10066
|
const IntegrationAuthUi = z.z.object({
|
|
10006
10067
|
schema: z.z.any().optional(),
|
|
@@ -10022,16 +10083,25 @@ const IntegrationApiResponse = BaseIntegration.extend({
|
|
|
10022
10083
|
|
|
10023
10084
|
const PackageElementApi = z.z.object({
|
|
10024
10085
|
id: z.z.string(),
|
|
10025
|
-
type: z.z.enum(exports.
|
|
10086
|
+
type: z.z.enum(exports.WorkspaceElementType),
|
|
10026
10087
|
element: z.z.any().optional(),
|
|
10027
10088
|
});
|
|
10028
|
-
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery
|
|
10089
|
+
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery.extend({
|
|
10090
|
+
externalAppId: z.z.string().optional(),
|
|
10091
|
+
});
|
|
10029
10092
|
const CreatePackageRequest = PackageEditableProperties;
|
|
10030
10093
|
const UpdatePackageRequest = CreatePackageRequest.extend({}).partial();
|
|
10031
|
-
const PackageApiResponse = BasePackage.extend({
|
|
10094
|
+
const PackageApiResponse = BasePackage.merge(PackageVersionData).extend({
|
|
10032
10095
|
appliedToIntegrations: AppliedToIntegrations(BasePackage).optional(),
|
|
10033
10096
|
});
|
|
10097
|
+
const ListPublicPackagesQuery = PaginationQuery.extend({
|
|
10098
|
+
search: z.z.string().optional(),
|
|
10099
|
+
});
|
|
10034
10100
|
|
|
10101
|
+
const FindScreensQuery = PaginationQuery.extend({
|
|
10102
|
+
type: z.z.enum(exports.ScreenType).optional(),
|
|
10103
|
+
key: z.z.string().optional(),
|
|
10104
|
+
});
|
|
10035
10105
|
const ScreenApiResponse = BaseScreen;
|
|
10036
10106
|
|
|
10037
10107
|
const CreateCustomerRequest = z.z.object({
|
|
@@ -10079,6 +10149,37 @@ const CreateDataLinkTableRequest = DataLinkTableEditableProperties;
|
|
|
10079
10149
|
const UpdateDataLinkTableRequest = CreateDataLinkTableRequest.partial();
|
|
10080
10150
|
const DataLinkTableApiResponse = BaseDataLinkTable;
|
|
10081
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
|
+
});
|
|
10082
10183
|
const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
10083
10184
|
dataLinkTable: BaseDataLinkTable.optional(),
|
|
10084
10185
|
connection: BaseConnection.optional(),
|
|
@@ -10086,8 +10187,25 @@ const DataLinkTableInstanceApiResponse = BaseDataLinkTableInstance.extend({
|
|
|
10086
10187
|
user: BaseCustomer.optional(),
|
|
10087
10188
|
});
|
|
10088
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
|
+
});
|
|
10089
10200
|
const AppEventTypeApiResponse = BaseAppEventType;
|
|
10090
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
|
+
});
|
|
10091
10209
|
const AppEventSubscriptionApiResponse = BaseAppEventSubscription.extend({
|
|
10092
10210
|
appEventType: BaseAppEventType.optional(),
|
|
10093
10211
|
user: BaseCustomer.optional(),
|
|
@@ -10121,6 +10239,14 @@ const ListExternalEventPullsQuery = CommonListElementsQuery.extend({
|
|
|
10121
10239
|
externalEventSubscriptionId: z.z.string().optional(),
|
|
10122
10240
|
status: z.z.enum(exports.ExternalEventPullStatus).optional(),
|
|
10123
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
|
+
});
|
|
10124
10250
|
const ExternalEventPullApiResponse = BaseExternalEventPull.extend({
|
|
10125
10251
|
user: BaseCustomer.optional(),
|
|
10126
10252
|
externalEventSubscription: BaseExternalEventSubscription.optional(),
|
|
@@ -10310,6 +10436,7 @@ const WorkspaceElementSpecs = {
|
|
|
10310
10436
|
apiPath: 'integrations',
|
|
10311
10437
|
name: 'Integration',
|
|
10312
10438
|
namePlural: 'Integrations',
|
|
10439
|
+
editablePropertiesSchema: IntegrationEditableProperties,
|
|
10313
10440
|
exportPropertiesSchema: IntegrationExportProperties,
|
|
10314
10441
|
},
|
|
10315
10442
|
[exports.WorkspaceElementType.Connector]: {
|
|
@@ -10354,6 +10481,7 @@ const WorkspaceElementSpecs = {
|
|
|
10354
10481
|
findQuerySchema: FindActionsQuery,
|
|
10355
10482
|
isMembraneInterface: true,
|
|
10356
10483
|
isIntegrationLevel: true,
|
|
10484
|
+
canBeAddedToPackage: true,
|
|
10357
10485
|
},
|
|
10358
10486
|
[exports.WorkspaceElementType.ActionRunLogRecord]: {
|
|
10359
10487
|
type: exports.WorkspaceElementType.ActionRunLogRecord,
|
|
@@ -10373,6 +10501,7 @@ const WorkspaceElementSpecs = {
|
|
|
10373
10501
|
findQuerySchema: FindFlowsQuery,
|
|
10374
10502
|
isMembraneInterface: true,
|
|
10375
10503
|
isIntegrationLevel: true,
|
|
10504
|
+
canBeAddedToPackage: true,
|
|
10376
10505
|
},
|
|
10377
10506
|
[exports.WorkspaceElementType.FlowInstance]: {
|
|
10378
10507
|
type: exports.WorkspaceElementType.FlowInstance,
|
|
@@ -10403,6 +10532,7 @@ const WorkspaceElementSpecs = {
|
|
|
10403
10532
|
findQuerySchema: FindFieldMappingsQuery,
|
|
10404
10533
|
isMembraneInterface: true,
|
|
10405
10534
|
isIntegrationLevel: true,
|
|
10535
|
+
canBeAddedToPackage: true,
|
|
10406
10536
|
},
|
|
10407
10537
|
[exports.WorkspaceElementType.FieldMappingInstance]: {
|
|
10408
10538
|
type: exports.WorkspaceElementType.FieldMappingInstance,
|
|
@@ -10426,6 +10556,7 @@ const WorkspaceElementSpecs = {
|
|
|
10426
10556
|
findQuerySchema: FindDataSourcesQuery,
|
|
10427
10557
|
isMembraneInterface: true,
|
|
10428
10558
|
isIntegrationLevel: true,
|
|
10559
|
+
canBeAddedToPackage: true,
|
|
10429
10560
|
},
|
|
10430
10561
|
[exports.WorkspaceElementType.DataSourceInstance]: {
|
|
10431
10562
|
type: exports.WorkspaceElementType.DataSourceInstance,
|
|
@@ -10446,6 +10577,7 @@ const WorkspaceElementSpecs = {
|
|
|
10446
10577
|
apiResponseSchema: DataLinkTableApiResponse,
|
|
10447
10578
|
findQuerySchema: FindDataLinkTablesQuery,
|
|
10448
10579
|
isMembraneInterface: true,
|
|
10580
|
+
canBeAddedToPackage: true,
|
|
10449
10581
|
},
|
|
10450
10582
|
[exports.WorkspaceElementType.DataLinkTableInstance]: {
|
|
10451
10583
|
type: exports.WorkspaceElementType.DataLinkTableInstance,
|
|
@@ -10463,6 +10595,7 @@ const WorkspaceElementSpecs = {
|
|
|
10463
10595
|
isMembraneInterface: true,
|
|
10464
10596
|
exportPropertiesSchema: AppEventTypeExportProperties,
|
|
10465
10597
|
editablePropertiesSchema: AppEventTypeEditableProperties,
|
|
10598
|
+
canBeAddedToPackage: true,
|
|
10466
10599
|
},
|
|
10467
10600
|
[exports.WorkspaceElementType.AppEventSubscription]: {
|
|
10468
10601
|
type: exports.WorkspaceElementType.AppEventSubscription,
|
|
@@ -10485,6 +10618,7 @@ const WorkspaceElementSpecs = {
|
|
|
10485
10618
|
isMembraneInterface: true,
|
|
10486
10619
|
exportPropertiesSchema: AppDataSchemaExportProperties,
|
|
10487
10620
|
editablePropertiesSchema: AppDataSchemaEditableProperties,
|
|
10621
|
+
canBeAddedToPackage: true,
|
|
10488
10622
|
},
|
|
10489
10623
|
[exports.WorkspaceElementType.AppDataSchemaInstance]: {
|
|
10490
10624
|
type: exports.WorkspaceElementType.AppDataSchemaInstance,
|
|
@@ -10831,6 +10965,26 @@ function getBusinessDaysBetween(startDate, endDate) {
|
|
|
10831
10965
|
return businessDays;
|
|
10832
10966
|
}
|
|
10833
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
|
+
|
|
10834
10988
|
exports.UsageType = void 0;
|
|
10835
10989
|
(function (UsageType) {
|
|
10836
10990
|
UsageType["FLOW_RUNS_DURATION"] = "flow-runs-duration";
|
|
@@ -10851,6 +11005,7 @@ exports.UsageType = void 0;
|
|
|
10851
11005
|
UsageType["FILES_UPLOAD_NUMBER"] = "files-upload-number";
|
|
10852
11006
|
UsageType["FILES_UPLOAD_SIZE"] = "files-upload-size";
|
|
10853
11007
|
UsageType["CUSTOM_CODE_RUNTIME_DURATION"] = "custom-code-runtime-duration";
|
|
11008
|
+
UsageType["INSTANT_TASKS_DURATION"] = "instant-tasks-duration";
|
|
10854
11009
|
UsageType["MEMBRANE_AGENT"] = "membrane-agent";
|
|
10855
11010
|
})(exports.UsageType || (exports.UsageType = {}));
|
|
10856
11011
|
|
|
@@ -11788,11 +11943,10 @@ function injectStyles(mountTargetSelector) {
|
|
|
11788
11943
|
content: "";
|
|
11789
11944
|
width: 5rem;
|
|
11790
11945
|
height: 4rem;
|
|
11791
|
-
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");
|
|
11792
11947
|
background-size: contain;
|
|
11793
11948
|
background-repeat: no-repeat;
|
|
11794
11949
|
background-position: center;
|
|
11795
|
-
filter: invert(1);
|
|
11796
11950
|
}`,
|
|
11797
11951
|
`.${CONTAINER_ELEMENT_CLASS} iframe {
|
|
11798
11952
|
${hasCustomMountTarget ? '' : 'position: absolute;'}
|
|
@@ -13518,6 +13672,8 @@ exports.CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES = CONNECTOR_METHOD_IMPLEMENTATI
|
|
|
13518
13672
|
exports.CONNECTOR_OPERATIONS_DIR = CONNECTOR_OPERATIONS_DIR;
|
|
13519
13673
|
exports.CONNECTOR_VERSION_DEVELOPMENT = CONNECTOR_VERSION_DEVELOPMENT;
|
|
13520
13674
|
exports.CONNECTOR_VERSION_LATEST = CONNECTOR_VERSION_LATEST;
|
|
13675
|
+
exports.CommonFindElementsQuery = CommonFindElementsQuery;
|
|
13676
|
+
exports.CommonFindInstancesQuery = CommonFindInstancesQuery;
|
|
13521
13677
|
exports.CommonInstancesListQuery = CommonInstancesListQuery;
|
|
13522
13678
|
exports.CommonIntegrationOrConnectionQuery = CommonIntegrationOrConnectionQuery;
|
|
13523
13679
|
exports.CommonListElementsQuery = CommonListElementsQuery;
|
|
@@ -13692,16 +13848,28 @@ exports.FieldMappingInstancesAccessor = FieldMappingInstancesAccessor;
|
|
|
13692
13848
|
exports.FieldMappingUnitConfig = FieldMappingUnitConfig;
|
|
13693
13849
|
exports.FieldMappingsAccessor = FieldMappingsAccessor;
|
|
13694
13850
|
exports.FindActionInstancesQuery = FindActionInstancesQuery;
|
|
13851
|
+
exports.FindActionRunLogsQuery = FindActionRunLogsQuery;
|
|
13852
|
+
exports.FindActionRunLogsResponse = FindActionRunLogsResponse;
|
|
13695
13853
|
exports.FindActionsQuery = FindActionsQuery;
|
|
13854
|
+
exports.FindAppEventSubscriptionsQuery = FindAppEventSubscriptionsQuery;
|
|
13855
|
+
exports.FindAppEventTypesQuery = FindAppEventTypesQuery;
|
|
13856
|
+
exports.FindAppEventsQuery = FindAppEventsQuery;
|
|
13696
13857
|
exports.FindConnectionsQuery = FindConnectionsQuery;
|
|
13697
13858
|
exports.FindConnectionsResponse = FindConnectionsResponse;
|
|
13698
13859
|
exports.FindCustomersQuery = FindCustomersQuery;
|
|
13860
|
+
exports.FindDataLinkTableInstanceLinksQuery = FindDataLinkTableInstanceLinksQuery;
|
|
13861
|
+
exports.FindDataLinkTableInstancesQuery = FindDataLinkTableInstancesQuery;
|
|
13699
13862
|
exports.FindDataLinkTablesQuery = FindDataLinkTablesQuery;
|
|
13863
|
+
exports.FindDataLinksInTableQuery = FindDataLinksInTableQuery;
|
|
13864
|
+
exports.FindDataLinksQuery = FindDataLinksQuery;
|
|
13865
|
+
exports.FindDataLinksResponse = FindDataLinksResponse;
|
|
13700
13866
|
exports.FindDataSourceEventsQuery = FindDataSourceEventsQuery;
|
|
13867
|
+
exports.FindDataSourceInstanceQuery = FindDataSourceInstanceQuery;
|
|
13701
13868
|
exports.FindDataSourceInstanceSyncsQuery = FindDataSourceInstanceSyncsQuery;
|
|
13702
13869
|
exports.FindDataSourceInstancesQuery = FindDataSourceInstancesQuery;
|
|
13703
13870
|
exports.FindDataSourceSyncsQuery = FindDataSourceSyncsQuery;
|
|
13704
13871
|
exports.FindDataSourcesQuery = FindDataSourcesQuery;
|
|
13872
|
+
exports.FindExternalEventPullsQuery = FindExternalEventPullsQuery;
|
|
13705
13873
|
exports.FindFieldMappingsQuery = FindFieldMappingsQuery;
|
|
13706
13874
|
exports.FindFlowInstancesQuery = FindFlowInstancesQuery;
|
|
13707
13875
|
exports.FindFlowRunsQuery = FindFlowRunsQuery;
|
|
@@ -13710,6 +13878,7 @@ exports.FindFlowsQuery = FindFlowsQuery;
|
|
|
13710
13878
|
exports.FindIntegrationLevelMembraneInterfaceQuery = FindIntegrationLevelMembraneInterfaceQuery;
|
|
13711
13879
|
exports.FindIntegrationsQuery = FindIntegrationsQuery;
|
|
13712
13880
|
exports.FindPackagesQuery = FindPackagesQuery;
|
|
13881
|
+
exports.FindScreensQuery = FindScreensQuery;
|
|
13713
13882
|
exports.FlowAccessor = FlowAccessor;
|
|
13714
13883
|
exports.FlowApiResponse = FlowApiResponse;
|
|
13715
13884
|
exports.FlowEditableProperties = FlowEditableProperties;
|
|
@@ -13755,6 +13924,7 @@ exports.IntegrationAppClient = MembraneClient;
|
|
|
13755
13924
|
exports.IntegrationAppError = IntegrationAppError;
|
|
13756
13925
|
exports.IntegrationAuthOption = IntegrationAuthOption;
|
|
13757
13926
|
exports.IntegrationAuthUi = IntegrationAuthUi;
|
|
13927
|
+
exports.IntegrationEditableProperties = IntegrationEditableProperties;
|
|
13758
13928
|
exports.IntegrationExportProperties = IntegrationExportProperties;
|
|
13759
13929
|
exports.IntegrationLevelActionAccessor = IntegrationLevelActionAccessor;
|
|
13760
13930
|
exports.IntegrationLevelActionsListAccessor = IntegrationLevelActionsListAccessor;
|
|
@@ -13772,10 +13942,13 @@ exports.InvalidLocatorError = InvalidLocatorError;
|
|
|
13772
13942
|
exports.JavascriptFunction = JavascriptFunction;
|
|
13773
13943
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13774
13944
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
13945
|
+
exports.ListExternalAppsQuery = ListExternalAppsQuery;
|
|
13775
13946
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
13776
13947
|
exports.ListExternalEventPullsQuery = ListExternalEventPullsQuery;
|
|
13777
13948
|
exports.ListExternalEventSubscriptionsQuery = ListExternalEventSubscriptionsQuery;
|
|
13778
13949
|
exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuery;
|
|
13950
|
+
exports.ListPublicConnectorsQuery = ListPublicConnectorsQuery;
|
|
13951
|
+
exports.ListPublicPackagesQuery = ListPublicPackagesQuery;
|
|
13779
13952
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13780
13953
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13781
13954
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
@@ -13797,6 +13970,8 @@ exports.OrgLimits = OrgLimits;
|
|
|
13797
13970
|
exports.OrgSchema = OrgSchema;
|
|
13798
13971
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
13799
13972
|
exports.OrgWorkspaceUser = OrgWorkspaceUser;
|
|
13973
|
+
exports.PACKAGE_VERSION_DEVELOPMENT = PACKAGE_VERSION_DEVELOPMENT;
|
|
13974
|
+
exports.PACKAGE_VERSION_LATEST = PACKAGE_VERSION_LATEST;
|
|
13800
13975
|
exports.PARALLEL_EXECUTION_LIMITS = PARALLEL_EXECUTION_LIMITS;
|
|
13801
13976
|
exports.PackageAccessor = PackageAccessor;
|
|
13802
13977
|
exports.PackageApiResponse = PackageApiResponse;
|
|
@@ -13806,6 +13981,8 @@ exports.PackageElement = PackageElement;
|
|
|
13806
13981
|
exports.PackageElementApi = PackageElementApi;
|
|
13807
13982
|
exports.PackageElementExport = PackageElementExport;
|
|
13808
13983
|
exports.PackageExportProperties = PackageExportProperties;
|
|
13984
|
+
exports.PackageVersionData = PackageVersionData;
|
|
13985
|
+
exports.PackageVersionListItem = PackageVersionListItem;
|
|
13809
13986
|
exports.PackagesAccessor = PackagesAccessor;
|
|
13810
13987
|
exports.PaginationQuery = PaginationQuery;
|
|
13811
13988
|
exports.PaginationResponse = PaginationResponse;
|
|
@@ -13847,10 +14024,13 @@ exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
|
13847
14024
|
exports.UserAccessor = UserAccessor;
|
|
13848
14025
|
exports.UsersAccessor = UsersAccessor;
|
|
13849
14026
|
exports.WORKSPACE_SIZE_LIMITS = WORKSPACE_SIZE_LIMITS;
|
|
14027
|
+
exports.WorkspaceElementSearchQuery = WorkspaceElementSearchQuery;
|
|
14028
|
+
exports.WorkspaceElementSearchResult = WorkspaceElementSearchResult;
|
|
13850
14029
|
exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
13851
14030
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
13852
14031
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
13853
14032
|
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
14033
|
+
exports.WritablePackageVersionData = WritablePackageVersionData;
|
|
13854
14034
|
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
13855
14035
|
exports.__resolveValue = __resolveValue;
|
|
13856
14036
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
@@ -13865,6 +14045,7 @@ exports.createCompoundSchema = createCompoundSchema;
|
|
|
13865
14045
|
exports.createFlowInstanceSchema = createFlowInstanceSchema;
|
|
13866
14046
|
exports.createObjectFromLocators = createObjectFromLocators;
|
|
13867
14047
|
exports.createOrUpdateConnection = createOrUpdateConnection;
|
|
14048
|
+
exports.createPaginationResponseSchema = createPaginationResponseSchema;
|
|
13868
14049
|
exports.createSchema = createSchema;
|
|
13869
14050
|
exports.dataCollectionEventTypeToExternalEventType = dataCollectionEventTypeToExternalEventType;
|
|
13870
14051
|
exports.dataLocationParametersMatch = dataLocationParametersMatch;
|