@membranehq/sdk 0.9.8 → 0.9.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +290 -247
- package/dist/bundle.js +12284 -3529
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/base-accessors.d.ts +9 -7
- package/dist/dts/agent/session.d.ts +8 -10
- package/dist/dts/{entity-repository.d.ts → api/index.d.ts} +31 -8
- package/dist/dts/index.browser.d.ts +2 -2
- package/dist/dts/integration-elements/connection-level-element.accessor.d.ts +1 -1
- package/dist/dts/integration-elements/integration-level-element.accessor.d.ts +1 -1
- package/dist/dts/scenario-templates/index.d.ts +1 -1
- package/dist/dts/usage/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +212 -1
- package/dist/dts/workspace-elements/api/actions-api.d.ts +4 -1
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +12 -8
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +22 -13
- package/dist/dts/workspace-elements/api/connections-api.d.ts +11 -5
- package/dist/dts/workspace-elements/api/connectors-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +55 -17
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +17 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/external-apps-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +1 -8
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/flows-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +26 -8
- package/dist/dts/workspace-elements/api/packages-api.d.ts +23 -9
- package/dist/dts/workspace-elements/api/screens-api.d.ts +7 -4
- package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +1 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +3 -0
- package/dist/dts/{apps/types.d.ts → workspace-elements/base/external-apps/index.d.ts} +1 -0
- package/dist/dts/workspace-elements/base/external-events/api.d.ts +1 -1
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +122 -1
- package/dist/dts/workspace-elements/base/packages/index.d.ts +37 -6
- package/dist/dts/workspace-elements/types.d.ts +17 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +8 -7
- package/dist/index.browser.d.mts +1801 -1356
- package/dist/index.browser.d.ts +1801 -1356
- package/dist/index.browser.js +258 -71
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +231 -72
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1801 -1356
- package/dist/index.node.d.ts +1801 -1356
- package/dist/index.node.js +258 -71
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +231 -72
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/dts/apps/index.d.ts +0 -1
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +0 -104
package/dist/index.browser.d.mts
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>;
|
|
@@ -240,7 +242,9 @@ declare const BaseIntegrationLevelMembraneInterfaceExportProperties: z.ZodObject
|
|
|
240
242
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
241
243
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
242
244
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
245
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
243
246
|
}, z.core.$strip>;
|
|
247
|
+
type BaseIntegrationLevelMembraneInterfaceExportProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceExportProperties>;
|
|
244
248
|
declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
|
|
245
249
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
246
250
|
connection: "connection";
|
|
@@ -303,6 +307,19 @@ interface WorkspaceElementDependency extends WorkspaceElementReference {
|
|
|
303
307
|
dependencyType: WorkspaceElementDependencyType;
|
|
304
308
|
data?: unknown;
|
|
305
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>;
|
|
306
323
|
|
|
307
324
|
declare function createSchema(value: any): any;
|
|
308
325
|
declare function createCompoundSchema(values: any[]): any;
|
|
@@ -396,6 +413,7 @@ declare const FieldMappingExportProperties: z.ZodObject<{
|
|
|
396
413
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
397
414
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
398
415
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
416
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
399
417
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
400
418
|
appSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
401
419
|
direction: z.ZodOptional<z.ZodEnum<typeof FieldMappingDirection>>;
|
|
@@ -522,6 +540,7 @@ declare const ActionExportProperties: z.ZodObject<{
|
|
|
522
540
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
523
541
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
524
542
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
543
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
525
544
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
526
545
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
527
546
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -7208,17 +7227,20 @@ declare const BackwardCompatibleDataSourceEditableProperties: z.ZodObject<{
|
|
|
7208
7227
|
type BackwardCompatibleDataSourceEditableProperties = z.infer<typeof BackwardCompatibleDataSourceEditableProperties>;
|
|
7209
7228
|
declare const DataSourceExportProperties: z.ZodObject<{
|
|
7210
7229
|
key: z.ZodOptional<z.ZodString>;
|
|
7230
|
+
path: z.ZodOptional<z.ZodString>;
|
|
7211
7231
|
description: z.ZodOptional<z.ZodString>;
|
|
7212
7232
|
name: z.ZodOptional<z.ZodString>;
|
|
7213
7233
|
uuid: z.ZodOptional<z.ZodString>;
|
|
7214
7234
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7215
7235
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
7216
7236
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
7237
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
7217
7238
|
udm: z.ZodOptional<z.ZodString>;
|
|
7218
7239
|
collectionKey: z.ZodOptional<z.ZodString>;
|
|
7219
7240
|
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
7220
7241
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
7221
7242
|
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
7243
|
+
defaultPath: z.ZodOptional<z.ZodString>;
|
|
7222
7244
|
}, z.core.$strip>;
|
|
7223
7245
|
type DataSourceExportProperties = z.infer<typeof DataSourceExportProperties>;
|
|
7224
7246
|
declare const BaseDataSource: z.ZodObject<{
|
|
@@ -7760,6 +7782,7 @@ declare const FlowExportProperties: z.ZodObject<{
|
|
|
7760
7782
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7761
7783
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
7762
7784
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
7785
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
7763
7786
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
7764
7787
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
7765
7788
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7881,18 +7904,36 @@ declare const BaseIntegration: z.ZodObject<{
|
|
|
7881
7904
|
}>>;
|
|
7882
7905
|
}, z.core.$strip>;
|
|
7883
7906
|
type BaseIntegration = z.infer<typeof BaseIntegration>;
|
|
7884
|
-
declare const
|
|
7907
|
+
declare const IntegrationEditableProperties: z.ZodObject<{
|
|
7885
7908
|
uuid: z.ZodOptional<z.ZodString>;
|
|
7886
7909
|
key: z.ZodOptional<z.ZodString>;
|
|
7887
7910
|
name: z.ZodOptional<z.ZodString>;
|
|
7888
7911
|
description: z.ZodOptional<z.ZodString>;
|
|
7889
7912
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7890
|
-
|
|
7891
|
-
|
|
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>;
|
|
7892
7918
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
7893
|
-
|
|
7894
|
-
|
|
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>;
|
|
7895
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>;
|
|
7896
7937
|
}, z.core.$strip>;
|
|
7897
7938
|
type IntegrationExportProperties = z.infer<typeof IntegrationExportProperties>;
|
|
7898
7939
|
type IntegrationAuthOptionLegacy = ConnectorAuthSpec & {
|
|
@@ -7943,420 +7984,394 @@ declare const AppliedToIntegrations: <Element extends z.ZodType>(elementSchema:
|
|
|
7943
7984
|
}, z.core.$strip>>;
|
|
7944
7985
|
type AppliedToIntegrations<Element> = z.infer<ReturnType<typeof AppliedToIntegrations<z.ZodType<Element>>>>;
|
|
7945
7986
|
|
|
7946
|
-
declare const
|
|
7947
|
-
|
|
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>;
|
|
7948
7993
|
}, z.core.$strip>;
|
|
7949
|
-
type
|
|
7950
|
-
declare const
|
|
7951
|
-
|
|
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>;
|
|
7952
7999
|
}, z.core.$strip>;
|
|
7953
|
-
type
|
|
7954
|
-
declare const
|
|
7955
|
-
|
|
7956
|
-
|
|
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>>>;
|
|
7957
8020
|
}, z.core.$strip>;
|
|
7958
|
-
type
|
|
7959
|
-
declare const
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
7963
|
-
|
|
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>>>;
|
|
7964
8036
|
}, z.core.$strip>;
|
|
7965
|
-
type
|
|
7966
|
-
declare const
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
7971
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
7972
|
-
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>;
|
|
7973
8042
|
}, z.core.$strip>;
|
|
7974
|
-
type
|
|
7975
|
-
declare const
|
|
7976
|
-
|
|
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>>;
|
|
7977
8056
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
7978
|
-
|
|
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>;
|
|
7979
8072
|
}, z.core.$strip>;
|
|
7980
|
-
type
|
|
7981
|
-
declare
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
7988
|
-
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
7989
|
-
integrationKey: z.ZodOptional<z.ZodString>;
|
|
7990
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
7991
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
7992
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
7993
|
-
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>>>;
|
|
7994
8080
|
}, z.core.$strip>;
|
|
7995
|
-
type
|
|
7996
|
-
declare const
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
|
|
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>;
|
|
8000
8091
|
}, z.core.$strip>;
|
|
8001
|
-
type
|
|
8002
|
-
declare const
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
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>;
|
|
8006
8098
|
}, z.core.$strip>;
|
|
8007
|
-
type
|
|
8008
|
-
|
|
8099
|
+
type PackageVersionListItem = z.infer<typeof PackageVersionListItem>;
|
|
8100
|
+
|
|
8101
|
+
declare enum ScreenType {
|
|
8102
|
+
Integration = "integration"
|
|
8009
8103
|
}
|
|
8010
|
-
declare
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
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>>>;
|
|
8015
8122
|
}, z.core.$strip>;
|
|
8016
|
-
type
|
|
8017
|
-
|
|
8123
|
+
type BaseScreen = z.infer<typeof BaseScreen>;
|
|
8124
|
+
|
|
8125
|
+
declare const BaseCustomer: z.ZodObject<{
|
|
8018
8126
|
id: z.ZodString;
|
|
8019
8127
|
name: z.ZodString;
|
|
8020
|
-
|
|
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>;
|
|
8021
8133
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
|
|
8025
|
-
|
|
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>;
|
|
8026
8155
|
integrationId: z.ZodString;
|
|
8027
|
-
|
|
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;
|
|
8028
8161
|
createdAt: z.ZodString;
|
|
8029
8162
|
updatedAt: z.ZodString;
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8044
|
-
|
|
8045
|
-
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
|
-
|
|
8052
|
-
|
|
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>;
|
|
8167
|
+
}, z.core.$strip>>;
|
|
8168
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
8169
|
+
}, z.core.$strip>;
|
|
8170
|
+
type BaseFlowInstance = z.infer<typeof BaseFlowInstance>;
|
|
8171
|
+
declare enum FlowInstanceNodeState {
|
|
8172
|
+
SETUP_FAILED = "SETUP_FAILED",
|
|
8173
|
+
READY = "READY"
|
|
8174
|
+
}
|
|
8175
|
+
declare const FlowInstanceNode: z.ZodObject<{
|
|
8176
|
+
type: z.ZodOptional<z.ZodString>;
|
|
8177
|
+
version: z.ZodOptional<z.ZodNumber>;
|
|
8178
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8179
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8180
|
+
config: z.ZodOptional<z.ZodAny>;
|
|
8181
|
+
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
8182
|
+
onError: z.ZodOptional<z.ZodEnum<{
|
|
8183
|
+
continue: "continue";
|
|
8184
|
+
stop: "stop";
|
|
8185
|
+
}>>;
|
|
8186
|
+
ui: z.ZodOptional<z.ZodAny>;
|
|
8187
|
+
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
8188
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
8189
|
+
outputExample: z.ZodOptional<z.ZodAny>;
|
|
8190
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8053
8191
|
key: z.ZodOptional<z.ZodString>;
|
|
8054
|
-
|
|
8055
|
-
|
|
8056
|
-
|
|
8057
|
-
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8067
|
-
|
|
8068
|
-
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
proxy: "proxy";
|
|
8083
|
-
"integration-app-token": "integration-app-token";
|
|
8084
|
-
"membrane-token": "membrane-token";
|
|
8085
|
-
oauth2: "oauth2";
|
|
8086
|
-
oauth1: "oauth1";
|
|
8087
|
-
"client-credentials": "client-credentials";
|
|
8192
|
+
filter: z.ZodOptional<z.ZodAny>;
|
|
8193
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8194
|
+
}, z.core.$strip>>>;
|
|
8195
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8196
|
+
state: z.ZodOptional<z.ZodEnum<typeof FlowInstanceNodeState>>;
|
|
8197
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8198
|
+
userConfig: z.ZodOptional<z.ZodAny>;
|
|
8199
|
+
testInput: z.ZodOptional<z.ZodAny>;
|
|
8200
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
8201
|
+
}, z.core.$strip>;
|
|
8202
|
+
type FlowInstanceNode = z.infer<typeof FlowInstanceNode>;
|
|
8203
|
+
|
|
8204
|
+
declare const createFlowInstanceSchema: z.ZodObject<{
|
|
8205
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8206
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
8207
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
8208
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8209
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
8210
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8211
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
8212
|
+
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8213
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8214
|
+
type: z.ZodOptional<z.ZodString>;
|
|
8215
|
+
userConfig: z.ZodOptional<z.ZodAny>;
|
|
8216
|
+
config: z.ZodOptional<z.ZodAny>;
|
|
8217
|
+
onError: z.ZodOptional<z.ZodEnum<{
|
|
8218
|
+
continue: "continue";
|
|
8219
|
+
stop: "stop";
|
|
8088
8220
|
}>>;
|
|
8221
|
+
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
8222
|
+
ui: z.ZodOptional<z.ZodAny>;
|
|
8223
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8224
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8225
|
+
filter: z.ZodOptional<z.ZodAny>;
|
|
8226
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8227
|
+
}, z.core.$strip>>>;
|
|
8228
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8229
|
+
}, z.core.$strip>>>;
|
|
8230
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8231
|
+
customized: z.ZodOptional<z.ZodObject<{
|
|
8232
|
+
name: z.ZodOptional<z.ZodBoolean>;
|
|
8233
|
+
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8089
8234
|
}, z.core.$strip>>;
|
|
8090
8235
|
}, z.core.$strip>;
|
|
8091
|
-
|
|
8092
|
-
|
|
8236
|
+
declare const updateFlowInstanceSchema: z.ZodObject<{
|
|
8237
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8238
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8239
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
8240
|
+
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8241
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8242
|
+
type: z.ZodOptional<z.ZodString>;
|
|
8243
|
+
userConfig: z.ZodOptional<z.ZodAny>;
|
|
8244
|
+
config: z.ZodOptional<z.ZodAny>;
|
|
8245
|
+
onError: z.ZodOptional<z.ZodEnum<{
|
|
8246
|
+
continue: "continue";
|
|
8247
|
+
stop: "stop";
|
|
8248
|
+
}>>;
|
|
8249
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8250
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8251
|
+
filter: z.ZodOptional<z.ZodAny>;
|
|
8252
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8253
|
+
}, z.core.$strip>>>;
|
|
8254
|
+
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
8255
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8256
|
+
}, z.core.$strip>>>;
|
|
8257
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8258
|
+
customized: z.ZodOptional<z.ZodObject<{
|
|
8259
|
+
name: z.ZodOptional<z.ZodBoolean>;
|
|
8260
|
+
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8261
|
+
}, z.core.$strip>>;
|
|
8262
|
+
}, z.core.$strip>;
|
|
8263
|
+
type CreateFlowInstanceRequest = z.infer<typeof createFlowInstanceSchema>;
|
|
8264
|
+
type UpdateFlowInstanceRequest = z.infer<typeof updateFlowInstanceSchema>;
|
|
8265
|
+
|
|
8266
|
+
declare const BaseFieldMappingInstance: z.ZodObject<{
|
|
8093
8267
|
id: z.ZodString;
|
|
8268
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8269
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8270
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8271
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8094
8272
|
name: z.ZodString;
|
|
8273
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8274
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8275
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8276
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8277
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8095
8278
|
userId: z.ZodString;
|
|
8096
|
-
|
|
8097
|
-
|
|
8098
|
-
|
|
8279
|
+
revision: z.ZodString;
|
|
8280
|
+
connectionId: z.ZodString;
|
|
8281
|
+
integrationId: z.ZodString;
|
|
8282
|
+
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
8283
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
8284
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8285
|
+
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
8286
|
+
dataSourceSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8287
|
+
direction: z.ZodOptional<z.ZodEnum<typeof FieldMappingDirection>>;
|
|
8288
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8289
|
+
importValue: z.ZodOptional<z.ZodAny>;
|
|
8290
|
+
exportValue: z.ZodOptional<z.ZodAny>;
|
|
8291
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8292
|
+
unifiedExportValue: z.ZodOptional<z.ZodAny>;
|
|
8293
|
+
unifiedImportValue: z.ZodOptional<z.ZodAny>;
|
|
8294
|
+
frozenImportFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8295
|
+
frozenExportFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8099
8296
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8100
8297
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
8104
|
-
|
|
8105
|
-
|
|
8106
|
-
|
|
8107
|
-
|
|
8108
|
-
|
|
8298
|
+
externalSchema: z.ZodOptional<z.ZodAny>;
|
|
8299
|
+
}, z.core.$strip>;
|
|
8300
|
+
type BaseFieldMappingInstance = z.infer<typeof BaseFieldMappingInstance>;
|
|
8301
|
+
|
|
8302
|
+
declare enum DataLinkDirection {
|
|
8303
|
+
IMPORT = "import",
|
|
8304
|
+
EXPORT = "export",
|
|
8305
|
+
BOTH = "both"
|
|
8306
|
+
}
|
|
8307
|
+
declare const DataLinkTableEditableProperties: z.ZodObject<{
|
|
8308
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8309
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8310
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8311
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8312
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8313
|
+
}, z.core.$strip>;
|
|
8314
|
+
type DataLinkTableEditableProperties = z.infer<typeof DataLinkTableEditableProperties>;
|
|
8315
|
+
declare const DataLinkTableExportProperties: z.ZodObject<{
|
|
8316
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8317
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8318
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8319
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8320
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8321
|
+
}, z.core.$strip>;
|
|
8322
|
+
type DataLinkTableExportProperties = z.infer<typeof DataLinkTableExportProperties>;
|
|
8323
|
+
declare const BaseDataLinkTable: z.ZodObject<{
|
|
8324
|
+
id: z.ZodString;
|
|
8325
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8326
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8327
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8328
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8329
|
+
name: z.ZodString;
|
|
8330
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8331
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8332
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8333
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8334
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8109
8335
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8110
8336
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8337
|
+
}, z.core.$strip>;
|
|
8338
|
+
type BaseDataLinkTable = z.infer<typeof BaseDataLinkTable>;
|
|
8339
|
+
|
|
8340
|
+
declare const BaseDataLinkTableInstance: z.ZodObject<{
|
|
8341
|
+
id: z.ZodString;
|
|
8342
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8343
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8344
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8111
8345
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8112
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
8113
|
-
id: z.ZodString;
|
|
8114
|
-
name: z.ZodString;
|
|
8115
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8116
|
-
internalId: z.ZodString;
|
|
8117
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8118
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8119
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8120
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8121
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8122
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8123
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8124
|
-
}, z.core.$strip>>;
|
|
8125
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
8126
|
-
id: z.ZodString;
|
|
8127
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8128
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8129
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8130
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8131
|
-
name: z.ZodString;
|
|
8132
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8133
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8134
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8135
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8136
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8137
|
-
logoUri: z.ZodString;
|
|
8138
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8139
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8140
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8141
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8142
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8143
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8144
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8145
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8146
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8147
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8148
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8149
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8150
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8151
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8152
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8153
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8154
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8155
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8156
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
8157
|
-
proxy: "proxy";
|
|
8158
|
-
"integration-app-token": "integration-app-token";
|
|
8159
|
-
"membrane-token": "membrane-token";
|
|
8160
|
-
oauth2: "oauth2";
|
|
8161
|
-
oauth1: "oauth1";
|
|
8162
|
-
"client-credentials": "client-credentials";
|
|
8163
|
-
}>>;
|
|
8164
|
-
}, z.core.$strip>>;
|
|
8165
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
8166
|
-
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
8167
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
8168
|
-
}, z.core.$strip>;
|
|
8169
|
-
type ConnectionApiResponseWithSecrets = z.infer<typeof ConnectionApiResponseWithSecrets>;
|
|
8170
|
-
type Connection = ConnectionApiResponse;
|
|
8171
|
-
declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8172
|
-
source: z.ZodString;
|
|
8173
|
-
requestId: z.ZodString;
|
|
8174
|
-
type: z.ZodLiteral<"newConnectionCreated">;
|
|
8175
|
-
connection: z.ZodObject<{
|
|
8176
|
-
id: z.ZodString;
|
|
8177
|
-
name: z.ZodString;
|
|
8178
|
-
userId: z.ZodString;
|
|
8179
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8180
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8181
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8182
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8183
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8184
|
-
integrationId: z.ZodString;
|
|
8185
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8186
|
-
createdAt: z.ZodString;
|
|
8187
|
-
updatedAt: z.ZodString;
|
|
8188
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8189
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8190
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8191
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8192
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8193
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8194
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8195
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
8196
|
-
id: z.ZodString;
|
|
8197
|
-
name: z.ZodString;
|
|
8198
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8199
|
-
internalId: z.ZodString;
|
|
8200
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8201
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8202
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8203
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8204
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8205
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8206
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8207
|
-
}, z.core.$strip>>;
|
|
8208
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
8209
|
-
id: z.ZodString;
|
|
8210
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8211
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8212
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8213
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8214
|
-
name: z.ZodString;
|
|
8215
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8216
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8217
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8218
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8219
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8220
|
-
logoUri: z.ZodString;
|
|
8221
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8222
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8223
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8224
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8225
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8226
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8227
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8228
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8229
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8230
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8231
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8232
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8233
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8234
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8235
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8236
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8237
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8238
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8239
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
8240
|
-
proxy: "proxy";
|
|
8241
|
-
"integration-app-token": "integration-app-token";
|
|
8242
|
-
"membrane-token": "membrane-token";
|
|
8243
|
-
oauth2: "oauth2";
|
|
8244
|
-
oauth1: "oauth1";
|
|
8245
|
-
"client-credentials": "client-credentials";
|
|
8246
|
-
}>>;
|
|
8247
|
-
}, z.core.$strip>>;
|
|
8248
|
-
}, z.core.$strip>;
|
|
8249
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
8250
|
-
source: z.ZodString;
|
|
8251
|
-
requestId: z.ZodString;
|
|
8252
|
-
type: z.ZodLiteral<"newConnectionFailure">;
|
|
8253
|
-
error: z.ZodString;
|
|
8254
|
-
errorData: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8255
|
-
}, z.core.$strip>], "type">;
|
|
8256
|
-
type ConnectionMessagePayload = z.infer<typeof ConnectionMessagePayload>;
|
|
8257
|
-
|
|
8258
|
-
declare const CreateCustomerRequest: z.ZodObject<{
|
|
8259
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8260
|
-
internalId: z.ZodString;
|
|
8261
|
-
fields: z.ZodOptional<z.ZodAny>;
|
|
8262
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8263
|
-
}, z.core.$strip>;
|
|
8264
|
-
type CreateCustomerRequest = z.infer<typeof CreateCustomerRequest>;
|
|
8265
|
-
declare const UpdateCustomerRequest: z.ZodObject<{
|
|
8266
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8267
|
-
internalId: z.ZodOptional<z.ZodString>;
|
|
8268
|
-
fields: z.ZodOptional<z.ZodAny>;
|
|
8269
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8270
|
-
}, z.core.$strip>;
|
|
8271
|
-
type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
|
|
8272
|
-
declare const FindCustomersQuery: z.ZodObject<{
|
|
8273
|
-
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
8274
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8275
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
8276
|
-
search: z.ZodOptional<z.ZodString>;
|
|
8277
|
-
}, z.core.$strip>;
|
|
8278
|
-
type FindCustomersQuery = z.infer<typeof FindCustomersQuery>;
|
|
8279
|
-
declare const CustomerSelector: z.ZodObject<{
|
|
8280
|
-
id: z.ZodString;
|
|
8281
|
-
}, z.core.$strip>;
|
|
8282
|
-
type CustomerSelector = z.infer<typeof CustomerSelector>;
|
|
8283
|
-
type CreateUserRequest = CreateCustomerRequest;
|
|
8284
|
-
type UpdateUserRequest = UpdateCustomerRequest;
|
|
8285
|
-
type FindUsersQuery = FindCustomersQuery;
|
|
8286
|
-
type UserSelector = CustomerSelector;
|
|
8287
|
-
declare const CustomerApiResponse: z.ZodObject<{
|
|
8288
|
-
id: z.ZodString;
|
|
8289
8346
|
name: z.ZodString;
|
|
8290
|
-
|
|
8291
|
-
|
|
8292
|
-
|
|
8293
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8294
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8295
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8296
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8347
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8348
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8349
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8297
8350
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8351
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8352
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8353
|
+
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
8354
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8355
|
+
integrationId: z.ZodString;
|
|
8356
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8357
|
+
userId: z.ZodString;
|
|
8298
8358
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8299
8359
|
}, z.core.$strip>;
|
|
8300
|
-
type
|
|
8301
|
-
|
|
8302
|
-
|
|
8303
|
-
|
|
8304
|
-
|
|
8305
|
-
|
|
8306
|
-
|
|
8307
|
-
}
|
|
8308
|
-
|
|
8309
|
-
declare const CreateIntegrationRequest: z.ZodObject<{
|
|
8310
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8311
|
-
key: z.ZodString;
|
|
8312
|
-
baseUri: z.ZodString;
|
|
8313
|
-
logoUri: z.ZodString;
|
|
8314
|
-
}, z.core.$strip>;
|
|
8315
|
-
type CreateIntegrationRequest = z.infer<typeof CreateIntegrationRequest>;
|
|
8316
|
-
declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
8317
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8318
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8319
|
-
baseUri: z.ZodOptional<z.ZodString>;
|
|
8320
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
8321
|
-
}, z.core.$strip>;
|
|
8322
|
-
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
8323
|
-
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
8324
|
-
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
8325
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
8326
|
-
search: z.ZodOptional<z.ZodString>;
|
|
8327
|
-
}, z.core.$strip>;
|
|
8328
|
-
type FindIntegrationsQuery = z.infer<typeof FindIntegrationsQuery>;
|
|
8329
|
-
interface FindIntegrationsResponse extends PaginationResponse<IntegrationApiResponse> {
|
|
8330
|
-
}
|
|
8331
|
-
interface OpenNewConnectionOptions extends OpenConfigurationOptions {
|
|
8332
|
-
allowMultipleConnections?: boolean;
|
|
8333
|
-
name?: string;
|
|
8334
|
-
connectorParameters?: any;
|
|
8335
|
-
}
|
|
8336
|
-
declare const IntegrationAuthUi: z.ZodObject<{
|
|
8337
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
8338
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
8360
|
+
type BaseDataLinkTableInstance = z.infer<typeof BaseDataLinkTableInstance>;
|
|
8361
|
+
declare const DataLink: z.ZodObject<{
|
|
8362
|
+
id: z.ZodString;
|
|
8363
|
+
dataLinkTableInstanceId: z.ZodString;
|
|
8364
|
+
externalRecordId: z.ZodString;
|
|
8365
|
+
appRecordId: z.ZodString;
|
|
8366
|
+
direction: z.ZodEnum<typeof DataLinkDirection>;
|
|
8339
8367
|
}, z.core.$strip>;
|
|
8340
|
-
type
|
|
8341
|
-
declare const
|
|
8368
|
+
type DataLink = z.infer<typeof DataLink>;
|
|
8369
|
+
declare const DataLinkTableConfig: z.ZodObject<{
|
|
8342
8370
|
key: z.ZodString;
|
|
8343
|
-
type: z.ZodEnum<{
|
|
8344
|
-
proxy: "proxy";
|
|
8345
|
-
"integration-app-token": "integration-app-token";
|
|
8346
|
-
"membrane-token": "membrane-token";
|
|
8347
|
-
oauth2: "oauth2";
|
|
8348
|
-
oauth1: "oauth1";
|
|
8349
|
-
"client-credentials": "client-credentials";
|
|
8350
|
-
}>;
|
|
8351
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8352
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8353
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
8354
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
8355
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
8356
|
-
}, z.core.$strip>>;
|
|
8357
8371
|
}, z.core.$strip>;
|
|
8358
|
-
type
|
|
8359
|
-
|
|
8372
|
+
type DataLinkTableConfig = z.infer<typeof DataLinkTableConfig>;
|
|
8373
|
+
|
|
8374
|
+
declare const BaseAppEventType: z.ZodObject<{
|
|
8360
8375
|
id: z.ZodString;
|
|
8361
8376
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8362
8377
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -8365,783 +8380,617 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
8365
8380
|
name: z.ZodString;
|
|
8366
8381
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8367
8382
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8368
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8369
8383
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8370
8384
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8371
|
-
logoUri: z.ZodString;
|
|
8372
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
8373
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
8374
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
8375
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
8376
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8377
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
8378
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
8379
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
8380
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
8381
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
8382
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
8383
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
8384
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
8385
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
8386
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
8387
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8388
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
8389
8385
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
id: z.ZodString;
|
|
8400
|
-
name: z.ZodString;
|
|
8401
|
-
userId: z.ZodString;
|
|
8402
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8403
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8404
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8405
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8406
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8407
|
-
integrationId: z.ZodString;
|
|
8408
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
8409
|
-
createdAt: z.ZodString;
|
|
8410
|
-
updatedAt: z.ZodString;
|
|
8411
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8412
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8413
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8414
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8415
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8416
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8417
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8386
|
+
revision: z.ZodString;
|
|
8387
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8388
|
+
webhookKey: z.ZodString;
|
|
8389
|
+
subscribeRequest: z.ZodOptional<z.ZodObject<{
|
|
8390
|
+
method: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodEnum<typeof HttpRequestMethod>>>;
|
|
8391
|
+
uri: z.ZodAny;
|
|
8392
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8393
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8394
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
8418
8395
|
}, z.core.$strip>>;
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
"integration-app-token": "integration-app-token";
|
|
8425
|
-
"membrane-token": "membrane-token";
|
|
8426
|
-
oauth2: "oauth2";
|
|
8427
|
-
oauth1: "oauth1";
|
|
8428
|
-
"client-credentials": "client-credentials";
|
|
8429
|
-
}>;
|
|
8430
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8431
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8432
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
8433
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
8434
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
8435
|
-
}, z.core.$strip>>;
|
|
8436
|
-
}, z.core.$strip>>>;
|
|
8437
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8438
|
-
}, z.core.$strip>;
|
|
8439
|
-
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
8440
|
-
type Integration = IntegrationApiResponse;
|
|
8441
|
-
|
|
8442
|
-
declare enum IntegrationElementLevel {
|
|
8443
|
-
UNIVERSAL = "universal",
|
|
8444
|
-
CONNECTOR = "connector",
|
|
8445
|
-
CONNECTION = "connection"
|
|
8446
|
-
}
|
|
8447
|
-
declare enum IntegrationElementType {
|
|
8448
|
-
APP_DATA_SCHEMA = "app-data-schema",
|
|
8449
|
-
APP_EVENT_TYPE = "app-event-type",
|
|
8450
|
-
DATA_SOURCE = "data-source",
|
|
8451
|
-
SCHEMA = "schema",
|
|
8452
|
-
FIELD_MAPPING = "field-mapping",
|
|
8453
|
-
FLOW = "flow",
|
|
8454
|
-
INTEGRATION = "integration",
|
|
8455
|
-
ACTION = "action",
|
|
8456
|
-
DATA_LINK_TABLE = "data-link-table",
|
|
8457
|
-
EXTERNAL_EVENT = "external-event"
|
|
8458
|
-
}
|
|
8459
|
-
interface ElementTemplateFields {
|
|
8460
|
-
id: string;
|
|
8461
|
-
key: string;
|
|
8462
|
-
name: string;
|
|
8463
|
-
revision: string;
|
|
8464
|
-
integrationId?: string;
|
|
8465
|
-
integration?: Integration;
|
|
8466
|
-
parentId?: string;
|
|
8467
|
-
isCustomized?: boolean;
|
|
8468
|
-
createdAt?: string;
|
|
8469
|
-
updatedAt?: string;
|
|
8470
|
-
archivedAt?: string;
|
|
8471
|
-
}
|
|
8472
|
-
interface ElementInstanceFields {
|
|
8473
|
-
id: string;
|
|
8474
|
-
name: string;
|
|
8475
|
-
revision: string;
|
|
8476
|
-
parentId?: string;
|
|
8477
|
-
universalParentId?: string;
|
|
8478
|
-
userId: string;
|
|
8479
|
-
user?: Customer;
|
|
8480
|
-
instanceKey?: string;
|
|
8481
|
-
isCustomized?: boolean;
|
|
8482
|
-
connectionId: string;
|
|
8483
|
-
connection?: Connection;
|
|
8484
|
-
integrationId?: string;
|
|
8485
|
-
integration?: Integration;
|
|
8486
|
-
dependencies?: IntegrationElementInstance[];
|
|
8487
|
-
errors?: ErrorData[];
|
|
8488
|
-
createdAt?: string;
|
|
8489
|
-
updatedAt?: string;
|
|
8490
|
-
archivedAt?: string;
|
|
8491
|
-
}
|
|
8492
|
-
interface IntegrationElement {
|
|
8493
|
-
type: IntegrationElementType;
|
|
8494
|
-
key?: string;
|
|
8495
|
-
id?: string;
|
|
8496
|
-
config?: any;
|
|
8497
|
-
}
|
|
8498
|
-
interface IntegrationElementInstance {
|
|
8499
|
-
type: IntegrationElementType;
|
|
8500
|
-
instanceId?: string;
|
|
8501
|
-
data?: any;
|
|
8502
|
-
}
|
|
8503
|
-
interface IntegrationElementInstanceDependency {
|
|
8504
|
-
fromType: IntegrationElementType;
|
|
8505
|
-
fromInstanceId: string;
|
|
8506
|
-
toType: IntegrationElementType;
|
|
8507
|
-
toInstanceId: string;
|
|
8508
|
-
data?: any;
|
|
8509
|
-
}
|
|
8510
|
-
|
|
8511
|
-
declare const PackageElement: z.ZodObject<{
|
|
8512
|
-
id: z.ZodString;
|
|
8513
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8514
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8515
|
-
}, z.core.$strip>;
|
|
8516
|
-
type PackageElement = z.infer<typeof PackageElement>;
|
|
8517
|
-
declare const PackageElementExport: z.ZodObject<{
|
|
8518
|
-
uuid: z.ZodString;
|
|
8519
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8520
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8396
|
+
example: z.ZodOptional<z.ZodAny>;
|
|
8397
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8398
|
+
globalWebhookUri: z.ZodString;
|
|
8399
|
+
tenantIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8400
|
+
userIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8521
8401
|
}, z.core.$strip>;
|
|
8522
|
-
type
|
|
8523
|
-
declare const
|
|
8402
|
+
type BaseAppEventType = z.infer<typeof BaseAppEventType>;
|
|
8403
|
+
declare const AppEventTypeEditableProperties: z.ZodObject<{
|
|
8524
8404
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8525
8405
|
key: z.ZodOptional<z.ZodString>;
|
|
8526
8406
|
name: z.ZodOptional<z.ZodString>;
|
|
8527
8407
|
description: z.ZodOptional<z.ZodString>;
|
|
8528
8408
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
}, z.core.$strip>>>;
|
|
8409
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8410
|
+
example: z.ZodOptional<z.ZodAny>;
|
|
8411
|
+
tenantIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8412
|
+
userIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8413
|
+
subscribeRequest: z.ZodOptional<z.ZodObject<{
|
|
8414
|
+
method: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodEnum<typeof HttpRequestMethod>>>;
|
|
8415
|
+
uri: z.ZodAny;
|
|
8416
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8417
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8418
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
8419
|
+
}, z.core.$strip>>;
|
|
8541
8420
|
}, z.core.$strip>;
|
|
8542
|
-
type
|
|
8543
|
-
declare const
|
|
8421
|
+
type AppEventTypeEditableProperties = z.infer<typeof AppEventTypeEditableProperties>;
|
|
8422
|
+
declare const AppEventTypeExportProperties: z.ZodObject<{
|
|
8544
8423
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8545
8424
|
key: z.ZodOptional<z.ZodString>;
|
|
8546
8425
|
name: z.ZodOptional<z.ZodString>;
|
|
8547
8426
|
description: z.ZodOptional<z.ZodString>;
|
|
8548
8427
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8549
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
8550
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8551
|
-
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8552
|
-
uuid: z.ZodString;
|
|
8553
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8554
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8555
|
-
}, z.core.$strip>>>;
|
|
8556
8428
|
}, z.core.$strip>;
|
|
8557
|
-
type
|
|
8558
|
-
|
|
8559
|
-
|
|
8429
|
+
type AppEventTypeExportProperties = z.infer<typeof AppEventTypeExportProperties>;
|
|
8430
|
+
|
|
8431
|
+
declare const BaseAppEventSubscription: z.ZodObject<{
|
|
8432
|
+
id: z.ZodString;
|
|
8433
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8434
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8435
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8436
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8560
8437
|
name: z.ZodString;
|
|
8561
|
-
|
|
8438
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8439
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8440
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8441
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8442
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8443
|
+
revision: z.ZodString;
|
|
8444
|
+
appEventTypeId: z.ZodString;
|
|
8445
|
+
userId: z.ZodString;
|
|
8446
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8447
|
+
isSubscribed: z.ZodBoolean;
|
|
8448
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8449
|
+
webhookUri: z.ZodString;
|
|
8450
|
+
subscriptionRequest: z.ZodObject<{
|
|
8451
|
+
method: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodEnum<typeof HttpRequestMethod>>>;
|
|
8452
|
+
uri: z.ZodAny;
|
|
8453
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8454
|
+
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8455
|
+
body: z.ZodOptional<z.ZodAny>;
|
|
8456
|
+
}, z.core.$strip>;
|
|
8457
|
+
subscriptionResponse: z.ZodOptional<z.ZodAny>;
|
|
8458
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8562
8459
|
}, z.core.$strip>;
|
|
8563
|
-
type
|
|
8564
|
-
|
|
8460
|
+
type BaseAppEventSubscription = z.infer<typeof BaseAppEventSubscription>;
|
|
8461
|
+
|
|
8462
|
+
declare const BaseAppDataSchema: z.ZodObject<{
|
|
8565
8463
|
id: z.ZodString;
|
|
8464
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8465
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8466
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8467
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8468
|
+
name: z.ZodString;
|
|
8566
8469
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8567
8470
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8568
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8569
8471
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8570
8472
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8571
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8572
8473
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8474
|
+
schema: z.ZodAny;
|
|
8475
|
+
code: z.ZodOptional<z.ZodString>;
|
|
8476
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8477
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
8478
|
+
}, z.core.$strip>;
|
|
8479
|
+
type BaseAppDataSchema = z.infer<typeof BaseAppDataSchema>;
|
|
8480
|
+
declare const AppDataSchemaEditableProperties: z.ZodObject<{
|
|
8573
8481
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8482
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8483
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8574
8484
|
description: z.ZodOptional<z.ZodString>;
|
|
8575
8485
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
8579
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8580
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8581
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8582
|
-
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
8583
|
-
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8584
|
-
id: z.ZodString;
|
|
8585
|
-
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
8586
|
-
element: z.ZodOptional<z.ZodAny>;
|
|
8587
|
-
}, z.core.$strip>>>;
|
|
8588
|
-
key: z.ZodString;
|
|
8589
|
-
name: z.ZodString;
|
|
8590
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8486
|
+
schema: z.ZodAny;
|
|
8487
|
+
code: z.ZodOptional<z.ZodString>;
|
|
8591
8488
|
}, z.core.$strip>;
|
|
8592
|
-
type
|
|
8489
|
+
type AppDataSchemaEditableProperties = z.infer<typeof AppDataSchemaEditableProperties>;
|
|
8490
|
+
declare const AppDataSchemaExportProperties: z.ZodObject<{
|
|
8491
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
8492
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8493
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8494
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8495
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8496
|
+
schema: z.ZodAny;
|
|
8497
|
+
code: z.ZodOptional<z.ZodString>;
|
|
8498
|
+
}, z.core.$strip>;
|
|
8499
|
+
type AppDataSchemaExportProperties = z.infer<typeof AppDataSchemaExportProperties>;
|
|
8593
8500
|
|
|
8594
|
-
declare
|
|
8595
|
-
Integration = "integration"
|
|
8596
|
-
}
|
|
8597
|
-
declare enum ScreenBlockType {
|
|
8598
|
-
Flow = "flow",
|
|
8599
|
-
FieldMapping = "field-mapping",
|
|
8600
|
-
DataSource = "data-source",
|
|
8601
|
-
Action = "action"
|
|
8602
|
-
}
|
|
8603
|
-
declare const ScreenBlock: z.ZodIntersection<z.ZodObject<{
|
|
8604
|
-
type: z.ZodEnum<typeof ScreenBlockType>;
|
|
8605
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8606
|
-
type ScreenBlock = z.infer<typeof ScreenBlock>;
|
|
8607
|
-
declare const BaseScreen: z.ZodObject<{
|
|
8608
|
-
id: z.ZodString;
|
|
8609
|
-
name: z.ZodString;
|
|
8610
|
-
type: z.ZodEnum<typeof ScreenType>;
|
|
8611
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8612
|
-
blocks: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
8613
|
-
type: z.ZodEnum<typeof ScreenBlockType>;
|
|
8614
|
-
}, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8615
|
-
}, z.core.$strip>;
|
|
8616
|
-
type BaseScreen = z.infer<typeof BaseScreen>;
|
|
8617
|
-
|
|
8618
|
-
declare const BaseCustomer: z.ZodObject<{
|
|
8619
|
-
id: z.ZodString;
|
|
8620
|
-
name: z.ZodString;
|
|
8621
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8622
|
-
internalId: z.ZodString;
|
|
8623
|
-
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8624
|
-
credentials: z.ZodOptional<z.ZodAny>;
|
|
8625
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8626
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8627
|
-
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
8628
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8629
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8630
|
-
}, z.core.$strip>;
|
|
8631
|
-
type BaseCustomer = z.infer<typeof BaseCustomer>;
|
|
8632
|
-
|
|
8633
|
-
declare const BaseFlowInstance: z.ZodObject<{
|
|
8501
|
+
declare const BaseAppDataSchemaInstance: z.ZodObject<{
|
|
8634
8502
|
id: z.ZodString;
|
|
8635
8503
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8636
8504
|
key: z.ZodOptional<z.ZodString>;
|
|
8637
8505
|
description: z.ZodOptional<z.ZodString>;
|
|
8638
8506
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8639
8507
|
name: z.ZodString;
|
|
8508
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8640
8509
|
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8641
8510
|
revision: z.ZodOptional<z.ZodString>;
|
|
8642
|
-
|
|
8511
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8512
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8643
8513
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8514
|
+
appId: z.ZodString;
|
|
8644
8515
|
userId: z.ZodString;
|
|
8645
|
-
|
|
8646
|
-
|
|
8647
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
8648
|
-
integrationId: z.ZodString;
|
|
8516
|
+
appDataSchemaId: z.ZodString;
|
|
8517
|
+
appDataSchemaRevision: z.ZodString;
|
|
8649
8518
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8650
|
-
|
|
8651
|
-
|
|
8652
|
-
|
|
8653
|
-
enabled: z.ZodBoolean;
|
|
8654
|
-
createdAt: z.ZodString;
|
|
8655
|
-
updatedAt: z.ZodString;
|
|
8656
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8657
|
-
customized: z.ZodOptional<z.ZodObject<{
|
|
8658
|
-
name: z.ZodOptional<z.ZodBoolean>;
|
|
8659
|
-
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8660
|
-
}, z.core.$strip>>;
|
|
8661
|
-
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
8662
|
-
}, z.core.$strip>;
|
|
8663
|
-
type BaseFlowInstance = z.infer<typeof BaseFlowInstance>;
|
|
8664
|
-
declare enum FlowInstanceNodeState {
|
|
8665
|
-
SETUP_FAILED = "SETUP_FAILED",
|
|
8666
|
-
READY = "READY"
|
|
8667
|
-
}
|
|
8668
|
-
declare const FlowInstanceNode: z.ZodObject<{
|
|
8669
|
-
type: z.ZodOptional<z.ZodString>;
|
|
8670
|
-
version: z.ZodOptional<z.ZodNumber>;
|
|
8671
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8672
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8673
|
-
config: z.ZodOptional<z.ZodAny>;
|
|
8674
|
-
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
8675
|
-
onError: z.ZodOptional<z.ZodEnum<{
|
|
8676
|
-
continue: "continue";
|
|
8677
|
-
stop: "stop";
|
|
8678
|
-
}>>;
|
|
8679
|
-
ui: z.ZodOptional<z.ZodAny>;
|
|
8680
|
-
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
8681
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
8682
|
-
outputExample: z.ZodOptional<z.ZodAny>;
|
|
8683
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8684
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8685
|
-
filter: z.ZodOptional<z.ZodAny>;
|
|
8686
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8687
|
-
}, z.core.$strip>>>;
|
|
8688
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8689
|
-
state: z.ZodOptional<z.ZodEnum<typeof FlowInstanceNodeState>>;
|
|
8690
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8691
|
-
userConfig: z.ZodOptional<z.ZodAny>;
|
|
8692
|
-
testInput: z.ZodOptional<z.ZodAny>;
|
|
8693
|
-
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
8519
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
8520
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8521
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8694
8522
|
}, z.core.$strip>;
|
|
8695
|
-
type
|
|
8523
|
+
type BaseAppDataSchemaInstance = z.infer<typeof BaseAppDataSchemaInstance>;
|
|
8696
8524
|
|
|
8697
|
-
declare
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
|
|
8704
|
-
|
|
8705
|
-
|
|
8706
|
-
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
|
|
8710
|
-
|
|
8711
|
-
|
|
8712
|
-
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
|
|
8719
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8720
|
-
}, z.core.$strip>>>;
|
|
8721
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8722
|
-
}, z.core.$strip>>>;
|
|
8723
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8724
|
-
customized: z.ZodOptional<z.ZodObject<{
|
|
8725
|
-
name: z.ZodOptional<z.ZodBoolean>;
|
|
8726
|
-
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8525
|
+
declare enum ExternalEventSubscriptionStatus {
|
|
8526
|
+
Subscribed = "subscribed",
|
|
8527
|
+
Unsubscribed = "unsubscribed",
|
|
8528
|
+
Error = "error"
|
|
8529
|
+
}
|
|
8530
|
+
declare enum ExternalEventSubscriptionType {
|
|
8531
|
+
DataRecordCreated = "data-record-created",
|
|
8532
|
+
DataRecordUpdated = "data-record-updated",
|
|
8533
|
+
DataRecordDeleted = "data-record-deleted",
|
|
8534
|
+
ConnectorEvent = "connector-event"
|
|
8535
|
+
}
|
|
8536
|
+
declare const ExternalEventSubscriptionConfig: z.ZodObject<{
|
|
8537
|
+
type: z.ZodEnum<typeof ExternalEventSubscriptionType>;
|
|
8538
|
+
dataSource: z.ZodOptional<z.ZodObject<{
|
|
8539
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
8540
|
+
collectionKey: z.ZodOptional<z.ZodAny>;
|
|
8541
|
+
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
8542
|
+
udm: z.ZodOptional<z.ZodAny>;
|
|
8543
|
+
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8544
|
+
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8545
|
+
path: z.ZodOptional<z.ZodAny>;
|
|
8546
|
+
defaultPath: z.ZodOptional<z.ZodAny>;
|
|
8727
8547
|
}, z.core.$strip>>;
|
|
8548
|
+
eventKey: z.ZodOptional<z.ZodString>;
|
|
8549
|
+
eventParameters: z.ZodOptional<z.ZodAny>;
|
|
8728
8550
|
}, z.core.$strip>;
|
|
8729
|
-
|
|
8551
|
+
type ExternalEventSubscriptionConfig = z.infer<typeof ExternalEventSubscriptionConfig>;
|
|
8552
|
+
declare const BaseExternalEventSubscription: z.ZodObject<{
|
|
8553
|
+
id: z.ZodString;
|
|
8730
8554
|
name: z.ZodOptional<z.ZodString>;
|
|
8731
|
-
|
|
8732
|
-
|
|
8733
|
-
|
|
8734
|
-
|
|
8735
|
-
type: z.
|
|
8736
|
-
|
|
8737
|
-
|
|
8738
|
-
|
|
8739
|
-
|
|
8740
|
-
|
|
8741
|
-
|
|
8742
|
-
|
|
8743
|
-
|
|
8744
|
-
|
|
8745
|
-
|
|
8746
|
-
|
|
8747
|
-
|
|
8748
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8749
|
-
}, z.core.$strip>>>;
|
|
8750
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8751
|
-
customized: z.ZodOptional<z.ZodObject<{
|
|
8752
|
-
name: z.ZodOptional<z.ZodBoolean>;
|
|
8753
|
-
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
8555
|
+
userId: z.ZodString;
|
|
8556
|
+
connectionId: z.ZodString;
|
|
8557
|
+
integrationId: z.ZodString;
|
|
8558
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
8559
|
+
type: z.ZodEnum<typeof ExternalEventSubscriptionType>;
|
|
8560
|
+
dataSource: z.ZodOptional<z.ZodObject<{
|
|
8561
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
8562
|
+
collectionKey: z.ZodOptional<z.ZodAny>;
|
|
8563
|
+
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
8564
|
+
udm: z.ZodOptional<z.ZodAny>;
|
|
8565
|
+
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8566
|
+
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8567
|
+
path: z.ZodOptional<z.ZodAny>;
|
|
8568
|
+
defaultPath: z.ZodOptional<z.ZodAny>;
|
|
8569
|
+
}, z.core.$strip>>;
|
|
8570
|
+
eventKey: z.ZodOptional<z.ZodString>;
|
|
8571
|
+
eventParameters: z.ZodOptional<z.ZodAny>;
|
|
8754
8572
|
}, z.core.$strip>>;
|
|
8573
|
+
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
|
|
8574
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8575
|
+
isRealTime: z.ZodOptional<z.ZodBoolean>;
|
|
8576
|
+
requiresPull: z.ZodOptional<z.ZodBoolean>;
|
|
8577
|
+
requiresFullSync: z.ZodOptional<z.ZodBoolean>;
|
|
8578
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8579
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8580
|
+
stateData: z.ZodOptional<z.ZodAny>;
|
|
8581
|
+
nextPullEventsTimestamp: z.ZodOptional<z.ZodNumber>;
|
|
8582
|
+
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8583
|
+
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8584
|
+
nextRefreshTimestamp: z.ZodOptional<z.ZodNumber>;
|
|
8585
|
+
globalWebhookKey: z.ZodOptional<z.ZodString>;
|
|
8586
|
+
globalWebhookEventSelector: z.ZodOptional<z.ZodString>;
|
|
8587
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
8755
8588
|
}, z.core.$strip>;
|
|
8756
|
-
type
|
|
8757
|
-
type UpdateFlowInstanceRequest = z.infer<typeof updateFlowInstanceSchema>;
|
|
8589
|
+
type BaseExternalEventSubscription = z.infer<typeof BaseExternalEventSubscription>;
|
|
8758
8590
|
|
|
8759
|
-
declare
|
|
8591
|
+
declare enum ExternalEventLogStatus {
|
|
8592
|
+
CREATED = "created",
|
|
8593
|
+
ERROR = "error",
|
|
8594
|
+
SUCCESS = "success"
|
|
8595
|
+
}
|
|
8596
|
+
declare const BaseExternalEventLogRecord: z.ZodObject<{
|
|
8760
8597
|
id: z.ZodString;
|
|
8761
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8762
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8763
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8764
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8765
|
-
name: z.ZodString;
|
|
8766
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8767
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8768
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8769
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8770
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8771
8598
|
userId: z.ZodString;
|
|
8772
|
-
|
|
8773
|
-
|
|
8599
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8600
|
+
externalEventSubscriptionId: z.ZodString;
|
|
8774
8601
|
integrationId: z.ZodString;
|
|
8775
|
-
|
|
8776
|
-
|
|
8777
|
-
|
|
8778
|
-
|
|
8779
|
-
dataSourceSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8780
|
-
direction: z.ZodOptional<z.ZodEnum<typeof FieldMappingDirection>>;
|
|
8781
|
-
appSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8782
|
-
importValue: z.ZodOptional<z.ZodAny>;
|
|
8783
|
-
exportValue: z.ZodOptional<z.ZodAny>;
|
|
8784
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
8785
|
-
unifiedExportValue: z.ZodOptional<z.ZodAny>;
|
|
8786
|
-
unifiedImportValue: z.ZodOptional<z.ZodAny>;
|
|
8787
|
-
frozenImportFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8788
|
-
frozenExportFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8789
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8602
|
+
connectionId: z.ZodString;
|
|
8603
|
+
payload: z.ZodOptional<z.ZodAny>;
|
|
8604
|
+
launchedFlowRunIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8605
|
+
status: z.ZodEnum<typeof ExternalEventLogStatus>;
|
|
8790
8606
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8791
|
-
externalSchema: z.ZodOptional<z.ZodAny>;
|
|
8792
8607
|
}, z.core.$strip>;
|
|
8793
|
-
type
|
|
8608
|
+
type BaseExternalEventLogRecord = z.infer<typeof BaseExternalEventLogRecord>;
|
|
8794
8609
|
|
|
8795
|
-
declare enum
|
|
8796
|
-
|
|
8797
|
-
|
|
8798
|
-
|
|
8610
|
+
declare enum ExternalEventPullStatus {
|
|
8611
|
+
RUNNING = "running",
|
|
8612
|
+
SUCCESS = "success",
|
|
8613
|
+
ERROR = "error",
|
|
8614
|
+
QUEUED = "queued"
|
|
8799
8615
|
}
|
|
8800
|
-
declare const
|
|
8801
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8802
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8803
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8804
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8805
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8806
|
-
}, z.core.$strip>;
|
|
8807
|
-
type DataLinkTableEditableProperties = z.infer<typeof DataLinkTableEditableProperties>;
|
|
8808
|
-
declare const DataLinkTableExportProperties: z.ZodObject<{
|
|
8809
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8810
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8811
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8812
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8813
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8814
|
-
}, z.core.$strip>;
|
|
8815
|
-
type DataLinkTableExportProperties = z.infer<typeof DataLinkTableExportProperties>;
|
|
8816
|
-
declare const BaseDataLinkTable: z.ZodObject<{
|
|
8616
|
+
declare const BaseExternalEventPull: z.ZodObject<{
|
|
8817
8617
|
id: z.ZodString;
|
|
8818
|
-
|
|
8819
|
-
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
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>>>;
|
|
8830
8629
|
}, z.core.$strip>;
|
|
8831
|
-
type
|
|
8630
|
+
type BaseExternalEventPull = z.infer<typeof BaseExternalEventPull>;
|
|
8832
8631
|
|
|
8833
|
-
declare
|
|
8632
|
+
declare enum ActionRunLogStatus {
|
|
8633
|
+
SUCCESS = "success",
|
|
8634
|
+
ERROR = "error"
|
|
8635
|
+
}
|
|
8636
|
+
declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
8834
8637
|
id: z.ZodString;
|
|
8835
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8836
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8837
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8838
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8839
8638
|
name: z.ZodString;
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8844
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8845
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8846
|
-
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
8847
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8639
|
+
userId: z.ZodString;
|
|
8640
|
+
actionId: z.ZodString;
|
|
8641
|
+
actionInstanceId: z.ZodString;
|
|
8848
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>;
|
|
8849
8696
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8850
|
-
userId: z.ZodString;
|
|
8851
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8852
8697
|
}, z.core.$strip>;
|
|
8853
|
-
type
|
|
8854
|
-
declare const
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
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>;
|
|
8860
8708
|
}, z.core.$strip>;
|
|
8861
|
-
type
|
|
8862
|
-
declare const
|
|
8863
|
-
|
|
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>;
|
|
8864
8714
|
}, z.core.$strip>;
|
|
8865
|
-
type
|
|
8715
|
+
type CommonIntegrationOrConnectionQuery = z.infer<typeof CommonIntegrationOrConnectionQuery>;
|
|
8866
8716
|
|
|
8867
|
-
declare const
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
8871
|
-
|
|
8872
|
-
|
|
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<{
|
|
8873
8734
|
name: z.ZodString;
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8877
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8878
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8879
|
-
revision: z.ZodString;
|
|
8880
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8881
|
-
webhookKey: z.ZodString;
|
|
8882
|
-
subscribeRequest: z.ZodOptional<z.ZodObject<{
|
|
8883
|
-
method: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodEnum<typeof HttpRequestMethod>>>;
|
|
8884
|
-
uri: z.ZodAny;
|
|
8885
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8886
|
-
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8887
|
-
body: z.ZodOptional<z.ZodAny>;
|
|
8888
|
-
}, z.core.$strip>>;
|
|
8889
|
-
example: z.ZodOptional<z.ZodAny>;
|
|
8890
|
-
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8891
|
-
globalWebhookUri: z.ZodString;
|
|
8892
|
-
tenantIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8893
|
-
userIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8735
|
+
integrationId: z.ZodString;
|
|
8736
|
+
credentials: z.ZodOptional<z.ZodString>;
|
|
8894
8737
|
}, z.core.$strip>;
|
|
8895
|
-
type
|
|
8896
|
-
declare const
|
|
8897
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8898
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8738
|
+
type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
8739
|
+
declare const UpdateConnectionRequest: z.ZodObject<{
|
|
8899
8740
|
name: z.ZodOptional<z.ZodString>;
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8903
|
-
example: z.ZodOptional<z.ZodAny>;
|
|
8904
|
-
tenantIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8905
|
-
userIdFormula: z.ZodOptional<z.ZodAny>;
|
|
8906
|
-
subscribeRequest: z.ZodOptional<z.ZodObject<{
|
|
8907
|
-
method: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodEnum<typeof HttpRequestMethod>>>;
|
|
8908
|
-
uri: z.ZodAny;
|
|
8909
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8910
|
-
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8911
|
-
body: z.ZodOptional<z.ZodAny>;
|
|
8912
|
-
}, z.core.$strip>>;
|
|
8741
|
+
credentials: z.ZodOptional<z.ZodString>;
|
|
8742
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
8913
8743
|
}, z.core.$strip>;
|
|
8914
|
-
type
|
|
8915
|
-
declare
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8744
|
+
type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
8745
|
+
declare class FindConnectionsResponse extends PaginationResponse<Connection> {
|
|
8746
|
+
}
|
|
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>;
|
|
8921
8752
|
}, z.core.$strip>;
|
|
8922
|
-
type
|
|
8923
|
-
|
|
8924
|
-
declare const BaseAppEventSubscription: z.ZodObject<{
|
|
8753
|
+
type ConnectionSelector = z.infer<typeof ConnectionSelector>;
|
|
8754
|
+
declare const ConnectionApiResponse: z.ZodObject<{
|
|
8925
8755
|
id: z.ZodString;
|
|
8926
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8927
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8928
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8929
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8930
8756
|
name: z.ZodString;
|
|
8757
|
+
userId: z.ZodString;
|
|
8758
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
8759
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
8760
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
8931
8761
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
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>;
|
|
8935
8772
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8936
|
-
revision: z.ZodString;
|
|
8937
|
-
appEventTypeId: z.ZodString;
|
|
8938
|
-
userId: z.ZodString;
|
|
8939
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8940
|
-
isSubscribed: z.ZodBoolean;
|
|
8941
|
-
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8942
|
-
webhookUri: z.ZodString;
|
|
8943
|
-
subscriptionRequest: z.ZodObject<{
|
|
8944
|
-
method: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodEnum<typeof HttpRequestMethod>>>;
|
|
8945
|
-
uri: z.ZodAny;
|
|
8946
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8947
|
-
query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8948
|
-
body: z.ZodOptional<z.ZodAny>;
|
|
8949
|
-
}, z.core.$strip>;
|
|
8950
|
-
subscriptionResponse: z.ZodOptional<z.ZodAny>;
|
|
8951
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8952
|
-
}, z.core.$strip>;
|
|
8953
|
-
type BaseAppEventSubscription = z.infer<typeof BaseAppEventSubscription>;
|
|
8954
|
-
|
|
8955
|
-
declare const BaseAppDataSchema: z.ZodObject<{
|
|
8956
|
-
id: z.ZodString;
|
|
8957
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8958
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8959
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8960
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8961
|
-
name: z.ZodString;
|
|
8962
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
8963
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
8964
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8965
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8966
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8967
|
-
schema: z.ZodAny;
|
|
8968
|
-
code: z.ZodOptional<z.ZodString>;
|
|
8969
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8970
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
8971
|
-
}, z.core.$strip>;
|
|
8972
|
-
type BaseAppDataSchema = z.infer<typeof BaseAppDataSchema>;
|
|
8973
|
-
declare const AppDataSchemaEditableProperties: z.ZodObject<{
|
|
8974
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8975
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8976
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8977
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8978
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8979
|
-
schema: z.ZodAny;
|
|
8980
|
-
code: z.ZodOptional<z.ZodString>;
|
|
8981
|
-
}, z.core.$strip>;
|
|
8982
|
-
type AppDataSchemaEditableProperties = z.infer<typeof AppDataSchemaEditableProperties>;
|
|
8983
|
-
declare const AppDataSchemaExportProperties: z.ZodObject<{
|
|
8984
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
8985
|
-
key: z.ZodOptional<z.ZodString>;
|
|
8986
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8987
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8988
8773
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8989
|
-
|
|
8990
|
-
|
|
8991
|
-
|
|
8992
|
-
|
|
8993
|
-
|
|
8994
|
-
|
|
8995
|
-
|
|
8996
|
-
|
|
8997
|
-
|
|
8998
|
-
|
|
8999
|
-
|
|
9000
|
-
|
|
9001
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
9002
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
9003
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
9004
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
9005
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
9006
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
9007
|
-
appId: z.ZodString;
|
|
9008
|
-
userId: z.ZodString;
|
|
9009
|
-
appDataSchemaId: z.ZodString;
|
|
9010
|
-
appDataSchemaRevision: z.ZodString;
|
|
9011
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
9012
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
9013
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
9014
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9015
|
-
}, z.core.$strip>;
|
|
9016
|
-
type BaseAppDataSchemaInstance = z.infer<typeof BaseAppDataSchemaInstance>;
|
|
9017
|
-
|
|
9018
|
-
declare enum ExternalEventSubscriptionStatus {
|
|
9019
|
-
Subscribed = "subscribed",
|
|
9020
|
-
Unsubscribed = "unsubscribed",
|
|
9021
|
-
Error = "error"
|
|
9022
|
-
}
|
|
9023
|
-
declare enum ExternalEventSubscriptionType {
|
|
9024
|
-
DataRecordCreated = "data-record-created",
|
|
9025
|
-
DataRecordUpdated = "data-record-updated",
|
|
9026
|
-
DataRecordDeleted = "data-record-deleted",
|
|
9027
|
-
ConnectorEvent = "connector-event"
|
|
9028
|
-
}
|
|
9029
|
-
declare const ExternalEventSubscriptionConfig: z.ZodObject<{
|
|
9030
|
-
type: z.ZodEnum<typeof ExternalEventSubscriptionType>;
|
|
9031
|
-
dataSource: z.ZodOptional<z.ZodObject<{
|
|
9032
|
-
key: z.ZodOptional<z.ZodAny>;
|
|
9033
|
-
collectionKey: z.ZodOptional<z.ZodAny>;
|
|
9034
|
-
collectionParameters: z.ZodOptional<z.ZodAny>;
|
|
9035
|
-
udm: z.ZodOptional<z.ZodAny>;
|
|
9036
|
-
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
9037
|
-
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
9038
|
-
path: z.ZodOptional<z.ZodAny>;
|
|
9039
|
-
defaultPath: z.ZodOptional<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>;
|
|
9040
8786
|
}, z.core.$strip>>;
|
|
9041
|
-
|
|
9042
|
-
|
|
9043
|
-
|
|
9044
|
-
|
|
9045
|
-
|
|
9046
|
-
|
|
9047
|
-
|
|
9048
|
-
|
|
9049
|
-
|
|
9050
|
-
|
|
9051
|
-
|
|
9052
|
-
|
|
9053
|
-
|
|
9054
|
-
|
|
9055
|
-
|
|
9056
|
-
|
|
9057
|
-
|
|
9058
|
-
|
|
9059
|
-
|
|
9060
|
-
|
|
9061
|
-
|
|
9062
|
-
|
|
9063
|
-
|
|
9064
|
-
|
|
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
|
+
}>>;
|
|
9065
8826
|
}, z.core.$strip>>;
|
|
9066
|
-
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
|
|
9067
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
9068
|
-
isRealTime: z.ZodOptional<z.ZodBoolean>;
|
|
9069
|
-
requiresPull: z.ZodOptional<z.ZodBoolean>;
|
|
9070
|
-
requiresFullSync: z.ZodOptional<z.ZodBoolean>;
|
|
9071
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
9072
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
9073
|
-
stateData: z.ZodOptional<z.ZodAny>;
|
|
9074
|
-
nextPullEventsTimestamp: z.ZodOptional<z.ZodNumber>;
|
|
9075
|
-
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
9076
|
-
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
9077
|
-
nextRefreshTimestamp: z.ZodOptional<z.ZodNumber>;
|
|
9078
|
-
globalWebhookKey: z.ZodOptional<z.ZodString>;
|
|
9079
|
-
globalWebhookEventSelector: z.ZodOptional<z.ZodString>;
|
|
9080
|
-
webhookUri: z.ZodOptional<z.ZodString>;
|
|
9081
|
-
}, z.core.$strip>;
|
|
9082
|
-
type BaseExternalEventSubscription = z.infer<typeof BaseExternalEventSubscription>;
|
|
9083
|
-
|
|
9084
|
-
declare enum ExternalEventLogStatus {
|
|
9085
|
-
CREATED = "created",
|
|
9086
|
-
ERROR = "error",
|
|
9087
|
-
SUCCESS = "success"
|
|
9088
|
-
}
|
|
9089
|
-
declare const BaseExternalEventLogRecord: z.ZodObject<{
|
|
9090
|
-
id: z.ZodString;
|
|
9091
|
-
userId: z.ZodString;
|
|
9092
|
-
name: z.ZodOptional<z.ZodString>;
|
|
9093
|
-
externalEventSubscriptionId: z.ZodString;
|
|
9094
|
-
integrationId: z.ZodString;
|
|
9095
|
-
connectionId: z.ZodString;
|
|
9096
|
-
payload: z.ZodOptional<z.ZodAny>;
|
|
9097
|
-
launchedFlowRunIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9098
|
-
status: z.ZodEnum<typeof ExternalEventLogStatus>;
|
|
9099
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
9100
8827
|
}, z.core.$strip>;
|
|
9101
|
-
type
|
|
9102
|
-
|
|
9103
|
-
declare enum ExternalEventPullStatus {
|
|
9104
|
-
RUNNING = "running",
|
|
9105
|
-
SUCCESS = "success",
|
|
9106
|
-
ERROR = "error",
|
|
9107
|
-
QUEUED = "queued"
|
|
9108
|
-
}
|
|
9109
|
-
declare const BaseExternalEventPull: z.ZodObject<{
|
|
8828
|
+
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
8829
|
+
declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
9110
8830
|
id: z.ZodString;
|
|
9111
|
-
name: z.
|
|
8831
|
+
name: z.ZodString;
|
|
9112
8832
|
userId: z.ZodString;
|
|
9113
|
-
|
|
9114
|
-
|
|
9115
|
-
|
|
9116
|
-
|
|
9117
|
-
endDatetime: z.ZodString;
|
|
9118
|
-
isFullScan: z.ZodOptional<z.ZodBoolean>;
|
|
9119
|
-
status: z.ZodEnum<typeof ExternalEventPullStatus>;
|
|
9120
|
-
collectedEventIds: z.ZodArray<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>>;
|
|
9121
8837
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
9122
|
-
}, z.core.$strip>;
|
|
9123
|
-
type BaseExternalEventPull = z.infer<typeof BaseExternalEventPull>;
|
|
9124
|
-
|
|
9125
|
-
declare enum ActionRunLogStatus {
|
|
9126
|
-
SUCCESS = "success",
|
|
9127
|
-
ERROR = "error"
|
|
9128
|
-
}
|
|
9129
|
-
declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
9130
|
-
id: z.ZodString;
|
|
9131
|
-
name: z.ZodString;
|
|
9132
|
-
actionId: z.ZodString;
|
|
9133
|
-
actionInstanceId: z.ZodString;
|
|
9134
8838
|
integrationId: z.ZodString;
|
|
9135
|
-
|
|
9136
|
-
input: z.ZodOptional<z.ZodAny>;
|
|
9137
|
-
output: z.ZodOptional<z.ZodAny>;
|
|
9138
|
-
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
8839
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
9139
8840
|
createdAt: z.ZodString;
|
|
9140
|
-
|
|
9141
|
-
|
|
9142
|
-
|
|
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>;
|
|
9143
8905
|
}, z.core.$strip>;
|
|
9144
|
-
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>;
|
|
9145
8994
|
|
|
9146
8995
|
declare const axios: _axios.AxiosInstance;
|
|
9147
8996
|
interface MembraneClientOptions {
|
|
@@ -9185,12 +9034,13 @@ interface ElementInstanceSelector {
|
|
|
9185
9034
|
parentKey?: string;
|
|
9186
9035
|
parentId?: string;
|
|
9187
9036
|
}
|
|
9188
|
-
|
|
9189
|
-
id
|
|
9190
|
-
key
|
|
9191
|
-
integrationId
|
|
9192
|
-
integrationKey
|
|
9193
|
-
}
|
|
9037
|
+
declare const IntegrationSpecificElementSelector: z$1.ZodObject<{
|
|
9038
|
+
id: z$1.ZodOptional<z$1.ZodString>;
|
|
9039
|
+
key: z$1.ZodOptional<z$1.ZodString>;
|
|
9040
|
+
integrationId: z$1.ZodOptional<z$1.ZodString>;
|
|
9041
|
+
integrationKey: z$1.ZodOptional<z$1.ZodString>;
|
|
9042
|
+
}, z$1.core.$strip>;
|
|
9043
|
+
type IntegrationSpecificElementSelector = z$1.infer<typeof IntegrationSpecificElementSelector>;
|
|
9194
9044
|
type SelectorType = {
|
|
9195
9045
|
id?: string;
|
|
9196
9046
|
} | string;
|
|
@@ -9348,6 +9198,28 @@ declare class ConnectionLevelActionsAccessor extends ConnectionLevelElementsList
|
|
|
9348
9198
|
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
9349
9199
|
}
|
|
9350
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>;
|
|
9351
9223
|
declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
9352
9224
|
id: z.ZodString;
|
|
9353
9225
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -10074,9 +9946,9 @@ type FlowApiResponse = z.infer<typeof FlowApiResponse>;
|
|
|
10074
9946
|
type Flow = FlowApiResponse;
|
|
10075
9947
|
declare const FindFlowsQuery: z.ZodObject<{
|
|
10076
9948
|
search: z.ZodOptional<z.ZodString>;
|
|
10077
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10078
9949
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10079
9950
|
cursor: z.ZodOptional<z.ZodString>;
|
|
9951
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10080
9952
|
userId: z.ZodOptional<z.ZodString>;
|
|
10081
9953
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10082
9954
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -10735,9 +10607,9 @@ type DataSourceApiResponse = z.infer<typeof DataSourceApiResponse>;
|
|
|
10735
10607
|
type DataSource = DataSourceApiResponse;
|
|
10736
10608
|
declare const FindDataSourcesQuery: z.ZodObject<{
|
|
10737
10609
|
search: z.ZodOptional<z.ZodString>;
|
|
10738
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10739
10610
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10740
10611
|
cursor: z.ZodOptional<z.ZodString>;
|
|
10612
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
10741
10613
|
userId: z.ZodOptional<z.ZodString>;
|
|
10742
10614
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
10743
10615
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -11765,9 +11637,9 @@ type FieldMappingApiResponse = z.infer<typeof FieldMappingApiResponse>;
|
|
|
11765
11637
|
type FieldMapping = FieldMappingApiResponse;
|
|
11766
11638
|
declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
11767
11639
|
search: z.ZodOptional<z.ZodString>;
|
|
11768
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11769
11640
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11770
11641
|
cursor: z.ZodOptional<z.ZodString>;
|
|
11642
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
11771
11643
|
userId: z.ZodOptional<z.ZodString>;
|
|
11772
11644
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
11773
11645
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -11859,6 +11731,157 @@ declare class IntegrationLevelFieldMappingsListAccessor extends IntegrationLevel
|
|
|
11859
11731
|
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
11860
11732
|
}
|
|
11861
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
|
+
|
|
11862
11885
|
interface OpenIntegrationUIIntegrationConfigurationOptions extends OpenConfigurationOptions {
|
|
11863
11886
|
}
|
|
11864
11887
|
declare class IntegrationsAccessor extends ElementListAccessor<Integration, FindIntegrationsQuery, CreateIntegrationRequest> {
|
|
@@ -11972,7 +11995,7 @@ declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateInt
|
|
|
11972
11995
|
|
|
11973
11996
|
declare const PackageElementApi: z.ZodObject<{
|
|
11974
11997
|
id: z.ZodString;
|
|
11975
|
-
type: z.ZodEnum<typeof
|
|
11998
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
11976
11999
|
element: z.ZodOptional<z.ZodAny>;
|
|
11977
12000
|
}, z.core.$strip>;
|
|
11978
12001
|
type PackageElementApi = z.infer<typeof PackageElementApi>;
|
|
@@ -11993,6 +12016,7 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
11993
12016
|
parentId: z.ZodOptional<z.ZodString>;
|
|
11994
12017
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
11995
12018
|
userId: z.ZodOptional<z.ZodString>;
|
|
12019
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11996
12020
|
}, z.core.$strip>;
|
|
11997
12021
|
type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
|
|
11998
12022
|
declare const CreatePackageRequest: z.ZodObject<{
|
|
@@ -12008,9 +12032,10 @@ declare const CreatePackageRequest: z.ZodObject<{
|
|
|
12008
12032
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12009
12033
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12010
12034
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12035
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12011
12036
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12012
12037
|
id: z.ZodString;
|
|
12013
|
-
type: z.ZodEnum<typeof
|
|
12038
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12014
12039
|
element: z.ZodOptional<z.ZodAny>;
|
|
12015
12040
|
}, z.core.$strip>>>;
|
|
12016
12041
|
}, z.core.$strip>;
|
|
@@ -12028,9 +12053,10 @@ declare const UpdatePackageRequest: z.ZodObject<{
|
|
|
12028
12053
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12029
12054
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12030
12055
|
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12056
|
+
externalAppId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
12031
12057
|
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12032
12058
|
id: z.ZodString;
|
|
12033
|
-
type: z.ZodEnum<typeof
|
|
12059
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12034
12060
|
element: z.ZodOptional<z.ZodAny>;
|
|
12035
12061
|
}, z.core.$strip>>>>;
|
|
12036
12062
|
}, z.core.$strip>;
|
|
@@ -12054,14 +12080,18 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12054
12080
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12055
12081
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12056
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>;
|
|
12057
12087
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12058
12088
|
id: z.ZodString;
|
|
12059
|
-
type: z.ZodEnum<typeof
|
|
12089
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12060
12090
|
element: z.ZodOptional<z.ZodAny>;
|
|
12061
12091
|
}, z.core.$strip>>>;
|
|
12062
|
-
|
|
12063
|
-
|
|
12064
|
-
|
|
12092
|
+
version: z.ZodOptional<z.ZodString>;
|
|
12093
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
12094
|
+
parentPackageVersion: z.ZodOptional<z.ZodString>;
|
|
12065
12095
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12066
12096
|
element: z.ZodObject<{
|
|
12067
12097
|
id: z.ZodString;
|
|
@@ -12082,9 +12112,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12082
12112
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
12083
12113
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
12084
12114
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
12115
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12085
12116
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12086
12117
|
id: z.ZodString;
|
|
12087
|
-
type: z.ZodEnum<typeof
|
|
12118
|
+
type: z.ZodEnum<typeof WorkspaceElementType>;
|
|
12088
12119
|
element: z.ZodOptional<z.ZodAny>;
|
|
12089
12120
|
}, z.core.$strip>>>;
|
|
12090
12121
|
key: z.ZodString;
|
|
@@ -12136,6 +12167,12 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
12136
12167
|
type PackageApiResponse = z.infer<typeof PackageApiResponse>;
|
|
12137
12168
|
type Package = PackageApiResponse;
|
|
12138
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>;
|
|
12139
12176
|
|
|
12140
12177
|
declare class PackagesAccessor extends ElementListAccessor<PackageApiResponse, FindPackagesQuery, PackageEditableProperties> {
|
|
12141
12178
|
constructor(client: MembraneApiClient);
|
|
@@ -12164,9 +12201,13 @@ interface UpdateScreenRequest {
|
|
|
12164
12201
|
interface CreateScreenRequest extends UpdateScreenRequest {
|
|
12165
12202
|
type: ScreenType;
|
|
12166
12203
|
}
|
|
12167
|
-
|
|
12168
|
-
|
|
12169
|
-
|
|
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>;
|
|
12170
12211
|
declare const ScreenApiResponse: z.ZodObject<{
|
|
12171
12212
|
id: z.ZodString;
|
|
12172
12213
|
name: z.ZodString;
|
|
@@ -12186,6 +12227,52 @@ declare class ScreenAccessor extends ElementAccessor<Screen, UpdateScreenRequest
|
|
|
12186
12227
|
constructor(client: MembraneApiClient, selector: ScreenSelector | string);
|
|
12187
12228
|
}
|
|
12188
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
|
+
|
|
12189
12276
|
declare class CustomersAccessor extends ElementListAccessor<Customer, FindCustomersQuery, CreateCustomerRequest> {
|
|
12190
12277
|
constructor(client: MembraneApiClient);
|
|
12191
12278
|
}
|
|
@@ -12220,11 +12307,16 @@ declare class DataLinkTableAccessor extends ElementAccessor<BaseDataLinkTable, U
|
|
|
12220
12307
|
constructor(client: MembraneApiClient, idOrKey: string);
|
|
12221
12308
|
}
|
|
12222
12309
|
|
|
12223
|
-
|
|
12224
|
-
|
|
12225
|
-
|
|
12226
|
-
|
|
12227
|
-
|
|
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>;
|
|
12228
12320
|
interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
12229
12321
|
dataLinkTableId?: string;
|
|
12230
12322
|
dataLinkTableKey?: string;
|
|
@@ -12234,11 +12326,14 @@ interface UpdateDataLinkTableInstanceRequest {
|
|
|
12234
12326
|
}
|
|
12235
12327
|
interface CreateDataLinkTableInstanceRequest {
|
|
12236
12328
|
}
|
|
12237
|
-
|
|
12238
|
-
|
|
12239
|
-
|
|
12240
|
-
|
|
12241
|
-
|
|
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>;
|
|
12242
12337
|
interface CreateDataLinkRequest {
|
|
12243
12338
|
direction?: DataLinkDirection;
|
|
12244
12339
|
appRecordId: string;
|
|
@@ -12249,11 +12344,26 @@ interface DeleteDataLinkRequest {
|
|
|
12249
12344
|
appRecordId: string;
|
|
12250
12345
|
externalRecordId: string;
|
|
12251
12346
|
}
|
|
12252
|
-
|
|
12253
|
-
|
|
12254
|
-
|
|
12255
|
-
|
|
12256
|
-
|
|
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>;
|
|
12257
12367
|
interface FindDataLinkQuery extends PaginationQuery {
|
|
12258
12368
|
dataLinkTableInstanceId: string;
|
|
12259
12369
|
externalRecordId: string;
|
|
@@ -12268,6 +12378,22 @@ interface DataLinkInTableSelector {
|
|
|
12268
12378
|
interface DataLinkSelector extends DataLinkInTableSelector {
|
|
12269
12379
|
dataLinkTableInstanceId: string;
|
|
12270
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>;
|
|
12271
12397
|
declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
12272
12398
|
id: z.ZodString;
|
|
12273
12399
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -12398,13 +12524,18 @@ declare class AppEventTypeAccessor extends ElementAccessor<BaseAppEventType, Upd
|
|
|
12398
12524
|
constructor(client: MembraneApiClient, idOrKey: string);
|
|
12399
12525
|
}
|
|
12400
12526
|
|
|
12401
|
-
|
|
12402
|
-
|
|
12403
|
-
|
|
12404
|
-
|
|
12405
|
-
|
|
12406
|
-
|
|
12407
|
-
|
|
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>;
|
|
12408
12539
|
interface CreateAppEventSubscriptionRequest {
|
|
12409
12540
|
}
|
|
12410
12541
|
interface UpdateAppEventSubscriptionRequest {
|
|
@@ -12724,13 +12855,6 @@ interface FindExternalEventLogsQuery extends PaginationQuery {
|
|
|
12724
12855
|
startDatetime?: string;
|
|
12725
12856
|
status?: ExternalEventLogStatus;
|
|
12726
12857
|
}
|
|
12727
|
-
interface FindExternalEventPullsQuery extends PaginationQuery {
|
|
12728
|
-
userId?: string;
|
|
12729
|
-
externalEventSubscriptionId?: string;
|
|
12730
|
-
integrationId?: string;
|
|
12731
|
-
connectionId?: string;
|
|
12732
|
-
startedAfter?: string;
|
|
12733
|
-
}
|
|
12734
12858
|
interface ExternalEventCustomPullSubscribeResponse {
|
|
12735
12859
|
state: Record<string, any>;
|
|
12736
12860
|
}
|
|
@@ -13077,6 +13201,7 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
13077
13201
|
parentId: z.ZodOptional<z.ZodString>;
|
|
13078
13202
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13079
13203
|
userId: z.ZodOptional<z.ZodString>;
|
|
13204
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13080
13205
|
}, z.core.$strip>;
|
|
13081
13206
|
type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
13082
13207
|
declare const CreateActionRequest: z.ZodObject<{
|
|
@@ -13161,7 +13286,7 @@ declare const RunActionRequest: z.ZodObject<{
|
|
|
13161
13286
|
type RunActionRequest = z.infer<typeof RunActionRequest>;
|
|
13162
13287
|
declare const ActionRunResponse: z.ZodObject<{
|
|
13163
13288
|
output: z.ZodOptional<z.ZodAny>;
|
|
13164
|
-
|
|
13289
|
+
actionRunId: z.ZodOptional<z.ZodString>;
|
|
13165
13290
|
}, z.core.$strip>;
|
|
13166
13291
|
type ActionRunResponse<RunOutput = any> = Omit<z.infer<typeof ActionRunResponse>, 'output'> & {
|
|
13167
13292
|
output: RunOutput;
|
|
@@ -13173,27 +13298,309 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13173
13298
|
description: z.ZodOptional<z.ZodString>;
|
|
13174
13299
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13175
13300
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
13176
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13177
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13178
|
-
parentUuid: 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>>;
|
|
13500
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
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>;
|
|
13179
13514
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13180
13515
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
|
|
13185
|
-
|
|
13186
|
-
name: z.ZodString;
|
|
13187
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13188
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13189
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
13190
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13191
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13192
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13193
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13194
|
-
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>;
|
|
13195
13521
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13196
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>>;
|
|
13197
13604
|
integration: z.ZodOptional<z.ZodObject<{
|
|
13198
13605
|
id: z.ZodString;
|
|
13199
13606
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -13234,6 +13641,27 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13234
13641
|
"client-credentials": "client-credentials";
|
|
13235
13642
|
}>>;
|
|
13236
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>>;
|
|
13237
13665
|
user: z.ZodOptional<z.ZodObject<{
|
|
13238
13666
|
id: z.ZodString;
|
|
13239
13667
|
name: z.ZodString;
|
|
@@ -13247,38 +13675,37 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13247
13675
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13248
13676
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13249
13677
|
}, z.core.$strip>>;
|
|
13250
|
-
|
|
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<{
|
|
13251
13694
|
id: z.ZodString;
|
|
13252
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
13253
|
-
key: z.ZodOptional<z.ZodString>;
|
|
13254
|
-
description: z.ZodOptional<z.ZodString>;
|
|
13255
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13256
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
13257
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13258
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13259
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13260
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
13261
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13262
|
-
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13263
|
-
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13264
|
-
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13265
|
-
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13266
|
-
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13267
13695
|
name: z.ZodString;
|
|
13268
|
-
|
|
13269
|
-
|
|
13270
|
-
|
|
13271
|
-
|
|
13272
|
-
|
|
13273
|
-
|
|
13274
|
-
|
|
13275
|
-
|
|
13276
|
-
|
|
13277
|
-
|
|
13278
|
-
|
|
13279
|
-
|
|
13280
|
-
|
|
13281
|
-
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<{
|
|
13282
13709
|
id: z.ZodString;
|
|
13283
13710
|
uuid: z.ZodOptional<z.ZodString>;
|
|
13284
13711
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -13307,8 +13734,38 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13307
13734
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13308
13735
|
userId: z.ZodOptional<z.ZodString>;
|
|
13309
13736
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13310
|
-
}, z.core.$strip
|
|
13311
|
-
|
|
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<{
|
|
13312
13769
|
id: z.ZodString;
|
|
13313
13770
|
uuid: z.ZodOptional<z.ZodString>;
|
|
13314
13771
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -13347,166 +13804,63 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
13347
13804
|
oauth1: "oauth1";
|
|
13348
13805
|
"client-credentials": "client-credentials";
|
|
13349
13806
|
}>>;
|
|
13350
|
-
}, z.core.$strip
|
|
13351
|
-
|
|
13352
|
-
|
|
13353
|
-
|
|
13354
|
-
|
|
13355
|
-
|
|
13356
|
-
|
|
13357
|
-
|
|
13358
|
-
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13362
|
-
|
|
13363
|
-
|
|
13364
|
-
|
|
13365
|
-
|
|
13366
|
-
|
|
13367
|
-
|
|
13368
|
-
|
|
13369
|
-
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
|
|
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>>;
|
|
13373
13843
|
cursor: z.ZodOptional<z.ZodString>;
|
|
13374
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
13375
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13376
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13377
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
13378
13844
|
}, z.core.$strip>;
|
|
13379
|
-
type
|
|
13380
|
-
|
|
13381
|
-
|
|
13382
|
-
|
|
13383
|
-
integration: "integration";
|
|
13384
|
-
universal: "universal";
|
|
13385
|
-
}>>;
|
|
13386
|
-
integrationKey: z.ZodOptional<z.ZodString>;
|
|
13387
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
13388
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
13389
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13390
|
-
search: z.ZodOptional<z.ZodString>;
|
|
13845
|
+
type FindActionRunLogsResponse = z.infer<typeof FindActionRunLogsResponse>;
|
|
13846
|
+
type ActionRunLogRecord = ActionRunLogRecordApiResponse;
|
|
13847
|
+
|
|
13848
|
+
declare const ListPublicConnectorsQuery: z.ZodObject<{
|
|
13391
13849
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13392
13850
|
cursor: z.ZodOptional<z.ZodString>;
|
|
13393
|
-
|
|
13394
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13395
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13396
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
13851
|
+
search: z.ZodOptional<z.ZodString>;
|
|
13397
13852
|
}, z.core.$strip>;
|
|
13398
|
-
type
|
|
13399
|
-
interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
13400
|
-
}
|
|
13853
|
+
type ListPublicConnectorsQuery = z.infer<typeof ListPublicConnectorsQuery>;
|
|
13401
13854
|
|
|
13402
|
-
declare const
|
|
13403
|
-
|
|
13404
|
-
|
|
13405
|
-
|
|
13406
|
-
|
|
13407
|
-
|
|
13408
|
-
|
|
13409
|
-
input: z.ZodOptional<z.ZodAny>;
|
|
13410
|
-
output: z.ZodOptional<z.ZodAny>;
|
|
13411
|
-
status: z.ZodEnum<typeof ActionRunLogStatus>;
|
|
13412
|
-
createdAt: z.ZodString;
|
|
13413
|
-
completedAt: z.ZodOptional<z.ZodString>;
|
|
13414
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13415
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
13416
|
-
action: z.ZodOptional<z.ZodObject<{
|
|
13417
|
-
id: z.ZodString;
|
|
13418
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
13419
|
-
key: z.ZodOptional<z.ZodString>;
|
|
13420
|
-
description: z.ZodOptional<z.ZodString>;
|
|
13421
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13422
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
13423
|
-
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
13424
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
13425
|
-
parentUuid: z.ZodOptional<z.ZodString>;
|
|
13426
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
13427
|
-
instanceKey: z.ZodOptional<z.ZodString>;
|
|
13428
|
-
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13429
|
-
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
13430
|
-
config: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
13431
|
-
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
13432
|
-
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
13433
|
-
name: z.ZodString;
|
|
13434
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13435
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13436
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
13437
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13438
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13439
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13440
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13441
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13442
|
-
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13443
|
-
userId: z.ZodOptional<z.ZodString>;
|
|
13444
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
13445
|
-
}, z.core.$strip>>;
|
|
13446
|
-
integration: z.ZodOptional<z.ZodObject<{
|
|
13447
|
-
id: z.ZodString;
|
|
13448
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
13449
|
-
key: z.ZodOptional<z.ZodString>;
|
|
13450
|
-
description: z.ZodOptional<z.ZodString>;
|
|
13451
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13452
|
-
name: z.ZodString;
|
|
13453
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13454
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
13455
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
13456
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
13457
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13458
|
-
logoUri: z.ZodString;
|
|
13459
|
-
connectorId: z.ZodOptional<z.ZodString>;
|
|
13460
|
-
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
13461
|
-
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
13462
|
-
parameters: z.ZodOptional<z.ZodAny>;
|
|
13463
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13464
|
-
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
13465
|
-
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
13466
|
-
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
13467
|
-
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
13468
|
-
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
13469
|
-
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
13470
|
-
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
13471
|
-
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
13472
|
-
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
13473
|
-
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
13474
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13475
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
13476
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13477
|
-
authType: z.ZodOptional<z.ZodEnum<{
|
|
13478
|
-
proxy: "proxy";
|
|
13479
|
-
"integration-app-token": "integration-app-token";
|
|
13480
|
-
"membrane-token": "membrane-token";
|
|
13481
|
-
oauth2: "oauth2";
|
|
13482
|
-
oauth1: "oauth1";
|
|
13483
|
-
"client-credentials": "client-credentials";
|
|
13484
|
-
}>>;
|
|
13485
|
-
}, z.core.$strip>>;
|
|
13486
|
-
connection: z.ZodOptional<z.ZodObject<{
|
|
13487
|
-
id: z.ZodString;
|
|
13488
|
-
name: z.ZodString;
|
|
13489
|
-
userId: z.ZodString;
|
|
13490
|
-
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
13491
|
-
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
13492
|
-
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
13493
|
-
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
13494
|
-
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
13495
|
-
integrationId: z.ZodString;
|
|
13496
|
-
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
13497
|
-
createdAt: z.ZodString;
|
|
13498
|
-
updatedAt: z.ZodString;
|
|
13499
|
-
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
13500
|
-
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
13501
|
-
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
13502
|
-
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
13503
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13504
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13505
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13506
|
-
}, 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>>;
|
|
13507
13862
|
}, z.core.$strip>;
|
|
13508
|
-
type
|
|
13509
|
-
type ActionRunLogRecord = ActionRunLogRecordApiResponse;
|
|
13863
|
+
type ListExternalAppsQuery = z.infer<typeof ListExternalAppsQuery>;
|
|
13510
13864
|
|
|
13511
13865
|
declare const FindDataLinkTablesQuery: z.ZodObject<{
|
|
13512
13866
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -13561,18 +13915,28 @@ interface CreateAppEventTypeRequest extends UpdateAppEventTypeRequest {
|
|
|
13561
13915
|
key: string;
|
|
13562
13916
|
name: string;
|
|
13563
13917
|
}
|
|
13564
|
-
|
|
13565
|
-
|
|
13566
|
-
|
|
13567
|
-
|
|
13568
|
-
|
|
13569
|
-
|
|
13570
|
-
|
|
13571
|
-
|
|
13572
|
-
|
|
13573
|
-
|
|
13574
|
-
|
|
13575
|
-
|
|
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>;
|
|
13576
13940
|
declare const AppEventTypeApiResponse: z.ZodObject<{
|
|
13577
13941
|
id: z.ZodString;
|
|
13578
13942
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -13789,6 +14153,17 @@ declare const ListExternalEventPullsQuery: z.ZodObject<{
|
|
|
13789
14153
|
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventPullStatus>>;
|
|
13790
14154
|
}, z.core.$strip>;
|
|
13791
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>;
|
|
13792
14167
|
declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
13793
14168
|
id: z.ZodString;
|
|
13794
14169
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -14004,6 +14379,75 @@ declare class DependencyError extends MembraneError {
|
|
|
14004
14379
|
constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
|
|
14005
14380
|
}
|
|
14006
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
|
+
|
|
14007
14451
|
declare function getFlowNode(flow: Flow | FlowInstance, nodeKey: string): FlowNode;
|
|
14008
14452
|
declare function getFlowNodeTitle(flow: Flow | FlowInstance, nodeKey: string): string | undefined;
|
|
14009
14453
|
declare function getFlowNodeDescription(flow: Flow | FlowInstance, nodeKey: string): string | undefined;
|
|
@@ -14023,17 +14467,18 @@ interface WorkspaceElementSpec {
|
|
|
14023
14467
|
apiPath: string;
|
|
14024
14468
|
name: string;
|
|
14025
14469
|
namePlural: string;
|
|
14026
|
-
createSchema?: z.ZodObject
|
|
14027
|
-
updateSchema?: z.ZodObject
|
|
14028
|
-
editablePropertiesSchema?: z.ZodObject
|
|
14029
|
-
backwardCompatibleEditablePropertiesSchema?: z.ZodObject
|
|
14030
|
-
exportPropertiesSchema?: z.ZodObject
|
|
14031
|
-
apiResponseSchema?: z.ZodObject
|
|
14032
|
-
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;
|
|
14033
14477
|
isMembraneInterface?: boolean;
|
|
14034
14478
|
isIntegrationLevel?: boolean;
|
|
14035
14479
|
parentFieldKey?: string;
|
|
14036
14480
|
universalParentFieldKey?: string;
|
|
14481
|
+
canBeAddedToPackage?: boolean;
|
|
14037
14482
|
}
|
|
14038
14483
|
interface WorkspaceElements {
|
|
14039
14484
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -15737,6 +16182,7 @@ declare enum UsageType {
|
|
|
15737
16182
|
FILES_UPLOAD_NUMBER = "files-upload-number",
|
|
15738
16183
|
FILES_UPLOAD_SIZE = "files-upload-size",
|
|
15739
16184
|
CUSTOM_CODE_RUNTIME_DURATION = "custom-code-runtime-duration",
|
|
16185
|
+
INSTANT_TASKS_DURATION = "instant-tasks-duration",
|
|
15740
16186
|
MEMBRANE_AGENT = "membrane-agent"
|
|
15741
16187
|
}
|
|
15742
16188
|
interface UsageWithCredits {
|
|
@@ -15786,6 +16232,7 @@ interface App {
|
|
|
15786
16232
|
appUri: string;
|
|
15787
16233
|
categories: string[];
|
|
15788
16234
|
defaultConnectorId: string;
|
|
16235
|
+
basePackageId?: string;
|
|
15789
16236
|
key: string;
|
|
15790
16237
|
logoUri: string;
|
|
15791
16238
|
name: string;
|
|
@@ -16126,26 +16573,22 @@ declare enum AgentSessionState {
|
|
|
16126
16573
|
}
|
|
16127
16574
|
declare const AgentSession: z.ZodObject<{
|
|
16128
16575
|
id: z.ZodString;
|
|
16129
|
-
workspaceId: z.ZodString;
|
|
16130
16576
|
userId: z.ZodOptional<z.ZodString>;
|
|
16131
16577
|
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
16132
16578
|
workspaceElementId: z.ZodString;
|
|
16133
16579
|
type: z.ZodString;
|
|
16134
16580
|
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
16135
|
-
workerId: z.ZodOptional<z.ZodString>;
|
|
16136
|
-
workerUrl: z.ZodOptional<z.ZodString>;
|
|
16137
16581
|
prompt: z.ZodString;
|
|
16138
16582
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
16139
|
-
createdBy: z.ZodString;
|
|
16140
16583
|
lastActivityAt: z.ZodISODateTime;
|
|
16141
|
-
|
|
16142
|
-
updatedAt: z.ZodISODateTime;
|
|
16143
|
-
storedMessagesUri: z.ZodOptional<z.ZodString>;
|
|
16144
|
-
sessionFilesZipUri: z.ZodOptional<z.ZodString>;
|
|
16145
|
-
logs: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
16146
|
-
usage: z.ZodOptional<z.ZodNumber>;
|
|
16584
|
+
title: z.ZodOptional<z.ZodString>;
|
|
16147
16585
|
summary: z.ZodOptional<z.ZodString>;
|
|
16586
|
+
cost: z.ZodOptional<z.ZodNumber>;
|
|
16148
16587
|
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
16588
|
+
usage: z.ZodOptional<z.ZodNumber>;
|
|
16589
|
+
hasWorker: z.ZodBoolean;
|
|
16590
|
+
createdAt: z.ZodISODateTime;
|
|
16591
|
+
updatedAt: z.ZodISODateTime;
|
|
16149
16592
|
}, z.core.$strip>;
|
|
16150
16593
|
type AgentSession = z.infer<typeof AgentSession>;
|
|
16151
16594
|
declare const CreateAgentSession: z.ZodObject<{
|
|
@@ -16164,7 +16607,9 @@ type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
|
16164
16607
|
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
16165
16608
|
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
16166
16609
|
lastActivityAt: z.ZodOptional<z.ZodISODateTime>;
|
|
16610
|
+
title: z.ZodOptional<z.ZodString>;
|
|
16167
16611
|
summary: z.ZodOptional<z.ZodString>;
|
|
16612
|
+
cost: z.ZodOptional<z.ZodNumber>;
|
|
16168
16613
|
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
16169
16614
|
}, z.core.$strip>;
|
|
16170
16615
|
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
@@ -16450,5 +16895,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
16450
16895
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
16451
16896
|
}
|
|
16452
16897
|
|
|
16453
|
-
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, 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 };
|
|
16454
|
-
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,
|
|
16898
|
+
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 };
|
|
16899
|
+
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 };
|