@boomi/embedkit-sdk 1.1.6 → 1.2.1
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/README.md +0 -1
- package/dist/index.cjs +1640 -29
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +562 -83
- package/dist/index.d.ts +562 -83
- package/dist/index.js +1637 -28
- package/dist/index.js.map +1 -1
- package/dist/logger-J0TnVInB.d.cts +13 -0
- package/dist/logger-J0TnVInB.d.ts +13 -0
- package/dist/logger.node.cjs +44 -0
- package/dist/logger.node.cjs.map +1 -0
- package/dist/logger.node.d.cts +5 -0
- package/dist/logger.node.d.ts +5 -0
- package/dist/logger.node.js +9 -0
- package/dist/logger.node.js.map +1 -0
- package/package.json +26 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { L as Logger } from './logger-J0TnVInB.js';
|
|
2
|
+
|
|
1
3
|
/**
|
|
2
4
|
* Boomi EmbedKit component
|
|
3
5
|
*
|
|
4
6
|
* @author generated using openapi-typescript-codegen
|
|
5
7
|
* @support https://bitbucket.org/officialboomi/embedkit
|
|
6
8
|
*/
|
|
9
|
+
type OverrideMode = 'auto' | 'force-parent' | 'force-child' | 'suppress';
|
|
7
10
|
type ApiRequestOptions = {
|
|
8
11
|
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
|
|
9
12
|
readonly url: string;
|
|
@@ -17,6 +20,16 @@ type ApiRequestOptions = {
|
|
|
17
20
|
readonly responseHeader?: string;
|
|
18
21
|
readonly responseType?: string;
|
|
19
22
|
readonly errors?: Record<number, string>;
|
|
23
|
+
/** INTERNAL: per-call override id (rarely used; policy usually decides). */
|
|
24
|
+
overrideAccountId?: string;
|
|
25
|
+
/**
|
|
26
|
+
* INTERNAL: how this call should handle override.
|
|
27
|
+
* - auto: use child if available (default)
|
|
28
|
+
* - force-parent: ignore any child override for this call
|
|
29
|
+
* - force-child: require/attempt child for this call
|
|
30
|
+
* - suppress: synonym of force-parent (explicitly suppress override parameter)
|
|
31
|
+
*/
|
|
32
|
+
overrideMode?: OverrideMode;
|
|
20
33
|
};
|
|
21
34
|
|
|
22
35
|
/**
|
|
@@ -67,6 +80,7 @@ type OpenAPIConfig = {
|
|
|
67
80
|
PASSWORD?: string | Resolver<string> | undefined;
|
|
68
81
|
HEADERS?: Headers | Resolver<Headers> | undefined;
|
|
69
82
|
ENCODE_PATH?: ((path: string) => string) | undefined;
|
|
83
|
+
LOGGER?: Logger;
|
|
70
84
|
};
|
|
71
85
|
declare const OpenAPI: OpenAPIConfig;
|
|
72
86
|
|
|
@@ -7730,6 +7744,8 @@ type Environment = {
|
|
|
7730
7744
|
name?: string;
|
|
7731
7745
|
parentAccount?: string;
|
|
7732
7746
|
parentEnvironment?: string;
|
|
7747
|
+
installed: boolean;
|
|
7748
|
+
isActive: boolean;
|
|
7733
7749
|
};
|
|
7734
7750
|
declare namespace Environment {
|
|
7735
7751
|
/**
|
|
@@ -8612,6 +8628,18 @@ declare class EnvironmentService {
|
|
|
8612
8628
|
* @throws ApiError
|
|
8613
8629
|
*/
|
|
8614
8630
|
updateEnvironmentMapExtension(id: string, requestBody?: EnvironmentMapExtension): CancelablePromise<EnvironmentMapExtension>;
|
|
8631
|
+
/**
|
|
8632
|
+
* Browse Environments with runtime/attachment enrichment.
|
|
8633
|
+
* - classification: 'ALL' | 'PROD' | 'TEST'
|
|
8634
|
+
* - environmentId: optional direct lookup
|
|
8635
|
+
* Returns each environment with:
|
|
8636
|
+
* - installed: boolean (true if any runtime attachment exists)
|
|
8637
|
+
* - isActive: boolean (true if any attached atom is ONLINE; set to false if attachments exist but none online)
|
|
8638
|
+
*/
|
|
8639
|
+
fetchEnvironments(params: {
|
|
8640
|
+
classification?: 'ALL' | 'PROD' | 'TEST';
|
|
8641
|
+
environmentId?: string;
|
|
8642
|
+
}): Promise<EnvironmentQueryResponse>;
|
|
8615
8643
|
}
|
|
8616
8644
|
|
|
8617
8645
|
/**
|
|
@@ -9169,6 +9197,17 @@ type EnvironmentExtensions = {
|
|
|
9169
9197
|
sharedCommunications: SharedCommunications;
|
|
9170
9198
|
tradingPartners: TradingPartners;
|
|
9171
9199
|
};
|
|
9200
|
+
type UpdateResult = {
|
|
9201
|
+
updated: number;
|
|
9202
|
+
skipped: number;
|
|
9203
|
+
failed: number;
|
|
9204
|
+
failures: Array<{
|
|
9205
|
+
id?: string;
|
|
9206
|
+
groupId?: string;
|
|
9207
|
+
error: string;
|
|
9208
|
+
}>;
|
|
9209
|
+
updatedExtensions: EnvironmentExtensions;
|
|
9210
|
+
};
|
|
9172
9211
|
|
|
9173
9212
|
/**
|
|
9174
9213
|
* Boomi EmbedKit component
|
|
@@ -9280,80 +9319,123 @@ type EnvironmentExtensionsQueryConfig = {
|
|
|
9280
9319
|
};
|
|
9281
9320
|
|
|
9282
9321
|
/**
|
|
9283
|
-
*
|
|
9284
|
-
*
|
|
9285
|
-
* @
|
|
9322
|
+
* @file environment.d.ts
|
|
9323
|
+
* @typedef Environment
|
|
9324
|
+
* @license BSD-2-Clause
|
|
9286
9325
|
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9326
|
+
*
|
|
9327
|
+
* @description
|
|
9328
|
+
* Represents an enriched Boomi environment with computed metadata.
|
|
9329
|
+
*
|
|
9330
|
+
* @property {string} id - Unique ID of the environment.
|
|
9331
|
+
* @property {string} name - Human-readable name of the environment.
|
|
9332
|
+
* @property {boolean} installed - Whether the pack is already installed in this environment.
|
|
9333
|
+
* @property {boolean} [isActive] - True if all attached Atoms are ONLINE; otherwise false.
|
|
9287
9334
|
*/
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9335
|
+
/**
|
|
9336
|
+
* Metadata captured when fetching an OAuth2 access token (or similar secure value)
|
|
9337
|
+
* for a specific connection field. Used for audit/UX breadcrumbs in the UI.
|
|
9338
|
+
*/
|
|
9339
|
+
type AccessTokenFieldData = {
|
|
9340
|
+
/** The Boomi Connection ID the token/value belongs to. */
|
|
9341
|
+
connectionId: string;
|
|
9342
|
+
/** The fully-qualified field ID within the connection (e.g., 'oauthOptions/.../@accessToken'). */
|
|
9343
|
+
fieldId: string;
|
|
9344
|
+
/**
|
|
9345
|
+
* The URL that was called to fetch/refresh the token.
|
|
9346
|
+
* Stored for traceability (never store the token value here).
|
|
9347
|
+
*/
|
|
9348
|
+
fetchedURL: string;
|
|
9293
9349
|
};
|
|
9294
|
-
|
|
9295
9350
|
/**
|
|
9296
|
-
*
|
|
9297
|
-
*
|
|
9298
|
-
*
|
|
9299
|
-
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9351
|
+
* UI-side context for mapping: which pane a field belongs to.
|
|
9352
|
+
* - 'source' → inputs (left side)
|
|
9353
|
+
* - 'target' → outputs (right side)
|
|
9300
9354
|
*/
|
|
9301
|
-
|
|
9302
|
-
|
|
9303
|
-
|
|
9304
|
-
|
|
9355
|
+
type UISide = 'source' | 'target';
|
|
9356
|
+
/**
|
|
9357
|
+
* Describes a UI validation/error state for a specific field.
|
|
9358
|
+
* These properties are UI-only and should not be persisted to Boomi.
|
|
9359
|
+
*/
|
|
9360
|
+
type UIFieldError = {
|
|
9361
|
+
/** True if the field currently fails validation. */
|
|
9362
|
+
invalid?: boolean;
|
|
9363
|
+
/** Human-readable error/notice to display in the UI. */
|
|
9364
|
+
message?: string;
|
|
9365
|
+
/** Which side of the mapping canvas the field is on (source/target). */
|
|
9366
|
+
side?: UISide;
|
|
9367
|
+
/** Optional Boomi connection ID associated with the field. */
|
|
9368
|
+
connectionId?: string;
|
|
9369
|
+
/** Friendly or logical field name shown to users. */
|
|
9370
|
+
fieldName?: string;
|
|
9305
9371
|
};
|
|
9306
|
-
declare namespace Oauth2UrlGroupingExpression {
|
|
9307
|
-
enum operator {
|
|
9308
|
-
AND = "and",
|
|
9309
|
-
OR = "or"
|
|
9310
|
-
}
|
|
9311
|
-
}
|
|
9312
|
-
|
|
9313
9372
|
/**
|
|
9314
|
-
*
|
|
9315
|
-
*
|
|
9316
|
-
* @author generated using openapi-typescript-codegen
|
|
9317
|
-
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9373
|
+
* Represents a UI-level notification or error banner/toast.
|
|
9374
|
+
* Purely client-side; do not persist to Boomi.
|
|
9318
9375
|
*/
|
|
9319
|
-
type
|
|
9320
|
-
|
|
9321
|
-
|
|
9322
|
-
|
|
9376
|
+
type UIError = {
|
|
9377
|
+
/**
|
|
9378
|
+
* Whether the banner/toast is currently visible.
|
|
9379
|
+
* If omitted, the renderer may default this to true on creation.
|
|
9380
|
+
*/
|
|
9381
|
+
show?: boolean;
|
|
9382
|
+
/** Visual style/severity of the message (affects color/icon). */
|
|
9383
|
+
errorType: 'info' | 'success' | 'warning' | 'error';
|
|
9384
|
+
/** Short, prominent title for the message (e.g., toast header). */
|
|
9385
|
+
header: string;
|
|
9386
|
+
/** Detailed user-facing text explaining the message. */
|
|
9387
|
+
message: string;
|
|
9388
|
+
/**
|
|
9389
|
+
* Optional machine-readable code (e.g., "1003", "E_AUTH_401") useful for logs,
|
|
9390
|
+
* telemetry, or mapping to help docs.
|
|
9391
|
+
*/
|
|
9392
|
+
code?: string;
|
|
9393
|
+
/**Í
|
|
9394
|
+
* Optional callback invoked when the user dismisses the banner/toast.
|
|
9395
|
+
* Implementers should handle idempotency and be resilient to multiple calls.
|
|
9396
|
+
*/
|
|
9397
|
+
onClose?: () => void;
|
|
9323
9398
|
};
|
|
9324
|
-
declare namespace Oauth2UrlSimpleExpression {
|
|
9325
|
-
enum operator {
|
|
9326
|
-
EQUALS = "EQUALS",
|
|
9327
|
-
LIKE = "LIKE",
|
|
9328
|
-
NOT_EQUALS = "NOT_EQUALS",
|
|
9329
|
-
IS_NULL = "IS_NULL",
|
|
9330
|
-
IS_NOT_NULL = "IS_NOT_NULL",
|
|
9331
|
-
BETWEEN = "BETWEEN",
|
|
9332
|
-
GREATER_THAN = "GREATER_THAN",
|
|
9333
|
-
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
9334
|
-
LESS_THAN = "LESS_THAN",
|
|
9335
|
-
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
9336
|
-
CONTAINS = "CONTAINS",
|
|
9337
|
-
NOT_CONTAINS = "NOT_CONTAINS"
|
|
9338
|
-
}
|
|
9339
|
-
enum property {
|
|
9340
|
-
ENVIRONMENT_ID = "environmentId",
|
|
9341
|
-
EXTENSION_GROUP_ID = "extensionGroupId",
|
|
9342
|
-
CONNECTION_ID = "connectionId",
|
|
9343
|
-
OAUTH_FIELD_ID = "oAuthFieldId",
|
|
9344
|
-
CLIENT_ID = "clientId",
|
|
9345
|
-
CLIENT_SECRET = "clientSecret"
|
|
9346
|
-
}
|
|
9347
|
-
}
|
|
9348
|
-
|
|
9349
9399
|
/**
|
|
9350
|
-
* Boomi
|
|
9351
|
-
*
|
|
9352
|
-
* @author generated using openapi-typescript-codegen
|
|
9353
|
-
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9400
|
+
* Extends a Boomi `Field` with UI-only metadata used for rendering/validation.
|
|
9401
|
+
* The `__ui` bag is ignored by persistence and server APIs.
|
|
9354
9402
|
*/
|
|
9355
|
-
|
|
9356
|
-
|
|
9403
|
+
type FieldWithUI = ConnField & {
|
|
9404
|
+
/** UI-only annotations and validation state for this field. */
|
|
9405
|
+
__ui?: UIFieldError;
|
|
9406
|
+
};
|
|
9407
|
+
type EnvExtMinimal = Pick<EnvironmentExtensions, 'id' | 'environmentId' | 'extensionGroupId' | 'connections' | 'processProperties'>;
|
|
9408
|
+
type MergeConflicts = {
|
|
9409
|
+
connections: Array<{
|
|
9410
|
+
environmentId: string;
|
|
9411
|
+
connectionId: string;
|
|
9412
|
+
fieldId: string;
|
|
9413
|
+
values: string[];
|
|
9414
|
+
}>;
|
|
9415
|
+
processProperties: Array<{
|
|
9416
|
+
environmentId: string;
|
|
9417
|
+
key: string;
|
|
9418
|
+
label?: string;
|
|
9419
|
+
values: string[];
|
|
9420
|
+
}>;
|
|
9421
|
+
};
|
|
9422
|
+
type UpdatePlan = {
|
|
9423
|
+
original: EnvironmentExtensions;
|
|
9424
|
+
payload: EnvironmentExtensions | null;
|
|
9425
|
+
changes: {
|
|
9426
|
+
connections: number;
|
|
9427
|
+
properties: number;
|
|
9428
|
+
};
|
|
9429
|
+
};
|
|
9430
|
+
type ArrayElem<T> = T extends ReadonlyArray<infer U> ? U : never;
|
|
9431
|
+
type Conn = ArrayElem<NonNullable<NonNullable<EnvExtMinimal['connections']>['connection']>>;
|
|
9432
|
+
type ConnField = ArrayElem<NonNullable<NonNullable<Conn['field']>>>;
|
|
9433
|
+
type PGroup = ArrayElem<NonNullable<NonNullable<EnvExtMinimal['processProperties']>['ProcessProperty']>>;
|
|
9434
|
+
type PVal = ArrayElem<NonNullable<NonNullable<PGroup['ProcessPropertyValue']>>>;
|
|
9435
|
+
type CombinedIndex = {
|
|
9436
|
+
byEnvConnField: Map<string, Map<string, Map<string, ConnField>>>;
|
|
9437
|
+
byEnvPropKey: Map<string, Map<string, PVal>>;
|
|
9438
|
+
};
|
|
9357
9439
|
|
|
9358
9440
|
/**
|
|
9359
9441
|
* Boomi EmbedKit component
|
|
@@ -9362,10 +9444,11 @@ type Oauth2UrlExpression = (Oauth2UrlSimpleExpression | Oauth2UrlGroupingExpress
|
|
|
9362
9444
|
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9363
9445
|
*/
|
|
9364
9446
|
|
|
9365
|
-
type
|
|
9366
|
-
|
|
9367
|
-
|
|
9368
|
-
|
|
9447
|
+
type EnvironmentExtensionsQueryResponse = {
|
|
9448
|
+
numberOfResults?: number;
|
|
9449
|
+
queryToken?: string;
|
|
9450
|
+
result?: Array<EnvironmentExtensions>;
|
|
9451
|
+
combined?: Array<EnvExtMinimal>;
|
|
9369
9452
|
};
|
|
9370
9453
|
|
|
9371
9454
|
/**
|
|
@@ -9391,7 +9474,7 @@ type Oauth2Url = {
|
|
|
9391
9474
|
type Oauth2UrlQueryResponse = {
|
|
9392
9475
|
numberOfResults?: number;
|
|
9393
9476
|
queryToken?: string;
|
|
9394
|
-
result?:
|
|
9477
|
+
result?: Oauth2Url;
|
|
9395
9478
|
};
|
|
9396
9479
|
|
|
9397
9480
|
/**
|
|
@@ -9472,9 +9555,137 @@ declare class EnvironmentExtensionsService {
|
|
|
9472
9555
|
* @returns EnvironmentExtensionsQueryResponse Successful request and response.
|
|
9473
9556
|
* @throws ApiError
|
|
9474
9557
|
*/
|
|
9475
|
-
|
|
9558
|
+
fetchOauth2Url(integrationPackInstanceId: string, environmentId: string, connectionId: string, oAuthFieldId: string, clientId: string, clientSecret: string): Promise<Oauth2UrlQueryResponse>;
|
|
9559
|
+
/**
|
|
9560
|
+
* High-level: create plans from combined edits and apply them ---
|
|
9561
|
+
* Uses the SDK’s own planBackport() already in this class.
|
|
9562
|
+
*/
|
|
9563
|
+
updateEnvironmentExtensionsFromCombined(originals: ReadonlyArray<EnvironmentExtensions>, combinedEdited: ReadonlyArray<EnvExtMinimal>): Promise<UpdateResult>;
|
|
9564
|
+
/**
|
|
9565
|
+
* Browse environment extensions for given environments
|
|
9566
|
+
* @param requestBody Possible properties include: environmentId, environmentIds, integrationPackInstanceId
|
|
9567
|
+
* @returns EnvironmentExtensionQueryResponse Successful request and response.
|
|
9568
|
+
* @throws ApiError
|
|
9569
|
+
*/
|
|
9570
|
+
fetchEnvironmentExtensions(params: {
|
|
9571
|
+
environmentId: string;
|
|
9572
|
+
integrationPackInstanceId: string;
|
|
9573
|
+
environmentIds?: string[];
|
|
9574
|
+
}): Promise<EnvironmentExtensionsQueryResponse>;
|
|
9575
|
+
/** Fetch EnvironmentExtensionConnectionStatus for a given connection and fieldId. */
|
|
9576
|
+
fetchExtensionConnectionStatus(integrationPackInstanceId: string, environmentId: string, connectionId: string, fieldId: string): Promise<boolean>;
|
|
9476
9577
|
}
|
|
9477
9578
|
|
|
9579
|
+
/**
|
|
9580
|
+
* @file BrowseSession.ts
|
|
9581
|
+
* @typedef BrowseSession
|
|
9582
|
+
* @license BSD-2-Clause
|
|
9583
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9584
|
+
*
|
|
9585
|
+
* @description
|
|
9586
|
+
* Represents the meta data needed for browsing connector information.
|
|
9587
|
+
*/
|
|
9588
|
+
|
|
9589
|
+
/**
|
|
9590
|
+
* A live browse session context used to fetch/browse connector metadata (e.g., profiles,
|
|
9591
|
+
* objects, fields) within a specific environment/process/connection.
|
|
9592
|
+
*/
|
|
9593
|
+
type BrowseSession = {
|
|
9594
|
+
/** Optional client-side identifier to correlate sessions in the UI. */
|
|
9595
|
+
key?: string;
|
|
9596
|
+
/** Boomi Connection ID to browse against. */
|
|
9597
|
+
connectionId: string;
|
|
9598
|
+
/** Environment ID where the browse should execute. */
|
|
9599
|
+
environmentId: string;
|
|
9600
|
+
/** Process ID associated with the browse operation (when applicable). */
|
|
9601
|
+
processId: string;
|
|
9602
|
+
/** Human-readable connection name (for display purposes). */
|
|
9603
|
+
connectionName: string;
|
|
9604
|
+
/** Atom/Cloud container ID where the browse runs. */
|
|
9605
|
+
containerId: string;
|
|
9606
|
+
/** Server-issued browse session ID, if a session is established. */
|
|
9607
|
+
sessionId?: string;
|
|
9608
|
+
/** Epoch milliseconds when this session expires (if provided). */
|
|
9609
|
+
expiresAt?: number;
|
|
9610
|
+
/**
|
|
9611
|
+
* Mapping identifier used to correlate browse selections with a given map/canvas.
|
|
9612
|
+
* (Typically the Integration Map or Extended Mapping entity ID.)
|
|
9613
|
+
*/
|
|
9614
|
+
mapId: string;
|
|
9615
|
+
/**
|
|
9616
|
+
* Origin of the browse request relative to the mapping UI.
|
|
9617
|
+
* Usually 'source' when browsing inputs or 'target' for outputs.
|
|
9618
|
+
* May include other string values for custom flows.
|
|
9619
|
+
*/
|
|
9620
|
+
candidateSource: string | 'source' | 'target';
|
|
9621
|
+
/**
|
|
9622
|
+
* The connector/operation parameter name this browse satisfies
|
|
9623
|
+
* (e.g., "ObjectName", "ProfileId", "Table", etc.).
|
|
9624
|
+
*/
|
|
9625
|
+
paramName: string;
|
|
9626
|
+
};
|
|
9627
|
+
/**
|
|
9628
|
+
* A browse candidate extends the session with an optional chosen value
|
|
9629
|
+
* (the user’s current selection or a prefilled default).
|
|
9630
|
+
*/
|
|
9631
|
+
type BrowseCandidate = BrowseSession & {
|
|
9632
|
+
/** The selected parameter value (if any), or null to clear a previous selection. */
|
|
9633
|
+
paramValue?: string | null;
|
|
9634
|
+
};
|
|
9635
|
+
/**
|
|
9636
|
+
* An Environment Map Extension along with its associated browse candidates
|
|
9637
|
+
*/
|
|
9638
|
+
type EnvironmentMapExtensionCandidate = {
|
|
9639
|
+
map: EnvironmentMapExtension;
|
|
9640
|
+
candidates?: BrowseCandidate[];
|
|
9641
|
+
requiresBrowseSession: boolean;
|
|
9642
|
+
};
|
|
9643
|
+
/**
|
|
9644
|
+
* Indicates whether the browse session is for a source or target
|
|
9645
|
+
*/
|
|
9646
|
+
type SourceOrTarget = 'source' | 'target' | null;
|
|
9647
|
+
type EnvExts = EnvironmentExtensions | EnvironmentExtensions[];
|
|
9648
|
+
type BrowseFieldOut = {
|
|
9649
|
+
name: string;
|
|
9650
|
+
value?: string;
|
|
9651
|
+
sessionId?: string;
|
|
9652
|
+
};
|
|
9653
|
+
type BrowseRequest = {
|
|
9654
|
+
id: string;
|
|
9655
|
+
Map: {
|
|
9656
|
+
BrowseSettings: {
|
|
9657
|
+
containerId: string;
|
|
9658
|
+
SourceBrowse?: {
|
|
9659
|
+
BrowseFields: BrowseFieldOut[];
|
|
9660
|
+
};
|
|
9661
|
+
DestinationBrowse?: {
|
|
9662
|
+
BrowseFields: BrowseFieldOut[];
|
|
9663
|
+
};
|
|
9664
|
+
};
|
|
9665
|
+
};
|
|
9666
|
+
};
|
|
9667
|
+
type BrowseRequestCandidate = {
|
|
9668
|
+
candidate: BrowseCandidate;
|
|
9669
|
+
request: BrowseRequest;
|
|
9670
|
+
};
|
|
9671
|
+
type BrowseCandidateResponse = {
|
|
9672
|
+
failedCandidates: BrowseCandidate[];
|
|
9673
|
+
successCandidates: BrowseCandidate[];
|
|
9674
|
+
};
|
|
9675
|
+
type BuildOptions = {
|
|
9676
|
+
/**
|
|
9677
|
+
* If true, attach sessionId for each (containerId, connectionId, paramName)
|
|
9678
|
+
* from the BrowseSessionStore (or candidate.sessionId as a fallback).
|
|
9679
|
+
* Default: false
|
|
9680
|
+
*/
|
|
9681
|
+
includeSessions?: boolean;
|
|
9682
|
+
/**
|
|
9683
|
+
* Optional: provide the value to use when a candidate has no paramValue.
|
|
9684
|
+
* Default: undefined (omitted in output).
|
|
9685
|
+
*/
|
|
9686
|
+
defaultValueForEmpty?: (c: BrowseSession) => string | undefined;
|
|
9687
|
+
};
|
|
9688
|
+
|
|
9478
9689
|
/**
|
|
9479
9690
|
* Boomi EmbedKit component
|
|
9480
9691
|
*
|
|
@@ -9555,6 +9766,16 @@ declare class EnvironmentMapExtensionService {
|
|
|
9555
9766
|
* @throws ApiError
|
|
9556
9767
|
*/
|
|
9557
9768
|
executeEnvironmentMapExtension(id: string, requestBody?: EnvironmentMapExtension): CancelablePromise<EnvironmentMapExtension>;
|
|
9769
|
+
/** fetch all maps for an environment and integrationPackInstance */
|
|
9770
|
+
fetchAllMaps(integrationPackInstanceId: string, environmentId: string): Promise<EnvironmentMapExtensionCandidate[]>;
|
|
9771
|
+
/** fetch all maps for an environment and integrationPackInstance */
|
|
9772
|
+
updateEnvironmentMapExtension(requestBody: EnvironmentMapExtension): CancelablePromise<EnvironmentMapExtension>;
|
|
9773
|
+
/** try to authenticate the maps for dynamic browsing
|
|
9774
|
+
* Todo: return both failed and succeeded candidates
|
|
9775
|
+
*/
|
|
9776
|
+
executeDynamicBrowse(candidates: BrowseCandidate[]): Promise<BrowseCandidateResponse>;
|
|
9777
|
+
/** call execute on each map extension that contains a source or target browse */
|
|
9778
|
+
executeMapFunctionBrowse(originals: EnvironmentExtensions[], updated: EnvExtMinimal[], integrationPackInstanceId: string, environmentId: string): Promise<BrowseCandidateResponse>;
|
|
9558
9779
|
}
|
|
9559
9780
|
|
|
9560
9781
|
/**
|
|
@@ -11768,6 +11989,9 @@ type ExecutionSummaryRecordQueryResponse = {
|
|
|
11768
11989
|
numberOfResults?: number;
|
|
11769
11990
|
queryToken?: string;
|
|
11770
11991
|
result?: Array<ExecutionSummaryRecord>;
|
|
11992
|
+
page?: number;
|
|
11993
|
+
pageSize?: number;
|
|
11994
|
+
totalPages?: number;
|
|
11771
11995
|
};
|
|
11772
11996
|
|
|
11773
11997
|
/**
|
|
@@ -11796,6 +12020,19 @@ declare class ExecutionSummaryRecordService {
|
|
|
11796
12020
|
* @throws ApiError
|
|
11797
12021
|
*/
|
|
11798
12022
|
queryMoreExecutionSummaryRecord(requestBody: string): CancelablePromise<ExecutionSummaryRecordQueryResponse>;
|
|
12023
|
+
fetchExecutionRecordsByIntegrationPack(params: {
|
|
12024
|
+
integrationPackInstanceId: string;
|
|
12025
|
+
search?: string;
|
|
12026
|
+
page?: number;
|
|
12027
|
+
pageSize?: number;
|
|
12028
|
+
maxRuns?: number;
|
|
12029
|
+
maxConcurrent?: number;
|
|
12030
|
+
backoff?: {
|
|
12031
|
+
tries?: number;
|
|
12032
|
+
baseMs?: number;
|
|
12033
|
+
jitterMs?: number;
|
|
12034
|
+
};
|
|
12035
|
+
}): Promise<ExecutionSummaryRecordQueryResponse>;
|
|
11799
12036
|
}
|
|
11800
12037
|
|
|
11801
12038
|
/**
|
|
@@ -13315,6 +13552,26 @@ type IntegrationPackInstance = {
|
|
|
13315
13552
|
* The name of the installed instance of the integration pack. You can set this value only in the case of multi-install integration packs; its purpose is to distinguish between instances.
|
|
13316
13553
|
*/
|
|
13317
13554
|
integrationPackOverrideName?: string;
|
|
13555
|
+
/**
|
|
13556
|
+
* The environment ID associated with the integration pack instance.
|
|
13557
|
+
*/
|
|
13558
|
+
environmentId?: string;
|
|
13559
|
+
/**
|
|
13560
|
+
* The integration pack name.
|
|
13561
|
+
*/
|
|
13562
|
+
integrationPackName?: string;
|
|
13563
|
+
/**
|
|
13564
|
+
* The integration pack description.
|
|
13565
|
+
*/
|
|
13566
|
+
integrationPackDescription?: string;
|
|
13567
|
+
/**
|
|
13568
|
+
* Is the integration pack installed?
|
|
13569
|
+
*/
|
|
13570
|
+
installed?: boolean;
|
|
13571
|
+
/**
|
|
13572
|
+
* Is the integrationpack a single or multi install type?
|
|
13573
|
+
*/
|
|
13574
|
+
installationType?: 'SINGLE' | 'MULTI';
|
|
13318
13575
|
};
|
|
13319
13576
|
|
|
13320
13577
|
/**
|
|
@@ -13354,6 +13611,22 @@ type IntegrationPackInstanceBulkResponse = {
|
|
|
13354
13611
|
}>;
|
|
13355
13612
|
};
|
|
13356
13613
|
|
|
13614
|
+
/**
|
|
13615
|
+
* Boomi EmbedKit component
|
|
13616
|
+
*
|
|
13617
|
+
* @author generated using openapi-typescript-codegen
|
|
13618
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
13619
|
+
*/
|
|
13620
|
+
|
|
13621
|
+
type IntegrationPackInstanceQueryResponse = {
|
|
13622
|
+
numberOfResults?: number;
|
|
13623
|
+
queryToken?: string;
|
|
13624
|
+
result?: Array<IntegrationPackInstance>;
|
|
13625
|
+
page?: number;
|
|
13626
|
+
pageSize?: number;
|
|
13627
|
+
totalPages?: number;
|
|
13628
|
+
};
|
|
13629
|
+
|
|
13357
13630
|
/**
|
|
13358
13631
|
* Boomi EmbedKit component
|
|
13359
13632
|
*
|
|
@@ -13427,19 +13700,6 @@ type IntegrationPackInstanceQueryConfig = {
|
|
|
13427
13700
|
};
|
|
13428
13701
|
};
|
|
13429
13702
|
|
|
13430
|
-
/**
|
|
13431
|
-
* Boomi EmbedKit component
|
|
13432
|
-
*
|
|
13433
|
-
* @author generated using openapi-typescript-codegen
|
|
13434
|
-
* @support https://bitbucket.org/officialboomi/embedkit
|
|
13435
|
-
*/
|
|
13436
|
-
|
|
13437
|
-
type IntegrationPackInstanceQueryResponse = {
|
|
13438
|
-
numberOfResults?: number;
|
|
13439
|
-
queryToken?: string;
|
|
13440
|
-
result?: Array<IntegrationPackInstance>;
|
|
13441
|
-
};
|
|
13442
|
-
|
|
13443
13703
|
/**
|
|
13444
13704
|
* Boomi EmbedKit component
|
|
13445
13705
|
*
|
|
@@ -13500,6 +13760,41 @@ declare class IntegrationPackInstanceService {
|
|
|
13500
13760
|
* @throws ApiError
|
|
13501
13761
|
*/
|
|
13502
13762
|
queryMoreIntegrationPackInstance(requestBody: string): CancelablePromise<IntegrationPackInstanceQueryResponse>;
|
|
13763
|
+
/**
|
|
13764
|
+
* Browse Integration Pack Instances for an Account Group
|
|
13765
|
+
* @param requestBody Possible properties include: accountGroup (name), search (name/overrideName), page, pageSize
|
|
13766
|
+
* @returns IntegrationPackInstanceQueryResponse Successful request and response.
|
|
13767
|
+
* @throws ApiError
|
|
13768
|
+
*/
|
|
13769
|
+
fetchIntegrationPackInstances(params: {
|
|
13770
|
+
accountGroup: string;
|
|
13771
|
+
search?: string;
|
|
13772
|
+
page?: number;
|
|
13773
|
+
pageSize?: number;
|
|
13774
|
+
}): Promise<IntegrationPackInstanceQueryResponse>;
|
|
13775
|
+
/**
|
|
13776
|
+
* Create and attach an Integration Pack Instance
|
|
13777
|
+
* @param requestBody Possible properties include: integrationPackId, isSingleInstall, environmentId, integrationPackOverrideName, accountGroupName (for AG-mapped display name)
|
|
13778
|
+
* @returns IntegrationPackInstanceQueryResponse Successful request and response.
|
|
13779
|
+
* @throws ApiError
|
|
13780
|
+
*/
|
|
13781
|
+
createAndAttachIntegrationPackInstance(params: {
|
|
13782
|
+
integrationPackId: string;
|
|
13783
|
+
isSingleInstall: boolean;
|
|
13784
|
+
environmentId: string;
|
|
13785
|
+
integrationPackOverrideName?: string;
|
|
13786
|
+
accountGroupName?: string;
|
|
13787
|
+
}): Promise<IntegrationPackInstance>;
|
|
13788
|
+
/**
|
|
13789
|
+
* List Account Group Publisher Packs
|
|
13790
|
+
* @param requestBody Possible properties include: accountGroup (name)
|
|
13791
|
+
* @returns IntegrationPackInstanceQueryResponse Successful request and response.
|
|
13792
|
+
* @throws ApiError
|
|
13793
|
+
*/
|
|
13794
|
+
listAccountGroupPublisherPacks(params: {
|
|
13795
|
+
accountGroup: string;
|
|
13796
|
+
}): Promise<any[]>;
|
|
13797
|
+
private resolvePackNameFromAccountGroup;
|
|
13503
13798
|
}
|
|
13504
13799
|
|
|
13505
13800
|
/**
|
|
@@ -15662,6 +15957,14 @@ declare class ProcessService {
|
|
|
15662
15957
|
* @throws ApiError
|
|
15663
15958
|
*/
|
|
15664
15959
|
queryMoreProcess(requestBody: string): CancelablePromise<ProcessQueryResponse>;
|
|
15960
|
+
/**
|
|
15961
|
+
* Triggers execution of all processes for an Integration Pack Instance
|
|
15962
|
+
* This operation triggers the execution of all processes associated with the specified Integration Pack Instance ID across all atoms in the specified environment.
|
|
15963
|
+
* @param requestBody
|
|
15964
|
+
* @returns ProcessQueryResponse Successful request and response.
|
|
15965
|
+
* @throws ApiError
|
|
15966
|
+
*/
|
|
15967
|
+
runAllProcesses(integrationPackInstanceId: string, environmentId: string): Promise<string[]>;
|
|
15665
15968
|
}
|
|
15666
15969
|
|
|
15667
15970
|
/**
|
|
@@ -16140,6 +16443,15 @@ declare class ProcessSchedulesService {
|
|
|
16140
16443
|
* @throws ApiError
|
|
16141
16444
|
*/
|
|
16142
16445
|
queryMoreProcessSchedules(requestBody: string): CancelablePromise<ProcessSchedulesQueryResponse>;
|
|
16446
|
+
/**
|
|
16447
|
+
* Fetch the first ProcessSchedules that matches any process on any atom in the environment.
|
|
16448
|
+
* Returns { numberOfResults, result: ProcessSchedules[] }.
|
|
16449
|
+
*/
|
|
16450
|
+
fetchProcessSchedules(integrationPackInstanceId: string, environmentId: string): Promise<ProcessSchedulesQueryResponse>;
|
|
16451
|
+
/**
|
|
16452
|
+
* Updates all ProcessSchedules for all processes on all atoms in the environment.
|
|
16453
|
+
*/
|
|
16454
|
+
updateAllProcessSchedules(integrationPackInstanceId: string, environmentId: string, schedules: Schedule[]): Promise<ProcessSchedules[]>;
|
|
16143
16455
|
}
|
|
16144
16456
|
|
|
16145
16457
|
/**
|
|
@@ -22305,6 +22617,9 @@ declare class ApiError extends Error {
|
|
|
22305
22617
|
constructor(request: ApiRequestOptions, response: ApiResult, message: string);
|
|
22306
22618
|
}
|
|
22307
22619
|
|
|
22620
|
+
declare function redactHeaders(h: any): any;
|
|
22621
|
+
declare function redactBody(body: unknown): unknown;
|
|
22622
|
+
|
|
22308
22623
|
/**
|
|
22309
22624
|
* Boomi EmbedKit component
|
|
22310
22625
|
*
|
|
@@ -22374,6 +22689,82 @@ declare namespace GroupingExpression {
|
|
|
22374
22689
|
|
|
22375
22690
|
type JavaCorretto8Upgrade = JavaUpgrade;
|
|
22376
22691
|
|
|
22692
|
+
/**
|
|
22693
|
+
* Boomi EmbedKit component
|
|
22694
|
+
*
|
|
22695
|
+
* @author generated using openapi-typescript-codegen
|
|
22696
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
22697
|
+
*/
|
|
22698
|
+
|
|
22699
|
+
type Oauth2UrlGroupingExpression = {
|
|
22700
|
+
nestedExpression?: Array<Oauth2UrlExpression>;
|
|
22701
|
+
operator: Oauth2UrlGroupingExpression.operator;
|
|
22702
|
+
};
|
|
22703
|
+
declare namespace Oauth2UrlGroupingExpression {
|
|
22704
|
+
enum operator {
|
|
22705
|
+
AND = "and",
|
|
22706
|
+
OR = "or"
|
|
22707
|
+
}
|
|
22708
|
+
}
|
|
22709
|
+
|
|
22710
|
+
/**
|
|
22711
|
+
* Boomi EmbedKit component
|
|
22712
|
+
*
|
|
22713
|
+
* @author generated using openapi-typescript-codegen
|
|
22714
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
22715
|
+
*/
|
|
22716
|
+
type Oauth2UrlSimpleExpression = {
|
|
22717
|
+
argument?: Array<string>;
|
|
22718
|
+
operator: Oauth2UrlSimpleExpression.operator;
|
|
22719
|
+
property: Oauth2UrlSimpleExpression.property;
|
|
22720
|
+
};
|
|
22721
|
+
declare namespace Oauth2UrlSimpleExpression {
|
|
22722
|
+
enum operator {
|
|
22723
|
+
EQUALS = "EQUALS",
|
|
22724
|
+
LIKE = "LIKE",
|
|
22725
|
+
NOT_EQUALS = "NOT_EQUALS",
|
|
22726
|
+
IS_NULL = "IS_NULL",
|
|
22727
|
+
IS_NOT_NULL = "IS_NOT_NULL",
|
|
22728
|
+
BETWEEN = "BETWEEN",
|
|
22729
|
+
GREATER_THAN = "GREATER_THAN",
|
|
22730
|
+
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
22731
|
+
LESS_THAN = "LESS_THAN",
|
|
22732
|
+
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
22733
|
+
CONTAINS = "CONTAINS",
|
|
22734
|
+
NOT_CONTAINS = "NOT_CONTAINS"
|
|
22735
|
+
}
|
|
22736
|
+
enum property {
|
|
22737
|
+
ENVIRONMENT_ID = "environmentId",
|
|
22738
|
+
EXTENSION_GROUP_ID = "extensionGroupId",
|
|
22739
|
+
CONNECTION_ID = "connectionId",
|
|
22740
|
+
OAUTH_FIELD_ID = "oAuthFieldId",
|
|
22741
|
+
CLIENT_ID = "clientId",
|
|
22742
|
+
CLIENT_SECRET = "clientSecret"
|
|
22743
|
+
}
|
|
22744
|
+
}
|
|
22745
|
+
|
|
22746
|
+
/**
|
|
22747
|
+
* Boomi EmbedKit component
|
|
22748
|
+
*
|
|
22749
|
+
* @author generated using openapi-typescript-codegen
|
|
22750
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
22751
|
+
*/
|
|
22752
|
+
|
|
22753
|
+
type Oauth2UrlExpression = (Oauth2UrlSimpleExpression | Oauth2UrlGroupingExpression);
|
|
22754
|
+
|
|
22755
|
+
/**
|
|
22756
|
+
* Boomi EmbedKit component
|
|
22757
|
+
*
|
|
22758
|
+
* @author generated using openapi-typescript-codegen
|
|
22759
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
22760
|
+
*/
|
|
22761
|
+
|
|
22762
|
+
type Oauth2UrlQueryConfig = {
|
|
22763
|
+
QueryFilter: {
|
|
22764
|
+
expression: Oauth2UrlExpression;
|
|
22765
|
+
};
|
|
22766
|
+
};
|
|
22767
|
+
|
|
22377
22768
|
/**
|
|
22378
22769
|
* Boomi EmbedKit component
|
|
22379
22770
|
*
|
|
@@ -22390,4 +22781,92 @@ type SimpleExpression = (Expression & {
|
|
|
22390
22781
|
property: string;
|
|
22391
22782
|
});
|
|
22392
22783
|
|
|
22393
|
-
export { type AS2BasicAuthInfo, AS2CommunicationOptions, type AS2ConnectorRecord, type AS2ConnectorRecordExpression, AS2ConnectorRecordGroupingExpression, type AS2ConnectorRecordQueryConfig, type AS2ConnectorRecordQueryResponse, AS2ConnectorRecordSimpleExpression, AS2MDNOptions, AS2MessageOptions, type AS2MyCompanyInfo, type AS2PartnerInfo, type AS2ReceiveOptions, type AS2SendOptions, AS2SendSettings, Account, AccountBulkRequest, type AccountBulkResponse, AccountCloudAttachmentProperties, type AccountCloudAttachmentPropertiesAsyncResponse, AccountCloudAttachmentPropertiesService, type AccountCloudAttachmentQuota, AccountCloudAttachmentQuotaBulkRequest, type AccountCloudAttachmentQuotaBulkResponse, AccountCloudAttachmentQuotaService, type AccountExpression, AccountGroup, type AccountGroupAccount, type AccountGroupAccountExpression, AccountGroupAccountGroupingExpression, type AccountGroupAccountQueryConfig, type AccountGroupAccountQueryResponse, AccountGroupAccountService, AccountGroupAccountSimpleExpression, AccountGroupBulkRequest, type AccountGroupBulkResponse, type AccountGroupExpression, AccountGroupGroupingExpression, AccountGroupIntegrationPack, AccountGroupIntegrationPackBulkRequest, type AccountGroupIntegrationPackBulkResponse, type AccountGroupIntegrationPackExpression, AccountGroupIntegrationPackGroupingExpression, type AccountGroupIntegrationPackQueryConfig, type AccountGroupIntegrationPackQueryResponse, AccountGroupIntegrationPackService, AccountGroupIntegrationPackSimpleExpression, type AccountGroupQueryConfig, type AccountGroupQueryResponse, AccountGroupService, AccountGroupSimpleExpression, type AccountGroupUserRole, type AccountGroupUserRoleExpression, AccountGroupUserRoleGroupingExpression, type AccountGroupUserRoleQueryConfig, type AccountGroupUserRoleQueryResponse, AccountGroupUserRoleService, AccountGroupUserRoleSimpleExpression, AccountGroupingExpression, AccountProvisionService, type AccountQueryConfig, type AccountQueryResponse, type AccountSSOConfig, AccountSSOConfigBulkRequest, type AccountSSOConfigBulkResponse, AccountService, AccountSimpleExpression, AccountSsoConfigService, type AccountUserFederation, type AccountUserFederationExpression, AccountUserFederationGroupingExpression, type AccountUserFederationQueryConfig, type AccountUserFederationQueryResponse, AccountUserFederationService, AccountUserFederationSimpleExpression, type AccountUserRole, type AccountUserRoleExpression, AccountUserRoleGroupingExpression, type AccountUserRoleQueryConfig, type AccountUserRoleQueryResponse, AccountUserRoleService, AccountUserRoleSimpleExpression, AllDocuments, ApiError, ApiUsageCount, type ApiUsageCountExpression, ApiUsageCountGroupingExpression, type ApiUsageCountQueryConfig, type ApiUsageCountQueryResponse, ApiUsageCountService, ApiUsageCountSimpleExpression, As2ConnectorRecordService, type AsyncOperationTokenResult, type AsyncToken, Atom, type AtomAS2Artifacts, AtomAs2ArtifactsService, AtomBulkRequest, type AtomBulkResponse, type AtomConnectionFieldExtensionSummary, type AtomConnectionFieldExtensionSummaryExpression, AtomConnectionFieldExtensionSummaryGroupingExpression, type AtomConnectionFieldExtensionSummaryQueryConfig, type AtomConnectionFieldExtensionSummaryQueryResponse, AtomConnectionFieldExtensionSummaryService, AtomConnectionFieldExtensionSummarySimpleExpression, type AtomConnectorVersions, AtomConnectorVersionsBulkRequest, type AtomConnectorVersionsBulkResponse, AtomConnectorVersionsService, type AtomCounters, type AtomCountersAsyncResponse, AtomCountersService, type AtomDiskSpace, type AtomDiskSpaceAsyncResponse, type AtomDiskSpaceDirectory, AtomDiskSpaceService, type AtomExpression, AtomGroupingExpression, type AtomLog, AtomLogService, type AtomPurge, AtomPurgeService, type AtomQueryConfig, type AtomQueryResponse, type AtomSecurityPolicies, type AtomSecurityPoliciesAsyncResponse, AtomSecurityPoliciesService, type AtomSecurityPoliciesType, type AtomSecurityPolicy, type AtomSecurityPolicyArgumentType, AtomService, AtomSimpleExpression, type AtomStartupProperties, AtomStartupPropertiesBulkRequest, type AtomStartupPropertiesBulkResponse, AtomStartupPropertiesService, type AtomWorkerLog, AtomWorkerLogService, type AttachmentInfo, type AuditLog, AuditLogBulkRequest, type AuditLogBulkResponse, type AuditLogExpression, AuditLogGroupingExpression, type AuditLogProperty, type AuditLogQueryConfig, type AuditLogQueryResponse, AuditLogService, AuditLogSimpleExpression, BaseHttpRequest, Boomi, type Branch, BranchBulkRequest, type BranchBulkResponse, type BranchExpression, BranchGroupingExpression, type BranchQueryConfig, type BranchQueryResponse, BranchService, BranchSimpleExpression, type BrowseField, type BulkId, CancelError, CancelExecutionService, CancelablePromise, ChangeListenerStatusRequest, ChangeListenerStatusService, type ClearQueueRequest, ClearQueueService, type Cloud, type CloudAtom, CloudBulkRequest, type CloudBulkResponse, type CloudExpression, CloudGroupingExpression, CloudManagedSecretConfig, type CloudQueryConfig, type CloudQueryResponse, CloudService, CloudSimpleExpression, type CompDiffAttribute, CompDiffConfig, type CompDiffElement, type Component, type ComponentAtomAttachment, type ComponentAtomAttachmentExpression, ComponentAtomAttachmentGroupingExpression, type ComponentAtomAttachmentQueryConfig, type ComponentAtomAttachmentQueryResponse, ComponentAtomAttachmentService, ComponentAtomAttachmentSimpleExpression, ComponentBulkRequest, type ComponentBulkResponse, type ComponentDiffRequest, ComponentDiffRequestBulkRequest, type ComponentDiffRequestBulkResponse, ComponentDiffRequestService, type ComponentDiffResponseCreate, type ComponentEnvironmentAttachment, type ComponentEnvironmentAttachmentExpression, ComponentEnvironmentAttachmentGroupingExpression, type ComponentEnvironmentAttachmentQueryConfig, type ComponentEnvironmentAttachmentQueryResponse, ComponentEnvironmentAttachmentService, ComponentEnvironmentAttachmentSimpleExpression, type ComponentInfo, type ComponentMergeConfig, type ComponentMergeConfigs, ComponentMetadata, ComponentMetadataBulkRequest, type ComponentMetadataBulkResponse, type ComponentMetadataExpression, ComponentMetadataGroupingExpression, type ComponentMetadataQueryConfig, type ComponentMetadataQueryResponse, ComponentMetadataService, ComponentMetadataSimpleExpression, type ComponentReference, ComponentReferenceBulkRequest, type ComponentReferenceBulkResponse, type ComponentReferenceExpression, ComponentReferenceGroupingExpression, type ComponentReferenceQueryConfig, type ComponentReferenceQueryResponse, ComponentReferenceService, ComponentReferenceSimpleExpression, ComponentService, type Connection, type ConnectionLicensingDownload, type ConnectionLicensingReport, ConnectionLicensingReportService, type Connections, type Connector, ConnectorBulkRequest, type ConnectorBulkResponse, type ConnectorDocument, type ConnectorDocumentDownload, ConnectorDocumentService, type ConnectorExpression, type ConnectorField, type ConnectorFields, ConnectorGroupingExpression, type ConnectorQueryConfig, type ConnectorQueryResponse, ConnectorService, ConnectorSimpleExpression, type ConnectorVersion, type ContactInfo, type Counter, type CrossReference, type CrossReferenceInputs, type CrossReferenceOutputs, type CrossReferenceParameter, type CrossReferenceRow, type CrossReferenceRows, type CrossReferences, type CustomPartnerInfo, type CustomProperties, CustomTrackedField, type CustomTrackedFieldExpression, CustomTrackedFieldGroupingExpression, type CustomTrackedFieldQueryConfig, type CustomTrackedFieldQueryResponse, CustomTrackedFieldService, CustomTrackedFieldSimpleExpression, type DefaultOFTPConnectionSettings, type DefaultOFTPPartnerSendSettings, type DeployedExpiredCertificate, type DeployedExpiredCertificateExpression, DeployedExpiredCertificateGroupingExpression, type DeployedExpiredCertificateQueryConfig, type DeployedExpiredCertificateQueryResponse, DeployedExpiredCertificateService, DeployedExpiredCertificateSimpleExpression, DeployedPackage, DeployedPackageBulkRequest, type DeployedPackageBulkResponse, type DeployedPackageExpression, DeployedPackageGroupingExpression, type DeployedPackageQueryConfig, type DeployedPackageQueryResponse, DeployedPackageService, DeployedPackageSimpleExpression, type DeployedProcess, Deployment, DeploymentBulkRequest, type DeploymentBulkResponse, type DeploymentExpression, DeploymentGroupingExpression, type DeploymentQueryConfig, type DeploymentQueryResponse, DeploymentService, DeploymentSimpleExpression, DiskCommunicationOptions, DiskGetOptions, DiskSendOptions, type DocCacheKeyInput, type DocCacheKeyInputs, type DocCacheProfileParameter, type DocCacheProfileParameters, type Document, type DocumentCountAccount, type DocumentCountAccountExpression, type DocumentCountAccountGroup, type DocumentCountAccountGroupExpression, DocumentCountAccountGroupGroupingExpression, type DocumentCountAccountGroupQueryConfig, type DocumentCountAccountGroupQueryResponse, DocumentCountAccountGroupService, DocumentCountAccountGroupSimpleExpression, DocumentCountAccountGroupingExpression, type DocumentCountAccountQueryConfig, type DocumentCountAccountQueryResponse, DocumentCountAccountService, DocumentCountAccountSimpleExpression, type DynamicProcessProperty, type EDIFACTConnectorRecord, type EDIFACTConnectorRecordExpression, EDIFACTConnectorRecordGroupingExpression, type EDIFACTConnectorRecordQueryConfig, type EDIFACTConnectorRecordQueryResponse, EDIFACTConnectorRecordSimpleExpression, type EdiCustomConnectorRecord, type EdiCustomConnectorRecordExpression, EdiCustomConnectorRecordGroupingExpression, type EdiCustomConnectorRecordQueryConfig, type EdiCustomConnectorRecordQueryResponse, EdiCustomConnectorRecordService, EdiCustomConnectorRecordSimpleExpression, EdiDelimiter, EdiSegmentTerminator, EdifactConnectorRecordService, type EdifactControlInfo, EdifactOptions, type EdifactPartnerInfo, type Element, type EncryptedValue, type EncryptedValues, Environment, type EnvironmentAtomAttachment, type EnvironmentAtomAttachmentExpression, EnvironmentAtomAttachmentGroupingExpression, type EnvironmentAtomAttachmentQueryConfig, type EnvironmentAtomAttachmentQueryResponse, EnvironmentAtomAttachmentService, EnvironmentAtomAttachmentSimpleExpression, EnvironmentBulkRequest, type EnvironmentBulkResponse, type EnvironmentConnectionFieldExtensionSummary, type EnvironmentConnectionFieldExtensionSummaryExpression, EnvironmentConnectionFieldExtensionSummaryGroupingExpression, type EnvironmentConnectionFieldExtensionSummaryQueryConfig, type EnvironmentConnectionFieldExtensionSummaryQueryResponse, EnvironmentConnectionFieldExtensionSummaryService, EnvironmentConnectionFieldExtensionSummarySimpleExpression, type EnvironmentExpression, type EnvironmentExtensions, EnvironmentExtensionsBulkRequest, type EnvironmentExtensionsBulkResponse, type EnvironmentExtensionsExpression, EnvironmentExtensionsGroupingExpression, type EnvironmentExtensionsQueryConfig, type EnvironmentExtensionsQueryResponse, EnvironmentExtensionsService, EnvironmentExtensionsSimpleExpression, EnvironmentGroupingExpression, type EnvironmentMapExtension, EnvironmentMapExtensionBulkRequest, type EnvironmentMapExtensionBulkResponse, type EnvironmentMapExtensionExternalComponent, type EnvironmentMapExtensionExternalComponentExpression, EnvironmentMapExtensionExternalComponentGroupingExpression, type EnvironmentMapExtensionExternalComponentQueryConfig, type EnvironmentMapExtensionExternalComponentQueryResponse, EnvironmentMapExtensionExternalComponentService, EnvironmentMapExtensionExternalComponentSimpleExpression, EnvironmentMapExtensionService, type EnvironmentMapExtensionUserDefinedFunction, EnvironmentMapExtensionUserDefinedFunctionBulkRequest, type EnvironmentMapExtensionUserDefinedFunctionBulkResponse, EnvironmentMapExtensionUserDefinedFunctionService, type EnvironmentMapExtensionUserDefinedFunctionSummary, type EnvironmentMapExtensionUserDefinedFunctionSummaryExpression, EnvironmentMapExtensionUserDefinedFunctionSummaryGroupingExpression, type EnvironmentMapExtensionUserDefinedFunctionSummaryQueryConfig, type EnvironmentMapExtensionUserDefinedFunctionSummaryQueryResponse, EnvironmentMapExtensionUserDefinedFunctionSummaryService, EnvironmentMapExtensionUserDefinedFunctionSummarySimpleExpression, type EnvironmentMapExtensionsSummary, type EnvironmentMapExtensionsSummaryExpression, EnvironmentMapExtensionsSummaryGroupingExpression, type EnvironmentMapExtensionsSummaryQueryConfig, type EnvironmentMapExtensionsSummaryQueryResponse, EnvironmentMapExtensionsSummaryService, EnvironmentMapExtensionsSummarySimpleExpression, type EnvironmentQueryConfig, type EnvironmentQueryResponse, type EnvironmentRole, EnvironmentRoleBulkRequest, type EnvironmentRoleBulkResponse, type EnvironmentRoleExpression, EnvironmentRoleGroupingExpression, type EnvironmentRoleQueryConfig, type EnvironmentRoleQueryResponse, EnvironmentRoleService, EnvironmentRoleSimpleExpression, EnvironmentService, EnvironmentSimpleExpression, type Event, type EventExpression, EventGroupingExpression, type EventQueryConfig, type EventQueryResponse, EventService, EventSimpleExpression, ExecuteProcessService, type ExecutionArtifacts, ExecutionArtifactsService, type ExecutionConnector, type ExecutionConnectorExpression, ExecutionConnectorGroupingExpression, type ExecutionConnectorQueryConfig, type ExecutionConnectorQueryResponse, ExecutionConnectorService, ExecutionConnectorSimpleExpression, type ExecutionCountAccount, type ExecutionCountAccountExpression, type ExecutionCountAccountGroup, type ExecutionCountAccountGroupExpression, ExecutionCountAccountGroupGroupingExpression, type ExecutionCountAccountGroupQueryConfig, type ExecutionCountAccountGroupQueryResponse, ExecutionCountAccountGroupService, ExecutionCountAccountGroupSimpleExpression, ExecutionCountAccountGroupingExpression, type ExecutionCountAccountQueryConfig, type ExecutionCountAccountQueryResponse, ExecutionCountAccountService, ExecutionCountAccountSimpleExpression, ExecutionRecord, type ExecutionRecordExpression, ExecutionRecordGroupingExpression, type ExecutionRecordQueryConfig, type ExecutionRecordQueryResponse, ExecutionRecordService, ExecutionRecordSimpleExpression, type ExecutionRequest, type ExecutionRequestDynamicProcessProperties, type ExecutionRequestProcessProperties, ExecutionRequestService, type ExecutionSummaryRecord, type ExecutionSummaryRecordExpression, ExecutionSummaryRecordGroupingExpression, type ExecutionSummaryRecordQueryConfig, type ExecutionSummaryRecordQueryResponse, ExecutionSummaryRecordService, ExecutionSummaryRecordSimpleExpression, type Expression, FTPCommunicationOptions, FTPGetOptions, FTPSSLOptions, FTPSendOptions, FTPSettings, type Field, type FieldSummary, type Folder, FolderBulkRequest, type FolderBulkResponse, type FolderExpression, FolderGroupingExpression, type FolderQueryConfig, type FolderQueryResponse, FolderService, FolderSimpleExpression, GSControlInfo, GenericConnectorRecord, GenericConnectorRecordBulkRequest, type GenericConnectorRecordBulkResponse, type GenericConnectorRecordExpression, GenericConnectorRecordGroupingExpression, type GenericConnectorRecordQueryConfig, type GenericConnectorRecordQueryResponse, GenericConnectorRecordService, GenericConnectorRecordSimpleExpression, GetAssignableRolesService, GroupingExpression, type HDType, type HL7ConnectorRecord, type HL7ConnectorRecordExpression, HL7ConnectorRecordGroupingExpression, type HL7ConnectorRecordQueryConfig, type HL7ConnectorRecordQueryResponse, HL7ConnectorRecordSimpleExpression, type HL7ControlInfo, HL7Options, type HL7PartnerInfo, type HTTPAuthSettings, HTTPCommunicationOptions, type HTTPEndpoint, HTTPGetOptions, type HTTPListenOptions, HTTPOAuth2Settings, type HTTPOAuthCredentials, HTTPOAuthSettings, type HTTPPathElements, type HTTPReflectHeaders, type HTTPRequestHeaders, type HTTPRequestParameters, type HTTPResponseHeaderMapping, type HTTPSSLOptions, HTTPSendOptions, HTTPSettings, type Header, Hl7ConnectorRecordService, ISAControlInfo, InstallerToken, InstallerTokenService, IntegrationPack, type IntegrationPackAtomAttachment, type IntegrationPackAtomAttachmentExpression, IntegrationPackAtomAttachmentGroupingExpression, type IntegrationPackAtomAttachmentQueryConfig, type IntegrationPackAtomAttachmentQueryResponse, IntegrationPackAtomAttachmentService, IntegrationPackAtomAttachmentSimpleExpression, IntegrationPackBulkRequest, type IntegrationPackBulkResponse, type IntegrationPackEnvironmentAttachment, type IntegrationPackEnvironmentAttachmentExpression, IntegrationPackEnvironmentAttachmentGroupingExpression, type IntegrationPackEnvironmentAttachmentQueryConfig, type IntegrationPackEnvironmentAttachmentQueryResponse, IntegrationPackEnvironmentAttachmentService, IntegrationPackEnvironmentAttachmentSimpleExpression, type IntegrationPackExpression, IntegrationPackGroupingExpression, type IntegrationPackInstance, IntegrationPackInstanceBulkRequest, type IntegrationPackInstanceBulkResponse, type IntegrationPackInstanceExpression, IntegrationPackInstanceGroupingExpression, type IntegrationPackInstanceQueryConfig, type IntegrationPackInstanceQueryResponse, IntegrationPackInstanceService, IntegrationPackInstanceSimpleExpression, type IntegrationPackQueryConfig, type IntegrationPackQueryResponse, IntegrationPackService, IntegrationPackSimpleExpression, type JavaCorretto8Upgrade, type JavaRollback, JavaRollbackService, type JavaUpgrade, type JavaUpgradeOptions, JavaUpgradeService, type License, type Licensing, type ListQueues, type ListQueuesAsyncResponse, ListQueuesService, type ListenerPortConfiguration, type ListenerStatus, ListenerStatusAsyncResponse, type ListenerStatusExpression, ListenerStatusGroupingExpression, type ListenerStatusQueryConfig, ListenerStatusService, ListenerStatusSimpleExpression, type LogDownload, type MLLPCommunicationOptions, type MLLPSSLOptions, type MLLPSendSettings, type MSHControlInfo, type MapExtension, type MapExtensionBrowse, type MapExtensionBrowseData, type MapExtensionBrowseSettings, type MapExtensionExtendProfile, type MapExtensionsCharacter, type MapExtensionsConfiguration, type MapExtensionsCrossReferenceLookup, type MapExtensionsDateTime, type MapExtensionsDocCacheLookup, type MapExtensionsDocumentProperty, type MapExtensionsExtendedMappings, type MapExtensionsExtendedNode, MapExtensionsFunction, type MapExtensionsFunctionMapping, type MapExtensionsFunctionMappings, MapExtensionsFunctionStep, type MapExtensionsFunctionSteps, type MapExtensionsFunctions, type MapExtensionsInput, type MapExtensionsInputs, type MapExtensionsJapaneseCharacterConversion, type MapExtensionsMapping, type MapExtensionsNode, type MapExtensionsNumber, type MapExtensionsOutput, type MapExtensionsOutputs, type MapExtensionsProfile, MapExtensionsScripting, type MapExtensionsSequentialValue, type MapExtensionsSimpleLookup, type MapExtensionsStringConcat, type MapExtensionsStringSplit, type MapExtensionsUserDefinedFunction, MergeRequest, MergeRequestBulkRequest, type MergeRequestBulkResponse, MergeRequestDetail, type MergeRequestDetails, type MergeRequestExpression, MergeRequestGroupingExpression, type MergeRequestQueryConfig, type MergeRequestQueryResponse, MergeRequestService, MergeRequestSimpleExpression, type Molecule, type MoveQueueRequest, MoveQueueRequestService, type NodeDetails, type NodeOffboard, NodeOffboardService, type Nodes, type ODETTEConnectorRecord, type ODETTEConnectorRecordExpression, ODETTEConnectorRecordGroupingExpression, type ODETTEConnectorRecordQueryConfig, type ODETTEConnectorRecordQueryResponse, ODETTEConnectorRecordSimpleExpression, type OFTP2ConnectorRecord, type OFTP2ConnectorRecordExpression, OFTP2ConnectorRecordGroupingExpression, type OFTP2ConnectorRecordQueryConfig, type OFTP2ConnectorRecordQueryResponse, OFTP2ConnectorRecordSimpleExpression, OFTPCommunicationOptions, type OFTPConnectionSettings, type OFTPGetOptions, type OFTPListenOptions, type OFTPListenOptionsInfo, type OFTPLocalInfo, type OFTPPartnerGroupType, type OFTPPartnerInfo, type OFTPSendOptions, type OFTPSendOptionsInfo, type Oauth2Url, type Oauth2UrlExpression, Oauth2UrlGroupingExpression, type Oauth2UrlQueryConfig, type Oauth2UrlQueryResponse, Oauth2UrlSimpleExpression, OdetteConnectorRecordService, type OdetteControlInfo, OdetteOptions, type OdettePartnerInfo, OdetteUNBControlInfo, OdetteUNHControlInfo, Oftp2ConnectorRecordService, OpenAPI, type OpenAPIConfig, type Operation, type Operations, type OrganizationComponent, OrganizationComponentBulkRequest, type OrganizationComponentBulkResponse, type OrganizationComponentExpression, OrganizationComponentGroupingExpression, type OrganizationComponentQueryConfig, type OrganizationComponentQueryResponse, OrganizationComponentService, OrganizationComponentSimpleExpression, type OrganizationContactInfo, type OverrideProcessProperties, type OverrideProcessProperty, type PGPCertificate, type PGPCertificates, type PackagedComponent, PackagedComponentBulkRequest, type PackagedComponentBulkResponse, type PackagedComponentExpression, PackagedComponentGroupingExpression, type PackagedComponentManifest, PackagedComponentManifestBulkRequest, type PackagedComponentManifestBulkResponse, PackagedComponentManifestService, type PackagedComponentQueryConfig, type PackagedComponentQueryResponse, PackagedComponentService, PackagedComponentSimpleExpression, type Parameter, type PartnerArchiving, type PartnerCommunication, PartnerDocumentType, type PartnerDocumentTypes, type PartnerInfo, type PermittedRoles, type PersistedProcessProperties, type PersistedProcessPropertiesAsyncResponse, PersistedProcessPropertiesService, type PrivateCertificate, type Privilege, type Privileges, type Process, type ProcessAtomAttachment, type ProcessAtomAttachmentExpression, ProcessAtomAttachmentGroupingExpression, type ProcessAtomAttachmentQueryConfig, type ProcessAtomAttachmentQueryResponse, ProcessAtomAttachmentService, ProcessAtomAttachmentSimpleExpression, ProcessBulkRequest, type ProcessBulkResponse, type ProcessEnvironmentAttachment, type ProcessEnvironmentAttachmentExpression, ProcessEnvironmentAttachmentGroupingExpression, type ProcessEnvironmentAttachmentQueryConfig, type ProcessEnvironmentAttachmentQueryResponse, ProcessEnvironmentAttachmentService, ProcessEnvironmentAttachmentSimpleExpression, type ProcessExpression, ProcessGroupingExpression, type ProcessId, type ProcessIntegrationPackInfo, ProcessLog, ProcessLogService, type ProcessProperties, type ProcessProperty, type ProcessPropertyValue, type ProcessQueryConfig, type ProcessQueryResponse, type ProcessScheduleStatus, ProcessScheduleStatusBulkRequest, type ProcessScheduleStatusBulkResponse, type ProcessScheduleStatusExpression, ProcessScheduleStatusGroupingExpression, type ProcessScheduleStatusQueryConfig, type ProcessScheduleStatusQueryResponse, ProcessScheduleStatusService, ProcessScheduleStatusSimpleExpression, type ProcessSchedules, ProcessSchedulesBulkRequest, type ProcessSchedulesBulkResponse, type ProcessSchedulesExpression, ProcessSchedulesGroupingExpression, type ProcessSchedulesQueryConfig, type ProcessSchedulesQueryResponse, ProcessSchedulesService, ProcessSchedulesSimpleExpression, ProcessService, ProcessSimpleExpression, type ProcessingGroupDefaultRouting, type ProcessingGroupDocumentBasedRouting, type ProcessingGroupDocumentPartnerRoute, ProcessingGroupDocumentStandardRoute, type ProcessingGroupDocumentTypeRoute, type ProcessingGroupPartnerBasedRouting, type ProcessingGroupPartnerDocumentRoute, type ProcessingGroupPartnerRoute, ProcessingGroupPartnerStandardRoute, type ProcessingGroupTradingPartner, type ProcessingGroupTradingPartners, ProcessingType, type Properties, type Property, type PropertyPair, type PublicCertificate, PublisherIntegrationPack, PublisherIntegrationPackBulkRequest, type PublisherIntegrationPackBulkResponse, type PublisherIntegrationPackExpression, PublisherIntegrationPackGroupingExpression, type PublisherIntegrationPackQueryConfig, type PublisherIntegrationPackQueryResponse, PublisherIntegrationPackService, PublisherIntegrationPackSimpleExpression, type PublisherPackagedComponent, type PublisherPackagedComponents, type QueryFilter, type QueueAttributes, type QueueRecord, References, ReleaseIntegrationPack, ReleaseIntegrationPackService, ReleaseIntegrationPackStatus, ReleaseIntegrationPackStatusBulkRequest, type ReleaseIntegrationPackStatusBulkResponse, ReleaseIntegrationPackStatusService, type ReleasePackagedComponent, type ReleasePackagedComponents, type RerunDocument, RerunDocumentService, Resource, type Resources, type Role, RoleBulkRequest, type RoleBulkResponse, type RoleExpression, RoleGroupingExpression, type RoleQueryConfig, type RoleQueryResponse, type RoleReference, RoleService, RoleSimpleExpression, type Roles, type RosettaNetConnectorRecord, type RosettaNetConnectorRecordExpression, RosettaNetConnectorRecordGroupingExpression, type RosettaNetConnectorRecordQueryConfig, type RosettaNetConnectorRecordQueryResponse, RosettaNetConnectorRecordService, RosettaNetConnectorRecordSimpleExpression, RosettaNetControlInfo, RosettaNetMessageOptions, RosettaNetOptions, type RosettaNetPartnerInfo, RuntimeReleaseSchedule, RuntimeReleaseScheduleBulkRequest, type RuntimeReleaseScheduleBulkResponse, RuntimeReleaseScheduleService, type RuntimeRestartRequest, RuntimeRestartRequestService, SFTPCommunicationOptions, SFTPGetOptions, SFTPProxySettings, type SFTPSSHOptions, SFTPSendOptions, type SFTPSettings, type STXControlInfo, type Schedule, type ScheduleRetry, type ScriptingInputs, type ScriptingOutputs, ScriptingParameter, type SelectedDocuments, type SharedCommunication, type SharedCommunicationChannel, type SharedCommunicationChannelComponent, SharedCommunicationChannelComponentBulkRequest, type SharedCommunicationChannelComponentBulkResponse, type SharedCommunicationChannelComponentExpression, SharedCommunicationChannelComponentGroupingExpression, type SharedCommunicationChannelComponentQueryConfig, type SharedCommunicationChannelComponentQueryResponse, SharedCommunicationChannelComponentService, SharedCommunicationChannelComponentSimpleExpression, type SharedCommunications, SharedServerInformation, SharedServerInformationBulkRequest, type SharedServerInformationBulkResponse, SharedServerInformationService, type SharedWebServer, type SharedWebServerAuthentication, SharedWebServerBulkRequest, type SharedWebServerBulkResponse, type SharedWebServerCORSOrigin, type SharedWebServerCloudTennantGeneral, type SharedWebServerCors, type SharedWebServerGeneral, SharedWebServerLogService, type SharedWebServerLoginModuleConfiguration, type SharedWebServerLoginModuleOption, type SharedWebServerPort, type SharedWebServerProtectedHeaders, SharedWebServerService, type SharedWebServerUser, type SharedWebServerUserManagement, type SimpleExpression, type SimpleLookupTable, type SimpleLookupTableRow, type SimpleLookupTableRows, type ThroughputAccount, type ThroughputAccountExpression, type ThroughputAccountGroup, type ThroughputAccountGroupExpression, ThroughputAccountGroupGroupingExpression, type ThroughputAccountGroupQueryConfig, type ThroughputAccountGroupQueryResponse, ThroughputAccountGroupService, ThroughputAccountGroupSimpleExpression, ThroughputAccountGroupingExpression, type ThroughputAccountQueryConfig, type ThroughputAccountQueryResponse, ThroughputAccountService, ThroughputAccountSimpleExpression, type TopicSubscriber, type TrackedField, type TrackedFields, type TradacomsConnectorRecord, type TradacomsConnectorRecordExpression, TradacomsConnectorRecordGroupingExpression, type TradacomsConnectorRecordQueryConfig, type TradacomsConnectorRecordQueryResponse, TradacomsConnectorRecordService, TradacomsConnectorRecordSimpleExpression, type TradacomsControlInfo, type TradacomsOptions, type TradacomsPartnerInfo, type TradingPartner, type TradingPartnerCategory, TradingPartnerComponent, TradingPartnerComponentBulkRequest, type TradingPartnerComponentBulkResponse, type TradingPartnerComponentExpression, TradingPartnerComponentGroupingExpression, type TradingPartnerComponentQueryConfig, type TradingPartnerComponentQueryResponse, TradingPartnerComponentService, TradingPartnerComponentSimpleExpression, type TradingPartnerProcessingGroup, TradingPartnerProcessingGroupBulkRequest, type TradingPartnerProcessingGroupBulkResponse, type TradingPartnerProcessingGroupExpression, TradingPartnerProcessingGroupGroupingExpression, type TradingPartnerProcessingGroupQueryConfig, type TradingPartnerProcessingGroupQueryResponse, TradingPartnerProcessingGroupService, TradingPartnerProcessingGroupSimpleExpression, type TradingPartners, UNBControlInfo, UNGControlInfo, UNHControlInfo, WorkerService, type X12ConnectorRecord, type X12ConnectorRecordExpression, X12ConnectorRecordGroupingExpression, type X12ConnectorRecordQueryConfig, type X12ConnectorRecordQueryResponse, X12ConnectorRecordService, X12ConnectorRecordSimpleExpression, type X12ControlInfo, X12Options, type X12PartnerInfo, type customFields };
|
|
22784
|
+
type TenantCreds = {
|
|
22785
|
+
url: string;
|
|
22786
|
+
parentAccountId: string;
|
|
22787
|
+
apiUserName: string;
|
|
22788
|
+
apiToken: string;
|
|
22789
|
+
childAccountId?: string;
|
|
22790
|
+
accountGroup?: string;
|
|
22791
|
+
oauth2: {
|
|
22792
|
+
connections: Record<string, OAuth2Connection>;
|
|
22793
|
+
};
|
|
22794
|
+
listeners: {
|
|
22795
|
+
connections: Record<string, Listener>;
|
|
22796
|
+
};
|
|
22797
|
+
ai: AiConfig;
|
|
22798
|
+
};
|
|
22799
|
+
type AiConfig = {
|
|
22800
|
+
enabled?: boolean;
|
|
22801
|
+
model?: 'gpt-4.1-2025-04-14' | 'gpt-4o-mini-2024-07-18' | 'gpt-4o-2024-08-06';
|
|
22802
|
+
apiKey?: string;
|
|
22803
|
+
};
|
|
22804
|
+
type Listener = {
|
|
22805
|
+
url?: string;
|
|
22806
|
+
userName: string;
|
|
22807
|
+
token: string;
|
|
22808
|
+
};
|
|
22809
|
+
type OAuth2Connection = {
|
|
22810
|
+
clientId?: string;
|
|
22811
|
+
clientSecret?: string;
|
|
22812
|
+
};
|
|
22813
|
+
type StoredCredRec = {
|
|
22814
|
+
encCreds: string;
|
|
22815
|
+
meta?: {
|
|
22816
|
+
accountGroup?: string;
|
|
22817
|
+
childAccountId: string;
|
|
22818
|
+
};
|
|
22819
|
+
};
|
|
22820
|
+
type NonceRecord = {
|
|
22821
|
+
parentAccountId: string;
|
|
22822
|
+
childAccountId: string;
|
|
22823
|
+
accountGroup: string;
|
|
22824
|
+
origin: string;
|
|
22825
|
+
expMs: number;
|
|
22826
|
+
};
|
|
22827
|
+
|
|
22828
|
+
/**
|
|
22829
|
+
* Boomi EmbedKit component
|
|
22830
|
+
*
|
|
22831
|
+
* @author
|
|
22832
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
22833
|
+
*/
|
|
22834
|
+
|
|
22835
|
+
type TransformationStructuredOutput = {
|
|
22836
|
+
id: string;
|
|
22837
|
+
type: MapExtensionsFunction.type.CUSTOM_SCRIPTING;
|
|
22838
|
+
cacheType: MapExtensionsFunction.cacheType.NONE;
|
|
22839
|
+
Inputs: {
|
|
22840
|
+
Input: Array<{
|
|
22841
|
+
key: string | number;
|
|
22842
|
+
name: string;
|
|
22843
|
+
}>;
|
|
22844
|
+
};
|
|
22845
|
+
Outputs: {
|
|
22846
|
+
Output: Array<{
|
|
22847
|
+
key: string | number;
|
|
22848
|
+
name: string;
|
|
22849
|
+
}>;
|
|
22850
|
+
};
|
|
22851
|
+
Configuration: {
|
|
22852
|
+
Scripting: {
|
|
22853
|
+
language: MapExtensionsScripting.language.JAVASCRIPT;
|
|
22854
|
+
Script: string;
|
|
22855
|
+
Inputs: {
|
|
22856
|
+
Input: Array<{
|
|
22857
|
+
index: string | number;
|
|
22858
|
+
name: string;
|
|
22859
|
+
dataType: ScriptingParameter.dataType;
|
|
22860
|
+
}>;
|
|
22861
|
+
};
|
|
22862
|
+
Outputs: {
|
|
22863
|
+
Output: Array<{
|
|
22864
|
+
index: string | number;
|
|
22865
|
+
name: string;
|
|
22866
|
+
}>;
|
|
22867
|
+
};
|
|
22868
|
+
};
|
|
22869
|
+
};
|
|
22870
|
+
};
|
|
22871
|
+
|
|
22872
|
+
export { type AS2BasicAuthInfo, AS2CommunicationOptions, type AS2ConnectorRecord, type AS2ConnectorRecordExpression, AS2ConnectorRecordGroupingExpression, type AS2ConnectorRecordQueryConfig, type AS2ConnectorRecordQueryResponse, AS2ConnectorRecordSimpleExpression, AS2MDNOptions, AS2MessageOptions, type AS2MyCompanyInfo, type AS2PartnerInfo, type AS2ReceiveOptions, type AS2SendOptions, AS2SendSettings, type AccessTokenFieldData, Account, AccountBulkRequest, type AccountBulkResponse, AccountCloudAttachmentProperties, type AccountCloudAttachmentPropertiesAsyncResponse, AccountCloudAttachmentPropertiesService, type AccountCloudAttachmentQuota, AccountCloudAttachmentQuotaBulkRequest, type AccountCloudAttachmentQuotaBulkResponse, AccountCloudAttachmentQuotaService, type AccountExpression, AccountGroup, type AccountGroupAccount, type AccountGroupAccountExpression, AccountGroupAccountGroupingExpression, type AccountGroupAccountQueryConfig, type AccountGroupAccountQueryResponse, AccountGroupAccountService, AccountGroupAccountSimpleExpression, AccountGroupBulkRequest, type AccountGroupBulkResponse, type AccountGroupExpression, AccountGroupGroupingExpression, AccountGroupIntegrationPack, AccountGroupIntegrationPackBulkRequest, type AccountGroupIntegrationPackBulkResponse, type AccountGroupIntegrationPackExpression, AccountGroupIntegrationPackGroupingExpression, type AccountGroupIntegrationPackQueryConfig, type AccountGroupIntegrationPackQueryResponse, AccountGroupIntegrationPackService, AccountGroupIntegrationPackSimpleExpression, type AccountGroupQueryConfig, type AccountGroupQueryResponse, AccountGroupService, AccountGroupSimpleExpression, type AccountGroupUserRole, type AccountGroupUserRoleExpression, AccountGroupUserRoleGroupingExpression, type AccountGroupUserRoleQueryConfig, type AccountGroupUserRoleQueryResponse, AccountGroupUserRoleService, AccountGroupUserRoleSimpleExpression, AccountGroupingExpression, AccountProvisionService, type AccountQueryConfig, type AccountQueryResponse, type AccountSSOConfig, AccountSSOConfigBulkRequest, type AccountSSOConfigBulkResponse, AccountService, AccountSimpleExpression, AccountSsoConfigService, type AccountUserFederation, type AccountUserFederationExpression, AccountUserFederationGroupingExpression, type AccountUserFederationQueryConfig, type AccountUserFederationQueryResponse, AccountUserFederationService, AccountUserFederationSimpleExpression, type AccountUserRole, type AccountUserRoleExpression, AccountUserRoleGroupingExpression, type AccountUserRoleQueryConfig, type AccountUserRoleQueryResponse, AccountUserRoleService, AccountUserRoleSimpleExpression, AllDocuments, ApiError, ApiUsageCount, type ApiUsageCountExpression, ApiUsageCountGroupingExpression, type ApiUsageCountQueryConfig, type ApiUsageCountQueryResponse, ApiUsageCountService, ApiUsageCountSimpleExpression, type ArrayElem, As2ConnectorRecordService, type AsyncOperationTokenResult, type AsyncToken, Atom, type AtomAS2Artifacts, AtomAs2ArtifactsService, AtomBulkRequest, type AtomBulkResponse, type AtomConnectionFieldExtensionSummary, type AtomConnectionFieldExtensionSummaryExpression, AtomConnectionFieldExtensionSummaryGroupingExpression, type AtomConnectionFieldExtensionSummaryQueryConfig, type AtomConnectionFieldExtensionSummaryQueryResponse, AtomConnectionFieldExtensionSummaryService, AtomConnectionFieldExtensionSummarySimpleExpression, type AtomConnectorVersions, AtomConnectorVersionsBulkRequest, type AtomConnectorVersionsBulkResponse, AtomConnectorVersionsService, type AtomCounters, type AtomCountersAsyncResponse, AtomCountersService, type AtomDiskSpace, type AtomDiskSpaceAsyncResponse, type AtomDiskSpaceDirectory, AtomDiskSpaceService, type AtomExpression, AtomGroupingExpression, type AtomLog, AtomLogService, type AtomPurge, AtomPurgeService, type AtomQueryConfig, type AtomQueryResponse, type AtomSecurityPolicies, type AtomSecurityPoliciesAsyncResponse, AtomSecurityPoliciesService, type AtomSecurityPoliciesType, type AtomSecurityPolicy, type AtomSecurityPolicyArgumentType, AtomService, AtomSimpleExpression, type AtomStartupProperties, AtomStartupPropertiesBulkRequest, type AtomStartupPropertiesBulkResponse, AtomStartupPropertiesService, type AtomWorkerLog, AtomWorkerLogService, type AttachmentInfo, type AuditLog, AuditLogBulkRequest, type AuditLogBulkResponse, type AuditLogExpression, AuditLogGroupingExpression, type AuditLogProperty, type AuditLogQueryConfig, type AuditLogQueryResponse, AuditLogService, AuditLogSimpleExpression, BaseHttpRequest, Boomi, type Branch, BranchBulkRequest, type BranchBulkResponse, type BranchExpression, BranchGroupingExpression, type BranchQueryConfig, type BranchQueryResponse, BranchService, BranchSimpleExpression, type BrowseCandidate, type BrowseCandidateResponse, type BrowseField, type BrowseFieldOut, type BrowseRequest, type BrowseRequestCandidate, type BrowseSession, type BuildOptions, type BulkId, CancelError, CancelExecutionService, CancelablePromise, ChangeListenerStatusRequest, ChangeListenerStatusService, type ClearQueueRequest, ClearQueueService, type Cloud, type CloudAtom, CloudBulkRequest, type CloudBulkResponse, type CloudExpression, CloudGroupingExpression, CloudManagedSecretConfig, type CloudQueryConfig, type CloudQueryResponse, CloudService, CloudSimpleExpression, type CombinedIndex, type CompDiffAttribute, CompDiffConfig, type CompDiffElement, type Component, type ComponentAtomAttachment, type ComponentAtomAttachmentExpression, ComponentAtomAttachmentGroupingExpression, type ComponentAtomAttachmentQueryConfig, type ComponentAtomAttachmentQueryResponse, ComponentAtomAttachmentService, ComponentAtomAttachmentSimpleExpression, ComponentBulkRequest, type ComponentBulkResponse, type ComponentDiffRequest, ComponentDiffRequestBulkRequest, type ComponentDiffRequestBulkResponse, ComponentDiffRequestService, type ComponentDiffResponseCreate, type ComponentEnvironmentAttachment, type ComponentEnvironmentAttachmentExpression, ComponentEnvironmentAttachmentGroupingExpression, type ComponentEnvironmentAttachmentQueryConfig, type ComponentEnvironmentAttachmentQueryResponse, ComponentEnvironmentAttachmentService, ComponentEnvironmentAttachmentSimpleExpression, type ComponentInfo, type ComponentMergeConfig, type ComponentMergeConfigs, ComponentMetadata, ComponentMetadataBulkRequest, type ComponentMetadataBulkResponse, type ComponentMetadataExpression, ComponentMetadataGroupingExpression, type ComponentMetadataQueryConfig, type ComponentMetadataQueryResponse, ComponentMetadataService, ComponentMetadataSimpleExpression, type ComponentReference, ComponentReferenceBulkRequest, type ComponentReferenceBulkResponse, type ComponentReferenceExpression, ComponentReferenceGroupingExpression, type ComponentReferenceQueryConfig, type ComponentReferenceQueryResponse, ComponentReferenceService, ComponentReferenceSimpleExpression, ComponentService, type Conn, type ConnField, type Connection, type ConnectionLicensingDownload, type ConnectionLicensingReport, ConnectionLicensingReportService, type Connections, type Connector, ConnectorBulkRequest, type ConnectorBulkResponse, type ConnectorDocument, type ConnectorDocumentDownload, ConnectorDocumentService, type ConnectorExpression, type ConnectorField, type ConnectorFields, ConnectorGroupingExpression, type ConnectorQueryConfig, type ConnectorQueryResponse, ConnectorService, ConnectorSimpleExpression, type ConnectorVersion, type ContactInfo, type Counter, type CrossReference, type CrossReferenceInputs, type CrossReferenceOutputs, type CrossReferenceParameter, type CrossReferenceRow, type CrossReferenceRows, type CrossReferences, type CustomPartnerInfo, type CustomProperties, CustomTrackedField, type CustomTrackedFieldExpression, CustomTrackedFieldGroupingExpression, type CustomTrackedFieldQueryConfig, type CustomTrackedFieldQueryResponse, CustomTrackedFieldService, CustomTrackedFieldSimpleExpression, type DefaultOFTPConnectionSettings, type DefaultOFTPPartnerSendSettings, type DeployedExpiredCertificate, type DeployedExpiredCertificateExpression, DeployedExpiredCertificateGroupingExpression, type DeployedExpiredCertificateQueryConfig, type DeployedExpiredCertificateQueryResponse, DeployedExpiredCertificateService, DeployedExpiredCertificateSimpleExpression, DeployedPackage, DeployedPackageBulkRequest, type DeployedPackageBulkResponse, type DeployedPackageExpression, DeployedPackageGroupingExpression, type DeployedPackageQueryConfig, type DeployedPackageQueryResponse, DeployedPackageService, DeployedPackageSimpleExpression, type DeployedProcess, Deployment, DeploymentBulkRequest, type DeploymentBulkResponse, type DeploymentExpression, DeploymentGroupingExpression, type DeploymentQueryConfig, type DeploymentQueryResponse, DeploymentService, DeploymentSimpleExpression, DiskCommunicationOptions, DiskGetOptions, DiskSendOptions, type DocCacheKeyInput, type DocCacheKeyInputs, type DocCacheProfileParameter, type DocCacheProfileParameters, type Document, type DocumentCountAccount, type DocumentCountAccountExpression, type DocumentCountAccountGroup, type DocumentCountAccountGroupExpression, DocumentCountAccountGroupGroupingExpression, type DocumentCountAccountGroupQueryConfig, type DocumentCountAccountGroupQueryResponse, DocumentCountAccountGroupService, DocumentCountAccountGroupSimpleExpression, DocumentCountAccountGroupingExpression, type DocumentCountAccountQueryConfig, type DocumentCountAccountQueryResponse, DocumentCountAccountService, DocumentCountAccountSimpleExpression, type DynamicProcessProperty, type EDIFACTConnectorRecord, type EDIFACTConnectorRecordExpression, EDIFACTConnectorRecordGroupingExpression, type EDIFACTConnectorRecordQueryConfig, type EDIFACTConnectorRecordQueryResponse, EDIFACTConnectorRecordSimpleExpression, type EdiCustomConnectorRecord, type EdiCustomConnectorRecordExpression, EdiCustomConnectorRecordGroupingExpression, type EdiCustomConnectorRecordQueryConfig, type EdiCustomConnectorRecordQueryResponse, EdiCustomConnectorRecordService, EdiCustomConnectorRecordSimpleExpression, EdiDelimiter, EdiSegmentTerminator, EdifactConnectorRecordService, type EdifactControlInfo, EdifactOptions, type EdifactPartnerInfo, type Element, type EncryptedValue, type EncryptedValues, type EnvExtMinimal, type EnvExts, Environment, type EnvironmentAtomAttachment, type EnvironmentAtomAttachmentExpression, EnvironmentAtomAttachmentGroupingExpression, type EnvironmentAtomAttachmentQueryConfig, type EnvironmentAtomAttachmentQueryResponse, EnvironmentAtomAttachmentService, EnvironmentAtomAttachmentSimpleExpression, EnvironmentBulkRequest, type EnvironmentBulkResponse, type EnvironmentConnectionFieldExtensionSummary, type EnvironmentConnectionFieldExtensionSummaryExpression, EnvironmentConnectionFieldExtensionSummaryGroupingExpression, type EnvironmentConnectionFieldExtensionSummaryQueryConfig, type EnvironmentConnectionFieldExtensionSummaryQueryResponse, EnvironmentConnectionFieldExtensionSummaryService, EnvironmentConnectionFieldExtensionSummarySimpleExpression, type EnvironmentExpression, type EnvironmentExtensions, EnvironmentExtensionsBulkRequest, type EnvironmentExtensionsBulkResponse, type EnvironmentExtensionsExpression, EnvironmentExtensionsGroupingExpression, type EnvironmentExtensionsQueryConfig, type EnvironmentExtensionsQueryResponse, EnvironmentExtensionsService, EnvironmentExtensionsSimpleExpression, EnvironmentGroupingExpression, type EnvironmentMapExtension, EnvironmentMapExtensionBulkRequest, type EnvironmentMapExtensionBulkResponse, type EnvironmentMapExtensionCandidate, type EnvironmentMapExtensionExternalComponent, type EnvironmentMapExtensionExternalComponentExpression, EnvironmentMapExtensionExternalComponentGroupingExpression, type EnvironmentMapExtensionExternalComponentQueryConfig, type EnvironmentMapExtensionExternalComponentQueryResponse, EnvironmentMapExtensionExternalComponentService, EnvironmentMapExtensionExternalComponentSimpleExpression, EnvironmentMapExtensionService, type EnvironmentMapExtensionUserDefinedFunction, EnvironmentMapExtensionUserDefinedFunctionBulkRequest, type EnvironmentMapExtensionUserDefinedFunctionBulkResponse, EnvironmentMapExtensionUserDefinedFunctionService, type EnvironmentMapExtensionUserDefinedFunctionSummary, type EnvironmentMapExtensionUserDefinedFunctionSummaryExpression, EnvironmentMapExtensionUserDefinedFunctionSummaryGroupingExpression, type EnvironmentMapExtensionUserDefinedFunctionSummaryQueryConfig, type EnvironmentMapExtensionUserDefinedFunctionSummaryQueryResponse, EnvironmentMapExtensionUserDefinedFunctionSummaryService, EnvironmentMapExtensionUserDefinedFunctionSummarySimpleExpression, type EnvironmentMapExtensionsSummary, type EnvironmentMapExtensionsSummaryExpression, EnvironmentMapExtensionsSummaryGroupingExpression, type EnvironmentMapExtensionsSummaryQueryConfig, type EnvironmentMapExtensionsSummaryQueryResponse, EnvironmentMapExtensionsSummaryService, EnvironmentMapExtensionsSummarySimpleExpression, type EnvironmentQueryConfig, type EnvironmentQueryResponse, type EnvironmentRole, EnvironmentRoleBulkRequest, type EnvironmentRoleBulkResponse, type EnvironmentRoleExpression, EnvironmentRoleGroupingExpression, type EnvironmentRoleQueryConfig, type EnvironmentRoleQueryResponse, EnvironmentRoleService, EnvironmentRoleSimpleExpression, EnvironmentService, EnvironmentSimpleExpression, type Event, type EventExpression, EventGroupingExpression, type EventQueryConfig, type EventQueryResponse, EventService, EventSimpleExpression, ExecuteProcessService, type ExecutionArtifacts, ExecutionArtifactsService, type ExecutionConnector, type ExecutionConnectorExpression, ExecutionConnectorGroupingExpression, type ExecutionConnectorQueryConfig, type ExecutionConnectorQueryResponse, ExecutionConnectorService, ExecutionConnectorSimpleExpression, type ExecutionCountAccount, type ExecutionCountAccountExpression, type ExecutionCountAccountGroup, type ExecutionCountAccountGroupExpression, ExecutionCountAccountGroupGroupingExpression, type ExecutionCountAccountGroupQueryConfig, type ExecutionCountAccountGroupQueryResponse, ExecutionCountAccountGroupService, ExecutionCountAccountGroupSimpleExpression, ExecutionCountAccountGroupingExpression, type ExecutionCountAccountQueryConfig, type ExecutionCountAccountQueryResponse, ExecutionCountAccountService, ExecutionCountAccountSimpleExpression, ExecutionRecord, type ExecutionRecordExpression, ExecutionRecordGroupingExpression, type ExecutionRecordQueryConfig, type ExecutionRecordQueryResponse, ExecutionRecordService, ExecutionRecordSimpleExpression, type ExecutionRequest, type ExecutionRequestDynamicProcessProperties, type ExecutionRequestProcessProperties, ExecutionRequestService, type ExecutionSummaryRecord, type ExecutionSummaryRecordExpression, ExecutionSummaryRecordGroupingExpression, type ExecutionSummaryRecordQueryConfig, type ExecutionSummaryRecordQueryResponse, ExecutionSummaryRecordService, ExecutionSummaryRecordSimpleExpression, type Expression, FTPCommunicationOptions, FTPGetOptions, FTPSSLOptions, FTPSendOptions, FTPSettings, type Field, type FieldSummary, type FieldWithUI, type Folder, FolderBulkRequest, type FolderBulkResponse, type FolderExpression, FolderGroupingExpression, type FolderQueryConfig, type FolderQueryResponse, FolderService, FolderSimpleExpression, GSControlInfo, GenericConnectorRecord, GenericConnectorRecordBulkRequest, type GenericConnectorRecordBulkResponse, type GenericConnectorRecordExpression, GenericConnectorRecordGroupingExpression, type GenericConnectorRecordQueryConfig, type GenericConnectorRecordQueryResponse, GenericConnectorRecordService, GenericConnectorRecordSimpleExpression, GetAssignableRolesService, GroupingExpression, type HDType, type HL7ConnectorRecord, type HL7ConnectorRecordExpression, HL7ConnectorRecordGroupingExpression, type HL7ConnectorRecordQueryConfig, type HL7ConnectorRecordQueryResponse, HL7ConnectorRecordSimpleExpression, type HL7ControlInfo, HL7Options, type HL7PartnerInfo, type HTTPAuthSettings, HTTPCommunicationOptions, type HTTPEndpoint, HTTPGetOptions, type HTTPListenOptions, HTTPOAuth2Settings, type HTTPOAuthCredentials, HTTPOAuthSettings, type HTTPPathElements, type HTTPReflectHeaders, type HTTPRequestHeaders, type HTTPRequestParameters, type HTTPResponseHeaderMapping, type HTTPSSLOptions, HTTPSendOptions, HTTPSettings, type Header, Hl7ConnectorRecordService, ISAControlInfo, InstallerToken, InstallerTokenService, IntegrationPack, type IntegrationPackAtomAttachment, type IntegrationPackAtomAttachmentExpression, IntegrationPackAtomAttachmentGroupingExpression, type IntegrationPackAtomAttachmentQueryConfig, type IntegrationPackAtomAttachmentQueryResponse, IntegrationPackAtomAttachmentService, IntegrationPackAtomAttachmentSimpleExpression, IntegrationPackBulkRequest, type IntegrationPackBulkResponse, type IntegrationPackEnvironmentAttachment, type IntegrationPackEnvironmentAttachmentExpression, IntegrationPackEnvironmentAttachmentGroupingExpression, type IntegrationPackEnvironmentAttachmentQueryConfig, type IntegrationPackEnvironmentAttachmentQueryResponse, IntegrationPackEnvironmentAttachmentService, IntegrationPackEnvironmentAttachmentSimpleExpression, type IntegrationPackExpression, IntegrationPackGroupingExpression, type IntegrationPackInstance, IntegrationPackInstanceBulkRequest, type IntegrationPackInstanceBulkResponse, type IntegrationPackInstanceExpression, IntegrationPackInstanceGroupingExpression, type IntegrationPackInstanceQueryConfig, type IntegrationPackInstanceQueryResponse, IntegrationPackInstanceService, IntegrationPackInstanceSimpleExpression, type IntegrationPackQueryConfig, type IntegrationPackQueryResponse, IntegrationPackService, IntegrationPackSimpleExpression, type JavaCorretto8Upgrade, type JavaRollback, JavaRollbackService, type JavaUpgrade, type JavaUpgradeOptions, JavaUpgradeService, type License, type Licensing, type ListQueues, type ListQueuesAsyncResponse, ListQueuesService, type ListenerPortConfiguration, type ListenerStatus, ListenerStatusAsyncResponse, type ListenerStatusExpression, ListenerStatusGroupingExpression, type ListenerStatusQueryConfig, ListenerStatusService, ListenerStatusSimpleExpression, type LogDownload, Logger, type MLLPCommunicationOptions, type MLLPSSLOptions, type MLLPSendSettings, type MSHControlInfo, type MapExtension, type MapExtensionBrowse, type MapExtensionBrowseData, type MapExtensionBrowseSettings, type MapExtensionExtendProfile, type MapExtensionsCharacter, type MapExtensionsConfiguration, type MapExtensionsCrossReferenceLookup, type MapExtensionsDateTime, type MapExtensionsDocCacheLookup, type MapExtensionsDocumentProperty, type MapExtensionsExtendedMappings, type MapExtensionsExtendedNode, MapExtensionsFunction, type MapExtensionsFunctionMapping, type MapExtensionsFunctionMappings, MapExtensionsFunctionStep, type MapExtensionsFunctionSteps, type MapExtensionsFunctions, type MapExtensionsInput, type MapExtensionsInputs, type MapExtensionsJapaneseCharacterConversion, type MapExtensionsMapping, type MapExtensionsNode, type MapExtensionsNumber, type MapExtensionsOutput, type MapExtensionsOutputs, type MapExtensionsProfile, MapExtensionsScripting, type MapExtensionsSequentialValue, type MapExtensionsSimpleLookup, type MapExtensionsStringConcat, type MapExtensionsStringSplit, type MapExtensionsUserDefinedFunction, type MergeConflicts, MergeRequest, MergeRequestBulkRequest, type MergeRequestBulkResponse, MergeRequestDetail, type MergeRequestDetails, type MergeRequestExpression, MergeRequestGroupingExpression, type MergeRequestQueryConfig, type MergeRequestQueryResponse, MergeRequestService, MergeRequestSimpleExpression, type Molecule, type MoveQueueRequest, MoveQueueRequestService, type NodeDetails, type NodeOffboard, NodeOffboardService, type Nodes, type NonceRecord, type ODETTEConnectorRecord, type ODETTEConnectorRecordExpression, ODETTEConnectorRecordGroupingExpression, type ODETTEConnectorRecordQueryConfig, type ODETTEConnectorRecordQueryResponse, ODETTEConnectorRecordSimpleExpression, type OFTP2ConnectorRecord, type OFTP2ConnectorRecordExpression, OFTP2ConnectorRecordGroupingExpression, type OFTP2ConnectorRecordQueryConfig, type OFTP2ConnectorRecordQueryResponse, OFTP2ConnectorRecordSimpleExpression, OFTPCommunicationOptions, type OFTPConnectionSettings, type OFTPGetOptions, type OFTPListenOptions, type OFTPListenOptionsInfo, type OFTPLocalInfo, type OFTPPartnerGroupType, type OFTPPartnerInfo, type OFTPSendOptions, type OFTPSendOptionsInfo, type Oauth2Url, type Oauth2UrlExpression, Oauth2UrlGroupingExpression, type Oauth2UrlQueryConfig, type Oauth2UrlQueryResponse, Oauth2UrlSimpleExpression, OdetteConnectorRecordService, type OdetteControlInfo, OdetteOptions, type OdettePartnerInfo, OdetteUNBControlInfo, OdetteUNHControlInfo, Oftp2ConnectorRecordService, OpenAPI, type OpenAPIConfig, type Operation, type Operations, type OrganizationComponent, OrganizationComponentBulkRequest, type OrganizationComponentBulkResponse, type OrganizationComponentExpression, OrganizationComponentGroupingExpression, type OrganizationComponentQueryConfig, type OrganizationComponentQueryResponse, OrganizationComponentService, OrganizationComponentSimpleExpression, type OrganizationContactInfo, type OverrideProcessProperties, type OverrideProcessProperty, type PGPCertificate, type PGPCertificates, type PGroup, type PVal, type PackagedComponent, PackagedComponentBulkRequest, type PackagedComponentBulkResponse, type PackagedComponentExpression, PackagedComponentGroupingExpression, type PackagedComponentManifest, PackagedComponentManifestBulkRequest, type PackagedComponentManifestBulkResponse, PackagedComponentManifestService, type PackagedComponentQueryConfig, type PackagedComponentQueryResponse, PackagedComponentService, PackagedComponentSimpleExpression, type Parameter, type PartnerArchiving, type PartnerCommunication, PartnerDocumentType, type PartnerDocumentTypes, type PartnerInfo, type PermittedRoles, type PersistedProcessProperties, type PersistedProcessPropertiesAsyncResponse, PersistedProcessPropertiesService, type PrivateCertificate, type Privilege, type Privileges, type Process, type ProcessAtomAttachment, type ProcessAtomAttachmentExpression, ProcessAtomAttachmentGroupingExpression, type ProcessAtomAttachmentQueryConfig, type ProcessAtomAttachmentQueryResponse, ProcessAtomAttachmentService, ProcessAtomAttachmentSimpleExpression, ProcessBulkRequest, type ProcessBulkResponse, type ProcessEnvironmentAttachment, type ProcessEnvironmentAttachmentExpression, ProcessEnvironmentAttachmentGroupingExpression, type ProcessEnvironmentAttachmentQueryConfig, type ProcessEnvironmentAttachmentQueryResponse, ProcessEnvironmentAttachmentService, ProcessEnvironmentAttachmentSimpleExpression, type ProcessExpression, ProcessGroupingExpression, type ProcessId, type ProcessIntegrationPackInfo, ProcessLog, ProcessLogService, type ProcessProperties, type ProcessProperty, type ProcessPropertyValue, type ProcessQueryConfig, type ProcessQueryResponse, type ProcessScheduleStatus, ProcessScheduleStatusBulkRequest, type ProcessScheduleStatusBulkResponse, type ProcessScheduleStatusExpression, ProcessScheduleStatusGroupingExpression, type ProcessScheduleStatusQueryConfig, type ProcessScheduleStatusQueryResponse, ProcessScheduleStatusService, ProcessScheduleStatusSimpleExpression, type ProcessSchedules, ProcessSchedulesBulkRequest, type ProcessSchedulesBulkResponse, type ProcessSchedulesExpression, ProcessSchedulesGroupingExpression, type ProcessSchedulesQueryConfig, type ProcessSchedulesQueryResponse, ProcessSchedulesService, ProcessSchedulesSimpleExpression, ProcessService, ProcessSimpleExpression, type ProcessingGroupDefaultRouting, type ProcessingGroupDocumentBasedRouting, type ProcessingGroupDocumentPartnerRoute, ProcessingGroupDocumentStandardRoute, type ProcessingGroupDocumentTypeRoute, type ProcessingGroupPartnerBasedRouting, type ProcessingGroupPartnerDocumentRoute, type ProcessingGroupPartnerRoute, ProcessingGroupPartnerStandardRoute, type ProcessingGroupTradingPartner, type ProcessingGroupTradingPartners, ProcessingType, type Properties, type Property, type PropertyPair, type PublicCertificate, PublisherIntegrationPack, PublisherIntegrationPackBulkRequest, type PublisherIntegrationPackBulkResponse, type PublisherIntegrationPackExpression, PublisherIntegrationPackGroupingExpression, type PublisherIntegrationPackQueryConfig, type PublisherIntegrationPackQueryResponse, PublisherIntegrationPackService, PublisherIntegrationPackSimpleExpression, type PublisherPackagedComponent, type PublisherPackagedComponents, type QueryFilter, type QueueAttributes, type QueueRecord, References, ReleaseIntegrationPack, ReleaseIntegrationPackService, ReleaseIntegrationPackStatus, ReleaseIntegrationPackStatusBulkRequest, type ReleaseIntegrationPackStatusBulkResponse, ReleaseIntegrationPackStatusService, type ReleasePackagedComponent, type ReleasePackagedComponents, type RerunDocument, RerunDocumentService, Resource, type Resources, type Role, RoleBulkRequest, type RoleBulkResponse, type RoleExpression, RoleGroupingExpression, type RoleQueryConfig, type RoleQueryResponse, type RoleReference, RoleService, RoleSimpleExpression, type Roles, type RosettaNetConnectorRecord, type RosettaNetConnectorRecordExpression, RosettaNetConnectorRecordGroupingExpression, type RosettaNetConnectorRecordQueryConfig, type RosettaNetConnectorRecordQueryResponse, RosettaNetConnectorRecordService, RosettaNetConnectorRecordSimpleExpression, RosettaNetControlInfo, RosettaNetMessageOptions, RosettaNetOptions, type RosettaNetPartnerInfo, RuntimeReleaseSchedule, RuntimeReleaseScheduleBulkRequest, type RuntimeReleaseScheduleBulkResponse, RuntimeReleaseScheduleService, type RuntimeRestartRequest, RuntimeRestartRequestService, SFTPCommunicationOptions, SFTPGetOptions, SFTPProxySettings, type SFTPSSHOptions, SFTPSendOptions, type SFTPSettings, type STXControlInfo, type Schedule, type ScheduleRetry, type ScriptingInputs, type ScriptingOutputs, ScriptingParameter, type SelectedDocuments, type SharedCommunication, type SharedCommunicationChannel, type SharedCommunicationChannelComponent, SharedCommunicationChannelComponentBulkRequest, type SharedCommunicationChannelComponentBulkResponse, type SharedCommunicationChannelComponentExpression, SharedCommunicationChannelComponentGroupingExpression, type SharedCommunicationChannelComponentQueryConfig, type SharedCommunicationChannelComponentQueryResponse, SharedCommunicationChannelComponentService, SharedCommunicationChannelComponentSimpleExpression, type SharedCommunications, SharedServerInformation, SharedServerInformationBulkRequest, type SharedServerInformationBulkResponse, SharedServerInformationService, type SharedWebServer, type SharedWebServerAuthentication, SharedWebServerBulkRequest, type SharedWebServerBulkResponse, type SharedWebServerCORSOrigin, type SharedWebServerCloudTennantGeneral, type SharedWebServerCors, type SharedWebServerGeneral, SharedWebServerLogService, type SharedWebServerLoginModuleConfiguration, type SharedWebServerLoginModuleOption, type SharedWebServerPort, type SharedWebServerProtectedHeaders, SharedWebServerService, type SharedWebServerUser, type SharedWebServerUserManagement, type SimpleExpression, type SimpleLookupTable, type SimpleLookupTableRow, type SimpleLookupTableRows, type SourceOrTarget, type StoredCredRec, type TenantCreds, type ThroughputAccount, type ThroughputAccountExpression, type ThroughputAccountGroup, type ThroughputAccountGroupExpression, ThroughputAccountGroupGroupingExpression, type ThroughputAccountGroupQueryConfig, type ThroughputAccountGroupQueryResponse, ThroughputAccountGroupService, ThroughputAccountGroupSimpleExpression, ThroughputAccountGroupingExpression, type ThroughputAccountQueryConfig, type ThroughputAccountQueryResponse, ThroughputAccountService, ThroughputAccountSimpleExpression, type TopicSubscriber, type TrackedField, type TrackedFields, type TradacomsConnectorRecord, type TradacomsConnectorRecordExpression, TradacomsConnectorRecordGroupingExpression, type TradacomsConnectorRecordQueryConfig, type TradacomsConnectorRecordQueryResponse, TradacomsConnectorRecordService, TradacomsConnectorRecordSimpleExpression, type TradacomsControlInfo, type TradacomsOptions, type TradacomsPartnerInfo, type TradingPartner, type TradingPartnerCategory, TradingPartnerComponent, TradingPartnerComponentBulkRequest, type TradingPartnerComponentBulkResponse, type TradingPartnerComponentExpression, TradingPartnerComponentGroupingExpression, type TradingPartnerComponentQueryConfig, type TradingPartnerComponentQueryResponse, TradingPartnerComponentService, TradingPartnerComponentSimpleExpression, type TradingPartnerProcessingGroup, TradingPartnerProcessingGroupBulkRequest, type TradingPartnerProcessingGroupBulkResponse, type TradingPartnerProcessingGroupExpression, TradingPartnerProcessingGroupGroupingExpression, type TradingPartnerProcessingGroupQueryConfig, type TradingPartnerProcessingGroupQueryResponse, TradingPartnerProcessingGroupService, TradingPartnerProcessingGroupSimpleExpression, type TradingPartners, type TransformationStructuredOutput, type UIError, type UIFieldError, type UISide, UNBControlInfo, UNGControlInfo, UNHControlInfo, type UpdatePlan, type UpdateResult, WorkerService, type X12ConnectorRecord, type X12ConnectorRecordExpression, X12ConnectorRecordGroupingExpression, type X12ConnectorRecordQueryConfig, type X12ConnectorRecordQueryResponse, X12ConnectorRecordService, X12ConnectorRecordSimpleExpression, type X12ControlInfo, X12Options, type X12PartnerInfo, type customFields, redactBody, redactHeaders };
|