@vanillabp/bc-official-gui-client 0.2.0 → 0.4.0
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 +429 -1
- package/dist/index.js +333 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -463,6 +463,129 @@ function KwicResultsToJSON(value) {
|
|
|
463
463
|
};
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
+
// src/models/WorkflowNotificationConfiguration.ts
|
|
467
|
+
function instanceOfWorkflowNotificationConfiguration(value) {
|
|
468
|
+
let isInstance = true;
|
|
469
|
+
return isInstance;
|
|
470
|
+
}
|
|
471
|
+
function WorkflowNotificationConfigurationFromJSON(json) {
|
|
472
|
+
return WorkflowNotificationConfigurationFromJSONTyped(json);
|
|
473
|
+
}
|
|
474
|
+
function WorkflowNotificationConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
475
|
+
if (json === void 0 || json === null) {
|
|
476
|
+
return json;
|
|
477
|
+
}
|
|
478
|
+
return {
|
|
479
|
+
"none": !exists(json, "none") ? void 0 : json["none"],
|
|
480
|
+
"allViaMedium": !exists(json, "allViaMedium") ? void 0 : json["allViaMedium"]
|
|
481
|
+
};
|
|
482
|
+
}
|
|
483
|
+
function WorkflowNotificationConfigurationToJSON(value) {
|
|
484
|
+
if (value === void 0) {
|
|
485
|
+
return void 0;
|
|
486
|
+
}
|
|
487
|
+
if (value === null) {
|
|
488
|
+
return null;
|
|
489
|
+
}
|
|
490
|
+
return {
|
|
491
|
+
"none": value.none,
|
|
492
|
+
"allViaMedium": value.allViaMedium
|
|
493
|
+
};
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// src/models/NotificationConfiguration.ts
|
|
497
|
+
function instanceOfNotificationConfiguration(value) {
|
|
498
|
+
let isInstance = true;
|
|
499
|
+
return isInstance;
|
|
500
|
+
}
|
|
501
|
+
function NotificationConfigurationFromJSON(json) {
|
|
502
|
+
return NotificationConfigurationFromJSONTyped(json);
|
|
503
|
+
}
|
|
504
|
+
function NotificationConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
505
|
+
if (json === void 0 || json === null) {
|
|
506
|
+
return json;
|
|
507
|
+
}
|
|
508
|
+
return {
|
|
509
|
+
"globalAllViaMedium": !exists(json, "globalAllViaMedium") ? void 0 : json["globalAllViaMedium"],
|
|
510
|
+
"perWorkflow": !exists(json, "perWorkflow") ? void 0 : mapValues(json["perWorkflow"], WorkflowNotificationConfigurationFromJSON)
|
|
511
|
+
};
|
|
512
|
+
}
|
|
513
|
+
function NotificationConfigurationToJSON(value) {
|
|
514
|
+
if (value === void 0) {
|
|
515
|
+
return void 0;
|
|
516
|
+
}
|
|
517
|
+
if (value === null) {
|
|
518
|
+
return null;
|
|
519
|
+
}
|
|
520
|
+
return {
|
|
521
|
+
"globalAllViaMedium": value.globalAllViaMedium,
|
|
522
|
+
"perWorkflow": value.perWorkflow === void 0 ? void 0 : mapValues(value.perWorkflow, WorkflowNotificationConfigurationToJSON)
|
|
523
|
+
};
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
// src/models/NotificationMedium.ts
|
|
527
|
+
function instanceOfNotificationMedium(value) {
|
|
528
|
+
let isInstance = true;
|
|
529
|
+
isInstance = isInstance && "type" in value;
|
|
530
|
+
return isInstance;
|
|
531
|
+
}
|
|
532
|
+
function NotificationMediumFromJSON(json) {
|
|
533
|
+
return NotificationMediumFromJSONTyped(json);
|
|
534
|
+
}
|
|
535
|
+
function NotificationMediumFromJSONTyped(json, ignoreDiscriminator) {
|
|
536
|
+
if (json === void 0 || json === null) {
|
|
537
|
+
return json;
|
|
538
|
+
}
|
|
539
|
+
return {
|
|
540
|
+
"type": json["type"],
|
|
541
|
+
"name": !exists(json, "name") ? void 0 : json["name"]
|
|
542
|
+
};
|
|
543
|
+
}
|
|
544
|
+
function NotificationMediumToJSON(value) {
|
|
545
|
+
if (value === void 0) {
|
|
546
|
+
return void 0;
|
|
547
|
+
}
|
|
548
|
+
if (value === null) {
|
|
549
|
+
return null;
|
|
550
|
+
}
|
|
551
|
+
return {
|
|
552
|
+
"type": value.type,
|
|
553
|
+
"name": value.name
|
|
554
|
+
};
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
// src/models/NotificationWorkflow.ts
|
|
558
|
+
function instanceOfNotificationWorkflow(value) {
|
|
559
|
+
let isInstance = true;
|
|
560
|
+
return isInstance;
|
|
561
|
+
}
|
|
562
|
+
function NotificationWorkflowFromJSON(json) {
|
|
563
|
+
return NotificationWorkflowFromJSONTyped(json);
|
|
564
|
+
}
|
|
565
|
+
function NotificationWorkflowFromJSONTyped(json, ignoreDiscriminator) {
|
|
566
|
+
if (json === void 0 || json === null) {
|
|
567
|
+
return json;
|
|
568
|
+
}
|
|
569
|
+
return {
|
|
570
|
+
"workflowModuleId": !exists(json, "workflowModuleId") ? void 0 : json["workflowModuleId"],
|
|
571
|
+
"bpmnProcessId": !exists(json, "bpmnProcessId") ? void 0 : json["bpmnProcessId"],
|
|
572
|
+
"workflowTitle": !exists(json, "workflowTitle") ? void 0 : json["workflowTitle"]
|
|
573
|
+
};
|
|
574
|
+
}
|
|
575
|
+
function NotificationWorkflowToJSON(value) {
|
|
576
|
+
if (value === void 0) {
|
|
577
|
+
return void 0;
|
|
578
|
+
}
|
|
579
|
+
if (value === null) {
|
|
580
|
+
return null;
|
|
581
|
+
}
|
|
582
|
+
return {
|
|
583
|
+
"workflowModuleId": value.workflowModuleId,
|
|
584
|
+
"bpmnProcessId": value.bpmnProcessId,
|
|
585
|
+
"workflowTitle": value.workflowTitle
|
|
586
|
+
};
|
|
587
|
+
}
|
|
588
|
+
|
|
466
589
|
// src/models/Page.ts
|
|
467
590
|
function instanceOfPage(value) {
|
|
468
591
|
let isInstance = true;
|
|
@@ -540,6 +663,74 @@ function PersonToJSON(value) {
|
|
|
540
663
|
};
|
|
541
664
|
}
|
|
542
665
|
|
|
666
|
+
// src/models/RecipientConfiguration.ts
|
|
667
|
+
function instanceOfRecipientConfiguration(value) {
|
|
668
|
+
let isInstance = true;
|
|
669
|
+
isInstance = isInstance && "type" in value;
|
|
670
|
+
return isInstance;
|
|
671
|
+
}
|
|
672
|
+
function RecipientConfigurationFromJSON(json) {
|
|
673
|
+
return RecipientConfigurationFromJSONTyped(json);
|
|
674
|
+
}
|
|
675
|
+
function RecipientConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
676
|
+
if (json === void 0 || json === null) {
|
|
677
|
+
return json;
|
|
678
|
+
}
|
|
679
|
+
return {
|
|
680
|
+
"type": json["type"],
|
|
681
|
+
"title": !exists(json, "title") ? void 0 : json["title"],
|
|
682
|
+
"description": !exists(json, "description") ? void 0 : json["description"],
|
|
683
|
+
"value": !exists(json, "value") ? void 0 : json["value"]
|
|
684
|
+
};
|
|
685
|
+
}
|
|
686
|
+
function RecipientConfigurationToJSON(value) {
|
|
687
|
+
if (value === void 0) {
|
|
688
|
+
return void 0;
|
|
689
|
+
}
|
|
690
|
+
if (value === null) {
|
|
691
|
+
return null;
|
|
692
|
+
}
|
|
693
|
+
return {
|
|
694
|
+
"type": value.type,
|
|
695
|
+
"title": value.title,
|
|
696
|
+
"description": value.description,
|
|
697
|
+
"value": value.value
|
|
698
|
+
};
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
// src/models/RecipientMediumConfiguration.ts
|
|
702
|
+
function instanceOfRecipientMediumConfiguration(value) {
|
|
703
|
+
let isInstance = true;
|
|
704
|
+
isInstance = isInstance && "medium" in value;
|
|
705
|
+
return isInstance;
|
|
706
|
+
}
|
|
707
|
+
function RecipientMediumConfigurationFromJSON(json) {
|
|
708
|
+
return RecipientMediumConfigurationFromJSONTyped(json);
|
|
709
|
+
}
|
|
710
|
+
function RecipientMediumConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
711
|
+
if (json === void 0 || json === null) {
|
|
712
|
+
return json;
|
|
713
|
+
}
|
|
714
|
+
return {
|
|
715
|
+
"medium": json["medium"],
|
|
716
|
+
"name": !exists(json, "name") ? void 0 : json["name"],
|
|
717
|
+
"values": !exists(json, "values") ? void 0 : json["values"].map(RecipientConfigurationFromJSON)
|
|
718
|
+
};
|
|
719
|
+
}
|
|
720
|
+
function RecipientMediumConfigurationToJSON(value) {
|
|
721
|
+
if (value === void 0) {
|
|
722
|
+
return void 0;
|
|
723
|
+
}
|
|
724
|
+
if (value === null) {
|
|
725
|
+
return null;
|
|
726
|
+
}
|
|
727
|
+
return {
|
|
728
|
+
"medium": value.medium,
|
|
729
|
+
"name": value.name,
|
|
730
|
+
"values": value.values === void 0 ? void 0 : value.values.map(RecipientConfigurationToJSON)
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
|
|
543
734
|
// src/models/UiUriType.ts
|
|
544
735
|
var UiUriType = {
|
|
545
736
|
External: "EXTERNAL",
|
|
@@ -1179,6 +1370,147 @@ function WorkflowsUpdateRequestToJSON(value) {
|
|
|
1179
1370
|
};
|
|
1180
1371
|
}
|
|
1181
1372
|
|
|
1373
|
+
// src/apis/OfficialNotificationConfigApi.ts
|
|
1374
|
+
var OfficialNotificationConfigApi = class extends BaseAPI {
|
|
1375
|
+
/**
|
|
1376
|
+
* The current user\'s notification configuration
|
|
1377
|
+
*/
|
|
1378
|
+
async getNotificationConfigurationRaw(initOverrides) {
|
|
1379
|
+
const queryParameters = {};
|
|
1380
|
+
const headerParameters = {};
|
|
1381
|
+
const response = await this.request({
|
|
1382
|
+
path: `/notifications/config`,
|
|
1383
|
+
method: "GET",
|
|
1384
|
+
headers: headerParameters,
|
|
1385
|
+
query: queryParameters
|
|
1386
|
+
}, initOverrides);
|
|
1387
|
+
return new JSONApiResponse(response, (jsonValue) => NotificationConfigurationFromJSON(jsonValue));
|
|
1388
|
+
}
|
|
1389
|
+
/**
|
|
1390
|
+
* The current user\'s notification configuration
|
|
1391
|
+
*/
|
|
1392
|
+
async getNotificationConfiguration(initOverrides) {
|
|
1393
|
+
const response = await this.getNotificationConfigurationRaw(initOverrides);
|
|
1394
|
+
return await response.value();
|
|
1395
|
+
}
|
|
1396
|
+
/**
|
|
1397
|
+
* The available notification media (from the registered NotificationService beans)
|
|
1398
|
+
*/
|
|
1399
|
+
async getNotificationMediaRaw(initOverrides) {
|
|
1400
|
+
const queryParameters = {};
|
|
1401
|
+
const headerParameters = {};
|
|
1402
|
+
const response = await this.request({
|
|
1403
|
+
path: `/notifications/media`,
|
|
1404
|
+
method: "GET",
|
|
1405
|
+
headers: headerParameters,
|
|
1406
|
+
query: queryParameters
|
|
1407
|
+
}, initOverrides);
|
|
1408
|
+
return new JSONApiResponse(response, (jsonValue) => jsonValue.map(NotificationMediumFromJSON));
|
|
1409
|
+
}
|
|
1410
|
+
/**
|
|
1411
|
+
* The available notification media (from the registered NotificationService beans)
|
|
1412
|
+
*/
|
|
1413
|
+
async getNotificationMedia(initOverrides) {
|
|
1414
|
+
const response = await this.getNotificationMediaRaw(initOverrides);
|
|
1415
|
+
return await response.value();
|
|
1416
|
+
}
|
|
1417
|
+
/**
|
|
1418
|
+
* The workflows the current user has visible tasks for (same visibility as the task list)
|
|
1419
|
+
*/
|
|
1420
|
+
async getNotificationWorkflowsRaw(initOverrides) {
|
|
1421
|
+
const queryParameters = {};
|
|
1422
|
+
const headerParameters = {};
|
|
1423
|
+
const response = await this.request({
|
|
1424
|
+
path: `/notifications/workflows`,
|
|
1425
|
+
method: "GET",
|
|
1426
|
+
headers: headerParameters,
|
|
1427
|
+
query: queryParameters
|
|
1428
|
+
}, initOverrides);
|
|
1429
|
+
return new JSONApiResponse(response, (jsonValue) => jsonValue.map(NotificationWorkflowFromJSON));
|
|
1430
|
+
}
|
|
1431
|
+
/**
|
|
1432
|
+
* The workflows the current user has visible tasks for (same visibility as the task list)
|
|
1433
|
+
*/
|
|
1434
|
+
async getNotificationWorkflows(initOverrides) {
|
|
1435
|
+
const response = await this.getNotificationWorkflowsRaw(initOverrides);
|
|
1436
|
+
return await response.value();
|
|
1437
|
+
}
|
|
1438
|
+
/**
|
|
1439
|
+
* The current user\'s per-medium recipient configuration
|
|
1440
|
+
*/
|
|
1441
|
+
async getRecipientConfigurationRaw(initOverrides) {
|
|
1442
|
+
const queryParameters = {};
|
|
1443
|
+
const headerParameters = {};
|
|
1444
|
+
const response = await this.request({
|
|
1445
|
+
path: `/notifications/recipient-config`,
|
|
1446
|
+
method: "GET",
|
|
1447
|
+
headers: headerParameters,
|
|
1448
|
+
query: queryParameters
|
|
1449
|
+
}, initOverrides);
|
|
1450
|
+
return new JSONApiResponse(response, (jsonValue) => jsonValue.map(RecipientMediumConfigurationFromJSON));
|
|
1451
|
+
}
|
|
1452
|
+
/**
|
|
1453
|
+
* The current user\'s per-medium recipient configuration
|
|
1454
|
+
*/
|
|
1455
|
+
async getRecipientConfiguration(initOverrides) {
|
|
1456
|
+
const response = await this.getRecipientConfigurationRaw(initOverrides);
|
|
1457
|
+
return await response.value();
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* Store the current user\'s notification configuration
|
|
1461
|
+
*/
|
|
1462
|
+
async saveNotificationConfigurationRaw(requestParameters, initOverrides) {
|
|
1463
|
+
if (requestParameters.notificationConfiguration === null || requestParameters.notificationConfiguration === void 0) {
|
|
1464
|
+
throw new RequiredError("notificationConfiguration", "Required parameter requestParameters.notificationConfiguration was null or undefined when calling saveNotificationConfiguration.");
|
|
1465
|
+
}
|
|
1466
|
+
const queryParameters = {};
|
|
1467
|
+
const headerParameters = {};
|
|
1468
|
+
headerParameters["Content-Type"] = "application/json";
|
|
1469
|
+
const response = await this.request({
|
|
1470
|
+
path: `/notifications/config`,
|
|
1471
|
+
method: "PUT",
|
|
1472
|
+
headers: headerParameters,
|
|
1473
|
+
query: queryParameters,
|
|
1474
|
+
body: NotificationConfigurationToJSON(requestParameters.notificationConfiguration)
|
|
1475
|
+
}, initOverrides);
|
|
1476
|
+
return new VoidApiResponse(response);
|
|
1477
|
+
}
|
|
1478
|
+
/**
|
|
1479
|
+
* Store the current user\'s notification configuration
|
|
1480
|
+
*/
|
|
1481
|
+
async saveNotificationConfiguration(requestParameters, initOverrides) {
|
|
1482
|
+
await this.saveNotificationConfigurationRaw(requestParameters, initOverrides);
|
|
1483
|
+
}
|
|
1484
|
+
/**
|
|
1485
|
+
* Store the current user\'s recipient configuration for a medium
|
|
1486
|
+
*/
|
|
1487
|
+
async saveRecipientConfigurationRaw(requestParameters, initOverrides) {
|
|
1488
|
+
if (requestParameters.mediumType === null || requestParameters.mediumType === void 0) {
|
|
1489
|
+
throw new RequiredError("mediumType", "Required parameter requestParameters.mediumType was null or undefined when calling saveRecipientConfiguration.");
|
|
1490
|
+
}
|
|
1491
|
+
if (requestParameters.requestBody === null || requestParameters.requestBody === void 0) {
|
|
1492
|
+
throw new RequiredError("requestBody", "Required parameter requestParameters.requestBody was null or undefined when calling saveRecipientConfiguration.");
|
|
1493
|
+
}
|
|
1494
|
+
const queryParameters = {};
|
|
1495
|
+
const headerParameters = {};
|
|
1496
|
+
headerParameters["Content-Type"] = "application/json";
|
|
1497
|
+
const response = await this.request({
|
|
1498
|
+
path: `/notifications/recipient-config/{mediumType}`.replace(`{${"mediumType"}}`, encodeURIComponent(String(requestParameters.mediumType))),
|
|
1499
|
+
method: "PUT",
|
|
1500
|
+
headers: headerParameters,
|
|
1501
|
+
query: queryParameters,
|
|
1502
|
+
body: requestParameters.requestBody
|
|
1503
|
+
}, initOverrides);
|
|
1504
|
+
return new VoidApiResponse(response);
|
|
1505
|
+
}
|
|
1506
|
+
/**
|
|
1507
|
+
* Store the current user\'s recipient configuration for a medium
|
|
1508
|
+
*/
|
|
1509
|
+
async saveRecipientConfiguration(requestParameters, initOverrides) {
|
|
1510
|
+
await this.saveRecipientConfigurationRaw(requestParameters, initOverrides);
|
|
1511
|
+
}
|
|
1512
|
+
};
|
|
1513
|
+
|
|
1182
1514
|
// src/apis/OfficialTasklistApi.ts
|
|
1183
1515
|
var OfficialTasklistApi = class extends BaseAPI {
|
|
1184
1516
|
/**
|
|
@@ -1735,6 +2067,6 @@ var OfficialWorkflowlistApi = class extends BaseAPI {
|
|
|
1735
2067
|
}
|
|
1736
2068
|
};
|
|
1737
2069
|
|
|
1738
|
-
export { BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, DefaultConfig, FetchError, FollowUpDateRequestFromJSON, FollowUpDateRequestFromJSONTyped, FollowUpDateRequestToJSON, GroupFromJSON, GroupFromJSONTyped, GroupToJSON, JSONApiResponse, KwicRequestFromJSON, KwicRequestFromJSONTyped, KwicRequestToJSON, KwicResultFromJSON, KwicResultFromJSONTyped, KwicResultToJSON, KwicResultsFromJSON, KwicResultsFromJSONTyped, KwicResultsToJSON, OfficialTasklistApi, OfficialWorkflowModulesApi, OfficialWorkflowlistApi, PageFromJSON, PageFromJSONTyped, PageToJSON, PersonFromJSON, PersonFromJSONTyped, PersonToJSON, RequiredError, ResponseError, SearchQueryFromJSON, SearchQueryFromJSONTyped, SearchQueryToJSON, TextApiResponse, UiUriType, UiUriTypeFromJSON, UiUriTypeFromJSONTyped, UiUriTypeToJSON, UserSearchResultFromJSON, UserSearchResultFromJSONTyped, UserSearchResultToJSON, UserTaskEventFromJSON, UserTaskEventFromJSONTyped, UserTaskEventToJSON, UserTaskFromJSON, UserTaskFromJSONTyped, UserTaskIdsFromJSON, UserTaskIdsFromJSONTyped, UserTaskIdsToJSON, UserTaskRetrieveMode, UserTaskRetrieveModeFromJSON, UserTaskRetrieveModeFromJSONTyped, UserTaskRetrieveModeToJSON, UserTaskToJSON, UserTasksFromJSON, UserTasksFromJSONTyped, UserTasksRequestFromJSON, UserTasksRequestFromJSONTyped, UserTasksRequestToJSON, UserTasksToJSON, UserTasksUpdateRequestFromJSON, UserTasksUpdateRequestFromJSONTyped, UserTasksUpdateRequestToJSON, VoidApiResponse, WorkflowEventFromJSON, WorkflowEventFromJSONTyped, WorkflowEventToJSON, WorkflowFromJSON, WorkflowFromJSONTyped, WorkflowModuleFromJSON, WorkflowModuleFromJSONTyped, WorkflowModuleToJSON, WorkflowModulesFromJSON, WorkflowModulesFromJSONTyped, WorkflowModulesToJSON, WorkflowRetrieveMode, WorkflowRetrieveModeFromJSON, WorkflowRetrieveModeFromJSONTyped, WorkflowRetrieveModeToJSON, WorkflowToJSON, WorkflowsFromJSON, WorkflowsFromJSONTyped, WorkflowsRequestFromJSON, WorkflowsRequestFromJSONTyped, WorkflowsRequestToJSON, WorkflowsToJSON, WorkflowsUpdateRequestFromJSON, WorkflowsUpdateRequestFromJSONTyped, WorkflowsUpdateRequestToJSON, canConsumeForm, exists, instanceOfFollowUpDateRequest, instanceOfGroup, instanceOfKwicRequest, instanceOfKwicResult, instanceOfKwicResults, instanceOfPage, instanceOfPerson, instanceOfSearchQuery, instanceOfUserSearchResult, instanceOfUserTask, instanceOfUserTaskEvent, instanceOfUserTaskIds, instanceOfUserTasks, instanceOfUserTasksRequest, instanceOfUserTasksUpdateRequest, instanceOfWorkflow, instanceOfWorkflowEvent, instanceOfWorkflowModule, instanceOfWorkflowModules, instanceOfWorkflows, instanceOfWorkflowsRequest, instanceOfWorkflowsUpdateRequest, mapValues, querystring };
|
|
2070
|
+
export { BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, DefaultConfig, FetchError, FollowUpDateRequestFromJSON, FollowUpDateRequestFromJSONTyped, FollowUpDateRequestToJSON, GroupFromJSON, GroupFromJSONTyped, GroupToJSON, JSONApiResponse, KwicRequestFromJSON, KwicRequestFromJSONTyped, KwicRequestToJSON, KwicResultFromJSON, KwicResultFromJSONTyped, KwicResultToJSON, KwicResultsFromJSON, KwicResultsFromJSONTyped, KwicResultsToJSON, NotificationConfigurationFromJSON, NotificationConfigurationFromJSONTyped, NotificationConfigurationToJSON, NotificationMediumFromJSON, NotificationMediumFromJSONTyped, NotificationMediumToJSON, NotificationWorkflowFromJSON, NotificationWorkflowFromJSONTyped, NotificationWorkflowToJSON, OfficialNotificationConfigApi, OfficialTasklistApi, OfficialWorkflowModulesApi, OfficialWorkflowlistApi, PageFromJSON, PageFromJSONTyped, PageToJSON, PersonFromJSON, PersonFromJSONTyped, PersonToJSON, RecipientConfigurationFromJSON, RecipientConfigurationFromJSONTyped, RecipientConfigurationToJSON, RecipientMediumConfigurationFromJSON, RecipientMediumConfigurationFromJSONTyped, RecipientMediumConfigurationToJSON, RequiredError, ResponseError, SearchQueryFromJSON, SearchQueryFromJSONTyped, SearchQueryToJSON, TextApiResponse, UiUriType, UiUriTypeFromJSON, UiUriTypeFromJSONTyped, UiUriTypeToJSON, UserSearchResultFromJSON, UserSearchResultFromJSONTyped, UserSearchResultToJSON, UserTaskEventFromJSON, UserTaskEventFromJSONTyped, UserTaskEventToJSON, UserTaskFromJSON, UserTaskFromJSONTyped, UserTaskIdsFromJSON, UserTaskIdsFromJSONTyped, UserTaskIdsToJSON, UserTaskRetrieveMode, UserTaskRetrieveModeFromJSON, UserTaskRetrieveModeFromJSONTyped, UserTaskRetrieveModeToJSON, UserTaskToJSON, UserTasksFromJSON, UserTasksFromJSONTyped, UserTasksRequestFromJSON, UserTasksRequestFromJSONTyped, UserTasksRequestToJSON, UserTasksToJSON, UserTasksUpdateRequestFromJSON, UserTasksUpdateRequestFromJSONTyped, UserTasksUpdateRequestToJSON, VoidApiResponse, WorkflowEventFromJSON, WorkflowEventFromJSONTyped, WorkflowEventToJSON, WorkflowFromJSON, WorkflowFromJSONTyped, WorkflowModuleFromJSON, WorkflowModuleFromJSONTyped, WorkflowModuleToJSON, WorkflowModulesFromJSON, WorkflowModulesFromJSONTyped, WorkflowModulesToJSON, WorkflowNotificationConfigurationFromJSON, WorkflowNotificationConfigurationFromJSONTyped, WorkflowNotificationConfigurationToJSON, WorkflowRetrieveMode, WorkflowRetrieveModeFromJSON, WorkflowRetrieveModeFromJSONTyped, WorkflowRetrieveModeToJSON, WorkflowToJSON, WorkflowsFromJSON, WorkflowsFromJSONTyped, WorkflowsRequestFromJSON, WorkflowsRequestFromJSONTyped, WorkflowsRequestToJSON, WorkflowsToJSON, WorkflowsUpdateRequestFromJSON, WorkflowsUpdateRequestFromJSONTyped, WorkflowsUpdateRequestToJSON, canConsumeForm, exists, instanceOfFollowUpDateRequest, instanceOfGroup, instanceOfKwicRequest, instanceOfKwicResult, instanceOfKwicResults, instanceOfNotificationConfiguration, instanceOfNotificationMedium, instanceOfNotificationWorkflow, instanceOfPage, instanceOfPerson, instanceOfRecipientConfiguration, instanceOfRecipientMediumConfiguration, instanceOfSearchQuery, instanceOfUserSearchResult, instanceOfUserTask, instanceOfUserTaskEvent, instanceOfUserTaskIds, instanceOfUserTasks, instanceOfUserTasksRequest, instanceOfUserTasksUpdateRequest, instanceOfWorkflow, instanceOfWorkflowEvent, instanceOfWorkflowModule, instanceOfWorkflowModules, instanceOfWorkflowNotificationConfiguration, instanceOfWorkflows, instanceOfWorkflowsRequest, instanceOfWorkflowsUpdateRequest, mapValues, querystring };
|
|
1739
2071
|
//# sourceMappingURL=index.js.map
|
|
1740
2072
|
//# sourceMappingURL=index.js.map
|