@elyx-code/project-logic-tree 0.0.6490 → 0.0.6492
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.d.ts +672 -10
- package/dist/index.js +28285 -25901
- package/dist/index.umd.cjs +254 -225
- package/package.json +13 -3
package/dist/index.d.ts
CHANGED
|
@@ -528,7 +528,7 @@ export declare enum BaseEntityNames {
|
|
|
528
528
|
PERSISTED_ENTITY = "BUILT_IN_PERSISTED_ENTITY_ENTITY",
|
|
529
529
|
CRON_JOB = "BUILT_IN_CRON_JOB_ENTITY",
|
|
530
530
|
EXECUTION = "BUILT_IN_EXECUTION_ENTITY",
|
|
531
|
-
|
|
531
|
+
EXTERNAL_INTERGRATION_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ENTITY"
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
export declare class BaseRegisteredExtension {
|
|
@@ -536,6 +536,12 @@ export declare class BaseRegisteredExtension {
|
|
|
536
536
|
constructor(extensionsRegistry: ExtensionsRegistry);
|
|
537
537
|
}
|
|
538
538
|
|
|
539
|
+
export declare const basesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
540
|
+
|
|
541
|
+
export declare const basesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
542
|
+
|
|
543
|
+
export declare const basesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
544
|
+
|
|
539
545
|
export declare abstract class BaseState extends SharedStateFunctionality implements IGenericBase {
|
|
540
546
|
abstract id: EntityId;
|
|
541
547
|
abstract version: EntityVersion;
|
|
@@ -750,9 +756,6 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
750
756
|
};
|
|
751
757
|
};
|
|
752
758
|
"built-in-base-entity": {
|
|
753
|
-
BUILT_IN_KEY_VALUE_PARAM_ENTITY: {
|
|
754
|
-
id: BaseEntityNames;
|
|
755
|
-
};
|
|
756
759
|
BUILT_IN_HTTP_ENDPOINT_ENTITY: {
|
|
757
760
|
id: BaseEntityNames;
|
|
758
761
|
properties: {
|
|
@@ -861,6 +864,24 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
861
864
|
};
|
|
862
865
|
};
|
|
863
866
|
};
|
|
867
|
+
BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ENTITY: {
|
|
868
|
+
id: BaseEntityNames;
|
|
869
|
+
properties: {
|
|
870
|
+
integration: {
|
|
871
|
+
id: string;
|
|
872
|
+
dataType: {
|
|
873
|
+
id: string;
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
connectionId: {
|
|
877
|
+
id: string;
|
|
878
|
+
dataType: {
|
|
879
|
+
id: string;
|
|
880
|
+
};
|
|
881
|
+
};
|
|
882
|
+
};
|
|
883
|
+
methods: {};
|
|
884
|
+
};
|
|
864
885
|
};
|
|
865
886
|
operation: {
|
|
866
887
|
"string-join": {
|
|
@@ -1325,6 +1346,318 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1325
1346
|
};
|
|
1326
1347
|
};
|
|
1327
1348
|
};
|
|
1349
|
+
"external-integration--airtable--get--tables": {
|
|
1350
|
+
id: ExternalIntegrationOperations;
|
|
1351
|
+
inputs: {
|
|
1352
|
+
connection: {
|
|
1353
|
+
id: string;
|
|
1354
|
+
dataType: {
|
|
1355
|
+
id: string;
|
|
1356
|
+
};
|
|
1357
|
+
};
|
|
1358
|
+
};
|
|
1359
|
+
outputs: {};
|
|
1360
|
+
};
|
|
1361
|
+
"external-integration--airtable--get--bases": {
|
|
1362
|
+
id: ExternalIntegrationOperations;
|
|
1363
|
+
inputs: {
|
|
1364
|
+
connection: {
|
|
1365
|
+
id: string;
|
|
1366
|
+
dataType: {
|
|
1367
|
+
id: string;
|
|
1368
|
+
};
|
|
1369
|
+
};
|
|
1370
|
+
};
|
|
1371
|
+
outputs: {};
|
|
1372
|
+
};
|
|
1373
|
+
"external-integration--google--get--workspace-org-units": {
|
|
1374
|
+
id: ExternalIntegrationOperations;
|
|
1375
|
+
inputs: {
|
|
1376
|
+
connection: {
|
|
1377
|
+
id: string;
|
|
1378
|
+
dataType: {
|
|
1379
|
+
id: string;
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1383
|
+
outputs: {};
|
|
1384
|
+
};
|
|
1385
|
+
"external-integration--google--get--workspace-users": {
|
|
1386
|
+
id: ExternalIntegrationOperations;
|
|
1387
|
+
inputs: {
|
|
1388
|
+
connection: {
|
|
1389
|
+
id: string;
|
|
1390
|
+
dataType: {
|
|
1391
|
+
id: string;
|
|
1392
|
+
};
|
|
1393
|
+
};
|
|
1394
|
+
};
|
|
1395
|
+
outputs: {};
|
|
1396
|
+
};
|
|
1397
|
+
"external-integration--google--get--workspace-user-access-tokens": {
|
|
1398
|
+
id: ExternalIntegrationOperations;
|
|
1399
|
+
inputs: {
|
|
1400
|
+
connection: {
|
|
1401
|
+
id: string;
|
|
1402
|
+
dataType: {
|
|
1403
|
+
id: string;
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
};
|
|
1407
|
+
outputs: {};
|
|
1408
|
+
};
|
|
1409
|
+
"external-integration--google-drive--get--fetch-document": {
|
|
1410
|
+
id: ExternalIntegrationOperations;
|
|
1411
|
+
inputs: {
|
|
1412
|
+
connection: {
|
|
1413
|
+
id: string;
|
|
1414
|
+
dataType: {
|
|
1415
|
+
id: string;
|
|
1416
|
+
};
|
|
1417
|
+
};
|
|
1418
|
+
};
|
|
1419
|
+
outputs: {};
|
|
1420
|
+
};
|
|
1421
|
+
"external-integration--google-drive--get--fetch-google-sheet": {
|
|
1422
|
+
id: ExternalIntegrationOperations;
|
|
1423
|
+
inputs: {
|
|
1424
|
+
connection: {
|
|
1425
|
+
id: string;
|
|
1426
|
+
dataType: {
|
|
1427
|
+
id: string;
|
|
1428
|
+
};
|
|
1429
|
+
};
|
|
1430
|
+
};
|
|
1431
|
+
outputs: {};
|
|
1432
|
+
};
|
|
1433
|
+
"external-integration--google-drive--get--fetch-google-doc": {
|
|
1434
|
+
id: ExternalIntegrationOperations;
|
|
1435
|
+
inputs: {
|
|
1436
|
+
connection: {
|
|
1437
|
+
id: string;
|
|
1438
|
+
dataType: {
|
|
1439
|
+
id: string;
|
|
1440
|
+
};
|
|
1441
|
+
};
|
|
1442
|
+
};
|
|
1443
|
+
outputs: {};
|
|
1444
|
+
};
|
|
1445
|
+
"external-integration--google-drive--get--folder-content": {
|
|
1446
|
+
id: ExternalIntegrationOperations;
|
|
1447
|
+
inputs: {
|
|
1448
|
+
connection: {
|
|
1449
|
+
id: string;
|
|
1450
|
+
dataType: {
|
|
1451
|
+
id: string;
|
|
1452
|
+
};
|
|
1453
|
+
};
|
|
1454
|
+
};
|
|
1455
|
+
outputs: {};
|
|
1456
|
+
};
|
|
1457
|
+
"external-integration--google-drive--post--upload-document": {
|
|
1458
|
+
id: ExternalIntegrationOperations;
|
|
1459
|
+
inputs: {
|
|
1460
|
+
connection: {
|
|
1461
|
+
id: string;
|
|
1462
|
+
dataType: {
|
|
1463
|
+
id: string;
|
|
1464
|
+
};
|
|
1465
|
+
};
|
|
1466
|
+
};
|
|
1467
|
+
outputs: {};
|
|
1468
|
+
};
|
|
1469
|
+
"external-integration--google-drive--get--list-drives": {
|
|
1470
|
+
id: ExternalIntegrationOperations;
|
|
1471
|
+
inputs: {
|
|
1472
|
+
connection: {
|
|
1473
|
+
id: string;
|
|
1474
|
+
dataType: {
|
|
1475
|
+
id: string;
|
|
1476
|
+
};
|
|
1477
|
+
};
|
|
1478
|
+
};
|
|
1479
|
+
outputs: {};
|
|
1480
|
+
};
|
|
1481
|
+
"external-integration--google-drive--get--documents": {
|
|
1482
|
+
id: ExternalIntegrationOperations;
|
|
1483
|
+
inputs: {
|
|
1484
|
+
connection: {
|
|
1485
|
+
id: string;
|
|
1486
|
+
dataType: {
|
|
1487
|
+
id: string;
|
|
1488
|
+
};
|
|
1489
|
+
};
|
|
1490
|
+
};
|
|
1491
|
+
outputs: {};
|
|
1492
|
+
};
|
|
1493
|
+
"external-integration--google-drive--get--folders": {
|
|
1494
|
+
id: ExternalIntegrationOperations;
|
|
1495
|
+
inputs: {
|
|
1496
|
+
connection: {
|
|
1497
|
+
id: string;
|
|
1498
|
+
dataType: {
|
|
1499
|
+
id: string;
|
|
1500
|
+
};
|
|
1501
|
+
};
|
|
1502
|
+
};
|
|
1503
|
+
outputs: {};
|
|
1504
|
+
};
|
|
1505
|
+
"external-integration--google-mail--post--send-email": {
|
|
1506
|
+
id: ExternalIntegrationOperations;
|
|
1507
|
+
inputs: {
|
|
1508
|
+
connection: {
|
|
1509
|
+
id: string;
|
|
1510
|
+
dataType: {
|
|
1511
|
+
id: string;
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1514
|
+
};
|
|
1515
|
+
outputs: {};
|
|
1516
|
+
};
|
|
1517
|
+
"external-integration--google-mail--get--fetch-attachment": {
|
|
1518
|
+
id: ExternalIntegrationOperations;
|
|
1519
|
+
inputs: {
|
|
1520
|
+
connection: {
|
|
1521
|
+
id: string;
|
|
1522
|
+
dataType: {
|
|
1523
|
+
id: string;
|
|
1524
|
+
};
|
|
1525
|
+
};
|
|
1526
|
+
};
|
|
1527
|
+
outputs: {};
|
|
1528
|
+
};
|
|
1529
|
+
"external-integration--google-mail--get--emails": {
|
|
1530
|
+
id: ExternalIntegrationOperations;
|
|
1531
|
+
inputs: {
|
|
1532
|
+
connection: {
|
|
1533
|
+
id: string;
|
|
1534
|
+
dataType: {
|
|
1535
|
+
id: string;
|
|
1536
|
+
};
|
|
1537
|
+
};
|
|
1538
|
+
};
|
|
1539
|
+
outputs: {};
|
|
1540
|
+
};
|
|
1541
|
+
"external-integration--google-mail--get--labels": {
|
|
1542
|
+
id: ExternalIntegrationOperations;
|
|
1543
|
+
inputs: {
|
|
1544
|
+
connection: {
|
|
1545
|
+
id: string;
|
|
1546
|
+
dataType: {
|
|
1547
|
+
id: string;
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
1550
|
+
};
|
|
1551
|
+
outputs: {};
|
|
1552
|
+
};
|
|
1553
|
+
"external-integration--google-sheet--get--fetch-spreadsheet": {
|
|
1554
|
+
id: ExternalIntegrationOperations;
|
|
1555
|
+
inputs: {
|
|
1556
|
+
connection: {
|
|
1557
|
+
id: string;
|
|
1558
|
+
dataType: {
|
|
1559
|
+
id: string;
|
|
1560
|
+
};
|
|
1561
|
+
};
|
|
1562
|
+
};
|
|
1563
|
+
outputs: {};
|
|
1564
|
+
};
|
|
1565
|
+
"external-integration--jira--post--create-issue": {
|
|
1566
|
+
id: ExternalIntegrationOperations;
|
|
1567
|
+
inputs: {
|
|
1568
|
+
connection: {
|
|
1569
|
+
id: string;
|
|
1570
|
+
dataType: {
|
|
1571
|
+
id: string;
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
};
|
|
1575
|
+
outputs: {};
|
|
1576
|
+
};
|
|
1577
|
+
"external-integration--jira--get--issues": {
|
|
1578
|
+
id: ExternalIntegrationOperations;
|
|
1579
|
+
inputs: {
|
|
1580
|
+
connection: {
|
|
1581
|
+
id: string;
|
|
1582
|
+
dataType: {
|
|
1583
|
+
id: string;
|
|
1584
|
+
};
|
|
1585
|
+
};
|
|
1586
|
+
};
|
|
1587
|
+
outputs: {};
|
|
1588
|
+
};
|
|
1589
|
+
"external-integration--jira--get--projects": {
|
|
1590
|
+
id: ExternalIntegrationOperations;
|
|
1591
|
+
inputs: {
|
|
1592
|
+
connection: {
|
|
1593
|
+
id: string;
|
|
1594
|
+
dataType: {
|
|
1595
|
+
id: string;
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
outputs: {};
|
|
1600
|
+
};
|
|
1601
|
+
"external-integration--jira--get--issue-types": {
|
|
1602
|
+
id: ExternalIntegrationOperations;
|
|
1603
|
+
inputs: {
|
|
1604
|
+
connection: {
|
|
1605
|
+
id: string;
|
|
1606
|
+
dataType: {
|
|
1607
|
+
id: string;
|
|
1608
|
+
};
|
|
1609
|
+
};
|
|
1610
|
+
};
|
|
1611
|
+
outputs: {};
|
|
1612
|
+
};
|
|
1613
|
+
"external-integration--slack--post--send-message": {
|
|
1614
|
+
id: ExternalIntegrationOperations;
|
|
1615
|
+
inputs: {
|
|
1616
|
+
connection: {
|
|
1617
|
+
id: string;
|
|
1618
|
+
dataType: {
|
|
1619
|
+
id: string;
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
};
|
|
1623
|
+
outputs: {};
|
|
1624
|
+
};
|
|
1625
|
+
"external-integration--slack--get--users": {
|
|
1626
|
+
id: ExternalIntegrationOperations;
|
|
1627
|
+
inputs: {
|
|
1628
|
+
connection: {
|
|
1629
|
+
id: string;
|
|
1630
|
+
dataType: {
|
|
1631
|
+
id: string;
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
outputs: {};
|
|
1636
|
+
};
|
|
1637
|
+
"external-integration--slack--get--channels": {
|
|
1638
|
+
id: ExternalIntegrationOperations;
|
|
1639
|
+
inputs: {
|
|
1640
|
+
connection: {
|
|
1641
|
+
id: string;
|
|
1642
|
+
dataType: {
|
|
1643
|
+
id: string;
|
|
1644
|
+
};
|
|
1645
|
+
};
|
|
1646
|
+
};
|
|
1647
|
+
outputs: {};
|
|
1648
|
+
};
|
|
1649
|
+
"external-integration--slack--get--messages": {
|
|
1650
|
+
id: ExternalIntegrationOperations;
|
|
1651
|
+
inputs: {
|
|
1652
|
+
connection: {
|
|
1653
|
+
id: string;
|
|
1654
|
+
dataType: {
|
|
1655
|
+
id: string;
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
};
|
|
1659
|
+
outputs: {};
|
|
1660
|
+
};
|
|
1328
1661
|
};
|
|
1329
1662
|
loop: {
|
|
1330
1663
|
"list-loop": {
|
|
@@ -1933,6 +2266,12 @@ export declare enum ChangeSetEntityChangeType {
|
|
|
1933
2266
|
|
|
1934
2267
|
export declare function changeSetJSONRecordToUniqueIds(changeSet: IRecordChangeSet): Set<EntityId>;
|
|
1935
2268
|
|
|
2269
|
+
export declare const channelsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
2270
|
+
|
|
2271
|
+
export declare const channelsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
2272
|
+
|
|
2273
|
+
export declare const channelsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
2274
|
+
|
|
1936
2275
|
export declare function checkAreDataTypesCompatible(dataTypeA: DataTypeState | null, dataTypeB: DataTypeState | null): IDataTypeCompatible | IDataTypeIncompatibile;
|
|
1937
2276
|
|
|
1938
2277
|
export declare function checkAreDefinitionEntitiesCompatibleAsDataType(sourceDefinitionEntity: DefinitionEntityState, targetDefinitionEntity: DefinitionEntityState): boolean;
|
|
@@ -2044,8 +2383,9 @@ export declare type ChildReference = IFunctionDeclarationReference | IInstalledP
|
|
|
2044
2383
|
|
|
2045
2384
|
export declare const CHILDREN_TYPES: EntityType[];
|
|
2046
2385
|
|
|
2047
|
-
export declare function cloneProject(project: ProjectState, { enrich, }?: {
|
|
2386
|
+
export declare function cloneProject(project: ProjectState, { enrich, shallowErrors }?: {
|
|
2048
2387
|
enrich: boolean;
|
|
2388
|
+
shallowErrors: boolean;
|
|
2049
2389
|
}, parentContext?: IProjectInstanceParentContext): ProjectState;
|
|
2050
2390
|
|
|
2051
2391
|
declare class ColumnRef implements ISearchNode {
|
|
@@ -2428,6 +2768,12 @@ export declare function createEntityError(error: IEntityError): {
|
|
|
2428
2768
|
error: EntityError;
|
|
2429
2769
|
};
|
|
2430
2770
|
|
|
2771
|
+
export declare const createIssueIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
2772
|
+
|
|
2773
|
+
export declare const createIssueIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
2774
|
+
|
|
2775
|
+
export declare const createIssueIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
2776
|
+
|
|
2431
2777
|
export declare function createNestedDataTypeForEntity(entity: DefinitionEntityState, parentDataType: DataTypeState, changeSet: ChangeSet | null, parentRelationType?: DataTypeParentChildRelation): IChangeSet<DataTypeState>;
|
|
2432
2778
|
|
|
2433
2779
|
export declare enum CreateNewInputIds {
|
|
@@ -3212,6 +3558,12 @@ export declare function deleteRootProject(where: {
|
|
|
3212
3558
|
id: string;
|
|
3213
3559
|
}): null;
|
|
3214
3560
|
|
|
3561
|
+
export declare const documentsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
3562
|
+
|
|
3563
|
+
export declare const documentsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
3564
|
+
|
|
3565
|
+
export declare const documentsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
3566
|
+
|
|
3215
3567
|
export declare const DRAGGABLE_CALLABLE_TYPES: EntityType[];
|
|
3216
3568
|
|
|
3217
3569
|
export declare const DRAGGABLE_CALLER_TYPES: EntityType[];
|
|
@@ -3377,6 +3729,12 @@ export declare type ElementTransfer = IProjectTransfer | IInstalledProjectTransf
|
|
|
3377
3729
|
|
|
3378
3730
|
export declare type ElementTypesUnion = ProjectTypesUnion | InstalledProjectTypesUnion | DefinitionEntityTypesUnion | GlobalEventTypesUnion | FunctionDeclarationTypesUnion | FunctionCallTypesUnion | PropertyTypesUnion | VariableDeclarationTypesUnion | VariableInstanceTypesUnion | OperationTypesUnion | ConditionTypesUnion | ArgumentDeclarationTypesUnion | InputMapTypesUnion | ReturnDeclarationTypesUnion | OutputMapTypesUnion | DataTypeTypesUnion | ReturnStatementTypesUnion | BreakStatementTypesUnion | ContinueStatementTypesUnion | LoopTypesUnion | ActionDescriptorTypesUnion | SearchTypesUnion | PrimitiveEntityTypesUnion | LiteralValueTypesUnion | ValueDescriptorTypesUnion | BuiltInBaseEntityTypesUnion | InternalCallTypesUnion;
|
|
3379
3731
|
|
|
3732
|
+
export declare const emailsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
3733
|
+
|
|
3734
|
+
export declare const emailsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
3735
|
+
|
|
3736
|
+
export declare const emailsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
3737
|
+
|
|
3380
3738
|
export declare function emitSideEffects(changeSet: ChangeSet): ChangeSet;
|
|
3381
3739
|
|
|
3382
3740
|
export declare const emptyCondition: IActionDescriptorTransfer;
|
|
@@ -4073,6 +4431,211 @@ export declare enum ExtentionPriority {
|
|
|
4073
4431
|
Low = 10
|
|
4074
4432
|
}
|
|
4075
4433
|
|
|
4434
|
+
export declare const EXTERNAL_INTERGRATION_OPERATIONS: {
|
|
4435
|
+
[key: string]: IActionDescriptorTransfer;
|
|
4436
|
+
};
|
|
4437
|
+
|
|
4438
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
4439
|
+
|
|
4440
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
|
|
4441
|
+
|
|
4442
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
|
|
4443
|
+
|
|
4444
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
|
|
4445
|
+
|
|
4446
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
|
|
4447
|
+
|
|
4448
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
|
|
4449
|
+
|
|
4450
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
4451
|
+
|
|
4452
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
4453
|
+
|
|
4454
|
+
export declare const externalIntegrationConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
4455
|
+
|
|
4456
|
+
export declare enum ExternalIntegrationNames {
|
|
4457
|
+
aircall = "aircall",
|
|
4458
|
+
'aircall-basic' = "aircall-basic",
|
|
4459
|
+
airtable = "airtable",
|
|
4460
|
+
'airtable-pat' = "airtable-pat",
|
|
4461
|
+
algolia = "algolia",
|
|
4462
|
+
anrok = "anrok",
|
|
4463
|
+
asana = "asana",
|
|
4464
|
+
ashby = "ashby",
|
|
4465
|
+
attio = "attio",
|
|
4466
|
+
avalara = "avalara",
|
|
4467
|
+
'avalara-sandbox' = "avalara-sandbox",
|
|
4468
|
+
'aws-iam' = "aws-iam",
|
|
4469
|
+
'bamboohr-basic' = "bamboohr-basic",
|
|
4470
|
+
'basecamp' = "basecamp",
|
|
4471
|
+
'bill' = "bill",
|
|
4472
|
+
'bill-sandbox' = "bill-sandbox",
|
|
4473
|
+
'bitdefender' = "bitdefender",
|
|
4474
|
+
'box' = "box",
|
|
4475
|
+
'brightcrowd' = "brightcrowd",
|
|
4476
|
+
'cal-com-v2' = "cal-com-v2",
|
|
4477
|
+
'calendly' = "calendly",
|
|
4478
|
+
'checkr-partner' = "checkr-partner",
|
|
4479
|
+
'checkr-partner-staging' = "checkr-partner-staging",
|
|
4480
|
+
'clari-copilot' = "clari-copilot",
|
|
4481
|
+
'clicksend' = "clicksend",
|
|
4482
|
+
'confluence' = "confluence",
|
|
4483
|
+
'databricks-workspace' = "databricks-workspace",
|
|
4484
|
+
'datadog' = "datadog",
|
|
4485
|
+
'dialpad' = "dialpad",
|
|
4486
|
+
'dialpad-sandbox' = "dialpad-sandbox",
|
|
4487
|
+
'discourse' = "discourse",
|
|
4488
|
+
'docusign' = "docusign",
|
|
4489
|
+
'docusign-sandbox' = "docusign-sandbox",
|
|
4490
|
+
'dropbox' = "dropbox",
|
|
4491
|
+
'evaluagent' = "evaluagent",
|
|
4492
|
+
'exact-online' = "exact-online",
|
|
4493
|
+
'expensify' = "expensify",
|
|
4494
|
+
'fireflies' = "fireflies",
|
|
4495
|
+
'freshdesk' = "freshdesk",
|
|
4496
|
+
'front' = "front",
|
|
4497
|
+
'gem' = "gem",
|
|
4498
|
+
'github' = "github",
|
|
4499
|
+
'github-app' = "github-app",
|
|
4500
|
+
'github-app-oauth' = "github-app-oauth",
|
|
4501
|
+
'gong' = "gong",
|
|
4502
|
+
'gong-oauth' = "gong-oauth",
|
|
4503
|
+
'google' = "google",
|
|
4504
|
+
'google-calendar' = "google-calendar",
|
|
4505
|
+
'google-docs' = "google-docs",
|
|
4506
|
+
'google-drive' = "google-drive",
|
|
4507
|
+
'google-mail' = "google-mail",
|
|
4508
|
+
'google-sheet' = "google-sheet",
|
|
4509
|
+
'gorgias' = "gorgias",
|
|
4510
|
+
'gorgias-basic' = "gorgias-basic",
|
|
4511
|
+
'grammarly' = "grammarly",
|
|
4512
|
+
'greenhouse-basic' = "greenhouse-basic",
|
|
4513
|
+
'gusto' = "gusto",
|
|
4514
|
+
'gusto-demo' = "gusto-demo",
|
|
4515
|
+
'hackerrank-work' = "hackerrank-work",
|
|
4516
|
+
'harvest' = "harvest",
|
|
4517
|
+
'hibob-service-user' = "hibob-service-user",
|
|
4518
|
+
'hubspot' = "hubspot",
|
|
4519
|
+
'instantly' = "instantly",
|
|
4520
|
+
'intercom' = "intercom",
|
|
4521
|
+
'jira' = "jira",
|
|
4522
|
+
'jira-basic' = "jira-basic",
|
|
4523
|
+
'keeper-scim' = "keeper-scim",
|
|
4524
|
+
'kustomer' = "kustomer",
|
|
4525
|
+
'lastpass' = "lastpass",
|
|
4526
|
+
'lattice' = "lattice",
|
|
4527
|
+
'lattice-scim' = "lattice-scim",
|
|
4528
|
+
'lever' = "lever",
|
|
4529
|
+
'lever-basic' = "lever-basic",
|
|
4530
|
+
'lever-basic-sandbox' = "lever-basic-sandbox",
|
|
4531
|
+
'lever-sandbox' = "lever-sandbox",
|
|
4532
|
+
'linear' = "linear",
|
|
4533
|
+
'linkedin' = "linkedin",
|
|
4534
|
+
'luma' = "luma",
|
|
4535
|
+
'metabase' = "metabase",
|
|
4536
|
+
'microsoft-teams' = "microsoft-teams",
|
|
4537
|
+
'netsuite-tba' = "netsuite-tba",
|
|
4538
|
+
'next-cloud-ocs' = "next-cloud-ocs",
|
|
4539
|
+
'notion' = "notion",
|
|
4540
|
+
'okta' = "okta",
|
|
4541
|
+
'okta-preview' = "okta-preview",
|
|
4542
|
+
'one-drive' = "one-drive",
|
|
4543
|
+
'oracle-hcm' = "oracle-hcm",
|
|
4544
|
+
'outlook' = "outlook",
|
|
4545
|
+
'paylocity' = "paylocity",
|
|
4546
|
+
'pennylane' = "pennylane",
|
|
4547
|
+
'perimeter81' = "perimeter81",
|
|
4548
|
+
'pipedrive' = "pipedrive",
|
|
4549
|
+
'quickbooks' = "quickbooks",
|
|
4550
|
+
'quickbooks-sandbox' = "quickbooks-sandbox",
|
|
4551
|
+
'ramp' = "ramp",
|
|
4552
|
+
'ramp-sandbox' = "ramp-sandbox",
|
|
4553
|
+
'recharge' = "recharge",
|
|
4554
|
+
'recruiterflow' = "recruiterflow",
|
|
4555
|
+
'ring-central' = "ring-central",
|
|
4556
|
+
'ring-central-sandbox' = "ring-central-sandbox",
|
|
4557
|
+
'sage-intacct-oauth' = "sage-intacct-oauth",
|
|
4558
|
+
'salesforce' = "salesforce",
|
|
4559
|
+
'salesforce-sandbox' = "salesforce-sandbox",
|
|
4560
|
+
'sap-success-factors' = "sap-success-factors",
|
|
4561
|
+
'sharepoint-online' = "sharepoint-online",
|
|
4562
|
+
'shopify' = "shopify",
|
|
4563
|
+
'slack' = "slack",
|
|
4564
|
+
'smartsheet' = "smartsheet",
|
|
4565
|
+
'stripe-app' = "stripe-app",
|
|
4566
|
+
'stripe-app-sandbox' = "stripe-app-sandbox",
|
|
4567
|
+
'teamtailor' = "teamtailor",
|
|
4568
|
+
'unanet' = "unanet",
|
|
4569
|
+
'wildix-pbx' = "wildix-pbx",
|
|
4570
|
+
'woocommerce' = "woocommerce",
|
|
4571
|
+
'workable' = "workable",
|
|
4572
|
+
'workday' = "workday",
|
|
4573
|
+
'xero' = "xero",
|
|
4574
|
+
'zendesk' = "zendesk",
|
|
4575
|
+
'zoho-crm' = "zoho-crm",
|
|
4576
|
+
'zoho-mail' = "zoho-mail",
|
|
4577
|
+
'zoom' = "zoom"
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
export declare enum ExternalIntegrationOperations {
|
|
4581
|
+
AirtableTables = "external-integration--airtable--get--tables",
|
|
4582
|
+
AirtableBases = "external-integration--airtable--get--bases",
|
|
4583
|
+
GoogleWorkspaceOrgUnits = "external-integration--google--get--workspace-org-units",
|
|
4584
|
+
GoogleWorkspaceUsers = "external-integration--google--get--workspace-users",
|
|
4585
|
+
GoogleWorkspaceUserAccessTokens = "external-integration--google--get--workspace-user-access-tokens",
|
|
4586
|
+
GoogleDriveFetchDocument = "external-integration--google-drive--get--fetch-document",
|
|
4587
|
+
GoogleDriveFetchGoogleSheet = "external-integration--google-drive--get--fetch-google-sheet",
|
|
4588
|
+
GoogleDriveFetchGoogleDoc = "external-integration--google-drive--get--fetch-google-doc",
|
|
4589
|
+
GoogleDriveFolderContent = "external-integration--google-drive--get--folder-content",
|
|
4590
|
+
GoogleDriveUploadDocument = "external-integration--google-drive--post--upload-document",
|
|
4591
|
+
GoogleDriveListDrives = "external-integration--google-drive--get--list-drives",
|
|
4592
|
+
GoogleDriveDocuments = "external-integration--google-drive--get--documents",
|
|
4593
|
+
GoogleDriveFolders = "external-integration--google-drive--get--folders",
|
|
4594
|
+
GoogleMailSendEmail = "external-integration--google-mail--post--send-email",
|
|
4595
|
+
GoogleMailFetchAttachment = "external-integration--google-mail--get--fetch-attachment",
|
|
4596
|
+
GoogleMailEmails = "external-integration--google-mail--get--emails",
|
|
4597
|
+
GoogleMailLabels = "external-integration--google-mail--get--labels",
|
|
4598
|
+
GoogleSheetFetchSpreadsheet = "external-integration--google-sheet--get--fetch-spreadsheet",
|
|
4599
|
+
JiraCreateIssue = "external-integration--jira--post--create-issue",
|
|
4600
|
+
JiraIssues = "external-integration--jira--get--issues",
|
|
4601
|
+
JiraProjects = "external-integration--jira--get--projects",
|
|
4602
|
+
JiraIssueTypes = "external-integration--jira--get--issue-types",
|
|
4603
|
+
SlackSendMessage = "external-integration--slack--post--send-message",
|
|
4604
|
+
SlackUsers = "external-integration--slack--get--users",
|
|
4605
|
+
SlackChannels = "external-integration--slack--get--channels",
|
|
4606
|
+
SlackMessages = "external-integration--slack--get--messages"
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4609
|
+
export declare const fetchAttachmentIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4610
|
+
|
|
4611
|
+
export declare const fetchAttachmentIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4612
|
+
|
|
4613
|
+
export declare const fetchAttachmentIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4614
|
+
|
|
4615
|
+
export declare const fetchDocumentIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4616
|
+
|
|
4617
|
+
export declare const fetchDocumentIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4618
|
+
|
|
4619
|
+
export declare const fetchDocumentIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4620
|
+
|
|
4621
|
+
export declare const fetchGoogleDocIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4622
|
+
|
|
4623
|
+
export declare const fetchGoogleDocIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4624
|
+
|
|
4625
|
+
export declare const fetchGoogleDocIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4626
|
+
|
|
4627
|
+
export declare const fetchGoogleSheetIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4628
|
+
|
|
4629
|
+
export declare const fetchGoogleSheetIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4630
|
+
|
|
4631
|
+
export declare const fetchGoogleSheetIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4632
|
+
|
|
4633
|
+
export declare const fetchSpreadsheetIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4634
|
+
|
|
4635
|
+
export declare const fetchSpreadsheetIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4636
|
+
|
|
4637
|
+
export declare const fetchSpreadsheetIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4638
|
+
|
|
4076
4639
|
/**
|
|
4077
4640
|
* Remove any callers that are callers of other callers
|
|
4078
4641
|
* @param {CallerEntityState[]} callers
|
|
@@ -4286,6 +4849,18 @@ export declare function flattenVariableWrites(variable: VariableState, seenVaria
|
|
|
4286
4849
|
|
|
4287
4850
|
export declare function flattenWrites(entity: ValueWritingEntityState, seenEntities?: Set<string>): ValueReadingEntityState[];
|
|
4288
4851
|
|
|
4852
|
+
export declare const folderContentIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4853
|
+
|
|
4854
|
+
export declare const folderContentIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4855
|
+
|
|
4856
|
+
export declare const folderContentIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4857
|
+
|
|
4858
|
+
export declare const foldersIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
4859
|
+
|
|
4860
|
+
export declare const foldersIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
4861
|
+
|
|
4862
|
+
export declare const foldersIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
4863
|
+
|
|
4289
4864
|
/**
|
|
4290
4865
|
* Holds keywords that are forbidden (so far in Javascript) to be used as names for entities.
|
|
4291
4866
|
* This is used to validate the names of entities, such as functions, variables, etc.
|
|
@@ -10596,10 +11171,13 @@ export declare enum InfrastructureResourceStatus {
|
|
|
10596
11171
|
Deleted = "deleted"
|
|
10597
11172
|
}
|
|
10598
11173
|
|
|
10599
|
-
export declare function initBaseProjectEntity(data: IProjectTransfer,
|
|
11174
|
+
export declare function initBaseProjectEntity(data: IProjectTransfer, options?: {
|
|
11175
|
+
shallowErrors?: boolean;
|
|
11176
|
+
}, parentContext?: IProjectInstanceParentContext): ProjectState;
|
|
10600
11177
|
|
|
10601
|
-
export declare function initProject(data: IProjectTransfer, { enrich, }?: {
|
|
10602
|
-
enrich
|
|
11178
|
+
export declare function initProject(data: IProjectTransfer, { enrich, shallowErrors, }?: {
|
|
11179
|
+
enrich?: boolean;
|
|
11180
|
+
shallowErrors?: boolean;
|
|
10603
11181
|
}, parentContext?: IProjectInstanceParentContext): ProjectState;
|
|
10604
11182
|
|
|
10605
11183
|
export declare function initProjectFromFetchResult(result: IProjectFetchResult, options?: {
|
|
@@ -11582,6 +12160,18 @@ declare interface IShallowColumnMapping {
|
|
|
11582
12160
|
|
|
11583
12161
|
export declare function isPromise(obj: any): obj is Promise<any>;
|
|
11584
12162
|
|
|
12163
|
+
export declare const issuesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
12164
|
+
|
|
12165
|
+
export declare const issuesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
12166
|
+
|
|
12167
|
+
export declare const issuesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
12168
|
+
|
|
12169
|
+
export declare const issueTypesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
12170
|
+
|
|
12171
|
+
export declare const issueTypesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
12172
|
+
|
|
12173
|
+
export declare const issueTypesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
12174
|
+
|
|
11585
12175
|
export declare interface IString extends IPrimitiveEntity {
|
|
11586
12176
|
name: PrimitiveTypes.String;
|
|
11587
12177
|
}
|
|
@@ -12222,10 +12812,22 @@ export declare const joinStringsOperationSeparatorStringDataTypeDefaultValuePare
|
|
|
12222
12812
|
|
|
12223
12813
|
export declare const keyValuePrototype: IPrimitiveEntity;
|
|
12224
12814
|
|
|
12815
|
+
export declare const labelsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
12816
|
+
|
|
12817
|
+
export declare const labelsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
12818
|
+
|
|
12819
|
+
export declare const labelsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
12820
|
+
|
|
12225
12821
|
export declare const LIST_OPERATIONS: {
|
|
12226
12822
|
[key: string]: IActionDescriptorTransfer;
|
|
12227
12823
|
};
|
|
12228
12824
|
|
|
12825
|
+
export declare const listDrivesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
12826
|
+
|
|
12827
|
+
export declare const listDrivesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
12828
|
+
|
|
12829
|
+
export declare const listDrivesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
12830
|
+
|
|
12229
12831
|
export declare enum ListOperations {
|
|
12230
12832
|
Join = "list-join",
|
|
12231
12833
|
Split = "list-split",
|
|
@@ -12631,6 +13233,12 @@ export declare function mergeEntityErrorsList(oldErrors: EntityError[], newError
|
|
|
12631
13233
|
|
|
12632
13234
|
export declare function mergeListOfEntities(oldErrors: EntityState[], newErrors: EntityState[]): EntityState[];
|
|
12633
13235
|
|
|
13236
|
+
export declare const messagesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
13237
|
+
|
|
13238
|
+
export declare const messagesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
13239
|
+
|
|
13240
|
+
export declare const messagesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
13241
|
+
|
|
12634
13242
|
export declare const methodDefaultValue: ILiteralValueTransfer;
|
|
12635
13243
|
|
|
12636
13244
|
export declare const mockClientProject: IProjectTransfer;
|
|
@@ -13414,7 +14022,7 @@ export declare class OperationState extends VersionedState implements IOperation
|
|
|
13414
14022
|
getUsedOutputs(): ActionOutputMapState[];
|
|
13415
14023
|
}
|
|
13416
14024
|
|
|
13417
|
-
export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | ExecutionOperations | EntityOperations | HTTPOperations | RandomnessOperations;
|
|
14025
|
+
export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | ExecutionOperations | EntityOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations;
|
|
13418
14026
|
|
|
13419
14027
|
export declare type OperationTypesUnion = IOperation | IOperationTransfer | IOperationShallowTransfer | IOperationGenerationTarget;
|
|
13420
14028
|
|
|
@@ -13825,6 +14433,12 @@ export declare type ProjectPayloadUnion = ProjectState | ProjectTypesUnion;
|
|
|
13825
14433
|
|
|
13826
14434
|
export declare const projectPublicationCompletedGlobalEvent: IActionDescriptorTransfer;
|
|
13827
14435
|
|
|
14436
|
+
export declare const projectsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
14437
|
+
|
|
14438
|
+
export declare const projectsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
14439
|
+
|
|
14440
|
+
export declare const projectsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
14441
|
+
|
|
13828
14442
|
export declare class ProjectState extends VersionedState implements IProject, UserManagedEntityStateTemplate, BaseState {
|
|
13829
14443
|
readonly parentContext: IProjectInstanceParentContext;
|
|
13830
14444
|
initialData: IProject | IProjectTransfer;
|
|
@@ -14645,7 +15259,7 @@ export declare function resolveReturnDeclarationValue(entity: ReturnDeclarationS
|
|
|
14645
15259
|
|
|
14646
15260
|
export declare function resolveSearchName(search: SearchState): string;
|
|
14647
15261
|
|
|
14648
|
-
export declare function resolveValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState, context: IValueResolutionContext,
|
|
15262
|
+
export declare function resolveValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
14649
15263
|
|
|
14650
15264
|
export declare function resolveValueDescriptorValue(entity: ValueDescriptorState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
14651
15265
|
|
|
@@ -15289,6 +15903,18 @@ declare namespace searchValidation {
|
|
|
15289
15903
|
}
|
|
15290
15904
|
export { searchValidation }
|
|
15291
15905
|
|
|
15906
|
+
export declare const sendEmailIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
15907
|
+
|
|
15908
|
+
export declare const sendEmailIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
15909
|
+
|
|
15910
|
+
export declare const sendEmailIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
15911
|
+
|
|
15912
|
+
export declare const sendMessageIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
15913
|
+
|
|
15914
|
+
export declare const sendMessageIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
15915
|
+
|
|
15916
|
+
export declare const sendMessageIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
15917
|
+
|
|
15292
15918
|
export declare class SequentialExecutionOperation extends ActionDescriptorState {
|
|
15293
15919
|
readonly id = ExecutionOperations.Sequential;
|
|
15294
15920
|
readonly name = ExecutionOperations.Sequential;
|
|
@@ -15588,6 +16214,12 @@ declare type SupportedOperators = string | PostgresqlOperatorExpr | Keyword<'IS'
|
|
|
15588
16214
|
|
|
15589
16215
|
export declare function syncSearchEntityOutput(entity: SearchState, statement: SearchStatementState, changeSet: ChangeSet | null): void;
|
|
15590
16216
|
|
|
16217
|
+
export declare const tablesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
16218
|
+
|
|
16219
|
+
export declare const tablesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
16220
|
+
|
|
16221
|
+
export declare const tablesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
16222
|
+
|
|
15591
16223
|
export declare const TERMINATION_TYPES: EntityType[];
|
|
15592
16224
|
|
|
15593
16225
|
export declare type TerminationEntity = IReturnStatement | IBreakStatement | IContinueStatement;
|
|
@@ -15714,6 +16346,12 @@ export declare const updatePersistedEntityMethod: IFunctionDeclarationTransfer;
|
|
|
15714
16346
|
|
|
15715
16347
|
export declare const updatePersistedEntityMethodParentRef: IBuiltInBaseEntityReference;
|
|
15716
16348
|
|
|
16349
|
+
export declare const uploadDocumentIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
16350
|
+
|
|
16351
|
+
export declare const uploadDocumentIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
16352
|
+
|
|
16353
|
+
export declare const uploadDocumentIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
16354
|
+
|
|
15717
16355
|
export declare const urlDefaultValue: ILiteralValueTransfer;
|
|
15718
16356
|
|
|
15719
16357
|
export declare const USER_MANAGED_ENTITY_TYPES: EntityType[];
|
|
@@ -15786,6 +16424,12 @@ export declare abstract class UserManagedEntityStateTemplate {
|
|
|
15786
16424
|
abstract onDetachedDependencyRestored(dependency: UserManagedEntityState, field: string, changeSet: ChangeSet | null): IChangeSet<UserManagedEntityState>;
|
|
15787
16425
|
}
|
|
15788
16426
|
|
|
16427
|
+
export declare const usersIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
16428
|
+
|
|
16429
|
+
export declare const usersIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
16430
|
+
|
|
16431
|
+
export declare const usersIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
16432
|
+
|
|
15789
16433
|
export declare type UUIDAutogenerationOptions = IAutogenerationUniqueUUID;
|
|
15790
16434
|
|
|
15791
16435
|
export declare class UUIDModule extends BaseRegisteredExtension implements IRegisteredExtension<IUUIDModule> {
|
|
@@ -17103,4 +17747,22 @@ declare enum WhereStatementOperator {
|
|
|
17103
17747
|
|
|
17104
17748
|
declare function whereStatementOperatorToSQL(operator: WhereStatementOperator): 'LIKE' | 'NOT LIKE' | 'IS NOT' | 'BETWEEN' | 'IN' | WhereStatementOperator.BiggerThan | WhereStatementOperator.SmallerThan | WhereStatementOperator.BiggerThanOrEqualTo | WhereStatementOperator.SmallerThanOrEqualTo;
|
|
17105
17749
|
|
|
17750
|
+
export declare const workspaceOrgUnitsIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
17751
|
+
|
|
17752
|
+
export declare const workspaceOrgUnitsIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
17753
|
+
|
|
17754
|
+
export declare const workspaceOrgUnitsIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
17755
|
+
|
|
17756
|
+
export declare const workspaceUserAccessTokensIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
17757
|
+
|
|
17758
|
+
export declare const workspaceUserAccessTokensIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
17759
|
+
|
|
17760
|
+
export declare const workspaceUserAccessTokensIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
17761
|
+
|
|
17762
|
+
export declare const workspaceUsersIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
17763
|
+
|
|
17764
|
+
export declare const workspaceUsersIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
17765
|
+
|
|
17766
|
+
export declare const workspaceUsersIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
17767
|
+
|
|
17106
17768
|
export { }
|