@approvio/api 0.0.44 → 0.0.46
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 +8 -5
- package/dist/src/index.d.cts +65 -65
- package/dist/src/index.d.mts +65 -65
- package/dist/src/index.mjs +8 -5
- package/dist/{workflow-create-BDVRQ5B4.d.cts → workflow-create-CC-JYERf.d.mts} +12 -12
- package/dist/{workflow-create-q4n-UZWp.d.mts → workflow-create-i3n3vy4V.d.cts} +12 -12
- package/package.json +3 -3
package/dist/mocks/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as Workflow, d as UserSummary, f as ListGroups200Response, h as GroupInfo, i as ListWorkflows200Response, m as Group, n as User, p as Pagination, r as TokenResponse, t as WorkflowCreate } from "../workflow-create-
|
|
1
|
+
import { a as Workflow, d as UserSummary, f as ListGroups200Response, h as GroupInfo, i as ListWorkflows200Response, m as Group, n as User, p as Pagination, r as TokenResponse, t as WorkflowCreate } from "../workflow-create-i3n3vy4V.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 UserSummary, f as ListGroups200Response, h as GroupInfo, i as ListWorkflows200Response, m as Group, n as User, p as Pagination, r as TokenResponse, t as WorkflowCreate } from "../workflow-create-
|
|
1
|
+
import { a as Workflow, d as UserSummary, f as ListGroups200Response, h as GroupInfo, i as ListWorkflows200Response, m as Group, n as User, p as Pagination, r as TokenResponse, t as WorkflowCreate } from "../workflow-create-CC-JYERf.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
|
@@ -339,8 +339,11 @@ function isStringBigInt(value) {
|
|
|
339
339
|
}
|
|
340
340
|
return true;
|
|
341
341
|
}
|
|
342
|
-
const
|
|
343
|
-
const
|
|
342
|
+
const UUID_REGEX_V4 = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
343
|
+
const UUID_REGEX_V7 = /^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
344
|
+
const isUUIDv4 = (value) => value.match(UUID_REGEX_V4) !== null;
|
|
345
|
+
const isUUIDv7 = (value) => value.match(UUID_REGEX_V7) !== null;
|
|
346
|
+
const isValidUUID = (value) => isUUIDv7(value) || isUUIDv4(value);
|
|
344
347
|
//#endregion
|
|
345
348
|
//#region src/validators/auth.validators.ts
|
|
346
349
|
function validateTokenResponse(object) {
|
|
@@ -1163,7 +1166,7 @@ function validateListWorkflowsParams(object) {
|
|
|
1163
1166
|
const validatedIncludeGroups = [];
|
|
1164
1167
|
for (const item of includeGroupsVal) {
|
|
1165
1168
|
if (typeof item !== "string") return (0, fp_ts_Either.left)("invalid_include_groups");
|
|
1166
|
-
if (!
|
|
1169
|
+
if (!isValidUUID(item)) return (0, fp_ts_Either.left)("invalid_include_groups");
|
|
1167
1170
|
validatedIncludeGroups.push(item);
|
|
1168
1171
|
}
|
|
1169
1172
|
includeGroups = validatedIncludeGroups;
|
|
@@ -1768,7 +1771,7 @@ function validateQuotaCreate(object) {
|
|
|
1768
1771
|
const scope = getStringAsEnum(scopeStr, QuotaScope);
|
|
1769
1772
|
if (!scope) return (0, fp_ts_Either.left)("invalid_scope");
|
|
1770
1773
|
if (!hasOwnProperty(object, "targetId")) return (0, fp_ts_Either.left)("missing_targetId");
|
|
1771
|
-
if (!isNonEmptyString(object.targetId) || !
|
|
1774
|
+
if (!isNonEmptyString(object.targetId) || !isValidUUID(object.targetId)) return (0, fp_ts_Either.left)("invalid_targetId");
|
|
1772
1775
|
const targetId = object.targetId;
|
|
1773
1776
|
const quotaType = getStringAsEnum(quotaTypeStr, QUOTA_TYPE_ENUM_BY_SCOPE[scope]);
|
|
1774
1777
|
if (quotaType === void 0) return (0, fp_ts_Either.left)("invalid_scope_quotaType_combination");
|
|
@@ -1797,7 +1800,7 @@ function validateListQuotasParams(object) {
|
|
|
1797
1800
|
result.scope = scope;
|
|
1798
1801
|
}
|
|
1799
1802
|
if (hasOwnProperty(object, "targetId") && object.targetId !== void 0) {
|
|
1800
|
-
if (!isNonEmptyString(object.targetId) || !
|
|
1803
|
+
if (!isNonEmptyString(object.targetId) || !isValidUUID(object.targetId)) return (0, fp_ts_Either.left)("invalid_targetId");
|
|
1801
1804
|
result.targetId = object.targetId;
|
|
1802
1805
|
}
|
|
1803
1806
|
if (hasOwnProperty(object, "quotaType") && object.quotaType !== void 0) {
|
package/dist/src/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as ConcurrencyControl, a as Workflow, b as GroupRequirementRule, c as WorkflowAction, d as UserSummary, f as ListGroups200Response, g as EmailAction, h as GroupInfo, i as ListWorkflows200Response, l as WebhookAction, m as Group, n as User, o as WorkflowRef, p as Pagination, r as TokenResponse, s as WorkflowTemplate, t as WorkflowCreate, u as WorkflowTemplateStatus, v as AndRule, x as OrRule, y as ApprovalRule } from "../workflow-create-
|
|
1
|
+
import { _ as ConcurrencyControl, a as Workflow, b as GroupRequirementRule, c as WorkflowAction, d as UserSummary, f as ListGroups200Response, g as EmailAction, h as GroupInfo, i as ListWorkflows200Response, l as WebhookAction, m as Group, n as User, o as WorkflowRef, p as Pagination, r as TokenResponse, s as WorkflowTemplate, t as WorkflowCreate, u as WorkflowTemplateStatus, v as AndRule, x as OrRule, y as ApprovalRule } from "../workflow-create-i3n3vy4V.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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
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.40
|
|
425
425
|
*
|
|
426
426
|
*
|
|
427
427
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -468,7 +468,7 @@ declare namespace GroupQuota {
|
|
|
468
468
|
* Workflow Approval System API
|
|
469
469
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
470
470
|
*
|
|
471
|
-
* The version of the OpenAPI document: 0.0.
|
|
471
|
+
* The version of the OpenAPI document: 0.0.40
|
|
472
472
|
*
|
|
473
473
|
*
|
|
474
474
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -495,7 +495,7 @@ declare namespace GroupQuotaBase {
|
|
|
495
495
|
* Workflow Approval System API
|
|
496
496
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
497
497
|
*
|
|
498
|
-
* The version of the OpenAPI document: 0.0.
|
|
498
|
+
* The version of the OpenAPI document: 0.0.40
|
|
499
499
|
*
|
|
500
500
|
*
|
|
501
501
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -530,7 +530,7 @@ declare namespace GroupQuotaCreate {
|
|
|
530
530
|
* Workflow Approval System API
|
|
531
531
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
532
532
|
*
|
|
533
|
-
* The version of the OpenAPI document: 0.0.
|
|
533
|
+
* The version of the OpenAPI document: 0.0.40
|
|
534
534
|
*
|
|
535
535
|
*
|
|
536
536
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -562,7 +562,7 @@ declare namespace GroupScope {
|
|
|
562
562
|
* Workflow Approval System API
|
|
563
563
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
564
564
|
*
|
|
565
|
-
* The version of the OpenAPI document: 0.0.
|
|
565
|
+
* The version of the OpenAPI document: 0.0.40
|
|
566
566
|
*
|
|
567
567
|
*
|
|
568
568
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -585,7 +585,7 @@ interface HealthResponse {
|
|
|
585
585
|
* Workflow Approval System API
|
|
586
586
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
587
587
|
*
|
|
588
|
-
* The version of the OpenAPI document: 0.0.
|
|
588
|
+
* The version of the OpenAPI document: 0.0.40
|
|
589
589
|
*
|
|
590
590
|
*
|
|
591
591
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -601,7 +601,7 @@ interface InitiateCliLogin200Response {
|
|
|
601
601
|
* Workflow Approval System API
|
|
602
602
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
603
603
|
*
|
|
604
|
-
* The version of the OpenAPI document: 0.0.
|
|
604
|
+
* The version of the OpenAPI document: 0.0.40
|
|
605
605
|
*
|
|
606
606
|
*
|
|
607
607
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -626,7 +626,7 @@ interface ListAgents200Response {
|
|
|
626
626
|
* Workflow Approval System API
|
|
627
627
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
628
628
|
*
|
|
629
|
-
* The version of the OpenAPI document: 0.0.
|
|
629
|
+
* The version of the OpenAPI document: 0.0.40
|
|
630
630
|
*
|
|
631
631
|
*
|
|
632
632
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -655,7 +655,7 @@ interface ListGroupEntities200Response {
|
|
|
655
655
|
* Workflow Approval System API
|
|
656
656
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
657
657
|
*
|
|
658
|
-
* The version of the OpenAPI document: 0.0.
|
|
658
|
+
* The version of the OpenAPI document: 0.0.40
|
|
659
659
|
*
|
|
660
660
|
*
|
|
661
661
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -682,7 +682,7 @@ interface ListGroupsParams {
|
|
|
682
682
|
* Workflow Approval System API
|
|
683
683
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
684
684
|
*
|
|
685
|
-
* The version of the OpenAPI document: 0.0.
|
|
685
|
+
* The version of the OpenAPI document: 0.0.40
|
|
686
686
|
*
|
|
687
687
|
*
|
|
688
688
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -715,7 +715,7 @@ interface ListOrganizationAdminsForOrg200Response {
|
|
|
715
715
|
* Workflow Approval System API
|
|
716
716
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
717
717
|
*
|
|
718
|
-
* The version of the OpenAPI document: 0.0.
|
|
718
|
+
* The version of the OpenAPI document: 0.0.40
|
|
719
719
|
*
|
|
720
720
|
*
|
|
721
721
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -763,7 +763,7 @@ declare namespace SpaceQuota {
|
|
|
763
763
|
* Workflow Approval System API
|
|
764
764
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
765
765
|
*
|
|
766
|
-
* The version of the OpenAPI document: 0.0.
|
|
766
|
+
* The version of the OpenAPI document: 0.0.40
|
|
767
767
|
*
|
|
768
768
|
*
|
|
769
769
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -810,7 +810,7 @@ declare namespace WorkflowQuota {
|
|
|
810
810
|
* Workflow Approval System API
|
|
811
811
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
812
812
|
*
|
|
813
|
-
* The version of the OpenAPI document: 0.0.
|
|
813
|
+
* The version of the OpenAPI document: 0.0.40
|
|
814
814
|
*
|
|
815
815
|
*
|
|
816
816
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -863,7 +863,7 @@ declare namespace OrgQuota {
|
|
|
863
863
|
* Workflow Approval System API
|
|
864
864
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
865
865
|
*
|
|
866
|
-
* The version of the OpenAPI document: 0.0.
|
|
866
|
+
* The version of the OpenAPI document: 0.0.40
|
|
867
867
|
*
|
|
868
868
|
*
|
|
869
869
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -910,7 +910,7 @@ declare namespace UserQuota {
|
|
|
910
910
|
* Workflow Approval System API
|
|
911
911
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
912
912
|
*
|
|
913
|
-
* The version of the OpenAPI document: 0.0.
|
|
913
|
+
* The version of the OpenAPI document: 0.0.40
|
|
914
914
|
*
|
|
915
915
|
*
|
|
916
916
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -970,7 +970,7 @@ interface ListQuotas200Response {
|
|
|
970
970
|
* Workflow Approval System API
|
|
971
971
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
972
972
|
*
|
|
973
|
-
* The version of the OpenAPI document: 0.0.
|
|
973
|
+
* The version of the OpenAPI document: 0.0.40
|
|
974
974
|
*
|
|
975
975
|
*
|
|
976
976
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -995,7 +995,7 @@ declare const QuotaScope: {
|
|
|
995
995
|
* Workflow Approval System API
|
|
996
996
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
997
997
|
*
|
|
998
|
-
* The version of the OpenAPI document: 0.0.
|
|
998
|
+
* The version of the OpenAPI document: 0.0.40
|
|
999
999
|
*
|
|
1000
1000
|
*
|
|
1001
1001
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1040,7 +1040,7 @@ declare namespace ListQuotasParams {}
|
|
|
1040
1040
|
* Workflow Approval System API
|
|
1041
1041
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1042
1042
|
*
|
|
1043
|
-
* The version of the OpenAPI document: 0.0.
|
|
1043
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1044
1044
|
*
|
|
1045
1045
|
*
|
|
1046
1046
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1072,7 +1072,7 @@ interface ListRoleTemplates200Response {
|
|
|
1072
1072
|
* Workflow Approval System API
|
|
1073
1073
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1074
1074
|
*
|
|
1075
|
-
* The version of the OpenAPI document: 0.0.
|
|
1075
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1076
1076
|
*
|
|
1077
1077
|
*
|
|
1078
1078
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1113,7 +1113,7 @@ interface ListSpaces200Response {
|
|
|
1113
1113
|
* Workflow Approval System API
|
|
1114
1114
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1115
1115
|
*
|
|
1116
|
-
* The version of the OpenAPI document: 0.0.
|
|
1116
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1117
1117
|
*
|
|
1118
1118
|
*
|
|
1119
1119
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1146,7 +1146,7 @@ interface ListUsers200Response {
|
|
|
1146
1146
|
* Workflow Approval System API
|
|
1147
1147
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1148
1148
|
*
|
|
1149
|
-
* The version of the OpenAPI document: 0.0.
|
|
1149
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1150
1150
|
*
|
|
1151
1151
|
*
|
|
1152
1152
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1245,7 +1245,7 @@ interface ListWorkflowTemplatesParams {
|
|
|
1245
1245
|
* Workflow Approval System API
|
|
1246
1246
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1247
1247
|
*
|
|
1248
|
-
* The version of the OpenAPI document: 0.0.
|
|
1248
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1249
1249
|
*
|
|
1250
1250
|
*
|
|
1251
1251
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1279,7 +1279,7 @@ declare namespace ListWorkflowVotesParams {
|
|
|
1279
1279
|
* Workflow Approval System API
|
|
1280
1280
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1281
1281
|
*
|
|
1282
|
-
* The version of the OpenAPI document: 0.0.
|
|
1282
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1283
1283
|
*
|
|
1284
1284
|
*
|
|
1285
1285
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1331,7 +1331,7 @@ declare namespace ListWorkflowsParams {
|
|
|
1331
1331
|
* Workflow Approval System API
|
|
1332
1332
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1333
1333
|
*
|
|
1334
|
-
* The version of the OpenAPI document: 0.0.
|
|
1334
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1335
1335
|
*
|
|
1336
1336
|
*
|
|
1337
1337
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1354,7 +1354,7 @@ interface OidcCallbackRequest {
|
|
|
1354
1354
|
* Workflow Approval System API
|
|
1355
1355
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1356
1356
|
*
|
|
1357
|
-
* The version of the OpenAPI document: 0.0.
|
|
1357
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1358
1358
|
*
|
|
1359
1359
|
*
|
|
1360
1360
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1387,7 +1387,7 @@ declare namespace OrgQuotaBase {
|
|
|
1387
1387
|
* Workflow Approval System API
|
|
1388
1388
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1389
1389
|
*
|
|
1390
|
-
* The version of the OpenAPI document: 0.0.
|
|
1390
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1391
1391
|
*
|
|
1392
1392
|
*
|
|
1393
1393
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1428,7 +1428,7 @@ declare namespace OrgQuotaCreate {
|
|
|
1428
1428
|
* Workflow Approval System API
|
|
1429
1429
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1430
1430
|
*
|
|
1431
|
-
* The version of the OpenAPI document: 0.0.
|
|
1431
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1432
1432
|
*
|
|
1433
1433
|
*
|
|
1434
1434
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1456,7 +1456,7 @@ declare namespace OrgScope {
|
|
|
1456
1456
|
* Workflow Approval System API
|
|
1457
1457
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1458
1458
|
*
|
|
1459
|
-
* The version of the OpenAPI document: 0.0.
|
|
1459
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1460
1460
|
*
|
|
1461
1461
|
*
|
|
1462
1462
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1475,7 +1475,7 @@ interface OrganizationAdminCreate {
|
|
|
1475
1475
|
* Workflow Approval System API
|
|
1476
1476
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1477
1477
|
*
|
|
1478
|
-
* The version of the OpenAPI document: 0.0.
|
|
1478
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1479
1479
|
*
|
|
1480
1480
|
*
|
|
1481
1481
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1494,7 +1494,7 @@ interface OrganizationAdminRemove {
|
|
|
1494
1494
|
* Workflow Approval System API
|
|
1495
1495
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1496
1496
|
*
|
|
1497
|
-
* The version of the OpenAPI document: 0.0.
|
|
1497
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1498
1498
|
*
|
|
1499
1499
|
*
|
|
1500
1500
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1525,7 +1525,7 @@ interface PrivilegedTokenExchangeRequest {
|
|
|
1525
1525
|
* Workflow Approval System API
|
|
1526
1526
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1527
1527
|
*
|
|
1528
|
-
* The version of the OpenAPI document: 0.0.
|
|
1528
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1529
1529
|
*
|
|
1530
1530
|
*
|
|
1531
1531
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1586,7 +1586,7 @@ declare namespace QuotaBaseNew {}
|
|
|
1586
1586
|
* Workflow Approval System API
|
|
1587
1587
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1588
1588
|
*
|
|
1589
|
-
* The version of the OpenAPI document: 0.0.
|
|
1589
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1590
1590
|
*
|
|
1591
1591
|
*
|
|
1592
1592
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1622,7 +1622,7 @@ declare namespace SpaceQuotaCreate {
|
|
|
1622
1622
|
* Workflow Approval System API
|
|
1623
1623
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1624
1624
|
*
|
|
1625
|
-
* The version of the OpenAPI document: 0.0.
|
|
1625
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1626
1626
|
*
|
|
1627
1627
|
*
|
|
1628
1628
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1657,7 +1657,7 @@ declare namespace WorkflowTemplateQuotaCreate {
|
|
|
1657
1657
|
* Workflow Approval System API
|
|
1658
1658
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1659
1659
|
*
|
|
1660
|
-
* The version of the OpenAPI document: 0.0.
|
|
1660
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1661
1661
|
*
|
|
1662
1662
|
*
|
|
1663
1663
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1692,7 +1692,7 @@ declare namespace UserQuotaCreate {
|
|
|
1692
1692
|
* Workflow Approval System API
|
|
1693
1693
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1694
1694
|
*
|
|
1695
|
-
* The version of the OpenAPI document: 0.0.
|
|
1695
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1696
1696
|
*
|
|
1697
1697
|
*
|
|
1698
1698
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1734,7 +1734,7 @@ type QuotaCreate = GroupQuotaCreate | OrgQuotaCreate | SpaceQuotaCreate | UserQu
|
|
|
1734
1734
|
* Workflow Approval System API
|
|
1735
1735
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1736
1736
|
*
|
|
1737
|
-
* The version of the OpenAPI document: 0.0.
|
|
1737
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1738
1738
|
*
|
|
1739
1739
|
*
|
|
1740
1740
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1753,7 +1753,7 @@ interface QuotaUpdate {
|
|
|
1753
1753
|
* Workflow Approval System API
|
|
1754
1754
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1755
1755
|
*
|
|
1756
|
-
* The version of the OpenAPI document: 0.0.
|
|
1756
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1757
1757
|
*
|
|
1758
1758
|
*
|
|
1759
1759
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1783,7 +1783,7 @@ interface RemoveGroupEntitiesRequest {
|
|
|
1783
1783
|
* Workflow Approval System API
|
|
1784
1784
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1785
1785
|
*
|
|
1786
|
-
* The version of the OpenAPI document: 0.0.
|
|
1786
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1787
1787
|
*
|
|
1788
1788
|
*
|
|
1789
1789
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1815,7 +1815,7 @@ declare namespace SpaceScope {
|
|
|
1815
1815
|
* Workflow Approval System API
|
|
1816
1816
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1817
1817
|
*
|
|
1818
|
-
* The version of the OpenAPI document: 0.0.
|
|
1818
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1819
1819
|
*
|
|
1820
1820
|
*
|
|
1821
1821
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1903,7 +1903,7 @@ interface RoleRemovalRequest {
|
|
|
1903
1903
|
* Workflow Approval System API
|
|
1904
1904
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1905
1905
|
*
|
|
1906
|
-
* The version of the OpenAPI document: 0.0.
|
|
1906
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1907
1907
|
*
|
|
1908
1908
|
*
|
|
1909
1909
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1926,7 +1926,7 @@ interface SpaceCreate {
|
|
|
1926
1926
|
* Workflow Approval System API
|
|
1927
1927
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1928
1928
|
*
|
|
1929
|
-
* The version of the OpenAPI document: 0.0.
|
|
1929
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1930
1930
|
*
|
|
1931
1931
|
*
|
|
1932
1932
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1954,7 +1954,7 @@ declare namespace SpaceQuotaBase {
|
|
|
1954
1954
|
* Workflow Approval System API
|
|
1955
1955
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1956
1956
|
*
|
|
1957
|
-
* The version of the OpenAPI document: 0.0.
|
|
1957
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1958
1958
|
*
|
|
1959
1959
|
*
|
|
1960
1960
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1977,7 +1977,7 @@ interface TokenRequest {
|
|
|
1977
1977
|
* Workflow Approval System API
|
|
1978
1978
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1979
1979
|
*
|
|
1980
|
-
* The version of the OpenAPI document: 0.0.
|
|
1980
|
+
* The version of the OpenAPI document: 0.0.40
|
|
1981
1981
|
*
|
|
1982
1982
|
*
|
|
1983
1983
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2004,7 +2004,7 @@ interface UserCreate {
|
|
|
2004
2004
|
* Workflow Approval System API
|
|
2005
2005
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2006
2006
|
*
|
|
2007
|
-
* The version of the OpenAPI document: 0.0.
|
|
2007
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2008
2008
|
*
|
|
2009
2009
|
*
|
|
2010
2010
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2031,7 +2031,7 @@ declare namespace UserQuotaBase {
|
|
|
2031
2031
|
* Workflow Approval System API
|
|
2032
2032
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2033
2033
|
*
|
|
2034
|
-
* The version of the OpenAPI document: 0.0.
|
|
2034
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2035
2035
|
*
|
|
2036
2036
|
*
|
|
2037
2037
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2060,7 +2060,7 @@ declare namespace VoteApprove {
|
|
|
2060
2060
|
* Workflow Approval System API
|
|
2061
2061
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2062
2062
|
*
|
|
2063
|
-
* The version of the OpenAPI document: 0.0.
|
|
2063
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2064
2064
|
*
|
|
2065
2065
|
*
|
|
2066
2066
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2085,7 +2085,7 @@ declare namespace VoteVeto {
|
|
|
2085
2085
|
* Workflow Approval System API
|
|
2086
2086
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2087
2087
|
*
|
|
2088
|
-
* The version of the OpenAPI document: 0.0.
|
|
2088
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2089
2089
|
*
|
|
2090
2090
|
*
|
|
2091
2091
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2110,7 +2110,7 @@ declare namespace VoteWithdraw {
|
|
|
2110
2110
|
* Workflow Approval System API
|
|
2111
2111
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2112
2112
|
*
|
|
2113
|
-
* The version of the OpenAPI document: 0.0.
|
|
2113
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2114
2114
|
*
|
|
2115
2115
|
*
|
|
2116
2116
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2166,7 +2166,7 @@ interface WorkflowTemplateCreate {
|
|
|
2166
2166
|
* Workflow Approval System API
|
|
2167
2167
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2168
2168
|
*
|
|
2169
|
-
* The version of the OpenAPI document: 0.0.
|
|
2169
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2170
2170
|
*
|
|
2171
2171
|
*
|
|
2172
2172
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2185,7 +2185,7 @@ interface WorkflowTemplateDeprecate {
|
|
|
2185
2185
|
* Workflow Approval System API
|
|
2186
2186
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
2187
2187
|
*
|
|
2188
|
-
* The version of the OpenAPI document: 0.0.
|
|
2188
|
+
* The version of the OpenAPI document: 0.0.40
|
|
2189
2189
|
*
|
|
2190
2190
|
*
|
|
2191
2191
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|