@membranehq/sdk 0.9.9 → 0.9.11
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/alerts/types.d.ts +2 -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/orgs/types.d.ts +3 -0
- 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 +1451 -1007
- package/dist/index.browser.d.ts +1451 -1007
- package/dist/index.browser.js +243 -60
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +217 -61
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1451 -1007
- package/dist/index.node.d.ts +1451 -1007
- package/dist/index.node.js +243 -60
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +217 -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.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObje
|
|
|
221
221
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
222
222
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
223
223
|
}, z.core.$strip>;
|
|
224
|
+
type BaseIntegrationLevelMembraneInterfaceEditableProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceEditableProperties>;
|
|
224
225
|
declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
225
226
|
name: z.ZodString;
|
|
226
227
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -232,6 +233,7 @@ declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObje
|
|
|
232
233
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
233
234
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
234
235
|
}, z.core.$strip>;
|
|
236
|
+
type BaseIntegrationLevelMembraneInterfaceReadOnlyProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceReadOnlyProperties>;
|
|
235
237
|
declare const BaseIntegrationLevelMembraneInterfaceExportProperties: z.ZodObject<{
|
|
236
238
|
uuid: z.ZodOptional<z.ZodString>;
|
|
237
239
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -242,6 +244,7 @@ declare const BaseIntegrationLevelMembraneInterfaceExportProperties: z.ZodObject
|
|
|
242
244
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
243
245
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
244
246
|
}, z.core.$strip>;
|
|
247
|
+
type BaseIntegrationLevelMembraneInterfaceExportProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceExportProperties>;
|
|
245
248
|
declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
|
|
246
249
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
247
250
|
connection: "connection";
|
|
@@ -304,6 +307,19 @@ interface WorkspaceElementDependency extends WorkspaceElementReference {
|
|
|
304
307
|
dependencyType: WorkspaceElementDependencyType;
|
|
305
308
|
data?: unknown;
|
|
306
309
|
}
|
|
310
|
+
declare const WorkspaceElementSearchQuery: z.ZodObject<{
|
|
311
|
+
q: z.ZodString;
|
|
312
|
+
elementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
313
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
314
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
315
|
+
}, z.core.$strip>;
|
|
316
|
+
type WorkspaceElementSearchQuery = z.infer<typeof WorkspaceElementSearchQuery>;
|
|
317
|
+
declare const WorkspaceElementSearchResult: z.ZodObject<{
|
|
318
|
+
elementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
319
|
+
elementId: z.ZodString;
|
|
320
|
+
name: z.ZodString;
|
|
321
|
+
}, z.core.$strip>;
|
|
322
|
+
type WorkspaceElementSearchResult = z.infer<typeof WorkspaceElementSearchResult>;
|
|
307
323
|
|
|
308
324
|
declare function createSchema(value: any): any;
|
|
309
325
|
declare function createCompoundSchema(values: any[]): any;
|
|
@@ -7211,6 +7227,7 @@ declare const BackwardCompatibleDataSourceEditableProperties: z.ZodObject<{
|
|
|
7211
7227
|
type BackwardCompatibleDataSourceEditableProperties = z.infer<typeof BackwardCompatibleDataSourceEditableProperties>;
|
|
7212
7228
|
declare const DataSourceExportProperties: z.ZodObject<{
|
|
7213
7229
|
key: z.ZodOptional<z.ZodString>;
|
|
7230
|
+
path: z.ZodOptional<z.ZodString>;
|
|
7214
7231
|
description: z.ZodOptional<z.ZodString>;
|
|
7215
7232
|
name: z.ZodOptional<z.ZodString>;
|
|
7216
7233
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -7223,6 +7240,7 @@ declare const DataSourceExportProperties: z.ZodObject<{
|
|
|
7223
7240
|
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
7224
7241
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
7225
7242
|
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
7243
|
+
defaultPath: z.ZodOptional<z.ZodString>;
|
|
7226
7244
|
}, z.core.$strip>;
|
|
7227
7245
|
type DataSourceExportProperties = z.infer<typeof DataSourceExportProperties>;
|
|
7228
7246
|
declare const BaseDataSource: z.ZodObject<{
|
|
@@ -7886,18 +7904,36 @@ declare const BaseIntegration: z.ZodObject<{
|
|
|
7886
7904
|
}>>;
|
|
7887
7905
|
}, z.core.$strip>;
|
|
7888
7906
|
type BaseIntegration = z.infer<typeof BaseIntegration>;
|
|
7889
|
-
declare const
|
|
7907
|
+
declare const IntegrationEditableProperties: z.ZodObject<{
|
|
7890
7908
|
uuid: z.ZodOptional<z.ZodString>;
|
|
7891
7909
|
key: z.ZodOptional<z.ZodString>;
|
|
7892
7910
|
name: z.ZodOptional<z.ZodString>;
|
|
7893
7911
|
description: z.ZodOptional<z.ZodString>;
|
|
7894
7912
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7895
|
-
|
|
7896
|
-
|
|
7913
|
+
baseUri: z.ZodOptional<z.ZodString>;
|
|
7914
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
7915
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
7916
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
7917
|
+
logoBase64: z.ZodOptional<z.ZodString>;
|
|
7897
7918
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
7898
|
-
|
|
7899
|
-
|
|
7919
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
7920
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
7921
|
+
}, z.core.$strip>;
|
|
7922
|
+
type IntegrationEditableProperties = z.infer<typeof IntegrationEditableProperties>;
|
|
7923
|
+
declare const IntegrationExportProperties: z.ZodObject<{
|
|
7924
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
7925
|
+
key: z.ZodOptional<z.ZodString>;
|
|
7926
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7927
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7928
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7929
|
+
baseUri: z.ZodOptional<z.ZodString>;
|
|
7930
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
7900
7931
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
7932
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
7933
|
+
logoBase64: z.ZodOptional<z.ZodString>;
|
|
7934
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
7935
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
7936
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
7901
7937
|
}, z.core.$strip>;
|
|
7902
7938
|
type IntegrationExportProperties = z.infer<typeof IntegrationExportProperties>;
|
|
7903
7939
|
type IntegrationAuthOptionLegacy = ConnectorAuthSpec & {
|
|
@@ -7948,721 +7984,186 @@ declare const AppliedToIntegrations: <Element extends z.ZodType>(elementSchema:
|
|
|
7948
7984
|
}, z.core.$strip>>;
|
|
7949
7985
|
type AppliedToIntegrations<Element> = z.infer<ReturnType<typeof AppliedToIntegrations<z.ZodType<Element>>>>;
|
|
7950
7986
|
|
|
7951
|
-
declare const
|
|
7952
|
-
|
|
7987
|
+
declare const PACKAGE_VERSION_DEVELOPMENT = "dev";
|
|
7988
|
+
declare const PACKAGE_VERSION_LATEST = "latest";
|
|
7989
|
+
declare const PackageElement: z.ZodObject<{
|
|
7990
|
+
id: z.ZodString;
|
|
7991
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
7992
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
7953
7993
|
}, z.core.$strip>;
|
|
7954
|
-
type
|
|
7955
|
-
declare const
|
|
7956
|
-
|
|
7994
|
+
type PackageElement = z.infer<typeof PackageElement>;
|
|
7995
|
+
declare const PackageElementExport: z.ZodObject<{
|
|
7996
|
+
uuid: z.ZodString;
|
|
7997
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
7998
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
7957
7999
|
}, z.core.$strip>;
|
|
7958
|
-
type
|
|
7959
|
-
declare const
|
|
7960
|
-
|
|
7961
|
-
|
|
8000
|
+
type PackageElementExport = z.infer<typeof PackageElementExport>;
|
|
8001
|
+
declare const PackageEditableProperties: z.ZodObject<{
|
|
8002
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8003
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8004
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8005
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8006
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8007
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8008
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8009
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
8010
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8011
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8012
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8013
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8014
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
8015
|
+
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8016
|
+
id: z.ZodString;
|
|
8017
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
8018
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
8019
|
+
}, z.core.$strip>>>;
|
|
7962
8020
|
}, z.core.$strip>;
|
|
7963
|
-
type
|
|
7964
|
-
declare const
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
8021
|
+
type PackageEditableProperties = z.infer<typeof PackageEditableProperties>;
|
|
8022
|
+
declare const PackageExportProperties: z.ZodObject<{
|
|
8023
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8024
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8025
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8026
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8027
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8028
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8029
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8030
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8031
|
+
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8032
|
+
uuid: z.ZodString;
|
|
8033
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
8034
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
8035
|
+
}, z.core.$strip>>>;
|
|
7969
8036
|
}, z.core.$strip>;
|
|
7970
|
-
type
|
|
7971
|
-
declare const
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
7976
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
7977
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8037
|
+
type PackageExportProperties = z.infer<typeof PackageExportProperties>;
|
|
8038
|
+
declare const PackageCalculatedProperties: z.ZodObject<{
|
|
8039
|
+
key: z.ZodString;
|
|
8040
|
+
name: z.ZodString;
|
|
8041
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
7978
8042
|
}, z.core.$strip>;
|
|
7979
|
-
type
|
|
7980
|
-
declare const
|
|
7981
|
-
|
|
8043
|
+
type PackageCalculatedProperties = z.infer<typeof PackageCalculatedProperties>;
|
|
8044
|
+
declare const BasePackage: z.ZodObject<{
|
|
8045
|
+
id: z.ZodString;
|
|
8046
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8047
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8048
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8049
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8050
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8051
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8052
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8053
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8054
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8055
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7982
8056
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
7983
|
-
|
|
8057
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8058
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
8059
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8060
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8061
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8062
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8063
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
8064
|
+
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8065
|
+
id: z.ZodString;
|
|
8066
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
8067
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
8068
|
+
}, z.core.$strip>>>;
|
|
8069
|
+
key: z.ZodString;
|
|
8070
|
+
name: z.ZodString;
|
|
8071
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
7984
8072
|
}, z.core.$strip>;
|
|
7985
|
-
type
|
|
7986
|
-
declare
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
7993
|
-
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
7994
|
-
integrationKey: z.ZodOptional<z.ZodString>;
|
|
7995
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
7996
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
7997
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
7998
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
8073
|
+
type BasePackage = z.infer<typeof BasePackage>;
|
|
8074
|
+
declare const WritablePackageVersionData: z.ZodObject<{
|
|
8075
|
+
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8076
|
+
id: z.ZodString;
|
|
8077
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
8078
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
8079
|
+
}, z.core.$strip>>>;
|
|
7999
8080
|
}, z.core.$strip>;
|
|
8000
|
-
type
|
|
8001
|
-
declare const
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8081
|
+
type WritablePackageVersionData = z.infer<typeof WritablePackageVersionData>;
|
|
8082
|
+
declare const PackageVersionData: z.ZodObject<{
|
|
8083
|
+
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8084
|
+
id: z.ZodString;
|
|
8085
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
8086
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
8087
|
+
}, z.core.$strip>>>;
|
|
8088
|
+
version: z.ZodOptional<z.ZodString>;
|
|
8089
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
8090
|
+
parentPackageVersion: z.ZodOptional<z.ZodString>;
|
|
8005
8091
|
}, z.core.$strip>;
|
|
8006
|
-
type
|
|
8007
|
-
declare const
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8092
|
+
type PackageVersionData = z.infer<typeof PackageVersionData>;
|
|
8093
|
+
declare const PackageVersionListItem: z.ZodObject<{
|
|
8094
|
+
id: z.ZodString;
|
|
8095
|
+
version: z.ZodString;
|
|
8096
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
8097
|
+
parentPackageVersion: z.ZodOptional<z.ZodString>;
|
|
8011
8098
|
}, z.core.$strip>;
|
|
8012
|
-
type
|
|
8013
|
-
|
|
8099
|
+
type PackageVersionListItem = z.infer<typeof PackageVersionListItem>;
|
|
8100
|
+
|
|
8101
|
+
declare enum ScreenType {
|
|
8102
|
+
Integration = "integration"
|
|
8014
8103
|
}
|
|
8015
|
-
declare
|
|
8016
|
-
|
|
8017
|
-
|
|
8018
|
-
|
|
8019
|
-
|
|
8104
|
+
declare enum ScreenBlockType {
|
|
8105
|
+
Flow = "flow",
|
|
8106
|
+
FieldMapping = "field-mapping",
|
|
8107
|
+
DataSource = "data-source",
|
|
8108
|
+
Action = "action"
|
|
8109
|
+
}
|
|
8110
|
+
declare const ScreenBlock: z.ZodIntersection<z.ZodObject<{
|
|
8111
|
+
type: z.ZodEnum<typeof ScreenBlockType>;
|
|
8112
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8113
|
+
type ScreenBlock = z.infer<typeof ScreenBlock>;
|
|
8114
|
+
declare const BaseScreen: z.ZodObject<{
|
|
8115
|
+
id: z.ZodString;
|
|
8116
|
+
name: z.ZodString;
|
|
8117
|
+
type: z.ZodEnum<typeof ScreenType>;
|
|
8118
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8119
|
+
blocks: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
8120
|
+
type: z.ZodEnum<typeof ScreenBlockType>;
|
|
8121
|
+
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8020
8122
|
}, z.core.$strip>;
|
|
8021
|
-
type
|
|
8022
|
-
|
|
8123
|
+
type BaseScreen = z.infer<typeof BaseScreen>;
|
|
8124
|
+
|
|
8125
|
+
declare const BaseCustomer: z.ZodObject<{
|
|
8023
8126
|
id: z.ZodString;
|
|
8024
8127
|
name: z.ZodString;
|
|
8025
|
-
|
|
8128
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8129
|
+
internalId: z.ZodString;
|
|
8130
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8131
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
8132
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8026
8133
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8134
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8135
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8136
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8137
|
+
}, z.core.$strip>;
|
|
8138
|
+
type BaseCustomer = z.infer<typeof BaseCustomer>;
|
|
8139
|
+
|
|
8140
|
+
declare const BaseFlowInstance: z.ZodObject<{
|
|
8141
|
+
id: z.ZodString;
|
|
8142
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8143
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8144
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8145
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8146
|
+
name: z.ZodString;
|
|
8147
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8148
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8149
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8150
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8151
|
+
userId: z.ZodString;
|
|
8152
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8153
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
8154
|
+
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
8031
8155
|
integrationId: z.ZodString;
|
|
8032
|
-
|
|
8156
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8157
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
8158
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8159
|
+
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8160
|
+
enabled: z.ZodBoolean;
|
|
8033
8161
|
createdAt: z.ZodString;
|
|
8034
8162
|
updatedAt: z.ZodString;
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8040
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8041
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8042
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
8043
|
-
id: z.ZodString;
|
|
8044
|
-
name: z.ZodString;
|
|
8045
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8046
|
-
internalId: z.ZodString;
|
|
8047
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8048
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8049
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8050
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8051
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8052
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8053
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8054
|
-
}, z.core.$strip>>;
|
|
8055
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
8056
|
-
id: z.ZodString;
|
|
8057
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8058
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8059
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8060
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8061
|
-
name: z.ZodString;
|
|
8062
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8063
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8064
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8065
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8066
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8067
|
-
logoUri: z.ZodString;
|
|
8068
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8069
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8070
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8071
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8072
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8073
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8074
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8075
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8076
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8077
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8078
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8079
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8080
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8081
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8082
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8083
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8084
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8085
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8086
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
8087
|
-
proxy: "proxy";
|
|
8088
|
-
"integration-app-token": "integration-app-token";
|
|
8089
|
-
"membrane-token": "membrane-token";
|
|
8090
|
-
oauth2: "oauth2";
|
|
8091
|
-
oauth1: "oauth1";
|
|
8092
|
-
"client-credentials": "client-credentials";
|
|
8093
|
-
}>>;
|
|
8094
|
-
}, z.core.$strip>>;
|
|
8095
|
-
}, z.core.$strip>;
|
|
8096
|
-
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
8097
|
-
declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
8098
|
-
id: z.ZodString;
|
|
8099
|
-
name: z.ZodString;
|
|
8100
|
-
userId: z.ZodString;
|
|
8101
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8102
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8103
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8104
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8105
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8106
|
-
integrationId: z.ZodString;
|
|
8107
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8108
|
-
createdAt: z.ZodString;
|
|
8109
|
-
updatedAt: z.ZodString;
|
|
8110
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8111
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8112
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8113
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8114
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8115
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8116
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8117
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
8118
|
-
id: z.ZodString;
|
|
8119
|
-
name: z.ZodString;
|
|
8120
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8121
|
-
internalId: z.ZodString;
|
|
8122
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8123
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8124
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8125
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8126
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8127
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8128
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8129
|
-
}, z.core.$strip>>;
|
|
8130
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
8131
|
-
id: z.ZodString;
|
|
8132
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8133
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8134
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8135
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8136
|
-
name: z.ZodString;
|
|
8137
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8138
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8139
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8140
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8141
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8142
|
-
logoUri: z.ZodString;
|
|
8143
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8144
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8145
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8146
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8147
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8148
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8149
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8150
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8151
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8152
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8153
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8154
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8155
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8156
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8157
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8158
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8159
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8160
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8161
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
8162
|
-
proxy: "proxy";
|
|
8163
|
-
"integration-app-token": "integration-app-token";
|
|
8164
|
-
"membrane-token": "membrane-token";
|
|
8165
|
-
oauth2: "oauth2";
|
|
8166
|
-
oauth1: "oauth1";
|
|
8167
|
-
"client-credentials": "client-credentials";
|
|
8168
|
-
}>>;
|
|
8169
|
-
}, z.core.$strip>>;
|
|
8170
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
8171
|
-
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
8172
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
8173
|
-
}, z.core.$strip>;
|
|
8174
|
-
type ConnectionApiResponseWithSecrets = z.infer<typeof ConnectionApiResponseWithSecrets>;
|
|
8175
|
-
type Connection = ConnectionApiResponse;
|
|
8176
|
-
declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8177
|
-
source: z.ZodString;
|
|
8178
|
-
requestId: z.ZodString;
|
|
8179
|
-
type: z.ZodLiteral<"newConnectionCreated">;
|
|
8180
|
-
connection: z.ZodObject<{
|
|
8181
|
-
id: z.ZodString;
|
|
8182
|
-
name: z.ZodString;
|
|
8183
|
-
userId: z.ZodString;
|
|
8184
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8185
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8186
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8187
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8188
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8189
|
-
integrationId: z.ZodString;
|
|
8190
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8191
|
-
createdAt: z.ZodString;
|
|
8192
|
-
updatedAt: z.ZodString;
|
|
8193
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8194
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8195
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8196
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8197
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8198
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8199
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8200
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
8201
|
-
id: z.ZodString;
|
|
8202
|
-
name: z.ZodString;
|
|
8203
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8204
|
-
internalId: z.ZodString;
|
|
8205
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8206
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8207
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8208
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8209
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8210
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8211
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8212
|
-
}, z.core.$strip>>;
|
|
8213
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
8214
|
-
id: z.ZodString;
|
|
8215
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8216
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8217
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8218
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8219
|
-
name: z.ZodString;
|
|
8220
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8221
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8222
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8223
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8224
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8225
|
-
logoUri: z.ZodString;
|
|
8226
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8227
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8228
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8229
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8230
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8231
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8232
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8233
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8234
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8235
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8236
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8237
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8238
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8239
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8240
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8241
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8242
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8243
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8244
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
8245
|
-
proxy: "proxy";
|
|
8246
|
-
"integration-app-token": "integration-app-token";
|
|
8247
|
-
"membrane-token": "membrane-token";
|
|
8248
|
-
oauth2: "oauth2";
|
|
8249
|
-
oauth1: "oauth1";
|
|
8250
|
-
"client-credentials": "client-credentials";
|
|
8251
|
-
}>>;
|
|
8252
|
-
}, z.core.$strip>>;
|
|
8253
|
-
}, z.core.$strip>;
|
|
8254
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
8255
|
-
source: z.ZodString;
|
|
8256
|
-
requestId: z.ZodString;
|
|
8257
|
-
type: z.ZodLiteral<"newConnectionFailure">;
|
|
8258
|
-
error: z.ZodString;
|
|
8259
|
-
errorData: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8260
|
-
}, z.core.$strip>], "type">;
|
|
8261
|
-
type ConnectionMessagePayload = z.infer<typeof ConnectionMessagePayload>;
|
|
8262
|
-
|
|
8263
|
-
declare const CreateCustomerRequest: z.ZodObject<{
|
|
8264
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8265
|
-
internalId: z.ZodString;
|
|
8266
|
-
fields: z.ZodOptional<z.ZodAny>;
|
|
8267
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8268
|
-
}, z.core.$strip>;
|
|
8269
|
-
type CreateCustomerRequest = z.infer<typeof CreateCustomerRequest>;
|
|
8270
|
-
declare const UpdateCustomerRequest: z.ZodObject<{
|
|
8271
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8272
|
-
internalId: z.ZodOptional<z.ZodString>;
|
|
8273
|
-
fields: z.ZodOptional<z.ZodAny>;
|
|
8274
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8275
|
-
}, z.core.$strip>;
|
|
8276
|
-
type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
|
|
8277
|
-
declare const FindCustomersQuery: z.ZodObject<{
|
|
8278
|
-
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8279
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8280
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
8281
|
-
search: z.ZodOptional<z.ZodString>;
|
|
8282
|
-
}, z.core.$strip>;
|
|
8283
|
-
type FindCustomersQuery = z.infer<typeof FindCustomersQuery>;
|
|
8284
|
-
declare const CustomerSelector: z.ZodObject<{
|
|
8285
|
-
id: z.ZodString;
|
|
8286
|
-
}, z.core.$strip>;
|
|
8287
|
-
type CustomerSelector = z.infer<typeof CustomerSelector>;
|
|
8288
|
-
type CreateUserRequest = CreateCustomerRequest;
|
|
8289
|
-
type UpdateUserRequest = UpdateCustomerRequest;
|
|
8290
|
-
type FindUsersQuery = FindCustomersQuery;
|
|
8291
|
-
type UserSelector = CustomerSelector;
|
|
8292
|
-
declare const CustomerApiResponse: z.ZodObject<{
|
|
8293
|
-
id: z.ZodString;
|
|
8294
|
-
name: z.ZodString;
|
|
8295
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8296
|
-
internalId: z.ZodString;
|
|
8297
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8298
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8299
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8300
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8301
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8302
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8303
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8304
|
-
}, z.core.$strip>;
|
|
8305
|
-
type CustomerApiResponse = z.infer<typeof CustomerApiResponse>;
|
|
8306
|
-
type Customer = CustomerApiResponse;
|
|
8307
|
-
type User = Customer;
|
|
8308
|
-
|
|
8309
|
-
interface OpenConfigurationOptions {
|
|
8310
|
-
onClose?: (...args: any[]) => void;
|
|
8311
|
-
showPoweredBy?: boolean;
|
|
8312
|
-
}
|
|
8313
|
-
|
|
8314
|
-
declare const CreateIntegrationRequest: z.ZodObject<{
|
|
8315
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8316
|
-
key: z.ZodString;
|
|
8317
|
-
baseUri: z.ZodString;
|
|
8318
|
-
logoUri: z.ZodString;
|
|
8319
|
-
}, z.core.$strip>;
|
|
8320
|
-
type CreateIntegrationRequest = z.infer<typeof CreateIntegrationRequest>;
|
|
8321
|
-
declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
8322
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8323
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8324
|
-
baseUri: z.ZodOptional<z.ZodString>;
|
|
8325
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
8326
|
-
}, z.core.$strip>;
|
|
8327
|
-
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
8328
|
-
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
8329
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8330
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
8331
|
-
search: z.ZodOptional<z.ZodString>;
|
|
8332
|
-
}, z.core.$strip>;
|
|
8333
|
-
type FindIntegrationsQuery = z.infer<typeof FindIntegrationsQuery>;
|
|
8334
|
-
interface FindIntegrationsResponse extends PaginationResponse<IntegrationApiResponse> {
|
|
8335
|
-
}
|
|
8336
|
-
interface OpenNewConnectionOptions extends OpenConfigurationOptions {
|
|
8337
|
-
allowMultipleConnections?: boolean;
|
|
8338
|
-
name?: string;
|
|
8339
|
-
connectorParameters?: any;
|
|
8340
|
-
}
|
|
8341
|
-
declare const IntegrationAuthUi: z.ZodObject<{
|
|
8342
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
8343
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
8344
|
-
}, z.core.$strip>;
|
|
8345
|
-
type IntegrationAuthUi = z.infer<typeof IntegrationAuthUi>;
|
|
8346
|
-
declare const IntegrationAuthOption: z.ZodObject<{
|
|
8347
|
-
key: z.ZodString;
|
|
8348
|
-
type: z.ZodEnum<{
|
|
8349
|
-
proxy: "proxy";
|
|
8350
|
-
"integration-app-token": "integration-app-token";
|
|
8351
|
-
"membrane-token": "membrane-token";
|
|
8352
|
-
oauth2: "oauth2";
|
|
8353
|
-
oauth1: "oauth1";
|
|
8354
|
-
"client-credentials": "client-credentials";
|
|
8355
|
-
}>;
|
|
8356
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8357
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8358
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
8359
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
8360
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
8361
|
-
}, z.core.$strip>>;
|
|
8362
|
-
}, z.core.$strip>;
|
|
8363
|
-
type IntegrationAuthOption = z.infer<typeof IntegrationAuthOption>;
|
|
8364
|
-
declare const IntegrationApiResponse: z.ZodObject<{
|
|
8365
|
-
id: z.ZodString;
|
|
8366
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8367
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8368
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8369
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8370
|
-
name: z.ZodString;
|
|
8371
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8372
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8373
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8374
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8375
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8376
|
-
logoUri: z.ZodString;
|
|
8377
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8378
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8379
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8380
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8381
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8382
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8383
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8384
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8385
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8386
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8387
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8388
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8389
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8390
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8391
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8392
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8393
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8394
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8395
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
8396
|
-
proxy: "proxy";
|
|
8397
|
-
"integration-app-token": "integration-app-token";
|
|
8398
|
-
"membrane-token": "membrane-token";
|
|
8399
|
-
oauth2: "oauth2";
|
|
8400
|
-
oauth1: "oauth1";
|
|
8401
|
-
"client-credentials": "client-credentials";
|
|
8402
|
-
}>>;
|
|
8403
|
-
connection: z.ZodOptional<z.ZodObject<{
|
|
8404
|
-
id: z.ZodString;
|
|
8405
|
-
name: z.ZodString;
|
|
8406
|
-
userId: z.ZodString;
|
|
8407
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8408
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8409
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8410
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8411
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8412
|
-
integrationId: z.ZodString;
|
|
8413
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8414
|
-
createdAt: z.ZodString;
|
|
8415
|
-
updatedAt: z.ZodString;
|
|
8416
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8417
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8418
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8419
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8420
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8421
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8422
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8423
|
-
}, z.core.$strip>>;
|
|
8424
|
-
spec: z.ZodOptional<z.ZodAny>;
|
|
8425
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8426
|
-
key: z.ZodString;
|
|
8427
|
-
type: z.ZodEnum<{
|
|
8428
|
-
proxy: "proxy";
|
|
8429
|
-
"integration-app-token": "integration-app-token";
|
|
8430
|
-
"membrane-token": "membrane-token";
|
|
8431
|
-
oauth2: "oauth2";
|
|
8432
|
-
oauth1: "oauth1";
|
|
8433
|
-
"client-credentials": "client-credentials";
|
|
8434
|
-
}>;
|
|
8435
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8436
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8437
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
8438
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
8439
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
8440
|
-
}, z.core.$strip>>;
|
|
8441
|
-
}, z.core.$strip>>>;
|
|
8442
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8443
|
-
}, z.core.$strip>;
|
|
8444
|
-
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
8445
|
-
type Integration = IntegrationApiResponse;
|
|
8446
|
-
|
|
8447
|
-
declare enum IntegrationElementLevel {
|
|
8448
|
-
UNIVERSAL = "universal",
|
|
8449
|
-
CONNECTOR = "connector",
|
|
8450
|
-
CONNECTION = "connection"
|
|
8451
|
-
}
|
|
8452
|
-
declare enum IntegrationElementType {
|
|
8453
|
-
APP_DATA_SCHEMA = "app-data-schema",
|
|
8454
|
-
APP_EVENT_TYPE = "app-event-type",
|
|
8455
|
-
DATA_SOURCE = "data-source",
|
|
8456
|
-
SCHEMA = "schema",
|
|
8457
|
-
FIELD_MAPPING = "field-mapping",
|
|
8458
|
-
FLOW = "flow",
|
|
8459
|
-
INTEGRATION = "integration",
|
|
8460
|
-
ACTION = "action",
|
|
8461
|
-
DATA_LINK_TABLE = "data-link-table",
|
|
8462
|
-
EXTERNAL_EVENT = "external-event"
|
|
8463
|
-
}
|
|
8464
|
-
interface ElementTemplateFields {
|
|
8465
|
-
id: string;
|
|
8466
|
-
key: string;
|
|
8467
|
-
name: string;
|
|
8468
|
-
revision: string;
|
|
8469
|
-
integrationId?: string;
|
|
8470
|
-
integration?: Integration;
|
|
8471
|
-
parentId?: string;
|
|
8472
|
-
isCustomized?: boolean;
|
|
8473
|
-
createdAt?: string;
|
|
8474
|
-
updatedAt?: string;
|
|
8475
|
-
archivedAt?: string;
|
|
8476
|
-
}
|
|
8477
|
-
interface ElementInstanceFields {
|
|
8478
|
-
id: string;
|
|
8479
|
-
name: string;
|
|
8480
|
-
revision: string;
|
|
8481
|
-
parentId?: string;
|
|
8482
|
-
universalParentId?: string;
|
|
8483
|
-
userId: string;
|
|
8484
|
-
user?: Customer;
|
|
8485
|
-
instanceKey?: string;
|
|
8486
|
-
isCustomized?: boolean;
|
|
8487
|
-
connectionId: string;
|
|
8488
|
-
connection?: Connection;
|
|
8489
|
-
integrationId?: string;
|
|
8490
|
-
integration?: Integration;
|
|
8491
|
-
dependencies?: IntegrationElementInstance[];
|
|
8492
|
-
errors?: ErrorData[];
|
|
8493
|
-
createdAt?: string;
|
|
8494
|
-
updatedAt?: string;
|
|
8495
|
-
archivedAt?: string;
|
|
8496
|
-
}
|
|
8497
|
-
interface IntegrationElement {
|
|
8498
|
-
type: IntegrationElementType;
|
|
8499
|
-
key?: string;
|
|
8500
|
-
id?: string;
|
|
8501
|
-
config?: any;
|
|
8502
|
-
}
|
|
8503
|
-
interface IntegrationElementInstance {
|
|
8504
|
-
type: IntegrationElementType;
|
|
8505
|
-
instanceId?: string;
|
|
8506
|
-
data?: any;
|
|
8507
|
-
}
|
|
8508
|
-
interface IntegrationElementInstanceDependency {
|
|
8509
|
-
fromType: IntegrationElementType;
|
|
8510
|
-
fromInstanceId: string;
|
|
8511
|
-
toType: IntegrationElementType;
|
|
8512
|
-
toInstanceId: string;
|
|
8513
|
-
data?: any;
|
|
8514
|
-
}
|
|
8515
|
-
|
|
8516
|
-
declare const PackageElement: z.ZodObject<{
|
|
8517
|
-
id: z.ZodString;
|
|
8518
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8519
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8520
|
-
}, z.core.$strip>;
|
|
8521
|
-
type PackageElement = z.infer<typeof PackageElement>;
|
|
8522
|
-
declare const PackageElementExport: z.ZodObject<{
|
|
8523
|
-
uuid: z.ZodString;
|
|
8524
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8525
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8526
|
-
}, z.core.$strip>;
|
|
8527
|
-
type PackageElementExport = z.infer<typeof PackageElementExport>;
|
|
8528
|
-
declare const PackageEditableProperties: z.ZodObject<{
|
|
8529
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8530
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8531
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8532
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8533
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8534
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
8535
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8536
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
8537
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8538
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8539
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8540
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8541
|
-
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8542
|
-
id: z.ZodString;
|
|
8543
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8544
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8545
|
-
}, z.core.$strip>>>;
|
|
8546
|
-
}, z.core.$strip>;
|
|
8547
|
-
type PackageEditableProperties = z.infer<typeof PackageEditableProperties>;
|
|
8548
|
-
declare const PackageExportProperties: z.ZodObject<{
|
|
8549
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8550
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8551
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8552
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8553
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8554
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8555
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8556
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8557
|
-
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8558
|
-
uuid: z.ZodString;
|
|
8559
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8560
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8561
|
-
}, z.core.$strip>>>;
|
|
8562
|
-
}, z.core.$strip>;
|
|
8563
|
-
type PackageExportProperties = z.infer<typeof PackageExportProperties>;
|
|
8564
|
-
declare const PackageCalculatedProperties: z.ZodObject<{
|
|
8565
|
-
key: z.ZodString;
|
|
8566
|
-
name: z.ZodString;
|
|
8567
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8568
|
-
}, z.core.$strip>;
|
|
8569
|
-
type PackageCalculatedProperties = z.infer<typeof PackageCalculatedProperties>;
|
|
8570
|
-
declare const BasePackage: z.ZodObject<{
|
|
8571
|
-
id: z.ZodString;
|
|
8572
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8573
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8574
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8575
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8576
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8577
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8578
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8579
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8580
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8581
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8582
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
8583
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8584
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
8585
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8586
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8587
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8588
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8589
|
-
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8590
|
-
id: z.ZodString;
|
|
8591
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8592
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8593
|
-
}, z.core.$strip>>>;
|
|
8594
|
-
key: z.ZodString;
|
|
8595
|
-
name: z.ZodString;
|
|
8596
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8597
|
-
}, z.core.$strip>;
|
|
8598
|
-
type BasePackage = z.infer<typeof BasePackage>;
|
|
8599
|
-
|
|
8600
|
-
declare enum ScreenType {
|
|
8601
|
-
Integration = "integration"
|
|
8602
|
-
}
|
|
8603
|
-
declare enum ScreenBlockType {
|
|
8604
|
-
Flow = "flow",
|
|
8605
|
-
FieldMapping = "field-mapping",
|
|
8606
|
-
DataSource = "data-source",
|
|
8607
|
-
Action = "action"
|
|
8608
|
-
}
|
|
8609
|
-
declare const ScreenBlock: z.ZodIntersection<z.ZodObject<{
|
|
8610
|
-
type: z.ZodEnum<typeof ScreenBlockType>;
|
|
8611
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8612
|
-
type ScreenBlock = z.infer<typeof ScreenBlock>;
|
|
8613
|
-
declare const BaseScreen: z.ZodObject<{
|
|
8614
|
-
id: z.ZodString;
|
|
8615
|
-
name: z.ZodString;
|
|
8616
|
-
type: z.ZodEnum<typeof ScreenType>;
|
|
8617
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8618
|
-
blocks: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
8619
|
-
type: z.ZodEnum<typeof ScreenBlockType>;
|
|
8620
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8621
|
-
}, z.core.$strip>;
|
|
8622
|
-
type BaseScreen = z.infer<typeof BaseScreen>;
|
|
8623
|
-
|
|
8624
|
-
declare const BaseCustomer: z.ZodObject<{
|
|
8625
|
-
id: z.ZodString;
|
|
8626
|
-
name: z.ZodString;
|
|
8627
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8628
|
-
internalId: z.ZodString;
|
|
8629
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8630
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8631
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8632
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8633
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8634
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8635
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8636
|
-
}, z.core.$strip>;
|
|
8637
|
-
type BaseCustomer = z.infer<typeof BaseCustomer>;
|
|
8638
|
-
|
|
8639
|
-
declare const BaseFlowInstance: z.ZodObject<{
|
|
8640
|
-
id: z.ZodString;
|
|
8641
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8642
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8643
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8644
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8645
|
-
name: z.ZodString;
|
|
8646
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8647
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8648
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8649
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8650
|
-
userId: z.ZodString;
|
|
8651
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8652
|
-
flowId: z.ZodOptional<z.ZodString>;
|
|
8653
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
8654
|
-
integrationId: z.ZodString;
|
|
8655
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8656
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8657
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8658
|
-
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8659
|
-
enabled: z.ZodBoolean;
|
|
8660
|
-
createdAt: z.ZodString;
|
|
8661
|
-
updatedAt: z.ZodString;
|
|
8662
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8663
|
-
customized: z.ZodOptional<z.ZodObject<{
|
|
8664
|
-
name: z.ZodOptional<z.ZodBoolean>;
|
|
8665
|
-
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8163
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8164
|
+
customized: z.ZodOptional<z.ZodObject<{
|
|
8165
|
+
name: z.ZodOptional<z.ZodBoolean>;
|
|
8166
|
+
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8666
8167
|
}, z.core.$strip>>;
|
|
8667
8168
|
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
8668
8169
|
}, z.core.$strip>;
|
|
@@ -9098,56 +8599,398 @@ declare const BaseExternalEventLogRecord: z.ZodObject<{
|
|
|
9098
8599
|
name: z.ZodOptional<z.ZodString>;
|
|
9099
8600
|
externalEventSubscriptionId: z.ZodString;
|
|
9100
8601
|
integrationId: z.ZodString;
|
|
9101
|
-
connectionId: z.ZodString;
|
|
9102
|
-
payload: z.ZodOptional<z.ZodAny>;
|
|
9103
|
-
launchedFlowRunIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9104
|
-
status: z.ZodEnum<typeof ExternalEventLogStatus>;
|
|
9105
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8602
|
+
connectionId: z.ZodString;
|
|
8603
|
+
payload: z.ZodOptional<z.ZodAny>;
|
|
8604
|
+
launchedFlowRunIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8605
|
+
status: z.ZodEnum<typeof ExternalEventLogStatus>;
|
|
8606
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8607
|
+
}, z.core.$strip>;
|
|
8608
|
+
type BaseExternalEventLogRecord = z.infer<typeof BaseExternalEventLogRecord>;
|
|
8609
|
+
|
|
8610
|
+
declare enum ExternalEventPullStatus {
|
|
8611
|
+
RUNNING = "running",
|
|
8612
|
+
SUCCESS = "success",
|
|
8613
|
+
ERROR = "error",
|
|
8614
|
+
QUEUED = "queued"
|
|
8615
|
+
}
|
|
8616
|
+
declare const BaseExternalEventPull: z.ZodObject<{
|
|
8617
|
+
id: z.ZodString;
|
|
8618
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8619
|
+
userId: z.ZodString;
|
|
8620
|
+
externalEventSubscriptionId: z.ZodString;
|
|
8621
|
+
integrationId: z.ZodString;
|
|
8622
|
+
connectionId: z.ZodString;
|
|
8623
|
+
startDatetime: z.ZodString;
|
|
8624
|
+
endDatetime: z.ZodString;
|
|
8625
|
+
isFullScan: z.ZodOptional<z.ZodBoolean>;
|
|
8626
|
+
status: z.ZodEnum<typeof ExternalEventPullStatus>;
|
|
8627
|
+
collectedEventIds: z.ZodArray<z.ZodString>;
|
|
8628
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8629
|
+
}, z.core.$strip>;
|
|
8630
|
+
type BaseExternalEventPull = z.infer<typeof BaseExternalEventPull>;
|
|
8631
|
+
|
|
8632
|
+
declare enum ActionRunLogStatus {
|
|
8633
|
+
SUCCESS = "success",
|
|
8634
|
+
ERROR = "error"
|
|
8635
|
+
}
|
|
8636
|
+
declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
8637
|
+
id: z.ZodString;
|
|
8638
|
+
name: z.ZodString;
|
|
8639
|
+
userId: z.ZodString;
|
|
8640
|
+
actionId: z.ZodString;
|
|
8641
|
+
actionInstanceId: z.ZodString;
|
|
8642
|
+
integrationId: z.ZodString;
|
|
8643
|
+
connectionId: z.ZodString;
|
|
8644
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
8645
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
8646
|
+
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
8647
|
+
createdAt: z.ZodString;
|
|
8648
|
+
completedAt: z.ZodOptional<z.ZodString>;
|
|
8649
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8650
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
8651
|
+
}, z.core.$strip>;
|
|
8652
|
+
type BaseActionRunLogRecord = z.infer<typeof BaseActionRunLogRecord>;
|
|
8653
|
+
|
|
8654
|
+
declare const PaginationQuery: z.ZodObject<{
|
|
8655
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8656
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8657
|
+
}, z.core.$strip>;
|
|
8658
|
+
type PaginationQuery = z.infer<typeof PaginationQuery>;
|
|
8659
|
+
declare function createPaginationResponseSchema<T extends z.ZodTypeAny>(itemSchema: T): z.ZodObject<{
|
|
8660
|
+
items: z.ZodArray<T>;
|
|
8661
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8662
|
+
}, z.core.$strip>;
|
|
8663
|
+
declare class PaginationResponse<T> {
|
|
8664
|
+
items: T[];
|
|
8665
|
+
cursor?: string;
|
|
8666
|
+
}
|
|
8667
|
+
declare const IncludeArchivedQuery: z.ZodObject<{
|
|
8668
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8669
|
+
}, z.core.$strip>;
|
|
8670
|
+
type IncludeArchivedQuery = z.infer<typeof IncludeArchivedQuery>;
|
|
8671
|
+
declare const SearchQuery: z.ZodObject<{
|
|
8672
|
+
search: z.ZodOptional<z.ZodString>;
|
|
8673
|
+
}, z.core.$strip>;
|
|
8674
|
+
type SearchQuery = z.infer<typeof SearchQuery>;
|
|
8675
|
+
declare const CommonListElementsQuery: z.ZodObject<{
|
|
8676
|
+
search: z.ZodOptional<z.ZodString>;
|
|
8677
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8678
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8679
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8680
|
+
}, z.core.$strip>;
|
|
8681
|
+
type CommonListElementsQuery = z.infer<typeof CommonListElementsQuery>;
|
|
8682
|
+
declare const CommonFindElementsQuery: z.ZodObject<{
|
|
8683
|
+
search: z.ZodOptional<z.ZodString>;
|
|
8684
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8685
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8686
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8687
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
8688
|
+
}, z.core.$strip>;
|
|
8689
|
+
type CommonFindElementsQuery = z.infer<typeof CommonFindElementsQuery>;
|
|
8690
|
+
declare const CommonInstancesListQuery: z.ZodObject<{
|
|
8691
|
+
search: z.ZodOptional<z.ZodString>;
|
|
8692
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8693
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8694
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8695
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
8696
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8697
|
+
}, z.core.$strip>;
|
|
8698
|
+
type CommonInstancesListQuery = z.infer<typeof CommonInstancesListQuery>;
|
|
8699
|
+
declare const CommonFindInstancesQuery: z.ZodObject<{
|
|
8700
|
+
search: z.ZodOptional<z.ZodString>;
|
|
8701
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8702
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8703
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8704
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
8705
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8706
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
8707
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8708
|
+
}, z.core.$strip>;
|
|
8709
|
+
type CommonFindInstancesQuery = z.infer<typeof CommonFindInstancesQuery>;
|
|
8710
|
+
declare const CommonIntegrationOrConnectionQuery: z.ZodObject<{
|
|
8711
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8712
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8713
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
8714
|
+
}, z.core.$strip>;
|
|
8715
|
+
type CommonIntegrationOrConnectionQuery = z.infer<typeof CommonIntegrationOrConnectionQuery>;
|
|
8716
|
+
|
|
8717
|
+
declare const FindConnectionsQuery: z.ZodObject<{
|
|
8718
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8719
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
8720
|
+
search: z.ZodOptional<z.ZodString>;
|
|
8721
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8722
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
8723
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8724
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
8725
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8726
|
+
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8727
|
+
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8728
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8729
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
8730
|
+
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8731
|
+
}, z.core.$strip>;
|
|
8732
|
+
type FindConnectionsQuery = z.infer<typeof FindConnectionsQuery>;
|
|
8733
|
+
declare const CreateConnectionRequest: z.ZodObject<{
|
|
8734
|
+
name: z.ZodString;
|
|
8735
|
+
integrationId: z.ZodString;
|
|
8736
|
+
credentials: z.ZodOptional<z.ZodString>;
|
|
9106
8737
|
}, z.core.$strip>;
|
|
9107
|
-
type
|
|
9108
|
-
|
|
9109
|
-
|
|
9110
|
-
|
|
9111
|
-
|
|
9112
|
-
|
|
9113
|
-
|
|
8738
|
+
type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
8739
|
+
declare const UpdateConnectionRequest: z.ZodObject<{
|
|
8740
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8741
|
+
credentials: z.ZodOptional<z.ZodString>;
|
|
8742
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
8743
|
+
}, z.core.$strip>;
|
|
8744
|
+
type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
8745
|
+
declare class FindConnectionsResponse extends PaginationResponse<Connection> {
|
|
9114
8746
|
}
|
|
9115
|
-
declare const
|
|
8747
|
+
declare const ConnectionSelector: z.ZodObject<{
|
|
8748
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8749
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
8750
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8751
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8752
|
+
}, z.core.$strip>;
|
|
8753
|
+
type ConnectionSelector = z.infer<typeof ConnectionSelector>;
|
|
8754
|
+
declare const ConnectionApiResponse: z.ZodObject<{
|
|
9116
8755
|
id: z.ZodString;
|
|
9117
|
-
name: z.
|
|
8756
|
+
name: z.ZodString;
|
|
9118
8757
|
userId: z.ZodString;
|
|
9119
|
-
|
|
9120
|
-
|
|
9121
|
-
|
|
9122
|
-
|
|
9123
|
-
endDatetime: z.ZodString;
|
|
9124
|
-
isFullScan: z.ZodOptional<z.ZodBoolean>;
|
|
9125
|
-
status: z.ZodEnum<typeof ExternalEventPullStatus>;
|
|
9126
|
-
collectedEventIds: z.ZodArray<z.ZodString>;
|
|
8758
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8759
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8760
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8761
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
9127
8762
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8763
|
+
integrationId: z.ZodString;
|
|
8764
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8765
|
+
createdAt: z.ZodString;
|
|
8766
|
+
updatedAt: z.ZodString;
|
|
8767
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8768
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8769
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8770
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8771
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8772
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8773
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8774
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
8775
|
+
id: z.ZodString;
|
|
8776
|
+
name: z.ZodString;
|
|
8777
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8778
|
+
internalId: z.ZodString;
|
|
8779
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8780
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
8781
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8782
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8783
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8784
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8785
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8786
|
+
}, z.core.$strip>>;
|
|
8787
|
+
integration: z.ZodOptional<z.ZodObject<{
|
|
8788
|
+
id: z.ZodString;
|
|
8789
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8790
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8791
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8792
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8793
|
+
name: z.ZodString;
|
|
8794
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8795
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8796
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8797
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8798
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8799
|
+
logoUri: z.ZodString;
|
|
8800
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
8801
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8802
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8803
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
8804
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8805
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8806
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8807
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8808
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8809
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8810
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8811
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8812
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8813
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8814
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8815
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8816
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
8817
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8818
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
8819
|
+
proxy: "proxy";
|
|
8820
|
+
"integration-app-token": "integration-app-token";
|
|
8821
|
+
"membrane-token": "membrane-token";
|
|
8822
|
+
oauth2: "oauth2";
|
|
8823
|
+
oauth1: "oauth1";
|
|
8824
|
+
"client-credentials": "client-credentials";
|
|
8825
|
+
}>>;
|
|
8826
|
+
}, z.core.$strip>>;
|
|
9128
8827
|
}, z.core.$strip>;
|
|
9129
|
-
type
|
|
9130
|
-
|
|
9131
|
-
declare enum ActionRunLogStatus {
|
|
9132
|
-
SUCCESS = "success",
|
|
9133
|
-
ERROR = "error"
|
|
9134
|
-
}
|
|
9135
|
-
declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
8828
|
+
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
8829
|
+
declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
9136
8830
|
id: z.ZodString;
|
|
9137
8831
|
name: z.ZodString;
|
|
9138
|
-
|
|
9139
|
-
|
|
8832
|
+
userId: z.ZodString;
|
|
8833
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8834
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8835
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8836
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8837
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
9140
8838
|
integrationId: z.ZodString;
|
|
9141
|
-
|
|
9142
|
-
input: z.ZodOptional<z.ZodAny>;
|
|
9143
|
-
output: z.ZodOptional<z.ZodAny>;
|
|
9144
|
-
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
8839
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
9145
8840
|
createdAt: z.ZodString;
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
8841
|
+
updatedAt: z.ZodString;
|
|
8842
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8843
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8844
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8845
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8846
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8847
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8848
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8849
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
8850
|
+
id: z.ZodString;
|
|
8851
|
+
name: z.ZodString;
|
|
8852
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8853
|
+
internalId: z.ZodString;
|
|
8854
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8855
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
8856
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8857
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8858
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8859
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8860
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8861
|
+
}, z.core.$strip>>;
|
|
8862
|
+
integration: z.ZodOptional<z.ZodObject<{
|
|
8863
|
+
id: z.ZodString;
|
|
8864
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8865
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8866
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8867
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8868
|
+
name: z.ZodString;
|
|
8869
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8870
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8871
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8872
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8873
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8874
|
+
logoUri: z.ZodString;
|
|
8875
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
8876
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8877
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8878
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
8879
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8880
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8881
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8882
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8883
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8884
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8885
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8886
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8887
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8888
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8889
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8890
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8891
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
8892
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8893
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
8894
|
+
proxy: "proxy";
|
|
8895
|
+
"integration-app-token": "integration-app-token";
|
|
8896
|
+
"membrane-token": "membrane-token";
|
|
8897
|
+
oauth2: "oauth2";
|
|
8898
|
+
oauth1: "oauth1";
|
|
8899
|
+
"client-credentials": "client-credentials";
|
|
8900
|
+
}>>;
|
|
8901
|
+
}, z.core.$strip>>;
|
|
8902
|
+
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
8903
|
+
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
8904
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
9149
8905
|
}, z.core.$strip>;
|
|
9150
|
-
type
|
|
8906
|
+
type ConnectionApiResponseWithSecrets = z.infer<typeof ConnectionApiResponseWithSecrets>;
|
|
8907
|
+
type Connection = ConnectionApiResponse;
|
|
8908
|
+
declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8909
|
+
source: z.ZodString;
|
|
8910
|
+
requestId: z.ZodString;
|
|
8911
|
+
type: z.ZodLiteral<"newConnectionCreated">;
|
|
8912
|
+
connection: z.ZodObject<{
|
|
8913
|
+
id: z.ZodString;
|
|
8914
|
+
name: z.ZodString;
|
|
8915
|
+
userId: z.ZodString;
|
|
8916
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8917
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8918
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8919
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8920
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8921
|
+
integrationId: z.ZodString;
|
|
8922
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8923
|
+
createdAt: z.ZodString;
|
|
8924
|
+
updatedAt: z.ZodString;
|
|
8925
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8926
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8927
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8928
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8929
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8930
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8931
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8932
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
8933
|
+
id: z.ZodString;
|
|
8934
|
+
name: z.ZodString;
|
|
8935
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8936
|
+
internalId: z.ZodString;
|
|
8937
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8938
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
8939
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8940
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8941
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8942
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8943
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8944
|
+
}, z.core.$strip>>;
|
|
8945
|
+
integration: z.ZodOptional<z.ZodObject<{
|
|
8946
|
+
id: z.ZodString;
|
|
8947
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8948
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8949
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8950
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8951
|
+
name: z.ZodString;
|
|
8952
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8953
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8954
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8955
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8956
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8957
|
+
logoUri: z.ZodString;
|
|
8958
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
8959
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8960
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8961
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
8962
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8963
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8964
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8965
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8966
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8967
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8968
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8969
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8970
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8971
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8972
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8973
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8974
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
8975
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8976
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
8977
|
+
proxy: "proxy";
|
|
8978
|
+
"integration-app-token": "integration-app-token";
|
|
8979
|
+
"membrane-token": "membrane-token";
|
|
8980
|
+
oauth2: "oauth2";
|
|
8981
|
+
oauth1: "oauth1";
|
|
8982
|
+
"client-credentials": "client-credentials";
|
|
8983
|
+
}>>;
|
|
8984
|
+
}, z.core.$strip>>;
|
|
8985
|
+
}, z.core.$strip>;
|
|
8986
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8987
|
+
source: z.ZodString;
|
|
8988
|
+
requestId: z.ZodString;
|
|
8989
|
+
type: z.ZodLiteral<"newConnectionFailure">;
|
|
8990
|
+
error: z.ZodString;
|
|
8991
|
+
errorData: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8992
|
+
}, z.core.$strip>], "type">;
|
|
8993
|
+
type ConnectionMessagePayload = z.infer<typeof ConnectionMessagePayload>;
|
|
9151
8994
|
|
|
9152
8995
|
declare const axios: _axios.AxiosInstance;
|
|
9153
8996
|
interface MembraneClientOptions {
|
|
@@ -9355,6 +9198,28 @@ declare class ConnectionLevelActionsAccessor extends ConnectionLevelElementsList
|
|
|
9355
9198
|
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
9356
9199
|
}
|
|
9357
9200
|
|
|
9201
|
+
interface OpenConfigurationOptions {
|
|
9202
|
+
onClose?: (...args: any[]) => void;
|
|
9203
|
+
showPoweredBy?: boolean;
|
|
9204
|
+
}
|
|
9205
|
+
|
|
9206
|
+
declare const FindDataSourceInstanceQuery: z.ZodObject<{
|
|
9207
|
+
search: z.ZodOptional<z.ZodString>;
|
|
9208
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
9209
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
9210
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
9211
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
9212
|
+
id: z.ZodOptional<z.ZodString>;
|
|
9213
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
9214
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
9215
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
9216
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
9217
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
9218
|
+
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
9219
|
+
udm: z.ZodOptional<z.ZodString>;
|
|
9220
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
9221
|
+
}, z.core.$strip>;
|
|
9222
|
+
type FindDataSourceInstanceQuery = z.infer<typeof FindDataSourceInstanceQuery>;
|
|
9358
9223
|
declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
9359
9224
|
id: z.ZodString;
|
|
9360
9225
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -10081,9 +9946,9 @@ type FlowApiResponse = z.infer<typeof FlowApiResponse>;
|
|
|
10081
9946
|
type Flow = FlowApiResponse;
|
|
10082
9947
|
declare const FindFlowsQuery: z.ZodObject<{
|
|
10083
9948
|
search: z.ZodOptional<z.ZodString>;
|
|
10084
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10085
9949
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10086
9950
|
cursor: z.ZodOptional<z.ZodString>;
|
|
9951
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10087
9952
|
userId: z.ZodOptional<z.ZodString>;
|
|
10088
9953
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10089
9954
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -10742,9 +10607,9 @@ type DataSourceApiResponse = z.infer<typeof DataSourceApiResponse>;
|
|
|
10742
10607
|
type DataSource = DataSourceApiResponse;
|
|
10743
10608
|
declare const FindDataSourcesQuery: z.ZodObject<{
|
|
10744
10609
|
search: z.ZodOptional<z.ZodString>;
|
|
10745
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10746
10610
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10747
10611
|
cursor: z.ZodOptional<z.ZodString>;
|
|
10612
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10748
10613
|
userId: z.ZodOptional<z.ZodString>;
|
|
10749
10614
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10750
10615
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -11772,9 +11637,9 @@ type FieldMappingApiResponse = z.infer<typeof FieldMappingApiResponse>;
|
|
|
11772
11637
|
type FieldMapping = FieldMappingApiResponse;
|
|
11773
11638
|
declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
11774
11639
|
search: z.ZodOptional<z.ZodString>;
|
|
11775
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11776
11640
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11777
11641
|
cursor: z.ZodOptional<z.ZodString>;
|
|
11642
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11778
11643
|
userId: z.ZodOptional<z.ZodString>;
|
|
11779
11644
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11780
11645
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -11866,6 +11731,157 @@ declare class IntegrationLevelFieldMappingsListAccessor extends IntegrationLevel
|
|
|
11866
11731
|
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
11867
11732
|
}
|
|
11868
11733
|
|
|
11734
|
+
declare const CreateIntegrationRequest: z.ZodObject<{
|
|
11735
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
11736
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11737
|
+
name: z.ZodOptional<z.ZodString>;
|
|
11738
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11739
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11740
|
+
baseUri: z.ZodOptional<z.ZodString>;
|
|
11741
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
11742
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
11743
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
11744
|
+
logoBase64: z.ZodOptional<z.ZodString>;
|
|
11745
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11746
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
11747
|
+
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
11748
|
+
}, z.core.$strip>;
|
|
11749
|
+
type CreateIntegrationRequest = z.infer<typeof CreateIntegrationRequest>;
|
|
11750
|
+
declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
11751
|
+
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11752
|
+
key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11753
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11754
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11755
|
+
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11756
|
+
baseUri: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11757
|
+
logoUri: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11758
|
+
appUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11759
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>>;
|
|
11760
|
+
logoBase64: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11761
|
+
connectorVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11762
|
+
connectorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11763
|
+
connectorUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
11764
|
+
}, z.core.$strip>;
|
|
11765
|
+
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
11766
|
+
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
11767
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11768
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
11769
|
+
search: z.ZodOptional<z.ZodString>;
|
|
11770
|
+
}, z.core.$strip>;
|
|
11771
|
+
type FindIntegrationsQuery = z.infer<typeof FindIntegrationsQuery>;
|
|
11772
|
+
interface FindIntegrationsResponse extends PaginationResponse<IntegrationApiResponse> {
|
|
11773
|
+
}
|
|
11774
|
+
interface OpenNewConnectionOptions extends OpenConfigurationOptions {
|
|
11775
|
+
allowMultipleConnections?: boolean;
|
|
11776
|
+
name?: string;
|
|
11777
|
+
connectorParameters?: any;
|
|
11778
|
+
}
|
|
11779
|
+
declare const IntegrationAuthUi: z.ZodObject<{
|
|
11780
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
11781
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
11782
|
+
}, z.core.$strip>;
|
|
11783
|
+
type IntegrationAuthUi = z.infer<typeof IntegrationAuthUi>;
|
|
11784
|
+
declare const IntegrationAuthOption: z.ZodObject<{
|
|
11785
|
+
key: z.ZodString;
|
|
11786
|
+
type: z.ZodEnum<{
|
|
11787
|
+
proxy: "proxy";
|
|
11788
|
+
"integration-app-token": "integration-app-token";
|
|
11789
|
+
"membrane-token": "membrane-token";
|
|
11790
|
+
oauth2: "oauth2";
|
|
11791
|
+
oauth1: "oauth1";
|
|
11792
|
+
"client-credentials": "client-credentials";
|
|
11793
|
+
}>;
|
|
11794
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11795
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11796
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
11797
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
11798
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
11799
|
+
}, z.core.$strip>>;
|
|
11800
|
+
}, z.core.$strip>;
|
|
11801
|
+
type IntegrationAuthOption = z.infer<typeof IntegrationAuthOption>;
|
|
11802
|
+
declare const IntegrationApiResponse: z.ZodObject<{
|
|
11803
|
+
id: z.ZodString;
|
|
11804
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
11805
|
+
key: z.ZodOptional<z.ZodString>;
|
|
11806
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11807
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11808
|
+
name: z.ZodString;
|
|
11809
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
11810
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
11811
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
11812
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
11813
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11814
|
+
logoUri: z.ZodString;
|
|
11815
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
11816
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
11817
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
11818
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
11819
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11820
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
11821
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
11822
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
11823
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
11824
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
11825
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
11826
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
11827
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
11828
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
11829
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
11830
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11831
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
11832
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11833
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
11834
|
+
proxy: "proxy";
|
|
11835
|
+
"integration-app-token": "integration-app-token";
|
|
11836
|
+
"membrane-token": "membrane-token";
|
|
11837
|
+
oauth2: "oauth2";
|
|
11838
|
+
oauth1: "oauth1";
|
|
11839
|
+
"client-credentials": "client-credentials";
|
|
11840
|
+
}>>;
|
|
11841
|
+
connection: z.ZodOptional<z.ZodObject<{
|
|
11842
|
+
id: z.ZodString;
|
|
11843
|
+
name: z.ZodString;
|
|
11844
|
+
userId: z.ZodString;
|
|
11845
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
11846
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
11847
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
11848
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
11849
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
11850
|
+
integrationId: z.ZodString;
|
|
11851
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
11852
|
+
createdAt: z.ZodString;
|
|
11853
|
+
updatedAt: z.ZodString;
|
|
11854
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
11855
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
11856
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
11857
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
11858
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11859
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11860
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11861
|
+
}, z.core.$strip>>;
|
|
11862
|
+
spec: z.ZodOptional<z.ZodAny>;
|
|
11863
|
+
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11864
|
+
key: z.ZodString;
|
|
11865
|
+
type: z.ZodEnum<{
|
|
11866
|
+
proxy: "proxy";
|
|
11867
|
+
"integration-app-token": "integration-app-token";
|
|
11868
|
+
"membrane-token": "membrane-token";
|
|
11869
|
+
oauth2: "oauth2";
|
|
11870
|
+
oauth1: "oauth1";
|
|
11871
|
+
"client-credentials": "client-credentials";
|
|
11872
|
+
}>;
|
|
11873
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11874
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11875
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
11876
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
11877
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
11878
|
+
}, z.core.$strip>>;
|
|
11879
|
+
}, z.core.$strip>>>;
|
|
11880
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
11881
|
+
}, z.core.$strip>;
|
|
11882
|
+
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
11883
|
+
type Integration = IntegrationApiResponse;
|
|
11884
|
+
|
|
11869
11885
|
interface OpenIntegrationUIIntegrationConfigurationOptions extends OpenConfigurationOptions {
|
|
11870
11886
|
}
|
|
11871
11887
|
declare class IntegrationsAccessor extends ElementListAccessor<Integration, FindIntegrationsQuery, CreateIntegrationRequest> {
|
|
@@ -11979,7 +11995,7 @@ declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateInt
|
|
|
11979
11995
|
|
|
11980
11996
|
declare const PackageElementApi: z.ZodObject<{
|
|
11981
11997
|
id: z.ZodString;
|
|
11982
|
-
type: z.ZodEnum<typeof
|
|
11998
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
11983
11999
|
element: z.ZodOptional<z.ZodAny>;
|
|
11984
12000
|
}, z.core.$strip>;
|
|
11985
12001
|
type PackageElementApi = z.infer<typeof PackageElementApi>;
|
|
@@ -12000,6 +12016,7 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
12000
12016
|
parentId: z.ZodOptional<z.ZodString>;
|
|
12001
12017
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
12002
12018
|
userId: z.ZodOptional<z.ZodString>;
|
|
12019
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12003
12020
|
}, z.core.$strip>;
|
|
12004
12021
|
type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
|
|
12005
12022
|
declare const CreatePackageRequest: z.ZodObject<{
|
|
@@ -12015,9 +12032,10 @@ declare const CreatePackageRequest: z.ZodObject<{
|
|
|
12015
12032
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12016
12033
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12017
12034
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12035
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12018
12036
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12019
12037
|
id: z.ZodString;
|
|
12020
|
-
type: z.ZodEnum<typeof
|
|
12038
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12021
12039
|
element: z.ZodOptional<z.ZodAny>;
|
|
12022
12040
|
}, z.core.$strip>>>;
|
|
12023
12041
|
}, z.core.$strip>;
|
|
@@ -12035,9 +12053,10 @@ declare const UpdatePackageRequest: z.ZodObject<{
|
|
|
12035
12053
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12036
12054
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12037
12055
|
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12056
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12038
12057
|
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12039
12058
|
id: z.ZodString;
|
|
12040
|
-
type: z.ZodEnum<typeof
|
|
12059
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12041
12060
|
element: z.ZodOptional<z.ZodAny>;
|
|
12042
12061
|
}, z.core.$strip>>>>;
|
|
12043
12062
|
}, z.core.$strip>;
|
|
@@ -12061,14 +12080,18 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12061
12080
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12062
12081
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12063
12082
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12083
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12084
|
+
key: z.ZodString;
|
|
12085
|
+
name: z.ZodString;
|
|
12086
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12064
12087
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12065
12088
|
id: z.ZodString;
|
|
12066
|
-
type: z.ZodEnum<typeof
|
|
12089
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12067
12090
|
element: z.ZodOptional<z.ZodAny>;
|
|
12068
12091
|
}, z.core.$strip>>>;
|
|
12069
|
-
|
|
12070
|
-
|
|
12071
|
-
|
|
12092
|
+
version: z.ZodOptional<z.ZodString>;
|
|
12093
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
12094
|
+
parentPackageVersion: z.ZodOptional<z.ZodString>;
|
|
12072
12095
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12073
12096
|
element: z.ZodObject<{
|
|
12074
12097
|
id: z.ZodString;
|
|
@@ -12089,9 +12112,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12089
12112
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12090
12113
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12091
12114
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12115
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12092
12116
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12093
12117
|
id: z.ZodString;
|
|
12094
|
-
type: z.ZodEnum<typeof
|
|
12118
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12095
12119
|
element: z.ZodOptional<z.ZodAny>;
|
|
12096
12120
|
}, z.core.$strip>>>;
|
|
12097
12121
|
key: z.ZodString;
|
|
@@ -12143,6 +12167,12 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12143
12167
|
type PackageApiResponse = z.infer<typeof PackageApiResponse>;
|
|
12144
12168
|
type Package = PackageApiResponse;
|
|
12145
12169
|
type Scenario = PackageApiResponse;
|
|
12170
|
+
declare const ListPublicPackagesQuery: z.ZodObject<{
|
|
12171
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12172
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12173
|
+
search: z.ZodOptional<z.ZodString>;
|
|
12174
|
+
}, z.core.$strip>;
|
|
12175
|
+
type ListPublicPackagesQuery = z.infer<typeof ListPublicPackagesQuery>;
|
|
12146
12176
|
|
|
12147
12177
|
declare class PackagesAccessor extends ElementListAccessor<PackageApiResponse, FindPackagesQuery, PackageEditableProperties> {
|
|
12148
12178
|
constructor(client: MembraneApiClient);
|
|
@@ -12171,9 +12201,13 @@ interface UpdateScreenRequest {
|
|
|
12171
12201
|
interface CreateScreenRequest extends UpdateScreenRequest {
|
|
12172
12202
|
type: ScreenType;
|
|
12173
12203
|
}
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12204
|
+
declare const FindScreensQuery: z.ZodObject<{
|
|
12205
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12206
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12207
|
+
type: z.ZodOptional<z.ZodEnum<typeof ScreenType>>;
|
|
12208
|
+
key: z.ZodOptional<z.ZodString>;
|
|
12209
|
+
}, z.core.$strip>;
|
|
12210
|
+
type FindScreensQuery = z.infer<typeof FindScreensQuery>;
|
|
12177
12211
|
declare const ScreenApiResponse: z.ZodObject<{
|
|
12178
12212
|
id: z.ZodString;
|
|
12179
12213
|
name: z.ZodString;
|
|
@@ -12193,6 +12227,52 @@ declare class ScreenAccessor extends ElementAccessor<Screen, UpdateScreenRequest
|
|
|
12193
12227
|
constructor(client: MembraneApiClient, selector: ScreenSelector | string);
|
|
12194
12228
|
}
|
|
12195
12229
|
|
|
12230
|
+
declare const CreateCustomerRequest: z.ZodObject<{
|
|
12231
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12232
|
+
internalId: z.ZodString;
|
|
12233
|
+
fields: z.ZodOptional<z.ZodAny>;
|
|
12234
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
12235
|
+
}, z.core.$strip>;
|
|
12236
|
+
type CreateCustomerRequest = z.infer<typeof CreateCustomerRequest>;
|
|
12237
|
+
declare const UpdateCustomerRequest: z.ZodObject<{
|
|
12238
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12239
|
+
internalId: z.ZodOptional<z.ZodString>;
|
|
12240
|
+
fields: z.ZodOptional<z.ZodAny>;
|
|
12241
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
12242
|
+
}, z.core.$strip>;
|
|
12243
|
+
type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
|
|
12244
|
+
declare const FindCustomersQuery: z.ZodObject<{
|
|
12245
|
+
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12246
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12247
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12248
|
+
search: z.ZodOptional<z.ZodString>;
|
|
12249
|
+
}, z.core.$strip>;
|
|
12250
|
+
type FindCustomersQuery = z.infer<typeof FindCustomersQuery>;
|
|
12251
|
+
declare const CustomerSelector: z.ZodObject<{
|
|
12252
|
+
id: z.ZodString;
|
|
12253
|
+
}, z.core.$strip>;
|
|
12254
|
+
type CustomerSelector = z.infer<typeof CustomerSelector>;
|
|
12255
|
+
type CreateUserRequest = CreateCustomerRequest;
|
|
12256
|
+
type UpdateUserRequest = UpdateCustomerRequest;
|
|
12257
|
+
type FindUsersQuery = FindCustomersQuery;
|
|
12258
|
+
type UserSelector = CustomerSelector;
|
|
12259
|
+
declare const CustomerApiResponse: z.ZodObject<{
|
|
12260
|
+
id: z.ZodString;
|
|
12261
|
+
name: z.ZodString;
|
|
12262
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12263
|
+
internalId: z.ZodString;
|
|
12264
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12265
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
12266
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
12267
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
12268
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
12269
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12270
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12271
|
+
}, z.core.$strip>;
|
|
12272
|
+
type CustomerApiResponse = z.infer<typeof CustomerApiResponse>;
|
|
12273
|
+
type Customer = CustomerApiResponse;
|
|
12274
|
+
type User = Customer;
|
|
12275
|
+
|
|
12196
12276
|
declare class CustomersAccessor extends ElementListAccessor<Customer, FindCustomersQuery, CreateCustomerRequest> {
|
|
12197
12277
|
constructor(client: MembraneApiClient);
|
|
12198
12278
|
}
|
|
@@ -12227,11 +12307,16 @@ declare class DataLinkTableAccessor extends ElementAccessor<BaseDataLinkTable, U
|
|
|
12227
12307
|
constructor(client: MembraneApiClient, idOrKey: string);
|
|
12228
12308
|
}
|
|
12229
12309
|
|
|
12230
|
-
|
|
12231
|
-
|
|
12232
|
-
|
|
12233
|
-
|
|
12234
|
-
|
|
12310
|
+
declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
|
|
12311
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12312
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12313
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12314
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
12315
|
+
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
12316
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
12317
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
12318
|
+
}, z.core.$strip>;
|
|
12319
|
+
type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
|
|
12235
12320
|
interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
12236
12321
|
dataLinkTableId?: string;
|
|
12237
12322
|
dataLinkTableKey?: string;
|
|
@@ -12241,11 +12326,14 @@ interface UpdateDataLinkTableInstanceRequest {
|
|
|
12241
12326
|
}
|
|
12242
12327
|
interface CreateDataLinkTableInstanceRequest {
|
|
12243
12328
|
}
|
|
12244
|
-
|
|
12245
|
-
|
|
12246
|
-
|
|
12247
|
-
|
|
12248
|
-
|
|
12329
|
+
declare const FindDataLinksInTableQuery: z.ZodObject<{
|
|
12330
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12331
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12332
|
+
direction: z.ZodOptional<z.ZodEnum<typeof DataLinkDirection>>;
|
|
12333
|
+
appRecordId: z.ZodOptional<z.ZodString>;
|
|
12334
|
+
externalRecordId: z.ZodOptional<z.ZodString>;
|
|
12335
|
+
}, z.core.$strip>;
|
|
12336
|
+
type FindDataLinksInTableQuery = z.infer<typeof FindDataLinksInTableQuery>;
|
|
12249
12337
|
interface CreateDataLinkRequest {
|
|
12250
12338
|
direction?: DataLinkDirection;
|
|
12251
12339
|
appRecordId: string;
|
|
@@ -12256,11 +12344,26 @@ interface DeleteDataLinkRequest {
|
|
|
12256
12344
|
appRecordId: string;
|
|
12257
12345
|
externalRecordId: string;
|
|
12258
12346
|
}
|
|
12259
|
-
|
|
12260
|
-
|
|
12261
|
-
|
|
12262
|
-
|
|
12263
|
-
|
|
12347
|
+
declare const FindDataLinksQuery: z.ZodObject<{
|
|
12348
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12349
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12350
|
+
dataLinkTableInstanceId: z.ZodString;
|
|
12351
|
+
externalRecordId: z.ZodOptional<z.ZodString>;
|
|
12352
|
+
appRecordId: z.ZodOptional<z.ZodString>;
|
|
12353
|
+
direction: z.ZodOptional<z.ZodEnum<typeof DataLinkDirection>>;
|
|
12354
|
+
}, z.core.$strip>;
|
|
12355
|
+
type FindDataLinksQuery = z.infer<typeof FindDataLinksQuery>;
|
|
12356
|
+
declare const FindDataLinksResponse: z.ZodObject<{
|
|
12357
|
+
items: z.ZodArray<z.ZodObject<{
|
|
12358
|
+
id: z.ZodString;
|
|
12359
|
+
dataLinkTableInstanceId: z.ZodString;
|
|
12360
|
+
externalRecordId: z.ZodString;
|
|
12361
|
+
appRecordId: z.ZodString;
|
|
12362
|
+
direction: z.ZodEnum<typeof DataLinkDirection>;
|
|
12363
|
+
}, z.core.$strip>>;
|
|
12364
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12365
|
+
}, z.core.$strip>;
|
|
12366
|
+
type FindDataLinksResponse = z.infer<typeof FindDataLinksResponse>;
|
|
12264
12367
|
interface FindDataLinkQuery extends PaginationQuery {
|
|
12265
12368
|
dataLinkTableInstanceId: string;
|
|
12266
12369
|
externalRecordId: string;
|
|
@@ -12275,6 +12378,22 @@ interface DataLinkInTableSelector {
|
|
|
12275
12378
|
interface DataLinkSelector extends DataLinkInTableSelector {
|
|
12276
12379
|
dataLinkTableInstanceId: string;
|
|
12277
12380
|
}
|
|
12381
|
+
declare const FindDataLinkTableInstanceLinksQuery: z.ZodObject<{
|
|
12382
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
12383
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
12384
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
12385
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12386
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12387
|
+
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
12388
|
+
dataLinkTableKey: z.ZodOptional<z.ZodString>;
|
|
12389
|
+
autoCreate: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12390
|
+
direction: z.ZodOptional<z.ZodEnum<typeof DataLinkDirection>>;
|
|
12391
|
+
appRecordId: z.ZodOptional<z.ZodString>;
|
|
12392
|
+
externalRecordId: z.ZodOptional<z.ZodString>;
|
|
12393
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12394
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12395
|
+
}, z.core.$strip>;
|
|
12396
|
+
type FindDataLinkTableInstanceLinksQuery = z.infer<typeof FindDataLinkTableInstanceLinksQuery>;
|
|
12278
12397
|
declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
12279
12398
|
id: z.ZodString;
|
|
12280
12399
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -12405,13 +12524,18 @@ declare class AppEventTypeAccessor extends ElementAccessor<BaseAppEventType, Upd
|
|
|
12405
12524
|
constructor(client: MembraneApiClient, idOrKey: string);
|
|
12406
12525
|
}
|
|
12407
12526
|
|
|
12408
|
-
|
|
12409
|
-
|
|
12410
|
-
|
|
12411
|
-
|
|
12412
|
-
|
|
12413
|
-
|
|
12414
|
-
|
|
12527
|
+
declare const FindAppEventSubscriptionsQuery: z.ZodObject<{
|
|
12528
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12529
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
12530
|
+
search: z.ZodOptional<z.ZodString>;
|
|
12531
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12532
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12533
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
12534
|
+
appEventTypeId: z.ZodOptional<z.ZodString>;
|
|
12535
|
+
isSubscribed: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
12536
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12537
|
+
}, z.core.$strip>;
|
|
12538
|
+
type FindAppEventSubscriptionsQuery = z.infer<typeof FindAppEventSubscriptionsQuery>;
|
|
12415
12539
|
interface CreateAppEventSubscriptionRequest {
|
|
12416
12540
|
}
|
|
12417
12541
|
interface UpdateAppEventSubscriptionRequest {
|
|
@@ -12731,13 +12855,6 @@ interface FindExternalEventLogsQuery extends PaginationQuery {
|
|
|
12731
12855
|
startDatetime?: string;
|
|
12732
12856
|
status?: ExternalEventLogStatus;
|
|
12733
12857
|
}
|
|
12734
|
-
interface FindExternalEventPullsQuery extends PaginationQuery {
|
|
12735
|
-
userId?: string;
|
|
12736
|
-
externalEventSubscriptionId?: string;
|
|
12737
|
-
integrationId?: string;
|
|
12738
|
-
connectionId?: string;
|
|
12739
|
-
startedAfter?: string;
|
|
12740
|
-
}
|
|
12741
12858
|
interface ExternalEventCustomPullSubscribeResponse {
|
|
12742
12859
|
state: Record<string, any>;
|
|
12743
12860
|
}
|
|
@@ -13084,6 +13201,7 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
13084
13201
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13085
13202
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13086
13203
|
userId: z.ZodOptional<z.ZodString>;
|
|
13204
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13087
13205
|
}, z.core.$strip>;
|
|
13088
13206
|
type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
13089
13207
|
declare const CreateActionRequest: z.ZodObject<{
|
|
@@ -13180,27 +13298,309 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13180
13298
|
description: z.ZodOptional<z.ZodString>;
|
|
13181
13299
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13182
13300
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
13183
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13301
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13302
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13303
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13304
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13305
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13306
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13307
|
+
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13308
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13309
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13310
|
+
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13311
|
+
name: z.ZodString;
|
|
13312
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13313
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13314
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13315
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13316
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13317
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13318
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13319
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13320
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13321
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13322
|
+
integration: z.ZodOptional<z.ZodObject<{
|
|
13323
|
+
id: z.ZodString;
|
|
13324
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13325
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13326
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13327
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13328
|
+
name: z.ZodString;
|
|
13329
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13330
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13331
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13332
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13333
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13334
|
+
logoUri: z.ZodString;
|
|
13335
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
13336
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
13337
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
13338
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
13339
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13340
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
13341
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
13342
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
13343
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
13344
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
13345
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
13346
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
13347
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
13348
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
13349
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
13350
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13351
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
13352
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13353
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
13354
|
+
proxy: "proxy";
|
|
13355
|
+
"integration-app-token": "integration-app-token";
|
|
13356
|
+
"membrane-token": "membrane-token";
|
|
13357
|
+
oauth2: "oauth2";
|
|
13358
|
+
oauth1: "oauth1";
|
|
13359
|
+
"client-credentials": "client-credentials";
|
|
13360
|
+
}>>;
|
|
13361
|
+
}, z.core.$strip>>;
|
|
13362
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
13363
|
+
id: z.ZodString;
|
|
13364
|
+
name: z.ZodString;
|
|
13365
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13366
|
+
internalId: z.ZodString;
|
|
13367
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13368
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
13369
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13370
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13371
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13372
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13373
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13374
|
+
}, z.core.$strip>>;
|
|
13375
|
+
parent: z.ZodOptional<z.ZodObject<{
|
|
13376
|
+
id: z.ZodString;
|
|
13377
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13378
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13379
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13380
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13381
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13382
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13383
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13384
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13385
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13386
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13387
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13388
|
+
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13389
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13390
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13391
|
+
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13392
|
+
name: z.ZodString;
|
|
13393
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13394
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13395
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13396
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13397
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13398
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13399
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13400
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13401
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13402
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13403
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13404
|
+
}, z.core.$strip>>;
|
|
13405
|
+
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13406
|
+
element: z.ZodObject<{
|
|
13407
|
+
id: z.ZodString;
|
|
13408
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13409
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13410
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13411
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13412
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13413
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13414
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13415
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13416
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13417
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13418
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13419
|
+
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13420
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13421
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13422
|
+
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13423
|
+
name: z.ZodString;
|
|
13424
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13425
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13426
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13427
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13428
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13429
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13430
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13431
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13432
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13433
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13434
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13435
|
+
}, z.core.$strip>;
|
|
13436
|
+
integration: z.ZodObject<{
|
|
13437
|
+
id: z.ZodString;
|
|
13438
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13439
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13440
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13441
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13442
|
+
name: z.ZodString;
|
|
13443
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13444
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13445
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13446
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13447
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13448
|
+
logoUri: z.ZodString;
|
|
13449
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
13450
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
13451
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
13452
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
13453
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13454
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
13455
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
13456
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
13457
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
13458
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
13459
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
13460
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
13461
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
13462
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
13463
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
13464
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13465
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
13466
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13467
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
13468
|
+
proxy: "proxy";
|
|
13469
|
+
"integration-app-token": "integration-app-token";
|
|
13470
|
+
"membrane-token": "membrane-token";
|
|
13471
|
+
oauth2: "oauth2";
|
|
13472
|
+
oauth1: "oauth1";
|
|
13473
|
+
"client-credentials": "client-credentials";
|
|
13474
|
+
}>>;
|
|
13475
|
+
}, z.core.$strip>;
|
|
13476
|
+
}, z.core.$strip>>>;
|
|
13477
|
+
defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13478
|
+
transformedOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13479
|
+
outputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13480
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
13481
|
+
}, z.core.$strip>;
|
|
13482
|
+
type ActionInstanceApiResponse = ActionApiResponse;
|
|
13483
|
+
type ActionInstance = ActionInstanceApiResponse;
|
|
13484
|
+
interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
13485
|
+
}
|
|
13486
|
+
declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
13487
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
13488
|
+
connection: "connection";
|
|
13489
|
+
integration: "integration";
|
|
13490
|
+
universal: "universal";
|
|
13491
|
+
}>>;
|
|
13492
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
13493
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13494
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13495
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13496
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13497
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13498
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13499
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13184
13500
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13185
|
-
|
|
13501
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13502
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13503
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13504
|
+
}, z.core.$strip>;
|
|
13505
|
+
type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
13506
|
+
declare const FindActionInstancesQuery: z.ZodObject<{
|
|
13507
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
13508
|
+
connection: "connection";
|
|
13509
|
+
integration: "integration";
|
|
13510
|
+
universal: "universal";
|
|
13511
|
+
}>>;
|
|
13512
|
+
integrationKey: z.ZodOptional<z.ZodString>;
|
|
13513
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13186
13514
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13187
13515
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13188
|
-
|
|
13189
|
-
|
|
13190
|
-
|
|
13191
|
-
|
|
13192
|
-
|
|
13193
|
-
name: z.ZodString;
|
|
13194
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13195
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13196
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
13197
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13198
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13199
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13200
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13201
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13516
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13517
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13518
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13519
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13520
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13202
13521
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13203
13522
|
userId: z.ZodOptional<z.ZodString>;
|
|
13523
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13524
|
+
}, z.core.$strip>;
|
|
13525
|
+
type FindActionInstancesQuery = FindActionsQuery;
|
|
13526
|
+
interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
13527
|
+
}
|
|
13528
|
+
|
|
13529
|
+
declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
13530
|
+
id: z.ZodString;
|
|
13531
|
+
name: z.ZodString;
|
|
13532
|
+
userId: z.ZodString;
|
|
13533
|
+
actionId: z.ZodString;
|
|
13534
|
+
actionInstanceId: z.ZodString;
|
|
13535
|
+
integrationId: z.ZodString;
|
|
13536
|
+
connectionId: z.ZodString;
|
|
13537
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
13538
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
13539
|
+
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
13540
|
+
createdAt: z.ZodString;
|
|
13541
|
+
completedAt: z.ZodOptional<z.ZodString>;
|
|
13542
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13543
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
13544
|
+
action: z.ZodOptional<z.ZodObject<{
|
|
13545
|
+
id: z.ZodString;
|
|
13546
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13547
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13548
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13549
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13550
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13551
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13552
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13553
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13554
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13555
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13556
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13557
|
+
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13558
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13559
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13560
|
+
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13561
|
+
name: z.ZodString;
|
|
13562
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13563
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13564
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13565
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13566
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13567
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13568
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13569
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13570
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13571
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13572
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13573
|
+
}, z.core.$strip>>;
|
|
13574
|
+
actionInstance: z.ZodOptional<z.ZodObject<{
|
|
13575
|
+
id: z.ZodString;
|
|
13576
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13577
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13578
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13579
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13580
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13581
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13582
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13583
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13584
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13585
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13586
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13587
|
+
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13588
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13589
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13590
|
+
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13591
|
+
name: z.ZodString;
|
|
13592
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13593
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13594
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13595
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13596
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13597
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13598
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13599
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13600
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13601
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13602
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13603
|
+
}, z.core.$strip>>;
|
|
13204
13604
|
integration: z.ZodOptional<z.ZodObject<{
|
|
13205
13605
|
id: z.ZodString;
|
|
13206
13606
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -13241,6 +13641,27 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13241
13641
|
"client-credentials": "client-credentials";
|
|
13242
13642
|
}>>;
|
|
13243
13643
|
}, z.core.$strip>>;
|
|
13644
|
+
connection: z.ZodOptional<z.ZodObject<{
|
|
13645
|
+
id: z.ZodString;
|
|
13646
|
+
name: z.ZodString;
|
|
13647
|
+
userId: z.ZodString;
|
|
13648
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13649
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
13650
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
13651
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13652
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13653
|
+
integrationId: z.ZodString;
|
|
13654
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
13655
|
+
createdAt: z.ZodString;
|
|
13656
|
+
updatedAt: z.ZodString;
|
|
13657
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13658
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
13659
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
13660
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
13661
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13662
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13663
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13664
|
+
}, z.core.$strip>>;
|
|
13244
13665
|
user: z.ZodOptional<z.ZodObject<{
|
|
13245
13666
|
id: z.ZodString;
|
|
13246
13667
|
name: z.ZodString;
|
|
@@ -13254,38 +13675,37 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13254
13675
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13255
13676
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13256
13677
|
}, z.core.$strip>>;
|
|
13257
|
-
|
|
13678
|
+
}, z.core.$strip>;
|
|
13679
|
+
type ActionRunLogRecordApiResponse = z.infer<typeof ActionRunLogRecordApiResponse>;
|
|
13680
|
+
declare const FindActionRunLogsQuery: z.ZodObject<{
|
|
13681
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13682
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13683
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
13684
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
13685
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13686
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13687
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13688
|
+
status: z.ZodOptional<z.ZodEnum<typeof ActionRunLogStatus>>;
|
|
13689
|
+
startedAfter: z.ZodOptional<z.ZodString>;
|
|
13690
|
+
}, z.core.$strip>;
|
|
13691
|
+
type FindActionRunLogsQuery = z.infer<typeof FindActionRunLogsQuery>;
|
|
13692
|
+
declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
13693
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13258
13694
|
id: z.ZodString;
|
|
13259
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
13260
|
-
key: z.ZodOptional<z.ZodString>;
|
|
13261
|
-
description: z.ZodOptional<z.ZodString>;
|
|
13262
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13263
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
13264
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13265
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13266
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13267
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
13268
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13269
|
-
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13270
|
-
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13271
|
-
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13272
|
-
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13273
|
-
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13274
13695
|
name: z.ZodString;
|
|
13275
|
-
|
|
13276
|
-
|
|
13277
|
-
|
|
13278
|
-
|
|
13279
|
-
|
|
13280
|
-
|
|
13281
|
-
|
|
13282
|
-
|
|
13283
|
-
|
|
13284
|
-
|
|
13285
|
-
|
|
13286
|
-
|
|
13287
|
-
|
|
13288
|
-
element: z.ZodObject<{
|
|
13696
|
+
userId: z.ZodString;
|
|
13697
|
+
actionId: z.ZodString;
|
|
13698
|
+
actionInstanceId: z.ZodString;
|
|
13699
|
+
integrationId: z.ZodString;
|
|
13700
|
+
connectionId: z.ZodString;
|
|
13701
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
13702
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
13703
|
+
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
13704
|
+
createdAt: z.ZodString;
|
|
13705
|
+
completedAt: z.ZodOptional<z.ZodString>;
|
|
13706
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13707
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
13708
|
+
action: z.ZodOptional<z.ZodObject<{
|
|
13289
13709
|
id: z.ZodString;
|
|
13290
13710
|
uuid: z.ZodOptional<z.ZodString>;
|
|
13291
13711
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -13314,8 +13734,38 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13314
13734
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13315
13735
|
userId: z.ZodOptional<z.ZodString>;
|
|
13316
13736
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13317
|
-
}, z.core.$strip
|
|
13318
|
-
|
|
13737
|
+
}, z.core.$strip>>;
|
|
13738
|
+
actionInstance: z.ZodOptional<z.ZodObject<{
|
|
13739
|
+
id: z.ZodString;
|
|
13740
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
13741
|
+
key: z.ZodOptional<z.ZodString>;
|
|
13742
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13743
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13744
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
13745
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13746
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
13747
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13748
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
13749
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13750
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13751
|
+
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13752
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13753
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13754
|
+
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13755
|
+
name: z.ZodString;
|
|
13756
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13757
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13758
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
13759
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13760
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13761
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13762
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13763
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13764
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13765
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13766
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13767
|
+
}, z.core.$strip>>;
|
|
13768
|
+
integration: z.ZodOptional<z.ZodObject<{
|
|
13319
13769
|
id: z.ZodString;
|
|
13320
13770
|
uuid: z.ZodOptional<z.ZodString>;
|
|
13321
13771
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -13354,166 +13804,63 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13354
13804
|
oauth1: "oauth1";
|
|
13355
13805
|
"client-credentials": "client-credentials";
|
|
13356
13806
|
}>>;
|
|
13357
|
-
}, z.core.$strip
|
|
13358
|
-
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13362
|
-
|
|
13363
|
-
|
|
13364
|
-
|
|
13365
|
-
|
|
13366
|
-
|
|
13367
|
-
|
|
13368
|
-
|
|
13369
|
-
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
|
|
13373
|
-
|
|
13374
|
-
|
|
13375
|
-
|
|
13376
|
-
|
|
13377
|
-
|
|
13378
|
-
|
|
13379
|
-
|
|
13807
|
+
}, z.core.$strip>>;
|
|
13808
|
+
connection: z.ZodOptional<z.ZodObject<{
|
|
13809
|
+
id: z.ZodString;
|
|
13810
|
+
name: z.ZodString;
|
|
13811
|
+
userId: z.ZodString;
|
|
13812
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13813
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
13814
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
13815
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13816
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13817
|
+
integrationId: z.ZodString;
|
|
13818
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
13819
|
+
createdAt: z.ZodString;
|
|
13820
|
+
updatedAt: z.ZodString;
|
|
13821
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13822
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
13823
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
13824
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
13825
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13826
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13827
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13828
|
+
}, z.core.$strip>>;
|
|
13829
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
13830
|
+
id: z.ZodString;
|
|
13831
|
+
name: z.ZodString;
|
|
13832
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13833
|
+
internalId: z.ZodString;
|
|
13834
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13835
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
13836
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13837
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13838
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
13839
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
13840
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13841
|
+
}, z.core.$strip>>;
|
|
13842
|
+
}, z.core.$strip>>;
|
|
13380
13843
|
cursor: z.ZodOptional<z.ZodString>;
|
|
13381
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13382
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13383
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13384
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
13385
13844
|
}, z.core.$strip>;
|
|
13386
|
-
type
|
|
13387
|
-
|
|
13388
|
-
|
|
13389
|
-
|
|
13390
|
-
integration: "integration";
|
|
13391
|
-
universal: "universal";
|
|
13392
|
-
}>>;
|
|
13393
|
-
integrationKey: z.ZodOptional<z.ZodString>;
|
|
13394
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
13395
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
13396
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13397
|
-
search: z.ZodOptional<z.ZodString>;
|
|
13845
|
+
type FindActionRunLogsResponse = z.infer<typeof FindActionRunLogsResponse>;
|
|
13846
|
+
type ActionRunLogRecord = ActionRunLogRecordApiResponse;
|
|
13847
|
+
|
|
13848
|
+
declare const ListPublicConnectorsQuery: z.ZodObject<{
|
|
13398
13849
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13399
13850
|
cursor: z.ZodOptional<z.ZodString>;
|
|
13400
|
-
|
|
13401
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13402
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13403
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
13851
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13404
13852
|
}, z.core.$strip>;
|
|
13405
|
-
type
|
|
13406
|
-
interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
13407
|
-
}
|
|
13853
|
+
type ListPublicConnectorsQuery = z.infer<typeof ListPublicConnectorsQuery>;
|
|
13408
13854
|
|
|
13409
|
-
declare const
|
|
13410
|
-
|
|
13411
|
-
|
|
13412
|
-
|
|
13413
|
-
|
|
13414
|
-
|
|
13415
|
-
|
|
13416
|
-
input: z.ZodOptional<z.ZodAny>;
|
|
13417
|
-
output: z.ZodOptional<z.ZodAny>;
|
|
13418
|
-
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
13419
|
-
createdAt: z.ZodString;
|
|
13420
|
-
completedAt: z.ZodOptional<z.ZodString>;
|
|
13421
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13422
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
13423
|
-
action: z.ZodOptional<z.ZodObject<{
|
|
13424
|
-
id: z.ZodString;
|
|
13425
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
13426
|
-
key: z.ZodOptional<z.ZodString>;
|
|
13427
|
-
description: z.ZodOptional<z.ZodString>;
|
|
13428
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13429
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
13430
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13431
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13432
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13433
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
13434
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13435
|
-
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13436
|
-
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13437
|
-
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13438
|
-
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13439
|
-
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13440
|
-
name: z.ZodString;
|
|
13441
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13442
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13443
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
13444
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13445
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13446
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13447
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13448
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13449
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13450
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
13451
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13452
|
-
}, z.core.$strip>>;
|
|
13453
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
13454
|
-
id: z.ZodString;
|
|
13455
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
13456
|
-
key: z.ZodOptional<z.ZodString>;
|
|
13457
|
-
description: z.ZodOptional<z.ZodString>;
|
|
13458
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13459
|
-
name: z.ZodString;
|
|
13460
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13461
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13462
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
13463
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13464
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13465
|
-
logoUri: z.ZodString;
|
|
13466
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
13467
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
13468
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
13469
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
13470
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13471
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
13472
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
13473
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
13474
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
13475
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
13476
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
13477
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
13478
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
13479
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
13480
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
13481
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13482
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
13483
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13484
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
13485
|
-
proxy: "proxy";
|
|
13486
|
-
"integration-app-token": "integration-app-token";
|
|
13487
|
-
"membrane-token": "membrane-token";
|
|
13488
|
-
oauth2: "oauth2";
|
|
13489
|
-
oauth1: "oauth1";
|
|
13490
|
-
"client-credentials": "client-credentials";
|
|
13491
|
-
}>>;
|
|
13492
|
-
}, z.core.$strip>>;
|
|
13493
|
-
connection: z.ZodOptional<z.ZodObject<{
|
|
13494
|
-
id: z.ZodString;
|
|
13495
|
-
name: z.ZodString;
|
|
13496
|
-
userId: z.ZodString;
|
|
13497
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13498
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
13499
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
13500
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13501
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13502
|
-
integrationId: z.ZodString;
|
|
13503
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
13504
|
-
createdAt: z.ZodString;
|
|
13505
|
-
updatedAt: z.ZodString;
|
|
13506
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13507
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
13508
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
13509
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
13510
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13511
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13512
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13513
|
-
}, z.core.$strip>>;
|
|
13855
|
+
declare const ListExternalAppsQuery: z.ZodObject<{
|
|
13856
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13857
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13858
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13859
|
+
category: z.ZodOptional<z.ZodString>;
|
|
13860
|
+
hasAuth: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13861
|
+
hasData: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13514
13862
|
}, z.core.$strip>;
|
|
13515
|
-
type
|
|
13516
|
-
type ActionRunLogRecord = ActionRunLogRecordApiResponse;
|
|
13863
|
+
type ListExternalAppsQuery = z.infer<typeof ListExternalAppsQuery>;
|
|
13517
13864
|
|
|
13518
13865
|
declare const FindDataLinkTablesQuery: z.ZodObject<{
|
|
13519
13866
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -13568,18 +13915,28 @@ interface CreateAppEventTypeRequest extends UpdateAppEventTypeRequest {
|
|
|
13568
13915
|
key: string;
|
|
13569
13916
|
name: string;
|
|
13570
13917
|
}
|
|
13571
|
-
|
|
13572
|
-
|
|
13573
|
-
|
|
13574
|
-
|
|
13575
|
-
|
|
13576
|
-
|
|
13577
|
-
|
|
13578
|
-
|
|
13579
|
-
|
|
13580
|
-
|
|
13581
|
-
|
|
13582
|
-
|
|
13918
|
+
declare const FindAppEventTypesQuery: z.ZodObject<{
|
|
13919
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13920
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13921
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13922
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13923
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
13924
|
+
}, z.core.$strip>;
|
|
13925
|
+
type FindAppEventTypesQuery = z.infer<typeof FindAppEventTypesQuery>;
|
|
13926
|
+
declare const FindAppEventsQuery: z.ZodObject<{
|
|
13927
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13928
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
13929
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13930
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13931
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13932
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
13933
|
+
appEventTypeId: z.ZodOptional<z.ZodString>;
|
|
13934
|
+
appEventSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
13935
|
+
startDatetime: z.ZodOptional<z.ZodISODateTime>;
|
|
13936
|
+
endDatetime: z.ZodOptional<z.ZodISODateTime>;
|
|
13937
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13938
|
+
}, z.core.$strip>;
|
|
13939
|
+
type FindAppEventsQuery = z.infer<typeof FindAppEventsQuery>;
|
|
13583
13940
|
declare const AppEventTypeApiResponse: z.ZodObject<{
|
|
13584
13941
|
id: z.ZodString;
|
|
13585
13942
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -13796,6 +14153,17 @@ declare const ListExternalEventPullsQuery: z.ZodObject<{
|
|
|
13796
14153
|
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventPullStatus>>;
|
|
13797
14154
|
}, z.core.$strip>;
|
|
13798
14155
|
type ListExternalEventPullsQuery = z.infer<typeof ListExternalEventPullsQuery>;
|
|
14156
|
+
declare const FindExternalEventPullsQuery: z.ZodObject<{
|
|
14157
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14158
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
14159
|
+
externalEventSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
14160
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
14161
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
14162
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
14163
|
+
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventPullStatus>>;
|
|
14164
|
+
startedAfter: z.ZodOptional<z.ZodString>;
|
|
14165
|
+
}, z.core.$strip>;
|
|
14166
|
+
type FindExternalEventPullsQuery = z.infer<typeof FindExternalEventPullsQuery>;
|
|
13799
14167
|
declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
13800
14168
|
id: z.ZodString;
|
|
13801
14169
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -14011,6 +14379,75 @@ declare class DependencyError extends MembraneError {
|
|
|
14011
14379
|
constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
|
|
14012
14380
|
}
|
|
14013
14381
|
|
|
14382
|
+
declare enum IntegrationElementLevel {
|
|
14383
|
+
UNIVERSAL = "universal",
|
|
14384
|
+
CONNECTOR = "connector",
|
|
14385
|
+
CONNECTION = "connection"
|
|
14386
|
+
}
|
|
14387
|
+
declare enum IntegrationElementType {
|
|
14388
|
+
APP_DATA_SCHEMA = "app-data-schema",
|
|
14389
|
+
APP_EVENT_TYPE = "app-event-type",
|
|
14390
|
+
DATA_SOURCE = "data-source",
|
|
14391
|
+
SCHEMA = "schema",
|
|
14392
|
+
FIELD_MAPPING = "field-mapping",
|
|
14393
|
+
FLOW = "flow",
|
|
14394
|
+
INTEGRATION = "integration",
|
|
14395
|
+
ACTION = "action",
|
|
14396
|
+
DATA_LINK_TABLE = "data-link-table",
|
|
14397
|
+
EXTERNAL_EVENT = "external-event"
|
|
14398
|
+
}
|
|
14399
|
+
interface ElementTemplateFields {
|
|
14400
|
+
id: string;
|
|
14401
|
+
key: string;
|
|
14402
|
+
name: string;
|
|
14403
|
+
revision: string;
|
|
14404
|
+
integrationId?: string;
|
|
14405
|
+
integration?: Integration;
|
|
14406
|
+
parentId?: string;
|
|
14407
|
+
isCustomized?: boolean;
|
|
14408
|
+
createdAt?: string;
|
|
14409
|
+
updatedAt?: string;
|
|
14410
|
+
archivedAt?: string;
|
|
14411
|
+
}
|
|
14412
|
+
interface ElementInstanceFields {
|
|
14413
|
+
id: string;
|
|
14414
|
+
name: string;
|
|
14415
|
+
revision: string;
|
|
14416
|
+
parentId?: string;
|
|
14417
|
+
universalParentId?: string;
|
|
14418
|
+
userId: string;
|
|
14419
|
+
user?: Customer;
|
|
14420
|
+
instanceKey?: string;
|
|
14421
|
+
isCustomized?: boolean;
|
|
14422
|
+
connectionId: string;
|
|
14423
|
+
connection?: Connection;
|
|
14424
|
+
integrationId?: string;
|
|
14425
|
+
integration?: Integration;
|
|
14426
|
+
dependencies?: IntegrationElementInstance[];
|
|
14427
|
+
errors?: ErrorData[];
|
|
14428
|
+
createdAt?: string;
|
|
14429
|
+
updatedAt?: string;
|
|
14430
|
+
archivedAt?: string;
|
|
14431
|
+
}
|
|
14432
|
+
interface IntegrationElement {
|
|
14433
|
+
type: IntegrationElementType;
|
|
14434
|
+
key?: string;
|
|
14435
|
+
id?: string;
|
|
14436
|
+
config?: any;
|
|
14437
|
+
}
|
|
14438
|
+
interface IntegrationElementInstance {
|
|
14439
|
+
type: IntegrationElementType;
|
|
14440
|
+
instanceId?: string;
|
|
14441
|
+
data?: any;
|
|
14442
|
+
}
|
|
14443
|
+
interface IntegrationElementInstanceDependency {
|
|
14444
|
+
fromType: IntegrationElementType;
|
|
14445
|
+
fromInstanceId: string;
|
|
14446
|
+
toType: IntegrationElementType;
|
|
14447
|
+
toInstanceId: string;
|
|
14448
|
+
data?: any;
|
|
14449
|
+
}
|
|
14450
|
+
|
|
14014
14451
|
declare function getFlowNode(flow: Flow | FlowInstance, nodeKey: string): FlowNode;
|
|
14015
14452
|
declare function getFlowNodeTitle(flow: Flow | FlowInstance, nodeKey: string): string | undefined;
|
|
14016
14453
|
declare function getFlowNodeDescription(flow: Flow | FlowInstance, nodeKey: string): string | undefined;
|
|
@@ -14030,17 +14467,18 @@ interface WorkspaceElementSpec {
|
|
|
14030
14467
|
apiPath: string;
|
|
14031
14468
|
name: string;
|
|
14032
14469
|
namePlural: string;
|
|
14033
|
-
createSchema?: z.ZodObject
|
|
14034
|
-
updateSchema?: z.ZodObject
|
|
14035
|
-
editablePropertiesSchema?: z.ZodObject
|
|
14036
|
-
backwardCompatibleEditablePropertiesSchema?: z.ZodObject
|
|
14037
|
-
exportPropertiesSchema?: z.ZodObject
|
|
14038
|
-
apiResponseSchema?: z.ZodObject
|
|
14039
|
-
findQuerySchema?: z.ZodObject
|
|
14470
|
+
createSchema?: z.ZodObject;
|
|
14471
|
+
updateSchema?: z.ZodObject;
|
|
14472
|
+
editablePropertiesSchema?: z.ZodObject;
|
|
14473
|
+
backwardCompatibleEditablePropertiesSchema?: z.ZodObject;
|
|
14474
|
+
exportPropertiesSchema?: z.ZodObject;
|
|
14475
|
+
apiResponseSchema?: z.ZodObject;
|
|
14476
|
+
findQuerySchema?: z.ZodObject;
|
|
14040
14477
|
isMembraneInterface?: boolean;
|
|
14041
14478
|
isIntegrationLevel?: boolean;
|
|
14042
14479
|
parentFieldKey?: string;
|
|
14043
14480
|
universalParentFieldKey?: string;
|
|
14481
|
+
canBeAddedToPackage?: boolean;
|
|
14044
14482
|
}
|
|
14045
14483
|
interface WorkspaceElements {
|
|
14046
14484
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -14663,6 +15101,7 @@ interface Org {
|
|
|
14663
15101
|
featureFlags?: string[];
|
|
14664
15102
|
freeAiCredits?: number;
|
|
14665
15103
|
paidAiCredits?: number;
|
|
15104
|
+
freeAiMonthlyCredits?: number | null;
|
|
14666
15105
|
autoChargeEnabled?: boolean;
|
|
14667
15106
|
autoChargeThreshold?: number;
|
|
14668
15107
|
autoChargePurchaseAmount?: number;
|
|
@@ -14749,6 +15188,7 @@ declare const OrgSchema: z.ZodObject<{
|
|
|
14749
15188
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14750
15189
|
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
14751
15190
|
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
15191
|
+
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
14752
15192
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
14753
15193
|
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
14754
15194
|
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15063,6 +15503,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
15063
15503
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
15064
15504
|
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
15065
15505
|
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
15506
|
+
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15066
15507
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
15067
15508
|
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
15068
15509
|
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15744,6 +16185,7 @@ declare enum UsageType {
|
|
|
15744
16185
|
FILES_UPLOAD_NUMBER = "files-upload-number",
|
|
15745
16186
|
FILES_UPLOAD_SIZE = "files-upload-size",
|
|
15746
16187
|
CUSTOM_CODE_RUNTIME_DURATION = "custom-code-runtime-duration",
|
|
16188
|
+
INSTANT_TASKS_DURATION = "instant-tasks-duration",
|
|
15747
16189
|
MEMBRANE_AGENT = "membrane-agent"
|
|
15748
16190
|
}
|
|
15749
16191
|
interface UsageWithCredits {
|
|
@@ -15793,6 +16235,7 @@ interface App {
|
|
|
15793
16235
|
appUri: string;
|
|
15794
16236
|
categories: string[];
|
|
15795
16237
|
defaultConnectorId: string;
|
|
16238
|
+
basePackageId?: string;
|
|
15796
16239
|
key: string;
|
|
15797
16240
|
logoUri: string;
|
|
15798
16241
|
name: string;
|
|
@@ -15869,7 +16312,8 @@ declare enum AlertType {
|
|
|
15869
16312
|
externalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay",
|
|
15870
16313
|
totalUsagePerDay = "totalUsagePerDay",
|
|
15871
16314
|
totalUsagePer30Days = "totalUsagePer30Days",
|
|
15872
|
-
membraneAgentUsagePer30Days = "membraneAgentUsagePer30Days"
|
|
16315
|
+
membraneAgentUsagePer30Days = "membraneAgentUsagePer30Days",
|
|
16316
|
+
testAlert = "testAlert"
|
|
15873
16317
|
}
|
|
15874
16318
|
interface Alert {
|
|
15875
16319
|
id: string;
|
|
@@ -16455,5 +16899,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
16455
16899
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
16456
16900
|
}
|
|
16457
16901
|
|
|
16458
|
-
export { ACTIONS, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTablesQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, FullPlatformUser, FunctionDefinition, FunctionType, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, OrgLimits, OrgLimitsType, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUserSchema, RATE_LIMITS, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspacePublicKey, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WriteableConnectorFields, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
16459
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery,
|
|
16902
|
+
export { ACTIONS, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, FullPlatformUser, FunctionDefinition, FunctionType, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, OrgLimits, OrgLimitsType, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUserSchema, RATE_LIMITS, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspacePublicKey, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
16903
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgUser, OrgWorkspace, Package, PatchAgentSession, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|