@approvio/api 0.0.37 → 0.0.38
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/mocks/index.d.cts +1 -1
- package/dist/mocks/index.d.mts +1 -1
- package/dist/src/index.cjs +10 -1
- package/dist/src/index.d.cts +51 -47
- package/dist/src/index.d.mts +51 -47
- package/dist/src/index.mjs +10 -1
- package/dist/{workflow-create-CnfcH7rt.d.mts → workflow-create-CUw6ayXE.d.cts} +10 -10
- package/dist/{workflow-create-TrS0XFqN.d.cts → workflow-create-Du4B7X9Z.d.mts} +10 -10
- package/package.json +1 -1
package/dist/mocks/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as Workflow, d as ListGroups200Response, f as Pagination, i as ListWorkflows200Response, m as GroupInfo, n as User, p as Group, r as TokenResponse, t as WorkflowCreate, u as UserSummary } from "../workflow-create-
|
|
1
|
+
import { a as Workflow, d as ListGroups200Response, f as Pagination, i as ListWorkflows200Response, m as GroupInfo, n as User, p as Group, r as TokenResponse, t as WorkflowCreate, u as UserSummary } from "../workflow-create-CUw6ayXE.cjs";
|
|
2
2
|
|
|
3
3
|
//#region mocks/user.fixtures.d.ts
|
|
4
4
|
declare const MOCK_USER_ID = "e6e08687-2189-4710-91b5-479cd25a9119";
|
package/dist/mocks/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as Workflow, d as ListGroups200Response, f as Pagination, i as ListWorkflows200Response, m as GroupInfo, n as User, p as Group, r as TokenResponse, t as WorkflowCreate, u as UserSummary } from "../workflow-create-
|
|
1
|
+
import { a as Workflow, d as ListGroups200Response, f as Pagination, i as ListWorkflows200Response, m as GroupInfo, n as User, p as Group, r as TokenResponse, t as WorkflowCreate, u as UserSummary } from "../workflow-create-Du4B7X9Z.mjs";
|
|
2
2
|
|
|
3
3
|
//#region mocks/user.fixtures.d.ts
|
|
4
4
|
declare const MOCK_USER_ID = "e6e08687-2189-4710-91b5-479cd25a9119";
|
package/dist/src/index.cjs
CHANGED
|
@@ -388,7 +388,7 @@ function validateSharedListParams(object) {
|
|
|
388
388
|
result.limit = limit;
|
|
389
389
|
}
|
|
390
390
|
if (hasOwnProperty(object, "search") && object.search !== void 0) {
|
|
391
|
-
if (typeof object.search !== "string"
|
|
391
|
+
if (typeof object.search !== "string") return (0, fp_ts_Either.left)("invalid_search");
|
|
392
392
|
result.search = object.search;
|
|
393
393
|
}
|
|
394
394
|
return (0, fp_ts_Either.right)(result);
|
|
@@ -737,6 +737,15 @@ function validateListWorkflowTemplatesParams(object) {
|
|
|
737
737
|
if ((0, fp_ts_Either.isLeft)(sharedValidation)) return (0, fp_ts_Either.left)(sharedValidation.left);
|
|
738
738
|
const result = sharedValidation.right;
|
|
739
739
|
if (typeof object !== "object" || object === null) return (0, fp_ts_Either.left)("malformed_object");
|
|
740
|
+
if (hasOwnProperty(object, "searchMode") && object.searchMode !== void 0) {
|
|
741
|
+
if (typeof object.searchMode !== "string") return (0, fp_ts_Either.left)("invalid_search_mode");
|
|
742
|
+
if (object.searchMode !== "CONTAINS" && object.searchMode !== "EXACT") return (0, fp_ts_Either.left)("invalid_search_mode");
|
|
743
|
+
result.searchMode = object.searchMode;
|
|
744
|
+
} else result.searchMode = "CONTAINS";
|
|
745
|
+
if (result.search !== void 0) {
|
|
746
|
+
if (result.searchMode === "CONTAINS" && result.search.length < 3) return (0, fp_ts_Either.left)("invalid_search_length");
|
|
747
|
+
if (result.searchMode === "EXACT" && result.search.length < 1) return (0, fp_ts_Either.left)("invalid_search_length");
|
|
748
|
+
}
|
|
740
749
|
if (hasOwnProperty(object, "spaceIdentifier") && object.spaceIdentifier !== void 0) {
|
|
741
750
|
if (!isNonEmptyString(object.spaceIdentifier)) return (0, fp_ts_Either.left)("invalid_space_identifier");
|
|
742
751
|
result.spaceIdentifier = object.spaceIdentifier;
|
package/dist/src/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as ApprovalRule, a as Workflow, c as WorkflowAction, d as ListGroups200Response, f as Pagination, g as AndRule, h as EmailAction, i as ListWorkflows200Response, l as WebhookAction, m as GroupInfo, n as User, o as WorkflowRef, p as Group, r as TokenResponse, s as WorkflowTemplate, t as WorkflowCreate, u as UserSummary, v as GroupRequirementRule, y as OrRule } from "../workflow-create-
|
|
1
|
+
import { _ as ApprovalRule, a as Workflow, c as WorkflowAction, d as ListGroups200Response, f as Pagination, g as AndRule, h as EmailAction, i as ListWorkflows200Response, l as WebhookAction, m as GroupInfo, n as User, o as WorkflowRef, p as Group, r as TokenResponse, s as WorkflowTemplate, t as WorkflowCreate, u as UserSummary, v as GroupRequirementRule, y as OrRule } from "../workflow-create-CUw6ayXE.cjs";
|
|
2
2
|
import { Either } from "fp-ts/Either";
|
|
3
3
|
|
|
4
4
|
//#region generated/openapi/model/api-error-details-inner.d.ts
|
|
@@ -6,7 +6,7 @@ import { Either } from "fp-ts/Either";
|
|
|
6
6
|
* Workflow Approval System API
|
|
7
7
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 0.0.
|
|
9
|
+
* The version of the OpenAPI document: 0.0.33
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -36,7 +36,7 @@ interface APIError {
|
|
|
36
36
|
* Workflow Approval System API
|
|
37
37
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
38
38
|
*
|
|
39
|
-
* The version of the OpenAPI document: 0.0.
|
|
39
|
+
* The version of the OpenAPI document: 0.0.33
|
|
40
40
|
*
|
|
41
41
|
*
|
|
42
42
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -75,7 +75,7 @@ interface AddGroupEntitiesRequest {
|
|
|
75
75
|
* Workflow Approval System API
|
|
76
76
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
77
77
|
*
|
|
78
|
-
* The version of the OpenAPI document: 0.0.
|
|
78
|
+
* The version of the OpenAPI document: 0.0.33
|
|
79
79
|
*
|
|
80
80
|
*
|
|
81
81
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -94,7 +94,7 @@ interface AgentChallengeRequest {
|
|
|
94
94
|
* Workflow Approval System API
|
|
95
95
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
96
96
|
*
|
|
97
|
-
* The version of the OpenAPI document: 0.0.
|
|
97
|
+
* The version of the OpenAPI document: 0.0.33
|
|
98
98
|
*
|
|
99
99
|
*
|
|
100
100
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -113,7 +113,7 @@ interface AgentChallengeResponse {
|
|
|
113
113
|
* Workflow Approval System API
|
|
114
114
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
115
115
|
*
|
|
116
|
-
* The version of the OpenAPI document: 0.0.
|
|
116
|
+
* The version of the OpenAPI document: 0.0.33
|
|
117
117
|
*
|
|
118
118
|
*
|
|
119
119
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -144,7 +144,7 @@ interface AgentGet200Response {
|
|
|
144
144
|
* Workflow Approval System API
|
|
145
145
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
146
146
|
*
|
|
147
|
-
* The version of the OpenAPI document: 0.0.
|
|
147
|
+
* The version of the OpenAPI document: 0.0.33
|
|
148
148
|
*
|
|
149
149
|
*
|
|
150
150
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -163,7 +163,7 @@ interface AgentRegistrationRequest {
|
|
|
163
163
|
* Workflow Approval System API
|
|
164
164
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
165
165
|
*
|
|
166
|
-
* The version of the OpenAPI document: 0.0.
|
|
166
|
+
* The version of the OpenAPI document: 0.0.33
|
|
167
167
|
*
|
|
168
168
|
*
|
|
169
169
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -198,7 +198,7 @@ interface AgentRegistrationResponse {
|
|
|
198
198
|
* Workflow Approval System API
|
|
199
199
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
200
200
|
*
|
|
201
|
-
* The version of the OpenAPI document: 0.0.
|
|
201
|
+
* The version of the OpenAPI document: 0.0.33
|
|
202
202
|
*
|
|
203
203
|
*
|
|
204
204
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -221,7 +221,7 @@ interface AgentSummary {
|
|
|
221
221
|
* Workflow Approval System API
|
|
222
222
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
223
223
|
*
|
|
224
|
-
* The version of the OpenAPI document: 0.0.
|
|
224
|
+
* The version of the OpenAPI document: 0.0.33
|
|
225
225
|
*
|
|
226
226
|
*
|
|
227
227
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -258,7 +258,7 @@ declare namespace AgentTokenRequest {
|
|
|
258
258
|
* Workflow Approval System API
|
|
259
259
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
260
260
|
*
|
|
261
|
-
* The version of the OpenAPI document: 0.0.
|
|
261
|
+
* The version of the OpenAPI document: 0.0.33
|
|
262
262
|
*
|
|
263
263
|
*
|
|
264
264
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -281,7 +281,7 @@ interface AgentTokenResponse {
|
|
|
281
281
|
* Workflow Approval System API
|
|
282
282
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
283
283
|
*
|
|
284
|
-
* The version of the OpenAPI document: 0.0.
|
|
284
|
+
* The version of the OpenAPI document: 0.0.33
|
|
285
285
|
*
|
|
286
286
|
*
|
|
287
287
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -326,7 +326,7 @@ interface GetEntityInfo200Response {
|
|
|
326
326
|
* Workflow Approval System API
|
|
327
327
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
328
328
|
*
|
|
329
|
-
* The version of the OpenAPI document: 0.0.
|
|
329
|
+
* The version of the OpenAPI document: 0.0.33
|
|
330
330
|
*
|
|
331
331
|
*
|
|
332
332
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -345,7 +345,7 @@ interface GetWorkflowParams {
|
|
|
345
345
|
* Workflow Approval System API
|
|
346
346
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
347
347
|
*
|
|
348
|
-
* The version of the OpenAPI document: 0.0.
|
|
348
|
+
* The version of the OpenAPI document: 0.0.33
|
|
349
349
|
*
|
|
350
350
|
*
|
|
351
351
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -389,7 +389,7 @@ interface GetWorkflowVotes200Response {
|
|
|
389
389
|
* Workflow Approval System API
|
|
390
390
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
391
391
|
*
|
|
392
|
-
* The version of the OpenAPI document: 0.0.
|
|
392
|
+
* The version of the OpenAPI document: 0.0.33
|
|
393
393
|
*
|
|
394
394
|
*
|
|
395
395
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -421,7 +421,7 @@ interface GroupMembership {
|
|
|
421
421
|
* Workflow Approval System API
|
|
422
422
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
423
423
|
*
|
|
424
|
-
* The version of the OpenAPI document: 0.0.
|
|
424
|
+
* The version of the OpenAPI document: 0.0.33
|
|
425
425
|
*
|
|
426
426
|
*
|
|
427
427
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -453,7 +453,7 @@ declare namespace GroupScope {
|
|
|
453
453
|
* Workflow Approval System API
|
|
454
454
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
455
455
|
*
|
|
456
|
-
* The version of the OpenAPI document: 0.0.
|
|
456
|
+
* The version of the OpenAPI document: 0.0.33
|
|
457
457
|
*
|
|
458
458
|
*
|
|
459
459
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -476,7 +476,7 @@ interface HealthResponse {
|
|
|
476
476
|
* Workflow Approval System API
|
|
477
477
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
478
478
|
*
|
|
479
|
-
* The version of the OpenAPI document: 0.0.
|
|
479
|
+
* The version of the OpenAPI document: 0.0.33
|
|
480
480
|
*
|
|
481
481
|
*
|
|
482
482
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -492,7 +492,7 @@ interface InitiateCliLogin200Response {
|
|
|
492
492
|
* Workflow Approval System API
|
|
493
493
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
494
494
|
*
|
|
495
|
-
* The version of the OpenAPI document: 0.0.
|
|
495
|
+
* The version of the OpenAPI document: 0.0.33
|
|
496
496
|
*
|
|
497
497
|
*
|
|
498
498
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -517,7 +517,7 @@ interface ListAgents200Response {
|
|
|
517
517
|
* Workflow Approval System API
|
|
518
518
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
519
519
|
*
|
|
520
|
-
* The version of the OpenAPI document: 0.0.
|
|
520
|
+
* The version of the OpenAPI document: 0.0.33
|
|
521
521
|
*
|
|
522
522
|
*
|
|
523
523
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -546,7 +546,7 @@ interface ListGroupEntities200Response {
|
|
|
546
546
|
* Workflow Approval System API
|
|
547
547
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
548
548
|
*
|
|
549
|
-
* The version of the OpenAPI document: 0.0.
|
|
549
|
+
* The version of the OpenAPI document: 0.0.33
|
|
550
550
|
*
|
|
551
551
|
*
|
|
552
552
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -573,7 +573,7 @@ interface ListGroupsParams {
|
|
|
573
573
|
* Workflow Approval System API
|
|
574
574
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
575
575
|
*
|
|
576
|
-
* The version of the OpenAPI document: 0.0.
|
|
576
|
+
* The version of the OpenAPI document: 0.0.33
|
|
577
577
|
*
|
|
578
578
|
*
|
|
579
579
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -606,7 +606,7 @@ interface ListOrganizationAdminsForOrg200Response {
|
|
|
606
606
|
* Workflow Approval System API
|
|
607
607
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
608
608
|
*
|
|
609
|
-
* The version of the OpenAPI document: 0.0.
|
|
609
|
+
* The version of the OpenAPI document: 0.0.33
|
|
610
610
|
*
|
|
611
611
|
*
|
|
612
612
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -638,7 +638,7 @@ interface ListRoleTemplates200Response {
|
|
|
638
638
|
* Workflow Approval System API
|
|
639
639
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
640
640
|
*
|
|
641
|
-
* The version of the OpenAPI document: 0.0.
|
|
641
|
+
* The version of the OpenAPI document: 0.0.33
|
|
642
642
|
*
|
|
643
643
|
*
|
|
644
644
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -679,7 +679,7 @@ interface ListSpaces200Response {
|
|
|
679
679
|
* Workflow Approval System API
|
|
680
680
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
681
681
|
*
|
|
682
|
-
* The version of the OpenAPI document: 0.0.
|
|
682
|
+
* The version of the OpenAPI document: 0.0.33
|
|
683
683
|
*
|
|
684
684
|
*
|
|
685
685
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -712,7 +712,7 @@ interface ListUsers200Response {
|
|
|
712
712
|
* Workflow Approval System API
|
|
713
713
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
714
714
|
*
|
|
715
|
-
* The version of the OpenAPI document: 0.0.
|
|
715
|
+
* The version of the OpenAPI document: 0.0.33
|
|
716
716
|
*
|
|
717
717
|
*
|
|
718
718
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -739,7 +739,7 @@ interface ListUsersParams {
|
|
|
739
739
|
* Workflow Approval System API
|
|
740
740
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
741
741
|
*
|
|
742
|
-
* The version of the OpenAPI document: 0.0.
|
|
742
|
+
* The version of the OpenAPI document: 0.0.33
|
|
743
743
|
*
|
|
744
744
|
*
|
|
745
745
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -784,7 +784,7 @@ interface ListWorkflowTemplates200Response {
|
|
|
784
784
|
* Workflow Approval System API
|
|
785
785
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
786
786
|
*
|
|
787
|
-
* The version of the OpenAPI document: 0.0.
|
|
787
|
+
* The version of the OpenAPI document: 0.0.33
|
|
788
788
|
*
|
|
789
789
|
*
|
|
790
790
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -801,9 +801,13 @@ interface ListWorkflowTemplatesParams {
|
|
|
801
801
|
*/
|
|
802
802
|
limit?: number;
|
|
803
803
|
/**
|
|
804
|
-
*
|
|
804
|
+
* Search term for workflow template name.
|
|
805
805
|
*/
|
|
806
806
|
search?: string;
|
|
807
|
+
/**
|
|
808
|
+
* Mode for the search parameter. \'CONTAINS\' for partial matches, \'EXACT\' for exact matches.
|
|
809
|
+
*/
|
|
810
|
+
searchMode?: string;
|
|
807
811
|
/**
|
|
808
812
|
* Optional space identifier (UUID or name) to filter workflow templates.
|
|
809
813
|
*/
|
|
@@ -819,7 +823,7 @@ interface ListWorkflowTemplatesParams {
|
|
|
819
823
|
* Workflow Approval System API
|
|
820
824
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
821
825
|
*
|
|
822
|
-
* The version of the OpenAPI document: 0.0.
|
|
826
|
+
* The version of the OpenAPI document: 0.0.33
|
|
823
827
|
*
|
|
824
828
|
*
|
|
825
829
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -854,7 +858,7 @@ interface ListWorkflowsParams {
|
|
|
854
858
|
* Workflow Approval System API
|
|
855
859
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
856
860
|
*
|
|
857
|
-
* The version of the OpenAPI document: 0.0.
|
|
861
|
+
* The version of the OpenAPI document: 0.0.33
|
|
858
862
|
*
|
|
859
863
|
*
|
|
860
864
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -877,7 +881,7 @@ interface OidcCallbackRequest {
|
|
|
877
881
|
* Workflow Approval System API
|
|
878
882
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
879
883
|
*
|
|
880
|
-
* The version of the OpenAPI document: 0.0.
|
|
884
|
+
* The version of the OpenAPI document: 0.0.33
|
|
881
885
|
*
|
|
882
886
|
*
|
|
883
887
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -905,7 +909,7 @@ declare namespace OrgScope {
|
|
|
905
909
|
* Workflow Approval System API
|
|
906
910
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
907
911
|
*
|
|
908
|
-
* The version of the OpenAPI document: 0.0.
|
|
912
|
+
* The version of the OpenAPI document: 0.0.33
|
|
909
913
|
*
|
|
910
914
|
*
|
|
911
915
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -924,7 +928,7 @@ interface OrganizationAdminCreate {
|
|
|
924
928
|
* Workflow Approval System API
|
|
925
929
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
926
930
|
*
|
|
927
|
-
* The version of the OpenAPI document: 0.0.
|
|
931
|
+
* The version of the OpenAPI document: 0.0.33
|
|
928
932
|
*
|
|
929
933
|
*
|
|
930
934
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -943,7 +947,7 @@ interface OrganizationAdminRemove {
|
|
|
943
947
|
* Workflow Approval System API
|
|
944
948
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
945
949
|
*
|
|
946
|
-
* The version of the OpenAPI document: 0.0.
|
|
950
|
+
* The version of the OpenAPI document: 0.0.33
|
|
947
951
|
*
|
|
948
952
|
*
|
|
949
953
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -974,7 +978,7 @@ interface PrivilegedTokenExchangeRequest {
|
|
|
974
978
|
* Workflow Approval System API
|
|
975
979
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
976
980
|
*
|
|
977
|
-
* The version of the OpenAPI document: 0.0.
|
|
981
|
+
* The version of the OpenAPI document: 0.0.33
|
|
978
982
|
*
|
|
979
983
|
*
|
|
980
984
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -993,7 +997,7 @@ interface PrivilegedTokenResponse {
|
|
|
993
997
|
* Workflow Approval System API
|
|
994
998
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
995
999
|
*
|
|
996
|
-
* The version of the OpenAPI document: 0.0.
|
|
1000
|
+
* The version of the OpenAPI document: 0.0.33
|
|
997
1001
|
*
|
|
998
1002
|
*
|
|
999
1003
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1023,7 +1027,7 @@ interface RemoveGroupEntitiesRequest {
|
|
|
1023
1027
|
* Workflow Approval System API
|
|
1024
1028
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1025
1029
|
*
|
|
1026
|
-
* The version of the OpenAPI document: 0.0.
|
|
1030
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1027
1031
|
*
|
|
1028
1032
|
*
|
|
1029
1033
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1055,7 +1059,7 @@ declare namespace SpaceScope {
|
|
|
1055
1059
|
* Workflow Approval System API
|
|
1056
1060
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1057
1061
|
*
|
|
1058
|
-
* The version of the OpenAPI document: 0.0.
|
|
1062
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1059
1063
|
*
|
|
1060
1064
|
*
|
|
1061
1065
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1143,7 +1147,7 @@ interface RoleRemovalRequest {
|
|
|
1143
1147
|
* Workflow Approval System API
|
|
1144
1148
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1145
1149
|
*
|
|
1146
|
-
* The version of the OpenAPI document: 0.0.
|
|
1150
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1147
1151
|
*
|
|
1148
1152
|
*
|
|
1149
1153
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1166,7 +1170,7 @@ interface SpaceCreate {
|
|
|
1166
1170
|
* Workflow Approval System API
|
|
1167
1171
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1168
1172
|
*
|
|
1169
|
-
* The version of the OpenAPI document: 0.0.
|
|
1173
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1170
1174
|
*
|
|
1171
1175
|
*
|
|
1172
1176
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1189,7 +1193,7 @@ interface TokenRequest {
|
|
|
1189
1193
|
* Workflow Approval System API
|
|
1190
1194
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1191
1195
|
*
|
|
1192
|
-
* The version of the OpenAPI document: 0.0.
|
|
1196
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1193
1197
|
*
|
|
1194
1198
|
*
|
|
1195
1199
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1216,7 +1220,7 @@ interface UserCreate {
|
|
|
1216
1220
|
* Workflow Approval System API
|
|
1217
1221
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1218
1222
|
*
|
|
1219
|
-
* The version of the OpenAPI document: 0.0.
|
|
1223
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1220
1224
|
*
|
|
1221
1225
|
*
|
|
1222
1226
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1245,7 +1249,7 @@ declare namespace VoteApprove {
|
|
|
1245
1249
|
* Workflow Approval System API
|
|
1246
1250
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1247
1251
|
*
|
|
1248
|
-
* The version of the OpenAPI document: 0.0.
|
|
1252
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1249
1253
|
*
|
|
1250
1254
|
*
|
|
1251
1255
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1270,7 +1274,7 @@ declare namespace VoteVeto {
|
|
|
1270
1274
|
* Workflow Approval System API
|
|
1271
1275
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1272
1276
|
*
|
|
1273
|
-
* The version of the OpenAPI document: 0.0.
|
|
1277
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1274
1278
|
*
|
|
1275
1279
|
*
|
|
1276
1280
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1324,7 +1328,7 @@ interface WorkflowTemplateCreate {
|
|
|
1324
1328
|
* Workflow Approval System API
|
|
1325
1329
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1326
1330
|
*
|
|
1327
|
-
* The version of the OpenAPI document: 0.0.
|
|
1331
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1328
1332
|
*
|
|
1329
1333
|
*
|
|
1330
1334
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1476,7 +1480,7 @@ declare function validateWorkflowTemplateScope(object: unknown): Either<Workflow
|
|
|
1476
1480
|
type WorkflowTemplateSummaryValidationError = "malformed_object" | "invalid_id" | "invalid_name" | "invalid_version" | "invalid_created_at" | "invalid_updated_at" | "invalid_description";
|
|
1477
1481
|
type ListWorkflowTemplates200ResponseValidationError = "malformed_object" | "invalid_data" | "invalid_pagination" | "missing_pagination" | PrefixUnion<"data_item", WorkflowTemplateSummaryValidationError>;
|
|
1478
1482
|
declare function validateListWorkflowTemplates200Response(object: unknown): Either<ListWorkflowTemplates200ResponseValidationError, ListWorkflowTemplates200Response>;
|
|
1479
|
-
type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status";
|
|
1483
|
+
type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status" | "invalid_search_mode" | "invalid_search_length";
|
|
1480
1484
|
declare function validateListWorkflowTemplatesParams(object: unknown): Either<ListWorkflowTemplatesParamsValidationError, ListWorkflowTemplatesParams>;
|
|
1481
1485
|
//#endregion
|
|
1482
1486
|
//#region src/validators/spaces.validators.d.ts
|
package/dist/src/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as ApprovalRule, a as Workflow, c as WorkflowAction, d as ListGroups200Response, f as Pagination, g as AndRule, h as EmailAction, i as ListWorkflows200Response, l as WebhookAction, m as GroupInfo, n as User, o as WorkflowRef, p as Group, r as TokenResponse, s as WorkflowTemplate, t as WorkflowCreate, u as UserSummary, v as GroupRequirementRule, y as OrRule } from "../workflow-create-
|
|
1
|
+
import { _ as ApprovalRule, a as Workflow, c as WorkflowAction, d as ListGroups200Response, f as Pagination, g as AndRule, h as EmailAction, i as ListWorkflows200Response, l as WebhookAction, m as GroupInfo, n as User, o as WorkflowRef, p as Group, r as TokenResponse, s as WorkflowTemplate, t as WorkflowCreate, u as UserSummary, v as GroupRequirementRule, y as OrRule } from "../workflow-create-Du4B7X9Z.mjs";
|
|
2
2
|
import { Either } from "fp-ts/Either";
|
|
3
3
|
|
|
4
4
|
//#region generated/openapi/model/api-error-details-inner.d.ts
|
|
@@ -6,7 +6,7 @@ import { Either } from "fp-ts/Either";
|
|
|
6
6
|
* Workflow Approval System API
|
|
7
7
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 0.0.
|
|
9
|
+
* The version of the OpenAPI document: 0.0.33
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -36,7 +36,7 @@ interface APIError {
|
|
|
36
36
|
* Workflow Approval System API
|
|
37
37
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
38
38
|
*
|
|
39
|
-
* The version of the OpenAPI document: 0.0.
|
|
39
|
+
* The version of the OpenAPI document: 0.0.33
|
|
40
40
|
*
|
|
41
41
|
*
|
|
42
42
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -75,7 +75,7 @@ interface AddGroupEntitiesRequest {
|
|
|
75
75
|
* Workflow Approval System API
|
|
76
76
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
77
77
|
*
|
|
78
|
-
* The version of the OpenAPI document: 0.0.
|
|
78
|
+
* The version of the OpenAPI document: 0.0.33
|
|
79
79
|
*
|
|
80
80
|
*
|
|
81
81
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -94,7 +94,7 @@ interface AgentChallengeRequest {
|
|
|
94
94
|
* Workflow Approval System API
|
|
95
95
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
96
96
|
*
|
|
97
|
-
* The version of the OpenAPI document: 0.0.
|
|
97
|
+
* The version of the OpenAPI document: 0.0.33
|
|
98
98
|
*
|
|
99
99
|
*
|
|
100
100
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -113,7 +113,7 @@ interface AgentChallengeResponse {
|
|
|
113
113
|
* Workflow Approval System API
|
|
114
114
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
115
115
|
*
|
|
116
|
-
* The version of the OpenAPI document: 0.0.
|
|
116
|
+
* The version of the OpenAPI document: 0.0.33
|
|
117
117
|
*
|
|
118
118
|
*
|
|
119
119
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -144,7 +144,7 @@ interface AgentGet200Response {
|
|
|
144
144
|
* Workflow Approval System API
|
|
145
145
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
146
146
|
*
|
|
147
|
-
* The version of the OpenAPI document: 0.0.
|
|
147
|
+
* The version of the OpenAPI document: 0.0.33
|
|
148
148
|
*
|
|
149
149
|
*
|
|
150
150
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -163,7 +163,7 @@ interface AgentRegistrationRequest {
|
|
|
163
163
|
* Workflow Approval System API
|
|
164
164
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
165
165
|
*
|
|
166
|
-
* The version of the OpenAPI document: 0.0.
|
|
166
|
+
* The version of the OpenAPI document: 0.0.33
|
|
167
167
|
*
|
|
168
168
|
*
|
|
169
169
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -198,7 +198,7 @@ interface AgentRegistrationResponse {
|
|
|
198
198
|
* Workflow Approval System API
|
|
199
199
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
200
200
|
*
|
|
201
|
-
* The version of the OpenAPI document: 0.0.
|
|
201
|
+
* The version of the OpenAPI document: 0.0.33
|
|
202
202
|
*
|
|
203
203
|
*
|
|
204
204
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -221,7 +221,7 @@ interface AgentSummary {
|
|
|
221
221
|
* Workflow Approval System API
|
|
222
222
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
223
223
|
*
|
|
224
|
-
* The version of the OpenAPI document: 0.0.
|
|
224
|
+
* The version of the OpenAPI document: 0.0.33
|
|
225
225
|
*
|
|
226
226
|
*
|
|
227
227
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -258,7 +258,7 @@ declare namespace AgentTokenRequest {
|
|
|
258
258
|
* Workflow Approval System API
|
|
259
259
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
260
260
|
*
|
|
261
|
-
* The version of the OpenAPI document: 0.0.
|
|
261
|
+
* The version of the OpenAPI document: 0.0.33
|
|
262
262
|
*
|
|
263
263
|
*
|
|
264
264
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -281,7 +281,7 @@ interface AgentTokenResponse {
|
|
|
281
281
|
* Workflow Approval System API
|
|
282
282
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
283
283
|
*
|
|
284
|
-
* The version of the OpenAPI document: 0.0.
|
|
284
|
+
* The version of the OpenAPI document: 0.0.33
|
|
285
285
|
*
|
|
286
286
|
*
|
|
287
287
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -326,7 +326,7 @@ interface GetEntityInfo200Response {
|
|
|
326
326
|
* Workflow Approval System API
|
|
327
327
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
328
328
|
*
|
|
329
|
-
* The version of the OpenAPI document: 0.0.
|
|
329
|
+
* The version of the OpenAPI document: 0.0.33
|
|
330
330
|
*
|
|
331
331
|
*
|
|
332
332
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -345,7 +345,7 @@ interface GetWorkflowParams {
|
|
|
345
345
|
* Workflow Approval System API
|
|
346
346
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
347
347
|
*
|
|
348
|
-
* The version of the OpenAPI document: 0.0.
|
|
348
|
+
* The version of the OpenAPI document: 0.0.33
|
|
349
349
|
*
|
|
350
350
|
*
|
|
351
351
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -389,7 +389,7 @@ interface GetWorkflowVotes200Response {
|
|
|
389
389
|
* Workflow Approval System API
|
|
390
390
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
391
391
|
*
|
|
392
|
-
* The version of the OpenAPI document: 0.0.
|
|
392
|
+
* The version of the OpenAPI document: 0.0.33
|
|
393
393
|
*
|
|
394
394
|
*
|
|
395
395
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -421,7 +421,7 @@ interface GroupMembership {
|
|
|
421
421
|
* Workflow Approval System API
|
|
422
422
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
423
423
|
*
|
|
424
|
-
* The version of the OpenAPI document: 0.0.
|
|
424
|
+
* The version of the OpenAPI document: 0.0.33
|
|
425
425
|
*
|
|
426
426
|
*
|
|
427
427
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -453,7 +453,7 @@ declare namespace GroupScope {
|
|
|
453
453
|
* Workflow Approval System API
|
|
454
454
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
455
455
|
*
|
|
456
|
-
* The version of the OpenAPI document: 0.0.
|
|
456
|
+
* The version of the OpenAPI document: 0.0.33
|
|
457
457
|
*
|
|
458
458
|
*
|
|
459
459
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -476,7 +476,7 @@ interface HealthResponse {
|
|
|
476
476
|
* Workflow Approval System API
|
|
477
477
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
478
478
|
*
|
|
479
|
-
* The version of the OpenAPI document: 0.0.
|
|
479
|
+
* The version of the OpenAPI document: 0.0.33
|
|
480
480
|
*
|
|
481
481
|
*
|
|
482
482
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -492,7 +492,7 @@ interface InitiateCliLogin200Response {
|
|
|
492
492
|
* Workflow Approval System API
|
|
493
493
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
494
494
|
*
|
|
495
|
-
* The version of the OpenAPI document: 0.0.
|
|
495
|
+
* The version of the OpenAPI document: 0.0.33
|
|
496
496
|
*
|
|
497
497
|
*
|
|
498
498
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -517,7 +517,7 @@ interface ListAgents200Response {
|
|
|
517
517
|
* Workflow Approval System API
|
|
518
518
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
519
519
|
*
|
|
520
|
-
* The version of the OpenAPI document: 0.0.
|
|
520
|
+
* The version of the OpenAPI document: 0.0.33
|
|
521
521
|
*
|
|
522
522
|
*
|
|
523
523
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -546,7 +546,7 @@ interface ListGroupEntities200Response {
|
|
|
546
546
|
* Workflow Approval System API
|
|
547
547
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
548
548
|
*
|
|
549
|
-
* The version of the OpenAPI document: 0.0.
|
|
549
|
+
* The version of the OpenAPI document: 0.0.33
|
|
550
550
|
*
|
|
551
551
|
*
|
|
552
552
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -573,7 +573,7 @@ interface ListGroupsParams {
|
|
|
573
573
|
* Workflow Approval System API
|
|
574
574
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
575
575
|
*
|
|
576
|
-
* The version of the OpenAPI document: 0.0.
|
|
576
|
+
* The version of the OpenAPI document: 0.0.33
|
|
577
577
|
*
|
|
578
578
|
*
|
|
579
579
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -606,7 +606,7 @@ interface ListOrganizationAdminsForOrg200Response {
|
|
|
606
606
|
* Workflow Approval System API
|
|
607
607
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
608
608
|
*
|
|
609
|
-
* The version of the OpenAPI document: 0.0.
|
|
609
|
+
* The version of the OpenAPI document: 0.0.33
|
|
610
610
|
*
|
|
611
611
|
*
|
|
612
612
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -638,7 +638,7 @@ interface ListRoleTemplates200Response {
|
|
|
638
638
|
* Workflow Approval System API
|
|
639
639
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
640
640
|
*
|
|
641
|
-
* The version of the OpenAPI document: 0.0.
|
|
641
|
+
* The version of the OpenAPI document: 0.0.33
|
|
642
642
|
*
|
|
643
643
|
*
|
|
644
644
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -679,7 +679,7 @@ interface ListSpaces200Response {
|
|
|
679
679
|
* Workflow Approval System API
|
|
680
680
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
681
681
|
*
|
|
682
|
-
* The version of the OpenAPI document: 0.0.
|
|
682
|
+
* The version of the OpenAPI document: 0.0.33
|
|
683
683
|
*
|
|
684
684
|
*
|
|
685
685
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -712,7 +712,7 @@ interface ListUsers200Response {
|
|
|
712
712
|
* Workflow Approval System API
|
|
713
713
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
714
714
|
*
|
|
715
|
-
* The version of the OpenAPI document: 0.0.
|
|
715
|
+
* The version of the OpenAPI document: 0.0.33
|
|
716
716
|
*
|
|
717
717
|
*
|
|
718
718
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -739,7 +739,7 @@ interface ListUsersParams {
|
|
|
739
739
|
* Workflow Approval System API
|
|
740
740
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
741
741
|
*
|
|
742
|
-
* The version of the OpenAPI document: 0.0.
|
|
742
|
+
* The version of the OpenAPI document: 0.0.33
|
|
743
743
|
*
|
|
744
744
|
*
|
|
745
745
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -784,7 +784,7 @@ interface ListWorkflowTemplates200Response {
|
|
|
784
784
|
* Workflow Approval System API
|
|
785
785
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
786
786
|
*
|
|
787
|
-
* The version of the OpenAPI document: 0.0.
|
|
787
|
+
* The version of the OpenAPI document: 0.0.33
|
|
788
788
|
*
|
|
789
789
|
*
|
|
790
790
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -801,9 +801,13 @@ interface ListWorkflowTemplatesParams {
|
|
|
801
801
|
*/
|
|
802
802
|
limit?: number;
|
|
803
803
|
/**
|
|
804
|
-
*
|
|
804
|
+
* Search term for workflow template name.
|
|
805
805
|
*/
|
|
806
806
|
search?: string;
|
|
807
|
+
/**
|
|
808
|
+
* Mode for the search parameter. \'CONTAINS\' for partial matches, \'EXACT\' for exact matches.
|
|
809
|
+
*/
|
|
810
|
+
searchMode?: string;
|
|
807
811
|
/**
|
|
808
812
|
* Optional space identifier (UUID or name) to filter workflow templates.
|
|
809
813
|
*/
|
|
@@ -819,7 +823,7 @@ interface ListWorkflowTemplatesParams {
|
|
|
819
823
|
* Workflow Approval System API
|
|
820
824
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
821
825
|
*
|
|
822
|
-
* The version of the OpenAPI document: 0.0.
|
|
826
|
+
* The version of the OpenAPI document: 0.0.33
|
|
823
827
|
*
|
|
824
828
|
*
|
|
825
829
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -854,7 +858,7 @@ interface ListWorkflowsParams {
|
|
|
854
858
|
* Workflow Approval System API
|
|
855
859
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
856
860
|
*
|
|
857
|
-
* The version of the OpenAPI document: 0.0.
|
|
861
|
+
* The version of the OpenAPI document: 0.0.33
|
|
858
862
|
*
|
|
859
863
|
*
|
|
860
864
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -877,7 +881,7 @@ interface OidcCallbackRequest {
|
|
|
877
881
|
* Workflow Approval System API
|
|
878
882
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
879
883
|
*
|
|
880
|
-
* The version of the OpenAPI document: 0.0.
|
|
884
|
+
* The version of the OpenAPI document: 0.0.33
|
|
881
885
|
*
|
|
882
886
|
*
|
|
883
887
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -905,7 +909,7 @@ declare namespace OrgScope {
|
|
|
905
909
|
* Workflow Approval System API
|
|
906
910
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
907
911
|
*
|
|
908
|
-
* The version of the OpenAPI document: 0.0.
|
|
912
|
+
* The version of the OpenAPI document: 0.0.33
|
|
909
913
|
*
|
|
910
914
|
*
|
|
911
915
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -924,7 +928,7 @@ interface OrganizationAdminCreate {
|
|
|
924
928
|
* Workflow Approval System API
|
|
925
929
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
926
930
|
*
|
|
927
|
-
* The version of the OpenAPI document: 0.0.
|
|
931
|
+
* The version of the OpenAPI document: 0.0.33
|
|
928
932
|
*
|
|
929
933
|
*
|
|
930
934
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -943,7 +947,7 @@ interface OrganizationAdminRemove {
|
|
|
943
947
|
* Workflow Approval System API
|
|
944
948
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
945
949
|
*
|
|
946
|
-
* The version of the OpenAPI document: 0.0.
|
|
950
|
+
* The version of the OpenAPI document: 0.0.33
|
|
947
951
|
*
|
|
948
952
|
*
|
|
949
953
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -974,7 +978,7 @@ interface PrivilegedTokenExchangeRequest {
|
|
|
974
978
|
* Workflow Approval System API
|
|
975
979
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
976
980
|
*
|
|
977
|
-
* The version of the OpenAPI document: 0.0.
|
|
981
|
+
* The version of the OpenAPI document: 0.0.33
|
|
978
982
|
*
|
|
979
983
|
*
|
|
980
984
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -993,7 +997,7 @@ interface PrivilegedTokenResponse {
|
|
|
993
997
|
* Workflow Approval System API
|
|
994
998
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
995
999
|
*
|
|
996
|
-
* The version of the OpenAPI document: 0.0.
|
|
1000
|
+
* The version of the OpenAPI document: 0.0.33
|
|
997
1001
|
*
|
|
998
1002
|
*
|
|
999
1003
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1023,7 +1027,7 @@ interface RemoveGroupEntitiesRequest {
|
|
|
1023
1027
|
* Workflow Approval System API
|
|
1024
1028
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1025
1029
|
*
|
|
1026
|
-
* The version of the OpenAPI document: 0.0.
|
|
1030
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1027
1031
|
*
|
|
1028
1032
|
*
|
|
1029
1033
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1055,7 +1059,7 @@ declare namespace SpaceScope {
|
|
|
1055
1059
|
* Workflow Approval System API
|
|
1056
1060
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1057
1061
|
*
|
|
1058
|
-
* The version of the OpenAPI document: 0.0.
|
|
1062
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1059
1063
|
*
|
|
1060
1064
|
*
|
|
1061
1065
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1143,7 +1147,7 @@ interface RoleRemovalRequest {
|
|
|
1143
1147
|
* Workflow Approval System API
|
|
1144
1148
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1145
1149
|
*
|
|
1146
|
-
* The version of the OpenAPI document: 0.0.
|
|
1150
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1147
1151
|
*
|
|
1148
1152
|
*
|
|
1149
1153
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1166,7 +1170,7 @@ interface SpaceCreate {
|
|
|
1166
1170
|
* Workflow Approval System API
|
|
1167
1171
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1168
1172
|
*
|
|
1169
|
-
* The version of the OpenAPI document: 0.0.
|
|
1173
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1170
1174
|
*
|
|
1171
1175
|
*
|
|
1172
1176
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1189,7 +1193,7 @@ interface TokenRequest {
|
|
|
1189
1193
|
* Workflow Approval System API
|
|
1190
1194
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1191
1195
|
*
|
|
1192
|
-
* The version of the OpenAPI document: 0.0.
|
|
1196
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1193
1197
|
*
|
|
1194
1198
|
*
|
|
1195
1199
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1216,7 +1220,7 @@ interface UserCreate {
|
|
|
1216
1220
|
* Workflow Approval System API
|
|
1217
1221
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1218
1222
|
*
|
|
1219
|
-
* The version of the OpenAPI document: 0.0.
|
|
1223
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1220
1224
|
*
|
|
1221
1225
|
*
|
|
1222
1226
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1245,7 +1249,7 @@ declare namespace VoteApprove {
|
|
|
1245
1249
|
* Workflow Approval System API
|
|
1246
1250
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1247
1251
|
*
|
|
1248
|
-
* The version of the OpenAPI document: 0.0.
|
|
1252
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1249
1253
|
*
|
|
1250
1254
|
*
|
|
1251
1255
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1270,7 +1274,7 @@ declare namespace VoteVeto {
|
|
|
1270
1274
|
* Workflow Approval System API
|
|
1271
1275
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1272
1276
|
*
|
|
1273
|
-
* The version of the OpenAPI document: 0.0.
|
|
1277
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1274
1278
|
*
|
|
1275
1279
|
*
|
|
1276
1280
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1324,7 +1328,7 @@ interface WorkflowTemplateCreate {
|
|
|
1324
1328
|
* Workflow Approval System API
|
|
1325
1329
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1326
1330
|
*
|
|
1327
|
-
* The version of the OpenAPI document: 0.0.
|
|
1331
|
+
* The version of the OpenAPI document: 0.0.33
|
|
1328
1332
|
*
|
|
1329
1333
|
*
|
|
1330
1334
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1476,7 +1480,7 @@ declare function validateWorkflowTemplateScope(object: unknown): Either<Workflow
|
|
|
1476
1480
|
type WorkflowTemplateSummaryValidationError = "malformed_object" | "invalid_id" | "invalid_name" | "invalid_version" | "invalid_created_at" | "invalid_updated_at" | "invalid_description";
|
|
1477
1481
|
type ListWorkflowTemplates200ResponseValidationError = "malformed_object" | "invalid_data" | "invalid_pagination" | "missing_pagination" | PrefixUnion<"data_item", WorkflowTemplateSummaryValidationError>;
|
|
1478
1482
|
declare function validateListWorkflowTemplates200Response(object: unknown): Either<ListWorkflowTemplates200ResponseValidationError, ListWorkflowTemplates200Response>;
|
|
1479
|
-
type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status";
|
|
1483
|
+
type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status" | "invalid_search_mode" | "invalid_search_length";
|
|
1480
1484
|
declare function validateListWorkflowTemplatesParams(object: unknown): Either<ListWorkflowTemplatesParamsValidationError, ListWorkflowTemplatesParams>;
|
|
1481
1485
|
//#endregion
|
|
1482
1486
|
//#region src/validators/spaces.validators.d.ts
|
package/dist/src/index.mjs
CHANGED
|
@@ -364,7 +364,7 @@ function validateSharedListParams(object) {
|
|
|
364
364
|
result.limit = limit;
|
|
365
365
|
}
|
|
366
366
|
if (hasOwnProperty(object, "search") && object.search !== void 0) {
|
|
367
|
-
if (typeof object.search !== "string"
|
|
367
|
+
if (typeof object.search !== "string") return left("invalid_search");
|
|
368
368
|
result.search = object.search;
|
|
369
369
|
}
|
|
370
370
|
return right(result);
|
|
@@ -713,6 +713,15 @@ function validateListWorkflowTemplatesParams(object) {
|
|
|
713
713
|
if (isLeft(sharedValidation)) return left(sharedValidation.left);
|
|
714
714
|
const result = sharedValidation.right;
|
|
715
715
|
if (typeof object !== "object" || object === null) return left("malformed_object");
|
|
716
|
+
if (hasOwnProperty(object, "searchMode") && object.searchMode !== void 0) {
|
|
717
|
+
if (typeof object.searchMode !== "string") return left("invalid_search_mode");
|
|
718
|
+
if (object.searchMode !== "CONTAINS" && object.searchMode !== "EXACT") return left("invalid_search_mode");
|
|
719
|
+
result.searchMode = object.searchMode;
|
|
720
|
+
} else result.searchMode = "CONTAINS";
|
|
721
|
+
if (result.search !== void 0) {
|
|
722
|
+
if (result.searchMode === "CONTAINS" && result.search.length < 3) return left("invalid_search_length");
|
|
723
|
+
if (result.searchMode === "EXACT" && result.search.length < 1) return left("invalid_search_length");
|
|
724
|
+
}
|
|
716
725
|
if (hasOwnProperty(object, "spaceIdentifier") && object.spaceIdentifier !== void 0) {
|
|
717
726
|
if (!isNonEmptyString(object.spaceIdentifier)) return left("invalid_space_identifier");
|
|
718
727
|
result.spaceIdentifier = object.spaceIdentifier;
|
|
@@ -24,7 +24,7 @@ declare namespace OrRule {
|
|
|
24
24
|
* Workflow Approval System API
|
|
25
25
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
26
26
|
*
|
|
27
|
-
* The version of the OpenAPI document: 0.0.
|
|
27
|
+
* The version of the OpenAPI document: 0.0.33
|
|
28
28
|
*
|
|
29
29
|
*
|
|
30
30
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -96,7 +96,7 @@ declare namespace AndRule {
|
|
|
96
96
|
* Workflow Approval System API
|
|
97
97
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
98
98
|
*
|
|
99
|
-
* The version of the OpenAPI document: 0.0.
|
|
99
|
+
* The version of the OpenAPI document: 0.0.33
|
|
100
100
|
*
|
|
101
101
|
*
|
|
102
102
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -128,7 +128,7 @@ declare namespace EmailAction {
|
|
|
128
128
|
* Workflow Approval System API
|
|
129
129
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
130
130
|
*
|
|
131
|
-
* The version of the OpenAPI document: 0.0.
|
|
131
|
+
* The version of the OpenAPI document: 0.0.33
|
|
132
132
|
*
|
|
133
133
|
*
|
|
134
134
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -145,7 +145,7 @@ interface GroupInfo {
|
|
|
145
145
|
* Workflow Approval System API
|
|
146
146
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
147
147
|
*
|
|
148
|
-
* The version of the OpenAPI document: 0.0.
|
|
148
|
+
* The version of the OpenAPI document: 0.0.33
|
|
149
149
|
*
|
|
150
150
|
*
|
|
151
151
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -184,7 +184,7 @@ interface Group {
|
|
|
184
184
|
* Workflow Approval System API
|
|
185
185
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
186
186
|
*
|
|
187
|
-
* The version of the OpenAPI document: 0.0.
|
|
187
|
+
* The version of the OpenAPI document: 0.0.33
|
|
188
188
|
*
|
|
189
189
|
*
|
|
190
190
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -217,7 +217,7 @@ interface ListGroups200Response {
|
|
|
217
217
|
* Workflow Approval System API
|
|
218
218
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
219
219
|
*
|
|
220
|
-
* The version of the OpenAPI document: 0.0.
|
|
220
|
+
* The version of the OpenAPI document: 0.0.33
|
|
221
221
|
*
|
|
222
222
|
*
|
|
223
223
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -244,7 +244,7 @@ interface UserSummary {
|
|
|
244
244
|
* Workflow Approval System API
|
|
245
245
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
246
246
|
*
|
|
247
|
-
* The version of the OpenAPI document: 0.0.
|
|
247
|
+
* The version of the OpenAPI document: 0.0.33
|
|
248
248
|
*
|
|
249
249
|
*
|
|
250
250
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -419,7 +419,7 @@ interface ListWorkflows200Response {
|
|
|
419
419
|
* Workflow Approval System API
|
|
420
420
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
421
421
|
*
|
|
422
|
-
* The version of the OpenAPI document: 0.0.
|
|
422
|
+
* The version of the OpenAPI document: 0.0.33
|
|
423
423
|
*
|
|
424
424
|
*
|
|
425
425
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -442,7 +442,7 @@ interface TokenResponse {
|
|
|
442
442
|
* Workflow Approval System API
|
|
443
443
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
444
444
|
*
|
|
445
|
-
* The version of the OpenAPI document: 0.0.
|
|
445
|
+
* The version of the OpenAPI document: 0.0.33
|
|
446
446
|
*
|
|
447
447
|
*
|
|
448
448
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -477,7 +477,7 @@ interface User {
|
|
|
477
477
|
* Workflow Approval System API
|
|
478
478
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
479
479
|
*
|
|
480
|
-
* The version of the OpenAPI document: 0.0.
|
|
480
|
+
* The version of the OpenAPI document: 0.0.33
|
|
481
481
|
*
|
|
482
482
|
*
|
|
483
483
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -24,7 +24,7 @@ declare namespace OrRule {
|
|
|
24
24
|
* Workflow Approval System API
|
|
25
25
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
26
26
|
*
|
|
27
|
-
* The version of the OpenAPI document: 0.0.
|
|
27
|
+
* The version of the OpenAPI document: 0.0.33
|
|
28
28
|
*
|
|
29
29
|
*
|
|
30
30
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -96,7 +96,7 @@ declare namespace AndRule {
|
|
|
96
96
|
* Workflow Approval System API
|
|
97
97
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
98
98
|
*
|
|
99
|
-
* The version of the OpenAPI document: 0.0.
|
|
99
|
+
* The version of the OpenAPI document: 0.0.33
|
|
100
100
|
*
|
|
101
101
|
*
|
|
102
102
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -128,7 +128,7 @@ declare namespace EmailAction {
|
|
|
128
128
|
* Workflow Approval System API
|
|
129
129
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
130
130
|
*
|
|
131
|
-
* The version of the OpenAPI document: 0.0.
|
|
131
|
+
* The version of the OpenAPI document: 0.0.33
|
|
132
132
|
*
|
|
133
133
|
*
|
|
134
134
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -145,7 +145,7 @@ interface GroupInfo {
|
|
|
145
145
|
* Workflow Approval System API
|
|
146
146
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
147
147
|
*
|
|
148
|
-
* The version of the OpenAPI document: 0.0.
|
|
148
|
+
* The version of the OpenAPI document: 0.0.33
|
|
149
149
|
*
|
|
150
150
|
*
|
|
151
151
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -184,7 +184,7 @@ interface Group {
|
|
|
184
184
|
* Workflow Approval System API
|
|
185
185
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
186
186
|
*
|
|
187
|
-
* The version of the OpenAPI document: 0.0.
|
|
187
|
+
* The version of the OpenAPI document: 0.0.33
|
|
188
188
|
*
|
|
189
189
|
*
|
|
190
190
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -217,7 +217,7 @@ interface ListGroups200Response {
|
|
|
217
217
|
* Workflow Approval System API
|
|
218
218
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
219
219
|
*
|
|
220
|
-
* The version of the OpenAPI document: 0.0.
|
|
220
|
+
* The version of the OpenAPI document: 0.0.33
|
|
221
221
|
*
|
|
222
222
|
*
|
|
223
223
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -244,7 +244,7 @@ interface UserSummary {
|
|
|
244
244
|
* Workflow Approval System API
|
|
245
245
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
246
246
|
*
|
|
247
|
-
* The version of the OpenAPI document: 0.0.
|
|
247
|
+
* The version of the OpenAPI document: 0.0.33
|
|
248
248
|
*
|
|
249
249
|
*
|
|
250
250
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -419,7 +419,7 @@ interface ListWorkflows200Response {
|
|
|
419
419
|
* Workflow Approval System API
|
|
420
420
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
421
421
|
*
|
|
422
|
-
* The version of the OpenAPI document: 0.0.
|
|
422
|
+
* The version of the OpenAPI document: 0.0.33
|
|
423
423
|
*
|
|
424
424
|
*
|
|
425
425
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -442,7 +442,7 @@ interface TokenResponse {
|
|
|
442
442
|
* Workflow Approval System API
|
|
443
443
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
444
444
|
*
|
|
445
|
-
* The version of the OpenAPI document: 0.0.
|
|
445
|
+
* The version of the OpenAPI document: 0.0.33
|
|
446
446
|
*
|
|
447
447
|
*
|
|
448
448
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -477,7 +477,7 @@ interface User {
|
|
|
477
477
|
* Workflow Approval System API
|
|
478
478
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
479
479
|
*
|
|
480
|
-
* The version of the OpenAPI document: 0.0.
|
|
480
|
+
* The version of the OpenAPI document: 0.0.33
|
|
481
481
|
*
|
|
482
482
|
*
|
|
483
483
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|