@boomi/embedkit-sdk 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +64 -736
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +115 -437
- package/dist/index.d.ts +115 -437
- package/dist/index.js +61 -715
- package/dist/index.js.map +1 -1
- package/package.json +2 -7
- package/bin/embedkit.cjs +0 -2
- package/dist/cli.cjs +0 -14374
- package/dist/cli.cjs.map +0 -1
- package/dist/cli.d.cts +0 -1
- package/dist/cli.d.ts +0 -1
- package/dist/cli.js +0 -14379
- package/dist/cli.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -9292,6 +9292,112 @@ type EnvironmentExtensionsQueryResponse = {
|
|
|
9292
9292
|
result?: Array<EnvironmentExtensions>;
|
|
9293
9293
|
};
|
|
9294
9294
|
|
|
9295
|
+
/**
|
|
9296
|
+
* Boomi EmbedKit component
|
|
9297
|
+
*
|
|
9298
|
+
* @author generated using openapi-typescript-codegen
|
|
9299
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9300
|
+
*/
|
|
9301
|
+
|
|
9302
|
+
type Oauth2UrlGroupingExpression = {
|
|
9303
|
+
nestedExpression?: Array<Oauth2UrlExpression>;
|
|
9304
|
+
operator: Oauth2UrlGroupingExpression.operator;
|
|
9305
|
+
};
|
|
9306
|
+
declare namespace Oauth2UrlGroupingExpression {
|
|
9307
|
+
enum operator {
|
|
9308
|
+
AND = "and",
|
|
9309
|
+
OR = "or"
|
|
9310
|
+
}
|
|
9311
|
+
}
|
|
9312
|
+
|
|
9313
|
+
/**
|
|
9314
|
+
* Boomi EmbedKit component
|
|
9315
|
+
*
|
|
9316
|
+
* @author generated using openapi-typescript-codegen
|
|
9317
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9318
|
+
*/
|
|
9319
|
+
type Oauth2UrlSimpleExpression = {
|
|
9320
|
+
argument?: Array<string>;
|
|
9321
|
+
operator: Oauth2UrlSimpleExpression.operator;
|
|
9322
|
+
property: Oauth2UrlSimpleExpression.property;
|
|
9323
|
+
};
|
|
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
|
+
/**
|
|
9350
|
+
* Boomi EmbedKit component
|
|
9351
|
+
*
|
|
9352
|
+
* @author generated using openapi-typescript-codegen
|
|
9353
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9354
|
+
*/
|
|
9355
|
+
|
|
9356
|
+
type Oauth2UrlExpression = (Oauth2UrlSimpleExpression | Oauth2UrlGroupingExpression);
|
|
9357
|
+
|
|
9358
|
+
/**
|
|
9359
|
+
* Boomi EmbedKit component
|
|
9360
|
+
*
|
|
9361
|
+
* @author generated using openapi-typescript-codegen
|
|
9362
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9363
|
+
*/
|
|
9364
|
+
|
|
9365
|
+
type Oauth2UrlQueryConfig = {
|
|
9366
|
+
QueryFilter: {
|
|
9367
|
+
expression: Oauth2UrlExpression;
|
|
9368
|
+
};
|
|
9369
|
+
};
|
|
9370
|
+
|
|
9371
|
+
/**
|
|
9372
|
+
* Boomi EmbedKit component
|
|
9373
|
+
*
|
|
9374
|
+
* @author generated using openapi-typescript-codegen
|
|
9375
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9376
|
+
*/
|
|
9377
|
+
type Oauth2Url = {
|
|
9378
|
+
/**
|
|
9379
|
+
* The unique identifier of the connection.
|
|
9380
|
+
*/
|
|
9381
|
+
connectionId?: string;
|
|
9382
|
+
/**
|
|
9383
|
+
* The oauth2Url for the connection.
|
|
9384
|
+
*/
|
|
9385
|
+
oauth2Url: string;
|
|
9386
|
+
};
|
|
9387
|
+
|
|
9388
|
+
/**
|
|
9389
|
+
* Boomi EmbedKit component
|
|
9390
|
+
*
|
|
9391
|
+
* @author generated using openapi-typescript-codegen
|
|
9392
|
+
* @support https://bitbucket.org/officialboomi/embedkit
|
|
9393
|
+
*/
|
|
9394
|
+
|
|
9395
|
+
type Oauth2UrlQueryResponse = {
|
|
9396
|
+
numberOfResults?: number;
|
|
9397
|
+
queryToken?: string;
|
|
9398
|
+
result?: Array<Oauth2Url>;
|
|
9399
|
+
};
|
|
9400
|
+
|
|
9295
9401
|
/**
|
|
9296
9402
|
* Boomi EmbedKit component
|
|
9297
9403
|
*
|
|
@@ -9363,6 +9469,14 @@ declare class EnvironmentExtensionsService {
|
|
|
9363
9469
|
* @throws ApiError
|
|
9364
9470
|
*/
|
|
9365
9471
|
queryMoreEnvironmentExtensions(requestBody: string): CancelablePromise<EnvironmentExtensionsQueryResponse>;
|
|
9472
|
+
/**
|
|
9473
|
+
* Queries for an EnvironmentExtensions object(s)
|
|
9474
|
+
* For general information about the structure of QUERY filters, their sample payloads, and how to handle the paged results, refer to [Query filters](#section/Introduction/Query-filters) and [Query paging](#section/Introduction/Query-paging).
|
|
9475
|
+
* @param requestBody Possible properties include: environmentId, extensionGroupId
|
|
9476
|
+
* @returns EnvironmentExtensionsQueryResponse Successful request and response.
|
|
9477
|
+
* @throws ApiError
|
|
9478
|
+
*/
|
|
9479
|
+
queryOauth2Url(requestBody?: Oauth2UrlQueryConfig): CancelablePromise<Oauth2UrlQueryResponse>;
|
|
9366
9480
|
}
|
|
9367
9481
|
|
|
9368
9482
|
/**
|
|
@@ -22280,440 +22394,4 @@ type SimpleExpression = (Expression & {
|
|
|
22280
22394
|
property: string;
|
|
22281
22395
|
});
|
|
22282
22396
|
|
|
22283
|
-
type PortDirection = 'in' | 'out';
|
|
22284
|
-
interface NodeHandle {
|
|
22285
|
-
id: string;
|
|
22286
|
-
}
|
|
22287
|
-
interface AddedNode extends NodeHandle {
|
|
22288
|
-
node: Node;
|
|
22289
|
-
in: (p: string) => {
|
|
22290
|
-
node: string;
|
|
22291
|
-
port: string;
|
|
22292
|
-
};
|
|
22293
|
-
out: (p: string) => {
|
|
22294
|
-
node: string;
|
|
22295
|
-
port: string;
|
|
22296
|
-
};
|
|
22297
|
-
}
|
|
22298
|
-
interface Graph {
|
|
22299
|
-
addEdge(edge: Omit<Edge, 'id'>): void;
|
|
22300
|
-
add(node: Omit<Node, 'id'>): AddedNode;
|
|
22301
|
-
}
|
|
22302
|
-
type NodeRef = NodeHandle;
|
|
22303
|
-
interface Port {
|
|
22304
|
-
id: string;
|
|
22305
|
-
name: string;
|
|
22306
|
-
direction: PortDirection;
|
|
22307
|
-
schema?: string;
|
|
22308
|
-
}
|
|
22309
|
-
interface EdgeMeta {
|
|
22310
|
-
label?: string;
|
|
22311
|
-
branchIdentifier?: string;
|
|
22312
|
-
}
|
|
22313
|
-
interface Edge {
|
|
22314
|
-
id: string;
|
|
22315
|
-
from: {
|
|
22316
|
-
node: string;
|
|
22317
|
-
port: string;
|
|
22318
|
-
};
|
|
22319
|
-
to: {
|
|
22320
|
-
node: string;
|
|
22321
|
-
port: string;
|
|
22322
|
-
};
|
|
22323
|
-
meta?: EdgeMeta;
|
|
22324
|
-
}
|
|
22325
|
-
interface NodeKind {
|
|
22326
|
-
family: string;
|
|
22327
|
-
type: string;
|
|
22328
|
-
}
|
|
22329
|
-
interface Node {
|
|
22330
|
-
id: string;
|
|
22331
|
-
name?: string;
|
|
22332
|
-
kind: NodeKind;
|
|
22333
|
-
ports: Port[];
|
|
22334
|
-
config?: Record<string, unknown>;
|
|
22335
|
-
annotations?: Record<string, string>;
|
|
22336
|
-
}
|
|
22337
|
-
interface BPG {
|
|
22338
|
-
id: string;
|
|
22339
|
-
name: string;
|
|
22340
|
-
version?: string | number;
|
|
22341
|
-
nodes: Node[];
|
|
22342
|
-
edges: Edge[];
|
|
22343
|
-
metadata?: Record<string, unknown>;
|
|
22344
|
-
}
|
|
22345
|
-
|
|
22346
|
-
type ComponentKind = 'connector-settings' | 'connector-operation' | 'transform.map' | 'profile.flatfile' | 'profile.json' | 'profile.xml' | 'other';
|
|
22347
|
-
interface ComponentMeta {
|
|
22348
|
-
componentId?: string;
|
|
22349
|
-
version?: string | number;
|
|
22350
|
-
folderFullPath?: string;
|
|
22351
|
-
subType?: string;
|
|
22352
|
-
encrypted?: {
|
|
22353
|
-
path: string;
|
|
22354
|
-
isSet: boolean;
|
|
22355
|
-
}[];
|
|
22356
|
-
}
|
|
22357
|
-
interface ApiComponent<TConfig = unknown> {
|
|
22358
|
-
kind: ComponentKind;
|
|
22359
|
-
name: string;
|
|
22360
|
-
alias: string;
|
|
22361
|
-
subType?: string;
|
|
22362
|
-
config: TConfig;
|
|
22363
|
-
meta?: ComponentMeta;
|
|
22364
|
-
}
|
|
22365
|
-
interface Catalog {
|
|
22366
|
-
components: ApiComponent[];
|
|
22367
|
-
}
|
|
22368
|
-
|
|
22369
|
-
interface AutomationPackage {
|
|
22370
|
-
graph: BPG;
|
|
22371
|
-
catalog: Catalog;
|
|
22372
|
-
meta?: Record<string, unknown>;
|
|
22373
|
-
}
|
|
22374
|
-
|
|
22375
|
-
declare class GraphBuilder implements Graph {
|
|
22376
|
-
private name;
|
|
22377
|
-
private gid;
|
|
22378
|
-
private nodes;
|
|
22379
|
-
private edges;
|
|
22380
|
-
constructor(name: string, gid?: string);
|
|
22381
|
-
/** Add a new node to the graph */
|
|
22382
|
-
add(spec: Omit<Node, 'id'>): AddedNode;
|
|
22383
|
-
/** Flow helpers (flow.ts) call this; accept edge without id and assign one */
|
|
22384
|
-
addEdge(edge: Omit<Edge, 'id'>): void;
|
|
22385
|
-
/** Optional explicit connector that also assigns an id */
|
|
22386
|
-
connect(from: {
|
|
22387
|
-
node: string;
|
|
22388
|
-
port: string;
|
|
22389
|
-
}, to: {
|
|
22390
|
-
node: string;
|
|
22391
|
-
port: string;
|
|
22392
|
-
}, meta?: Edge['meta']): void;
|
|
22393
|
-
/** Finalize to a JSON BPG object */
|
|
22394
|
-
toJSON(): BPG;
|
|
22395
|
-
/** Internal node id generator */
|
|
22396
|
-
private _nextId;
|
|
22397
|
-
}
|
|
22398
|
-
|
|
22399
|
-
type Automation = {
|
|
22400
|
-
/** Add a reusable component (connection, operation, map, profile, etc.) */
|
|
22401
|
-
component: <T = unknown>(c: ApiComponent<T>) => void;
|
|
22402
|
-
/** Build the process graph */
|
|
22403
|
-
process: (name: string, fn: (g: GraphBuilder) => void) => void;
|
|
22404
|
-
};
|
|
22405
|
-
declare function defineAutomation(fn: (b: Automation) => void): AutomationPackage;
|
|
22406
|
-
|
|
22407
|
-
type ChainApi = {
|
|
22408
|
-
to(next: NodeRef): ChainApi;
|
|
22409
|
-
if(decisionNode: NodeRef, routes: (r: {
|
|
22410
|
-
onTrue: ChainApi;
|
|
22411
|
-
onFalse: ChainApi;
|
|
22412
|
-
}) => void): ChainApi;
|
|
22413
|
-
branch(branchNode: NodeRef, routes: Record<number, (b: ChainApi) => void>): ChainApi;
|
|
22414
|
-
};
|
|
22415
|
-
/** Entry: start a sequential route from an initial node */
|
|
22416
|
-
declare function seq(g: Graph, start: NodeRef): ChainApi;
|
|
22417
|
-
|
|
22418
|
-
declare const start: (name?: string) => Omit<Node, "id">;
|
|
22419
|
-
declare const docProps: (name: string, cfg: Record<string, unknown>) => Omit<Node, "id">;
|
|
22420
|
-
declare const decision: (name: string | undefined, cfg: Record<string, unknown>) => Omit<Node, "id">;
|
|
22421
|
-
declare const branch: (name?: string, n?: number) => Omit<Node, "id">;
|
|
22422
|
-
declare const mapNode: (name: string | undefined, cfg: {
|
|
22423
|
-
mapId: string;
|
|
22424
|
-
}) => Omit<Node, "id">;
|
|
22425
|
-
declare const notify: (name: string | undefined, cfg: {
|
|
22426
|
-
level: "INFO" | "ERROR";
|
|
22427
|
-
message: string;
|
|
22428
|
-
params?: unknown;
|
|
22429
|
-
}) => Omit<Node, "id">;
|
|
22430
|
-
declare const returnDocs: (name?: string) => Omit<Node, "id">;
|
|
22431
|
-
declare const stop: (name?: string, cfg?: {
|
|
22432
|
-
continue: boolean;
|
|
22433
|
-
}) => Omit<Node, "id">;
|
|
22434
|
-
|
|
22435
|
-
declare function mapNodeByAlias(name: string, cfg: {
|
|
22436
|
-
map: {
|
|
22437
|
-
alias: string;
|
|
22438
|
-
};
|
|
22439
|
-
}): Omit<Node, 'id'>;
|
|
22440
|
-
|
|
22441
|
-
type ConnectorNodeConfig = {
|
|
22442
|
-
/** Logical alias for the connection component */
|
|
22443
|
-
connection: {
|
|
22444
|
-
alias: string;
|
|
22445
|
-
};
|
|
22446
|
-
/** Logical alias for the operation component */
|
|
22447
|
-
operation: {
|
|
22448
|
-
alias: string;
|
|
22449
|
-
};
|
|
22450
|
-
/** Optional extra runtime settings */
|
|
22451
|
-
parameters?: Record<string, unknown>;
|
|
22452
|
-
};
|
|
22453
|
-
declare function connectorNode(name: string, connectorType: string, // e.g., 'http', 'database', 's3'
|
|
22454
|
-
cfg: ConnectorNodeConfig): Omit<Node, 'id'>;
|
|
22455
|
-
|
|
22456
|
-
/** Common “character” data format used in your sample */
|
|
22457
|
-
type ProfileDataType = 'character' | 'number' | 'date' | 'time' | 'datetime' | 'binary';
|
|
22458
|
-
interface FlatFileProfileGeneralInfo {
|
|
22459
|
-
fileType: 'delimited' | 'fixed' | 'binary';
|
|
22460
|
-
useColumnHeaders?: boolean;
|
|
22461
|
-
}
|
|
22462
|
-
interface FlatFileDelimitedOptions {
|
|
22463
|
-
fileDelimiter: 'commadelimited' | 'tabdelimited' | 'pipedelimited' | 'semicolon' | 'stardelimited' | string;
|
|
22464
|
-
textQualifier?: 'doublequote' | 'singlequote' | 'na' | string;
|
|
22465
|
-
removeEscape?: boolean;
|
|
22466
|
-
}
|
|
22467
|
-
interface FlatFileOptions {
|
|
22468
|
-
/** Delimited/fixed/binary-specific options (for now we support delimited fully) */
|
|
22469
|
-
delimited?: FlatFileDelimitedOptions;
|
|
22470
|
-
}
|
|
22471
|
-
interface FlatFileProfileProperties {
|
|
22472
|
-
generalInfo: FlatFileProfileGeneralInfo;
|
|
22473
|
-
options?: FlatFileOptions;
|
|
22474
|
-
}
|
|
22475
|
-
/** One leaf field under <FlatFileElements> */
|
|
22476
|
-
interface FlatFileElement {
|
|
22477
|
-
key: string;
|
|
22478
|
-
name: string;
|
|
22479
|
-
dataType?: ProfileDataType;
|
|
22480
|
-
isMappable?: boolean;
|
|
22481
|
-
isNode?: boolean;
|
|
22482
|
-
enforceUnique?: boolean;
|
|
22483
|
-
identityValue?: string;
|
|
22484
|
-
justification?: 'left' | 'right' | 'center';
|
|
22485
|
-
mandatory?: boolean;
|
|
22486
|
-
minLength?: number;
|
|
22487
|
-
maxLength?: number;
|
|
22488
|
-
useToIdentifyFormat?: boolean;
|
|
22489
|
-
validateData?: boolean;
|
|
22490
|
-
}
|
|
22491
|
-
/** The <FlatFileElements> group node */
|
|
22492
|
-
interface FlatFileElementsGroup {
|
|
22493
|
-
key: string;
|
|
22494
|
-
name: string;
|
|
22495
|
-
isNode?: boolean;
|
|
22496
|
-
elements: FlatFileElement[];
|
|
22497
|
-
}
|
|
22498
|
-
/** The <FlatFileRecord> wrapper node */
|
|
22499
|
-
interface FlatFileRecord {
|
|
22500
|
-
key: string;
|
|
22501
|
-
name: string;
|
|
22502
|
-
isNode?: boolean;
|
|
22503
|
-
detectFormat?: 'numberofcolumns' | 'none';
|
|
22504
|
-
elementsGroup: FlatFileElementsGroup;
|
|
22505
|
-
}
|
|
22506
|
-
/** Top-level profile */
|
|
22507
|
-
interface FlatFileProfile {
|
|
22508
|
-
/** Optional passthrough of the full inner XML (bns:object). If set, renderer uses this. */
|
|
22509
|
-
raw?: string;
|
|
22510
|
-
/** Optional version flags Boomi sometimes emits */
|
|
22511
|
-
modelVersion?: string | number;
|
|
22512
|
-
strict?: boolean;
|
|
22513
|
-
properties: FlatFileProfileProperties;
|
|
22514
|
-
/** Data elements = one or more records (you can expand to an array if needed later) */
|
|
22515
|
-
dataElements: {
|
|
22516
|
-
record: FlatFileRecord;
|
|
22517
|
-
};
|
|
22518
|
-
}
|
|
22519
|
-
|
|
22520
|
-
type JsonDataType = 'character';
|
|
22521
|
-
interface JsonProfileEntry {
|
|
22522
|
-
key: string;
|
|
22523
|
-
name: string;
|
|
22524
|
-
dataType?: JsonDataType;
|
|
22525
|
-
isMappable?: boolean;
|
|
22526
|
-
isNode?: boolean;
|
|
22527
|
-
}
|
|
22528
|
-
interface JsonProfileObject {
|
|
22529
|
-
/** The object container under the root */
|
|
22530
|
-
key?: string;
|
|
22531
|
-
name?: string;
|
|
22532
|
-
isMappable?: boolean;
|
|
22533
|
-
isNode?: boolean;
|
|
22534
|
-
entries: JsonProfileEntry[];
|
|
22535
|
-
}
|
|
22536
|
-
interface JsonProfile {
|
|
22537
|
-
/** Optional raw XML escape hatch; if provided we bypass structural rendering */
|
|
22538
|
-
raw?: string;
|
|
22539
|
-
/** Root node settings */
|
|
22540
|
-
root?: {
|
|
22541
|
-
key?: string;
|
|
22542
|
-
name?: string;
|
|
22543
|
-
dataType?: JsonDataType;
|
|
22544
|
-
isMappable?: boolean;
|
|
22545
|
-
isNode?: boolean;
|
|
22546
|
-
};
|
|
22547
|
-
/** The single root object with entries */
|
|
22548
|
-
object?: JsonProfileObject;
|
|
22549
|
-
}
|
|
22550
|
-
|
|
22551
|
-
interface HttpConnection {
|
|
22552
|
-
authenticationType: 'BASIC' | 'OAUTH' | 'OAUTH2' | 'NONE';
|
|
22553
|
-
url: string;
|
|
22554
|
-
AuthSettings?: {
|
|
22555
|
-
user?: string;
|
|
22556
|
-
password?: string;
|
|
22557
|
-
};
|
|
22558
|
-
OAuthSettings?: {
|
|
22559
|
-
accessToken?: string;
|
|
22560
|
-
accessTokenURL?: string;
|
|
22561
|
-
authorizationURL?: string;
|
|
22562
|
-
consumerKey?: string;
|
|
22563
|
-
realm?: string;
|
|
22564
|
-
requestTokenURL?: string;
|
|
22565
|
-
};
|
|
22566
|
-
OAuth2Settings?: {
|
|
22567
|
-
grantType?: 'code' | 'client_credentials' | 'password' | 'refresh_token';
|
|
22568
|
-
credentials?: {
|
|
22569
|
-
clientId?: string;
|
|
22570
|
-
clientSecret?: string;
|
|
22571
|
-
accessToken?: string;
|
|
22572
|
-
};
|
|
22573
|
-
authorizationTokenEndpoint?: {
|
|
22574
|
-
url?: string;
|
|
22575
|
-
};
|
|
22576
|
-
accessTokenEndpoint?: {
|
|
22577
|
-
url?: string;
|
|
22578
|
-
};
|
|
22579
|
-
scope?: string;
|
|
22580
|
-
};
|
|
22581
|
-
SSLOptions?: {
|
|
22582
|
-
clientauth?: boolean;
|
|
22583
|
-
trustServerCert?: boolean;
|
|
22584
|
-
clientsslalias?: string;
|
|
22585
|
-
trustedcertalias?: string;
|
|
22586
|
-
};
|
|
22587
|
-
}
|
|
22588
|
-
|
|
22589
|
-
interface HttpOperation {
|
|
22590
|
-
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
22591
|
-
dataContentType?: string;
|
|
22592
|
-
followRedirects?: boolean;
|
|
22593
|
-
returnErrors?: boolean;
|
|
22594
|
-
returnResponses?: boolean;
|
|
22595
|
-
requestProfileType?: 'NONE' | 'XML' | 'JSON' | 'FlatFile';
|
|
22596
|
-
responseProfileType?: 'NONE' | 'XML' | 'JSON' | 'FlatFile';
|
|
22597
|
-
/** Optional static or dynamic headers */
|
|
22598
|
-
requestHeaders?: Record<string, string | {
|
|
22599
|
-
$var: string;
|
|
22600
|
-
}>;
|
|
22601
|
-
/** Path variables that can be dynamic */
|
|
22602
|
-
pathElements?: {
|
|
22603
|
-
name: string;
|
|
22604
|
-
key: string;
|
|
22605
|
-
isVariable: boolean;
|
|
22606
|
-
}[];
|
|
22607
|
-
/** Optional response header mappings */
|
|
22608
|
-
responseHeaderMapping?: Record<string, string>;
|
|
22609
|
-
}
|
|
22610
|
-
|
|
22611
|
-
type FunctionCategory = 'ProcessProperty' | 'Utility';
|
|
22612
|
-
type FunctionType = 'PropertyGet' | 'DocumentPropertyGet' | 'PassThrough';
|
|
22613
|
-
interface MapInput {
|
|
22614
|
-
key: string;
|
|
22615
|
-
name: string;
|
|
22616
|
-
default?: string;
|
|
22617
|
-
}
|
|
22618
|
-
interface MapOutput {
|
|
22619
|
-
key: string;
|
|
22620
|
-
name: string;
|
|
22621
|
-
}
|
|
22622
|
-
interface MapFunctionStep {
|
|
22623
|
-
key: string;
|
|
22624
|
-
name: string;
|
|
22625
|
-
category: FunctionCategory;
|
|
22626
|
-
type: FunctionType;
|
|
22627
|
-
position?: number;
|
|
22628
|
-
x?: number;
|
|
22629
|
-
y?: number;
|
|
22630
|
-
inputs?: MapInput[];
|
|
22631
|
-
outputs?: MapOutput[];
|
|
22632
|
-
configurationXml?: string;
|
|
22633
|
-
cacheEnabled?: boolean;
|
|
22634
|
-
cacheOption?: 'none' | 'partial' | 'full';
|
|
22635
|
-
sumEnabled?: boolean;
|
|
22636
|
-
}
|
|
22637
|
-
/** EXACT shape we need to reproduce Boomi’s function→profile mapping line */
|
|
22638
|
-
interface MapMapping {
|
|
22639
|
-
fromFunction: string;
|
|
22640
|
-
fromKey: string;
|
|
22641
|
-
fromType: 'function';
|
|
22642
|
-
toKey: string;
|
|
22643
|
-
toKeyPath: string;
|
|
22644
|
-
toNamePath: string;
|
|
22645
|
-
toType: 'profile';
|
|
22646
|
-
}
|
|
22647
|
-
interface MapConfig {
|
|
22648
|
-
fromProfile: {
|
|
22649
|
-
alias: string;
|
|
22650
|
-
};
|
|
22651
|
-
toProfile: {
|
|
22652
|
-
alias: string;
|
|
22653
|
-
};
|
|
22654
|
-
functions: MapFunctionStep[];
|
|
22655
|
-
mappings: MapMapping[];
|
|
22656
|
-
description?: string;
|
|
22657
|
-
optimizeExecutionOrder?: boolean;
|
|
22658
|
-
}
|
|
22659
|
-
|
|
22660
|
-
declare const fn: {
|
|
22661
|
-
propertyGet(key: string, name: string, position: number, opts: {
|
|
22662
|
-
propertyName: string;
|
|
22663
|
-
defaultValue?: string;
|
|
22664
|
-
}, xy?: {
|
|
22665
|
-
x?: number;
|
|
22666
|
-
y?: number;
|
|
22667
|
-
}): MapFunctionStep;
|
|
22668
|
-
documentPropertyGet(key: string, outputName: string, position: number, propertyId: string, propertyName: string, xy?: {
|
|
22669
|
-
x?: number;
|
|
22670
|
-
y?: number;
|
|
22671
|
-
}): MapFunctionStep;
|
|
22672
|
-
};
|
|
22673
|
-
declare const m: {
|
|
22674
|
-
fromFnToProfile(fromFunction: string, fromKey: string, toKey: string, toKeyPath: string, toNamePath: string): MapMapping;
|
|
22675
|
-
};
|
|
22676
|
-
|
|
22677
|
-
declare function ffElement(params: Omit<FlatFileElement, 'dataType' | 'isMappable' | 'isNode' | 'enforceUnique' | 'identityValue' | 'justification' | 'mandatory' | 'minLength' | 'maxLength' | 'useToIdentifyFormat' | 'validateData'> & Partial<FlatFileElement>): FlatFileElement;
|
|
22678
|
-
declare function ffElementsGroup(params: Omit<FlatFileElementsGroup, 'isNode'> & Partial<FlatFileElementsGroup>): FlatFileElementsGroup;
|
|
22679
|
-
declare function ffRecord(params: Omit<FlatFileRecord, 'isNode' | 'detectFormat'> & Partial<FlatFileRecord>): FlatFileRecord;
|
|
22680
|
-
|
|
22681
|
-
declare function compileAutomation(pkg: AutomationPackage): {
|
|
22682
|
-
processXml: string;
|
|
22683
|
-
componentXmls: {
|
|
22684
|
-
alias: string;
|
|
22685
|
-
kind: ComponentKind;
|
|
22686
|
-
subType: string | undefined;
|
|
22687
|
-
xml: string;
|
|
22688
|
-
}[];
|
|
22689
|
-
};
|
|
22690
|
-
|
|
22691
|
-
interface BoomiClient {
|
|
22692
|
-
createComponent(xml: string): Promise<{
|
|
22693
|
-
componentId: string;
|
|
22694
|
-
version: string | number;
|
|
22695
|
-
}>;
|
|
22696
|
-
}
|
|
22697
|
-
declare function makeEmbedKitClient(services: {
|
|
22698
|
-
component: ComponentService;
|
|
22699
|
-
}): BoomiClient;
|
|
22700
|
-
|
|
22701
|
-
interface CreateResult {
|
|
22702
|
-
processId: string;
|
|
22703
|
-
processVersion: string | number;
|
|
22704
|
-
componentIds: Record<string, {
|
|
22705
|
-
id: string;
|
|
22706
|
-
version: string | number;
|
|
22707
|
-
kind: string;
|
|
22708
|
-
subType?: string;
|
|
22709
|
-
}>;
|
|
22710
|
-
}
|
|
22711
|
-
/**
|
|
22712
|
-
* 1) compile JS → component XMLs + process XML
|
|
22713
|
-
* 2) create components in Boomi in dependency order (profiles → maps → connections → operations …)
|
|
22714
|
-
* - while creating a Map, rewrite ALIAS:... refs to newly created profile IDs
|
|
22715
|
-
* 3) rewrite process XML (connectionAlias/operationAlias/mapAlias → *Id) and create the process
|
|
22716
|
-
*/
|
|
22717
|
-
declare function createInBoomiFromAutomation(pkg: AutomationPackage, boomi: BoomiClient): Promise<CreateResult>;
|
|
22718
|
-
|
|
22719
|
-
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, type ApiComponent, 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 ConnectorNodeConfig, 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 FlatFileProfile, 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, type HttpConnection, type HttpOperation, 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 JsonProfile, 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 MapConfig, 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, 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, branch, compileAutomation, connectorNode, createInBoomiFromAutomation, type customFields, decision, defineAutomation, docProps, ffElement, ffElementsGroup, ffRecord, fn, m, makeEmbedKitClient, mapNode, mapNodeByAlias, notify, returnDocs, seq, start, stop };
|
|
22397
|
+
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 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 };
|