@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 CHANGED
@@ -407,6 +407,175 @@ declare function KwicResultsFromJSON(json: any): KwicResults;
407
407
  declare function KwicResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): KwicResults;
408
408
  declare function KwicResultsToJSON(value?: KwicResults | null): any;
409
409
 
410
+ /**
411
+ * gui
412
+ * Official GUI API
413
+ *
414
+ * The version of the OpenAPI document: 1.0
415
+ *
416
+ *
417
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
418
+ * https://openapi-generator.tech
419
+ * Do not edit the class manually.
420
+ */
421
+ /**
422
+ * Per-workflow override of the global setting
423
+ * @export
424
+ * @interface WorkflowNotificationConfiguration
425
+ */
426
+ interface WorkflowNotificationConfiguration {
427
+ /**
428
+ * If true, this workflow is never notified (clears all media for this scope)
429
+ * @type {boolean}
430
+ * @memberof WorkflowNotificationConfiguration
431
+ */
432
+ none?: boolean;
433
+ /**
434
+ * Per-medium override keyed by medium type
435
+ * @type {{ [key: string]: boolean; }}
436
+ * @memberof WorkflowNotificationConfiguration
437
+ */
438
+ allViaMedium?: {
439
+ [key: string]: boolean;
440
+ };
441
+ }
442
+ /**
443
+ * Check if a given object implements the WorkflowNotificationConfiguration interface.
444
+ */
445
+ declare function instanceOfWorkflowNotificationConfiguration(value: object): boolean;
446
+ declare function WorkflowNotificationConfigurationFromJSON(json: any): WorkflowNotificationConfiguration;
447
+ declare function WorkflowNotificationConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowNotificationConfiguration;
448
+ declare function WorkflowNotificationConfigurationToJSON(value?: WorkflowNotificationConfiguration | null): any;
449
+
450
+ /**
451
+ * gui
452
+ * Official GUI API
453
+ *
454
+ * The version of the OpenAPI document: 1.0
455
+ *
456
+ *
457
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
458
+ * https://openapi-generator.tech
459
+ * Do not edit the class manually.
460
+ */
461
+
462
+ /**
463
+ * The user's notification configuration; an absent/empty value means "none"
464
+ * @export
465
+ * @interface NotificationConfiguration
466
+ */
467
+ interface NotificationConfiguration {
468
+ /**
469
+ * Global "all via <medium>" flag keyed by medium type
470
+ * @type {{ [key: string]: boolean; }}
471
+ * @memberof NotificationConfiguration
472
+ */
473
+ globalAllViaMedium?: {
474
+ [key: string]: boolean;
475
+ };
476
+ /**
477
+ * Per-workflow overrides keyed by "<workflowModuleId>#<bpmnProcessId>"
478
+ * @type {{ [key: string]: WorkflowNotificationConfiguration; }}
479
+ * @memberof NotificationConfiguration
480
+ */
481
+ perWorkflow?: {
482
+ [key: string]: WorkflowNotificationConfiguration;
483
+ };
484
+ }
485
+ /**
486
+ * Check if a given object implements the NotificationConfiguration interface.
487
+ */
488
+ declare function instanceOfNotificationConfiguration(value: object): boolean;
489
+ declare function NotificationConfigurationFromJSON(json: any): NotificationConfiguration;
490
+ declare function NotificationConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationConfiguration;
491
+ declare function NotificationConfigurationToJSON(value?: NotificationConfiguration | null): any;
492
+
493
+ /**
494
+ * gui
495
+ * Official GUI API
496
+ *
497
+ * The version of the OpenAPI document: 1.0
498
+ *
499
+ *
500
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
501
+ * https://openapi-generator.tech
502
+ * Do not edit the class manually.
503
+ */
504
+ /**
505
+ *
506
+ * @export
507
+ * @interface NotificationMedium
508
+ */
509
+ interface NotificationMedium {
510
+ /**
511
+ * Technical medium type, e.g. "email"
512
+ * @type {string}
513
+ * @memberof NotificationMedium
514
+ */
515
+ type: string;
516
+ /**
517
+ * A text per language (key = language, value = text)
518
+ * @type {{ [key: string]: string; }}
519
+ * @memberof NotificationMedium
520
+ */
521
+ name?: {
522
+ [key: string]: string;
523
+ };
524
+ }
525
+ /**
526
+ * Check if a given object implements the NotificationMedium interface.
527
+ */
528
+ declare function instanceOfNotificationMedium(value: object): boolean;
529
+ declare function NotificationMediumFromJSON(json: any): NotificationMedium;
530
+ declare function NotificationMediumFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationMedium;
531
+ declare function NotificationMediumToJSON(value?: NotificationMedium | null): any;
532
+
533
+ /**
534
+ * gui
535
+ * Official GUI API
536
+ *
537
+ * The version of the OpenAPI document: 1.0
538
+ *
539
+ *
540
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
541
+ * https://openapi-generator.tech
542
+ * Do not edit the class manually.
543
+ */
544
+ /**
545
+ *
546
+ * @export
547
+ * @interface NotificationWorkflow
548
+ */
549
+ interface NotificationWorkflow {
550
+ /**
551
+ *
552
+ * @type {string}
553
+ * @memberof NotificationWorkflow
554
+ */
555
+ workflowModuleId?: string;
556
+ /**
557
+ *
558
+ * @type {string}
559
+ * @memberof NotificationWorkflow
560
+ */
561
+ bpmnProcessId?: string;
562
+ /**
563
+ * A text per language (key = language, value = text)
564
+ * @type {{ [key: string]: string; }}
565
+ * @memberof NotificationWorkflow
566
+ */
567
+ workflowTitle?: {
568
+ [key: string]: string;
569
+ };
570
+ }
571
+ /**
572
+ * Check if a given object implements the NotificationWorkflow interface.
573
+ */
574
+ declare function instanceOfNotificationWorkflow(value: object): boolean;
575
+ declare function NotificationWorkflowFromJSON(json: any): NotificationWorkflow;
576
+ declare function NotificationWorkflowFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationWorkflow;
577
+ declare function NotificationWorkflowToJSON(value?: NotificationWorkflow | null): any;
578
+
410
579
  /**
411
580
  * gui
412
581
  * Official GUI API
@@ -521,6 +690,107 @@ declare function PersonFromJSON(json: any): Person;
521
690
  declare function PersonFromJSONTyped(json: any, ignoreDiscriminator: boolean): Person;
522
691
  declare function PersonToJSON(value?: Person | null): any;
523
692
 
693
+ /**
694
+ * gui
695
+ * Official GUI API
696
+ *
697
+ * The version of the OpenAPI document: 1.0
698
+ *
699
+ *
700
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
701
+ * https://openapi-generator.tech
702
+ * Do not edit the class manually.
703
+ */
704
+ /**
705
+ *
706
+ * @export
707
+ * @interface RecipientConfiguration
708
+ */
709
+ interface RecipientConfiguration {
710
+ /**
711
+ * Medium-interpreted identifier of the value, e.g. "emailAddress"
712
+ * @type {string}
713
+ * @memberof RecipientConfiguration
714
+ */
715
+ type: string;
716
+ /**
717
+ * A text per language (key = language, value = text)
718
+ * @type {{ [key: string]: string; }}
719
+ * @memberof RecipientConfiguration
720
+ */
721
+ title?: {
722
+ [key: string]: string;
723
+ };
724
+ /**
725
+ * A text per language (key = language, value = text)
726
+ * @type {{ [key: string]: string; }}
727
+ * @memberof RecipientConfiguration
728
+ */
729
+ description?: {
730
+ [key: string]: string;
731
+ };
732
+ /**
733
+ *
734
+ * @type {string}
735
+ * @memberof RecipientConfiguration
736
+ */
737
+ value?: string;
738
+ }
739
+ /**
740
+ * Check if a given object implements the RecipientConfiguration interface.
741
+ */
742
+ declare function instanceOfRecipientConfiguration(value: object): boolean;
743
+ declare function RecipientConfigurationFromJSON(json: any): RecipientConfiguration;
744
+ declare function RecipientConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecipientConfiguration;
745
+ declare function RecipientConfigurationToJSON(value?: RecipientConfiguration | null): any;
746
+
747
+ /**
748
+ * gui
749
+ * Official GUI API
750
+ *
751
+ * The version of the OpenAPI document: 1.0
752
+ *
753
+ *
754
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
755
+ * https://openapi-generator.tech
756
+ * Do not edit the class manually.
757
+ */
758
+
759
+ /**
760
+ *
761
+ * @export
762
+ * @interface RecipientMediumConfiguration
763
+ */
764
+ interface RecipientMediumConfiguration {
765
+ /**
766
+ * The medium type
767
+ * @type {string}
768
+ * @memberof RecipientMediumConfiguration
769
+ */
770
+ medium: string;
771
+ /**
772
+ * A text per language (key = language, value = text)
773
+ * @type {{ [key: string]: string; }}
774
+ * @memberof RecipientMediumConfiguration
775
+ */
776
+ name?: {
777
+ [key: string]: string;
778
+ };
779
+ /**
780
+ *
781
+ * @type {Array<RecipientConfiguration>}
782
+ * @memberof RecipientMediumConfiguration
783
+ */
784
+ values?: Array<RecipientConfiguration>;
785
+ }
786
+ /**
787
+ * Check if a given object implements the RecipientMediumConfiguration interface.
788
+ */
789
+ declare function instanceOfRecipientMediumConfiguration(value: object): boolean;
790
+ declare function RecipientMediumConfigurationFromJSON(json: any): RecipientMediumConfiguration;
791
+ declare function RecipientMediumConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecipientMediumConfiguration;
792
+ declare function RecipientMediumConfigurationToJSON(value?: RecipientMediumConfiguration | null): any;
793
+
524
794
  /**
525
795
  * gui
526
796
  * Official GUI API
@@ -1542,6 +1812,164 @@ declare function WorkflowsUpdateRequestFromJSON(json: any): WorkflowsUpdateReque
1542
1812
  declare function WorkflowsUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowsUpdateRequest;
1543
1813
  declare function WorkflowsUpdateRequestToJSON(value?: WorkflowsUpdateRequest | null): any;
1544
1814
 
1815
+ /**
1816
+ * gui
1817
+ * Official GUI API
1818
+ *
1819
+ * The version of the OpenAPI document: 1.0
1820
+ *
1821
+ *
1822
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1823
+ * https://openapi-generator.tech
1824
+ * Do not edit the class manually.
1825
+ */
1826
+
1827
+ interface SaveNotificationConfigurationRequest {
1828
+ notificationConfiguration: NotificationConfiguration;
1829
+ }
1830
+ interface SaveRecipientConfigurationRequest {
1831
+ mediumType: string;
1832
+ requestBody: {
1833
+ [key: string]: string;
1834
+ };
1835
+ }
1836
+ /**
1837
+ * OfficialNotificationConfigApi - interface
1838
+ *
1839
+ * @export
1840
+ * @interface OfficialNotificationConfigApiInterface
1841
+ */
1842
+ interface OfficialNotificationConfigApiInterface {
1843
+ /**
1844
+ *
1845
+ * @summary The current user\'s notification configuration
1846
+ * @param {*} [options] Override http request option.
1847
+ * @throws {RequiredError}
1848
+ * @memberof OfficialNotificationConfigApiInterface
1849
+ */
1850
+ getNotificationConfigurationRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<NotificationConfiguration>>;
1851
+ /**
1852
+ * The current user\'s notification configuration
1853
+ */
1854
+ getNotificationConfiguration(initOverrides?: RequestInit | InitOverrideFunction): Promise<NotificationConfiguration>;
1855
+ /**
1856
+ *
1857
+ * @summary The available notification media (from the registered NotificationService beans)
1858
+ * @param {*} [options] Override http request option.
1859
+ * @throws {RequiredError}
1860
+ * @memberof OfficialNotificationConfigApiInterface
1861
+ */
1862
+ getNotificationMediaRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Array<NotificationMedium>>>;
1863
+ /**
1864
+ * The available notification media (from the registered NotificationService beans)
1865
+ */
1866
+ getNotificationMedia(initOverrides?: RequestInit | InitOverrideFunction): Promise<Array<NotificationMedium>>;
1867
+ /**
1868
+ *
1869
+ * @summary The workflows the current user has visible tasks for (same visibility as the task list)
1870
+ * @param {*} [options] Override http request option.
1871
+ * @throws {RequiredError}
1872
+ * @memberof OfficialNotificationConfigApiInterface
1873
+ */
1874
+ getNotificationWorkflowsRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Array<NotificationWorkflow>>>;
1875
+ /**
1876
+ * The workflows the current user has visible tasks for (same visibility as the task list)
1877
+ */
1878
+ getNotificationWorkflows(initOverrides?: RequestInit | InitOverrideFunction): Promise<Array<NotificationWorkflow>>;
1879
+ /**
1880
+ *
1881
+ * @summary The current user\'s per-medium recipient configuration
1882
+ * @param {*} [options] Override http request option.
1883
+ * @throws {RequiredError}
1884
+ * @memberof OfficialNotificationConfigApiInterface
1885
+ */
1886
+ getRecipientConfigurationRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Array<RecipientMediumConfiguration>>>;
1887
+ /**
1888
+ * The current user\'s per-medium recipient configuration
1889
+ */
1890
+ getRecipientConfiguration(initOverrides?: RequestInit | InitOverrideFunction): Promise<Array<RecipientMediumConfiguration>>;
1891
+ /**
1892
+ *
1893
+ * @summary Store the current user\'s notification configuration
1894
+ * @param {NotificationConfiguration} notificationConfiguration
1895
+ * @param {*} [options] Override http request option.
1896
+ * @throws {RequiredError}
1897
+ * @memberof OfficialNotificationConfigApiInterface
1898
+ */
1899
+ saveNotificationConfigurationRaw(requestParameters: SaveNotificationConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
1900
+ /**
1901
+ * Store the current user\'s notification configuration
1902
+ */
1903
+ saveNotificationConfiguration(requestParameters: SaveNotificationConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
1904
+ /**
1905
+ *
1906
+ * @summary Store the current user\'s recipient configuration for a medium
1907
+ * @param {string} mediumType
1908
+ * @param {{ [key: string]: string; }} requestBody
1909
+ * @param {*} [options] Override http request option.
1910
+ * @throws {RequiredError}
1911
+ * @memberof OfficialNotificationConfigApiInterface
1912
+ */
1913
+ saveRecipientConfigurationRaw(requestParameters: SaveRecipientConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
1914
+ /**
1915
+ * Store the current user\'s recipient configuration for a medium
1916
+ */
1917
+ saveRecipientConfiguration(requestParameters: SaveRecipientConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
1918
+ }
1919
+ /**
1920
+ *
1921
+ */
1922
+ declare class OfficialNotificationConfigApi extends BaseAPI implements OfficialNotificationConfigApiInterface {
1923
+ /**
1924
+ * The current user\'s notification configuration
1925
+ */
1926
+ getNotificationConfigurationRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<NotificationConfiguration>>;
1927
+ /**
1928
+ * The current user\'s notification configuration
1929
+ */
1930
+ getNotificationConfiguration(initOverrides?: RequestInit | InitOverrideFunction): Promise<NotificationConfiguration>;
1931
+ /**
1932
+ * The available notification media (from the registered NotificationService beans)
1933
+ */
1934
+ getNotificationMediaRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Array<NotificationMedium>>>;
1935
+ /**
1936
+ * The available notification media (from the registered NotificationService beans)
1937
+ */
1938
+ getNotificationMedia(initOverrides?: RequestInit | InitOverrideFunction): Promise<Array<NotificationMedium>>;
1939
+ /**
1940
+ * The workflows the current user has visible tasks for (same visibility as the task list)
1941
+ */
1942
+ getNotificationWorkflowsRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Array<NotificationWorkflow>>>;
1943
+ /**
1944
+ * The workflows the current user has visible tasks for (same visibility as the task list)
1945
+ */
1946
+ getNotificationWorkflows(initOverrides?: RequestInit | InitOverrideFunction): Promise<Array<NotificationWorkflow>>;
1947
+ /**
1948
+ * The current user\'s per-medium recipient configuration
1949
+ */
1950
+ getRecipientConfigurationRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Array<RecipientMediumConfiguration>>>;
1951
+ /**
1952
+ * The current user\'s per-medium recipient configuration
1953
+ */
1954
+ getRecipientConfiguration(initOverrides?: RequestInit | InitOverrideFunction): Promise<Array<RecipientMediumConfiguration>>;
1955
+ /**
1956
+ * Store the current user\'s notification configuration
1957
+ */
1958
+ saveNotificationConfigurationRaw(requestParameters: SaveNotificationConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
1959
+ /**
1960
+ * Store the current user\'s notification configuration
1961
+ */
1962
+ saveNotificationConfiguration(requestParameters: SaveNotificationConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
1963
+ /**
1964
+ * Store the current user\'s recipient configuration for a medium
1965
+ */
1966
+ saveRecipientConfigurationRaw(requestParameters: SaveRecipientConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
1967
+ /**
1968
+ * Store the current user\'s recipient configuration for a medium
1969
+ */
1970
+ saveRecipientConfiguration(requestParameters: SaveRecipientConfigurationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
1971
+ }
1972
+
1545
1973
  /**
1546
1974
  * gui
1547
1975
  * Official GUI API
@@ -2122,4 +2550,4 @@ declare class OfficialWorkflowlistApi extends BaseAPI implements OfficialWorkflo
2122
2550
  getWorkflowsUpdate(requestParameters: GetWorkflowsUpdateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<Workflows>;
2123
2551
  }
2124
2552
 
2125
- export { type ApiResponse, type AssignTaskRequest, type AssignTasksRequest, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, type ClaimTaskRequest, type ClaimTasksRequest, Configuration, type ConfigurationParameters, type Consume, DefaultConfig, type ErrorContext, type FetchAPI, FetchError, type FetchParams, type FindUsersRequest, type FollowUpDateRequest, FollowUpDateRequestFromJSON, FollowUpDateRequestFromJSONTyped, FollowUpDateRequestToJSON, type GetKwicResultsRequest, type GetUserTaskKwicResultsRequest, type GetUserTaskRequest, type GetUserTasksOfWorkflowRequest, type GetUserTasksRequest, type GetUserTasksUpdateRequest, type GetWorkflowModuleRequest, type GetWorkflowRequest, type GetWorkflowsRequest, type GetWorkflowsUpdateRequest, type Group, GroupFromJSON, GroupFromJSONTyped, GroupToJSON, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InitOverrideFunction, JSONApiResponse, type Json, type KwicRequest, KwicRequestFromJSON, KwicRequestFromJSONTyped, KwicRequestToJSON, type KwicResult, KwicResultFromJSON, KwicResultFromJSONTyped, KwicResultToJSON, type KwicResults, KwicResultsFromJSON, KwicResultsFromJSONTyped, KwicResultsToJSON, type MarkTaskAsReadRequest, type MarkTasksAsReadRequest, type Middleware, type ModelPropertyNaming, OfficialTasklistApi, type OfficialTasklistApiInterface, OfficialWorkflowModulesApi, type OfficialWorkflowModulesApiInterface, OfficialWorkflowlistApi, type OfficialWorkflowlistApiInterface, type Page, PageFromJSON, PageFromJSONTyped, PageToJSON, type Person, PersonFromJSON, PersonFromJSONTyped, PersonToJSON, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, type SearchQuery, SearchQueryFromJSON, SearchQueryFromJSONTyped, SearchQueryToJSON, type SetFollowUpDateRequest, TextApiResponse, UiUriType, UiUriTypeFromJSON, UiUriTypeFromJSONTyped, UiUriTypeToJSON, type UserSearchResult, UserSearchResultFromJSON, UserSearchResultFromJSONTyped, UserSearchResultToJSON, type UserTask, type UserTaskEvent, UserTaskEventFromJSON, UserTaskEventFromJSONTyped, UserTaskEventToJSON, UserTaskFromJSON, UserTaskFromJSONTyped, type UserTaskIds, UserTaskIdsFromJSON, UserTaskIdsFromJSONTyped, UserTaskIdsToJSON, UserTaskRetrieveMode, UserTaskRetrieveModeFromJSON, UserTaskRetrieveModeFromJSONTyped, UserTaskRetrieveModeToJSON, UserTaskToJSON, type UserTasks, UserTasksFromJSON, UserTasksFromJSONTyped, type UserTasksRequest, UserTasksRequestFromJSON, UserTasksRequestFromJSONTyped, UserTasksRequestToJSON, UserTasksToJSON, type UserTasksUpdateRequest, UserTasksUpdateRequestFromJSON, UserTasksUpdateRequestFromJSONTyped, UserTasksUpdateRequestToJSON, VoidApiResponse, type Workflow, type WorkflowEvent, WorkflowEventFromJSON, WorkflowEventFromJSONTyped, WorkflowEventToJSON, WorkflowFromJSON, WorkflowFromJSONTyped, type WorkflowModule, WorkflowModuleFromJSON, WorkflowModuleFromJSONTyped, WorkflowModuleToJSON, type WorkflowModules, WorkflowModulesFromJSON, WorkflowModulesFromJSONTyped, WorkflowModulesToJSON, WorkflowRetrieveMode, WorkflowRetrieveModeFromJSON, WorkflowRetrieveModeFromJSONTyped, WorkflowRetrieveModeToJSON, WorkflowToJSON, type Workflows, WorkflowsFromJSON, WorkflowsFromJSONTyped, type WorkflowsRequest, WorkflowsRequestFromJSON, WorkflowsRequestFromJSONTyped, WorkflowsRequestToJSON, WorkflowsToJSON, type WorkflowsUpdateRequest, 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 };
2553
+ export { type ApiResponse, type AssignTaskRequest, type AssignTasksRequest, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, type ClaimTaskRequest, type ClaimTasksRequest, Configuration, type ConfigurationParameters, type Consume, DefaultConfig, type ErrorContext, type FetchAPI, FetchError, type FetchParams, type FindUsersRequest, type FollowUpDateRequest, FollowUpDateRequestFromJSON, FollowUpDateRequestFromJSONTyped, FollowUpDateRequestToJSON, type GetKwicResultsRequest, type GetUserTaskKwicResultsRequest, type GetUserTaskRequest, type GetUserTasksOfWorkflowRequest, type GetUserTasksRequest, type GetUserTasksUpdateRequest, type GetWorkflowModuleRequest, type GetWorkflowRequest, type GetWorkflowsRequest, type GetWorkflowsUpdateRequest, type Group, GroupFromJSON, GroupFromJSONTyped, GroupToJSON, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InitOverrideFunction, JSONApiResponse, type Json, type KwicRequest, KwicRequestFromJSON, KwicRequestFromJSONTyped, KwicRequestToJSON, type KwicResult, KwicResultFromJSON, KwicResultFromJSONTyped, KwicResultToJSON, type KwicResults, KwicResultsFromJSON, KwicResultsFromJSONTyped, KwicResultsToJSON, type MarkTaskAsReadRequest, type MarkTasksAsReadRequest, type Middleware, type ModelPropertyNaming, type NotificationConfiguration, NotificationConfigurationFromJSON, NotificationConfigurationFromJSONTyped, NotificationConfigurationToJSON, type NotificationMedium, NotificationMediumFromJSON, NotificationMediumFromJSONTyped, NotificationMediumToJSON, type NotificationWorkflow, NotificationWorkflowFromJSON, NotificationWorkflowFromJSONTyped, NotificationWorkflowToJSON, OfficialNotificationConfigApi, type OfficialNotificationConfigApiInterface, OfficialTasklistApi, type OfficialTasklistApiInterface, OfficialWorkflowModulesApi, type OfficialWorkflowModulesApiInterface, OfficialWorkflowlistApi, type OfficialWorkflowlistApiInterface, type Page, PageFromJSON, PageFromJSONTyped, PageToJSON, type Person, PersonFromJSON, PersonFromJSONTyped, PersonToJSON, type RecipientConfiguration, RecipientConfigurationFromJSON, RecipientConfigurationFromJSONTyped, RecipientConfigurationToJSON, type RecipientMediumConfiguration, RecipientMediumConfigurationFromJSON, RecipientMediumConfigurationFromJSONTyped, RecipientMediumConfigurationToJSON, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, type SaveNotificationConfigurationRequest, type SaveRecipientConfigurationRequest, type SearchQuery, SearchQueryFromJSON, SearchQueryFromJSONTyped, SearchQueryToJSON, type SetFollowUpDateRequest, TextApiResponse, UiUriType, UiUriTypeFromJSON, UiUriTypeFromJSONTyped, UiUriTypeToJSON, type UserSearchResult, UserSearchResultFromJSON, UserSearchResultFromJSONTyped, UserSearchResultToJSON, type UserTask, type UserTaskEvent, UserTaskEventFromJSON, UserTaskEventFromJSONTyped, UserTaskEventToJSON, UserTaskFromJSON, UserTaskFromJSONTyped, type UserTaskIds, UserTaskIdsFromJSON, UserTaskIdsFromJSONTyped, UserTaskIdsToJSON, UserTaskRetrieveMode, UserTaskRetrieveModeFromJSON, UserTaskRetrieveModeFromJSONTyped, UserTaskRetrieveModeToJSON, UserTaskToJSON, type UserTasks, UserTasksFromJSON, UserTasksFromJSONTyped, type UserTasksRequest, UserTasksRequestFromJSON, UserTasksRequestFromJSONTyped, UserTasksRequestToJSON, UserTasksToJSON, type UserTasksUpdateRequest, UserTasksUpdateRequestFromJSON, UserTasksUpdateRequestFromJSONTyped, UserTasksUpdateRequestToJSON, VoidApiResponse, type Workflow, type WorkflowEvent, WorkflowEventFromJSON, WorkflowEventFromJSONTyped, WorkflowEventToJSON, WorkflowFromJSON, WorkflowFromJSONTyped, type WorkflowModule, WorkflowModuleFromJSON, WorkflowModuleFromJSONTyped, WorkflowModuleToJSON, type WorkflowModules, WorkflowModulesFromJSON, WorkflowModulesFromJSONTyped, WorkflowModulesToJSON, type WorkflowNotificationConfiguration, WorkflowNotificationConfigurationFromJSON, WorkflowNotificationConfigurationFromJSONTyped, WorkflowNotificationConfigurationToJSON, WorkflowRetrieveMode, WorkflowRetrieveModeFromJSON, WorkflowRetrieveModeFromJSONTyped, WorkflowRetrieveModeToJSON, WorkflowToJSON, type Workflows, WorkflowsFromJSON, WorkflowsFromJSONTyped, type WorkflowsRequest, WorkflowsRequestFromJSON, WorkflowsRequestFromJSONTyped, WorkflowsRequestToJSON, WorkflowsToJSON, type WorkflowsUpdateRequest, 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 };