@approvio/api 0.0.40 → 0.0.41
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/README.md +0 -1
- package/dist/mocks/index.d.cts +1 -1
- package/dist/mocks/index.d.mts +1 -1
- package/dist/src/index.cjs +98 -5
- package/dist/src/index.d.cts +98 -45
- package/dist/src/index.d.mts +98 -45
- package/dist/src/index.mjs +86 -6
- package/dist/{workflow-create-DL0bZ2df.d.mts → workflow-create-CSCUMfYW.d.cts} +12 -12
- package/dist/{workflow-create-Ng_I-FfX.d.cts → workflow-create-DyEyaGqO.d.mts} +12 -12
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
This repository contains the OpenAPI specification for the Approvio backend, the tooling to generate the TypeScript API client, and TypeScript validators for the generated models using `fp-ts`.
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
## Project Structure
|
|
7
6
|
|
|
8
7
|
- `openapi.yaml`: Main entry point for the OpenAPI 3.0 specification.
|
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-CSCUMfYW.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-DyEyaGqO.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
|
@@ -57,6 +57,26 @@ let GroupScope;
|
|
|
57
57
|
_GroupScope.TypeEnum = { Group: "group" };
|
|
58
58
|
})(GroupScope || (GroupScope = {}));
|
|
59
59
|
//#endregion
|
|
60
|
+
//#region generated/openapi/model/list-workflow-votes-params.ts
|
|
61
|
+
let ListWorkflowVotesParams;
|
|
62
|
+
(function(_ListWorkflowVotesParams) {
|
|
63
|
+
_ListWorkflowVotesParams.OrderByEnum = {
|
|
64
|
+
TimestampAsc: "TIMESTAMP:ASC",
|
|
65
|
+
TimestampDesc: "TIMESTAMP:DESC"
|
|
66
|
+
};
|
|
67
|
+
})(ListWorkflowVotesParams || (ListWorkflowVotesParams = {}));
|
|
68
|
+
//#endregion
|
|
69
|
+
//#region generated/openapi/model/list-workflows-params.ts
|
|
70
|
+
let ListWorkflowsParams;
|
|
71
|
+
(function(_ListWorkflowsParams) {
|
|
72
|
+
_ListWorkflowsParams.OrderByEnum = {
|
|
73
|
+
CreatedAtAsc: "CREATED_AT:ASC",
|
|
74
|
+
CreatedAtDesc: "CREATED_AT:DESC",
|
|
75
|
+
UpdatedAtAsc: "UPDATED_AT:ASC",
|
|
76
|
+
UpdatedAtDesc: "UPDATED_AT:DESC"
|
|
77
|
+
};
|
|
78
|
+
})(ListWorkflowsParams || (ListWorkflowsParams = {}));
|
|
79
|
+
//#endregion
|
|
60
80
|
//#region generated/openapi/model/or-rule.ts
|
|
61
81
|
let OrRule;
|
|
62
82
|
(function(_OrRule) {
|
|
@@ -139,6 +159,8 @@ function isStringBigInt(value) {
|
|
|
139
159
|
}
|
|
140
160
|
return true;
|
|
141
161
|
}
|
|
162
|
+
const UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
163
|
+
const isUUIDv4 = (value) => value.match(UUID_REGEX) !== null;
|
|
142
164
|
//#endregion
|
|
143
165
|
//#region src/validators/auth.validators.ts
|
|
144
166
|
function validateTokenResponse(object) {
|
|
@@ -227,6 +249,11 @@ function validateOidcCallbackRequest(object) {
|
|
|
227
249
|
});
|
|
228
250
|
}
|
|
229
251
|
//#endregion
|
|
252
|
+
//#region src/utils/enum.ts
|
|
253
|
+
function getStringAsEnum(str, enumType) {
|
|
254
|
+
if (Object.values(enumType).includes(str)) return str;
|
|
255
|
+
}
|
|
256
|
+
//#endregion
|
|
230
257
|
//#region src/validators/groups.validators.ts
|
|
231
258
|
function validateGroup(object) {
|
|
232
259
|
if (typeof object !== "object" || object === null) return (0, fp_ts_Either.left)("malformed_object");
|
|
@@ -439,11 +466,6 @@ function validateGetEntityInfo200Response(object) {
|
|
|
439
466
|
});
|
|
440
467
|
}
|
|
441
468
|
//#endregion
|
|
442
|
-
//#region src/utils/enum.ts
|
|
443
|
-
function getStringAsEnum(str, enumType) {
|
|
444
|
-
if (Object.values(enumType).includes(str)) return str;
|
|
445
|
-
}
|
|
446
|
-
//#endregion
|
|
447
469
|
//#region src/utils/types.ts
|
|
448
470
|
function prefixLeft(prefix, value) {
|
|
449
471
|
return `${prefix}_${value}`;
|
|
@@ -954,9 +976,41 @@ function validateListWorkflowsParams(object) {
|
|
|
954
976
|
if (typeof val !== "string") return (0, fp_ts_Either.left)("invalid_workflow_template_identifier");
|
|
955
977
|
workflowTemplateIdentifier = val;
|
|
956
978
|
}
|
|
979
|
+
let includeGroups = void 0;
|
|
980
|
+
if (hasOwnProperty(object, "includeGroups")) {
|
|
981
|
+
const includeGroupsVal = typeof object.includeGroups === "string" ? [object.includeGroups] : object.includeGroups;
|
|
982
|
+
if (!isArray(includeGroupsVal)) return (0, fp_ts_Either.left)("invalid_include_groups");
|
|
983
|
+
const validatedIncludeGroups = [];
|
|
984
|
+
for (const item of includeGroupsVal) {
|
|
985
|
+
if (typeof item !== "string") return (0, fp_ts_Either.left)("invalid_include_groups");
|
|
986
|
+
if (!isUUIDv4(item)) return (0, fp_ts_Either.left)("invalid_include_groups");
|
|
987
|
+
validatedIncludeGroups.push(item);
|
|
988
|
+
}
|
|
989
|
+
includeGroups = validatedIncludeGroups;
|
|
990
|
+
}
|
|
991
|
+
let orderBy = void 0;
|
|
992
|
+
if (hasOwnProperty(object, "orderBy")) {
|
|
993
|
+
const orderByVal = typeof object.orderBy === "string" ? [object.orderBy] : object.orderBy;
|
|
994
|
+
if (!isArray(orderByVal)) return (0, fp_ts_Either.left)("invalid_order_by");
|
|
995
|
+
if (orderByVal.length > 3) return (0, fp_ts_Either.left)("too_many_order_by_items");
|
|
996
|
+
const validatedOrderBy = [];
|
|
997
|
+
const seenFields = /* @__PURE__ */ new Set();
|
|
998
|
+
for (const item of orderByVal) {
|
|
999
|
+
if (typeof item !== "string") return (0, fp_ts_Either.left)("invalid_order_by");
|
|
1000
|
+
const enumVal = getStringAsEnum(item, ListWorkflowsParams.OrderByEnum);
|
|
1001
|
+
if (enumVal === void 0) return (0, fp_ts_Either.left)("invalid_order_by");
|
|
1002
|
+
const field = enumVal.split(":")[0];
|
|
1003
|
+
if (seenFields.has(field)) return (0, fp_ts_Either.left)("duplicate_order_by_fields");
|
|
1004
|
+
seenFields.add(field);
|
|
1005
|
+
validatedOrderBy.push(enumVal);
|
|
1006
|
+
}
|
|
1007
|
+
orderBy = validatedOrderBy;
|
|
1008
|
+
}
|
|
957
1009
|
if (include !== void 0) result.include = include;
|
|
958
1010
|
if (includeOnlyNonTerminalState !== void 0) result.includeOnlyNonTerminalState = includeOnlyNonTerminalState;
|
|
959
1011
|
if (workflowTemplateIdentifier !== void 0) result.workflowTemplateIdentifier = workflowTemplateIdentifier;
|
|
1012
|
+
if (includeGroups !== void 0) result.includeGroups = includeGroups;
|
|
1013
|
+
if (orderBy !== void 0) result.orderBy = orderBy;
|
|
960
1014
|
return (0, fp_ts_Either.right)(result);
|
|
961
1015
|
}
|
|
962
1016
|
function validateListWorkflows200Response(object) {
|
|
@@ -1099,6 +1153,32 @@ function validateGetWorkflowVotes200Response(object) {
|
|
|
1099
1153
|
}
|
|
1100
1154
|
return (0, fp_ts_Either.right)({ votes });
|
|
1101
1155
|
}
|
|
1156
|
+
function validateListWorkflowVotesParams(object) {
|
|
1157
|
+
const sharedValidation = (0, fp_ts_function.pipe)(validateSharedListParams(object), (0, fp_ts_Either.mapLeft)((error) => error === "invalid_search" ? "malformed_object" : error));
|
|
1158
|
+
if ((0, fp_ts_Either.isLeft)(sharedValidation)) return (0, fp_ts_Either.left)(sharedValidation.left);
|
|
1159
|
+
const result = sharedValidation.right;
|
|
1160
|
+
if (typeof object !== "object" || object === null) return (0, fp_ts_Either.left)("malformed_object");
|
|
1161
|
+
let orderBy = void 0;
|
|
1162
|
+
if (hasOwnProperty(object, "orderBy")) {
|
|
1163
|
+
const orderByVal = typeof object.orderBy === "string" ? [object.orderBy] : object.orderBy;
|
|
1164
|
+
if (!isArray(orderByVal)) return (0, fp_ts_Either.left)("invalid_order_by");
|
|
1165
|
+
if (orderByVal.length > 3) return (0, fp_ts_Either.left)("too_many_order_by_items");
|
|
1166
|
+
const validatedOrderBy = [];
|
|
1167
|
+
const seenFields = /* @__PURE__ */ new Set();
|
|
1168
|
+
for (const item of orderByVal) {
|
|
1169
|
+
if (typeof item !== "string") return (0, fp_ts_Either.left)("invalid_order_by");
|
|
1170
|
+
const enumVal = getStringAsEnum(item, ListWorkflowVotesParams.OrderByEnum);
|
|
1171
|
+
if (enumVal === void 0) return (0, fp_ts_Either.left)("invalid_order_by");
|
|
1172
|
+
const field = enumVal.split(":")[0];
|
|
1173
|
+
if (seenFields.has(field)) return (0, fp_ts_Either.left)("duplicate_order_by_fields");
|
|
1174
|
+
seenFields.add(field);
|
|
1175
|
+
validatedOrderBy.push(enumVal);
|
|
1176
|
+
}
|
|
1177
|
+
orderBy = validatedOrderBy;
|
|
1178
|
+
}
|
|
1179
|
+
if (orderBy !== void 0) result.orderBy = orderBy;
|
|
1180
|
+
return (0, fp_ts_Either.right)(result);
|
|
1181
|
+
}
|
|
1102
1182
|
//#endregion
|
|
1103
1183
|
//#region src/validators/users.validators.ts
|
|
1104
1184
|
function validateUser(object) {
|
|
@@ -1515,6 +1595,18 @@ Object.defineProperty(exports, "GroupScope", {
|
|
|
1515
1595
|
return GroupScope;
|
|
1516
1596
|
}
|
|
1517
1597
|
});
|
|
1598
|
+
Object.defineProperty(exports, "ListWorkflowVotesParams", {
|
|
1599
|
+
enumerable: true,
|
|
1600
|
+
get: function() {
|
|
1601
|
+
return ListWorkflowVotesParams;
|
|
1602
|
+
}
|
|
1603
|
+
});
|
|
1604
|
+
Object.defineProperty(exports, "ListWorkflowsParams", {
|
|
1605
|
+
enumerable: true,
|
|
1606
|
+
get: function() {
|
|
1607
|
+
return ListWorkflowsParams;
|
|
1608
|
+
}
|
|
1609
|
+
});
|
|
1518
1610
|
Object.defineProperty(exports, "OrRule", {
|
|
1519
1611
|
enumerable: true,
|
|
1520
1612
|
get: function() {
|
|
@@ -1600,6 +1692,7 @@ exports.validateListUsers200Response = validateListUsers200Response;
|
|
|
1600
1692
|
exports.validateListUsersParams = validateListUsersParams;
|
|
1601
1693
|
exports.validateListWorkflowTemplates200Response = validateListWorkflowTemplates200Response;
|
|
1602
1694
|
exports.validateListWorkflowTemplatesParams = validateListWorkflowTemplatesParams;
|
|
1695
|
+
exports.validateListWorkflowVotesParams = validateListWorkflowVotesParams;
|
|
1603
1696
|
exports.validateListWorkflows200Response = validateListWorkflows200Response;
|
|
1604
1697
|
exports.validateListWorkflowsParams = validateListWorkflowsParams;
|
|
1605
1698
|
exports.validateOidcCallbackRequest = validateOidcCallbackRequest;
|
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-CSCUMfYW.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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
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.36
|
|
716
716
|
*
|
|
717
717
|
*
|
|
718
718
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -806,12 +806,46 @@ interface ListWorkflowTemplatesParams {
|
|
|
806
806
|
status?: Array<WorkflowTemplateStatus>;
|
|
807
807
|
}
|
|
808
808
|
//#endregion
|
|
809
|
+
//#region generated/openapi/model/list-workflow-votes-params.d.ts
|
|
810
|
+
/**
|
|
811
|
+
* Workflow Approval System API
|
|
812
|
+
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
813
|
+
*
|
|
814
|
+
* The version of the OpenAPI document: 0.0.36
|
|
815
|
+
*
|
|
816
|
+
*
|
|
817
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
818
|
+
* https://openapi-generator.tech
|
|
819
|
+
* Do not edit the class manually.
|
|
820
|
+
*/
|
|
821
|
+
interface ListWorkflowVotesParams {
|
|
822
|
+
/**
|
|
823
|
+
* Page number for pagination (1-indexed)
|
|
824
|
+
*/
|
|
825
|
+
page?: number;
|
|
826
|
+
/**
|
|
827
|
+
* Number of results per page
|
|
828
|
+
*/
|
|
829
|
+
limit?: number;
|
|
830
|
+
/**
|
|
831
|
+
* Fields to order the results by, along with the order direction.
|
|
832
|
+
*/
|
|
833
|
+
orderBy?: Array<ListWorkflowVotesParams.OrderByEnum>;
|
|
834
|
+
}
|
|
835
|
+
declare namespace ListWorkflowVotesParams {
|
|
836
|
+
type OrderByEnum = 'TIMESTAMP:ASC' | 'TIMESTAMP:DESC';
|
|
837
|
+
const OrderByEnum: {
|
|
838
|
+
TimestampAsc: OrderByEnum;
|
|
839
|
+
TimestampDesc: OrderByEnum;
|
|
840
|
+
};
|
|
841
|
+
}
|
|
842
|
+
//#endregion
|
|
809
843
|
//#region generated/openapi/model/list-workflows-params.d.ts
|
|
810
844
|
/**
|
|
811
845
|
* Workflow Approval System API
|
|
812
846
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
813
847
|
*
|
|
814
|
-
* The version of the OpenAPI document: 0.0.
|
|
848
|
+
* The version of the OpenAPI document: 0.0.36
|
|
815
849
|
*
|
|
816
850
|
*
|
|
817
851
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -839,6 +873,23 @@ interface ListWorkflowsParams {
|
|
|
839
873
|
* Optional workflow template identifier (UUID or name) to filter workflows.
|
|
840
874
|
*/
|
|
841
875
|
workflowTemplateIdentifier?: string;
|
|
876
|
+
/**
|
|
877
|
+
* Filter workflows that mentions at least one of the provided group UUIDs in their approval rule.
|
|
878
|
+
*/
|
|
879
|
+
includeGroups?: Array<string>;
|
|
880
|
+
/**
|
|
881
|
+
* Fields to order the results by, along with the order direction. Can specify multiple fields.
|
|
882
|
+
*/
|
|
883
|
+
orderBy?: Array<ListWorkflowsParams.OrderByEnum>;
|
|
884
|
+
}
|
|
885
|
+
declare namespace ListWorkflowsParams {
|
|
886
|
+
type OrderByEnum = 'CREATED_AT:ASC' | 'CREATED_AT:DESC' | 'UPDATED_AT:ASC' | 'UPDATED_AT:DESC';
|
|
887
|
+
const OrderByEnum: {
|
|
888
|
+
CreatedAtAsc: OrderByEnum;
|
|
889
|
+
CreatedAtDesc: OrderByEnum;
|
|
890
|
+
UpdatedAtAsc: OrderByEnum;
|
|
891
|
+
UpdatedAtDesc: OrderByEnum;
|
|
892
|
+
};
|
|
842
893
|
}
|
|
843
894
|
//#endregion
|
|
844
895
|
//#region generated/openapi/model/oidc-callback-request.d.ts
|
|
@@ -846,7 +897,7 @@ interface ListWorkflowsParams {
|
|
|
846
897
|
* Workflow Approval System API
|
|
847
898
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
848
899
|
*
|
|
849
|
-
* The version of the OpenAPI document: 0.0.
|
|
900
|
+
* The version of the OpenAPI document: 0.0.36
|
|
850
901
|
*
|
|
851
902
|
*
|
|
852
903
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -869,7 +920,7 @@ interface OidcCallbackRequest {
|
|
|
869
920
|
* Workflow Approval System API
|
|
870
921
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
871
922
|
*
|
|
872
|
-
* The version of the OpenAPI document: 0.0.
|
|
923
|
+
* The version of the OpenAPI document: 0.0.36
|
|
873
924
|
*
|
|
874
925
|
*
|
|
875
926
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -897,7 +948,7 @@ declare namespace OrgScope {
|
|
|
897
948
|
* Workflow Approval System API
|
|
898
949
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
899
950
|
*
|
|
900
|
-
* The version of the OpenAPI document: 0.0.
|
|
951
|
+
* The version of the OpenAPI document: 0.0.36
|
|
901
952
|
*
|
|
902
953
|
*
|
|
903
954
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -916,7 +967,7 @@ interface OrganizationAdminCreate {
|
|
|
916
967
|
* Workflow Approval System API
|
|
917
968
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
918
969
|
*
|
|
919
|
-
* The version of the OpenAPI document: 0.0.
|
|
970
|
+
* The version of the OpenAPI document: 0.0.36
|
|
920
971
|
*
|
|
921
972
|
*
|
|
922
973
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -935,7 +986,7 @@ interface OrganizationAdminRemove {
|
|
|
935
986
|
* Workflow Approval System API
|
|
936
987
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
937
988
|
*
|
|
938
|
-
* The version of the OpenAPI document: 0.0.
|
|
989
|
+
* The version of the OpenAPI document: 0.0.36
|
|
939
990
|
*
|
|
940
991
|
*
|
|
941
992
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -966,7 +1017,7 @@ interface PrivilegedTokenExchangeRequest {
|
|
|
966
1017
|
* Workflow Approval System API
|
|
967
1018
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
968
1019
|
*
|
|
969
|
-
* The version of the OpenAPI document: 0.0.
|
|
1020
|
+
* The version of the OpenAPI document: 0.0.36
|
|
970
1021
|
*
|
|
971
1022
|
*
|
|
972
1023
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -985,7 +1036,7 @@ interface PrivilegedTokenResponse {
|
|
|
985
1036
|
* Workflow Approval System API
|
|
986
1037
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
987
1038
|
*
|
|
988
|
-
* The version of the OpenAPI document: 0.0.
|
|
1039
|
+
* The version of the OpenAPI document: 0.0.36
|
|
989
1040
|
*
|
|
990
1041
|
*
|
|
991
1042
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1015,7 +1066,7 @@ interface RemoveGroupEntitiesRequest {
|
|
|
1015
1066
|
* Workflow Approval System API
|
|
1016
1067
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1017
1068
|
*
|
|
1018
|
-
* The version of the OpenAPI document: 0.0.
|
|
1069
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1019
1070
|
*
|
|
1020
1071
|
*
|
|
1021
1072
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1047,7 +1098,7 @@ declare namespace SpaceScope {
|
|
|
1047
1098
|
* Workflow Approval System API
|
|
1048
1099
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1049
1100
|
*
|
|
1050
|
-
* The version of the OpenAPI document: 0.0.
|
|
1101
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1051
1102
|
*
|
|
1052
1103
|
*
|
|
1053
1104
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1135,7 +1186,7 @@ interface RoleRemovalRequest {
|
|
|
1135
1186
|
* Workflow Approval System API
|
|
1136
1187
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1137
1188
|
*
|
|
1138
|
-
* The version of the OpenAPI document: 0.0.
|
|
1189
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1139
1190
|
*
|
|
1140
1191
|
*
|
|
1141
1192
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1158,7 +1209,7 @@ interface SpaceCreate {
|
|
|
1158
1209
|
* Workflow Approval System API
|
|
1159
1210
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1160
1211
|
*
|
|
1161
|
-
* The version of the OpenAPI document: 0.0.
|
|
1212
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1162
1213
|
*
|
|
1163
1214
|
*
|
|
1164
1215
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1181,7 +1232,7 @@ interface TokenRequest {
|
|
|
1181
1232
|
* Workflow Approval System API
|
|
1182
1233
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1183
1234
|
*
|
|
1184
|
-
* The version of the OpenAPI document: 0.0.
|
|
1235
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1185
1236
|
*
|
|
1186
1237
|
*
|
|
1187
1238
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1208,7 +1259,7 @@ interface UserCreate {
|
|
|
1208
1259
|
* Workflow Approval System API
|
|
1209
1260
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1210
1261
|
*
|
|
1211
|
-
* The version of the OpenAPI document: 0.0.
|
|
1262
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1212
1263
|
*
|
|
1213
1264
|
*
|
|
1214
1265
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1237,7 +1288,7 @@ declare namespace VoteApprove {
|
|
|
1237
1288
|
* Workflow Approval System API
|
|
1238
1289
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1239
1290
|
*
|
|
1240
|
-
* The version of the OpenAPI document: 0.0.
|
|
1291
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1241
1292
|
*
|
|
1242
1293
|
*
|
|
1243
1294
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1262,7 +1313,7 @@ declare namespace VoteVeto {
|
|
|
1262
1313
|
* Workflow Approval System API
|
|
1263
1314
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1264
1315
|
*
|
|
1265
|
-
* The version of the OpenAPI document: 0.0.
|
|
1316
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1266
1317
|
*
|
|
1267
1318
|
*
|
|
1268
1319
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1316,7 +1367,7 @@ interface WorkflowTemplateCreate {
|
|
|
1316
1367
|
* Workflow Approval System API
|
|
1317
1368
|
* API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
|
|
1318
1369
|
*
|
|
1319
|
-
* The version of the OpenAPI document: 0.0.
|
|
1370
|
+
* The version of the OpenAPI document: 0.0.36
|
|
1320
1371
|
*
|
|
1321
1372
|
*
|
|
1322
1373
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1399,7 +1450,7 @@ type WorkflowRefValidationError = "malformed_object" | "invalid_workflow_templat
|
|
|
1399
1450
|
type WorkflowValidationError = "malformed_object" | "missing_id" | "invalid_id" | "missing_name" | "invalid_name" | "invalid_description" | "missing_status" | "invalid_status" | "missing_workflow_template_id" | "invalid_workflow_template_id" | "missing_metadata" | "invalid_metadata" | "invalid_ref" | "missing_created_at" | "invalid_created_at" | "missing_updated_at" | "invalid_updated_at" | "invalid_expires_at";
|
|
1400
1451
|
type GetWorkflowParamsValidationError = "malformed_object" | "invalid_include";
|
|
1401
1452
|
declare function validateGetWorkflowParams(object: unknown): Either<GetWorkflowParamsValidationError, GetWorkflowParams>;
|
|
1402
|
-
type ListWorkflowsParamsValidationError = "malformed_object" | "invalid_page" | "invalid_limit" | "invalid_include" | "invalid_include_only_non_terminal_state" | "invalid_workflow_template_identifier";
|
|
1453
|
+
type ListWorkflowsParamsValidationError = "malformed_object" | "invalid_page" | "invalid_limit" | "invalid_include" | "invalid_include_only_non_terminal_state" | "invalid_workflow_template_identifier" | "invalid_include_groups" | "invalid_order_by" | "duplicate_order_by_fields" | "too_many_order_by_items";
|
|
1403
1454
|
declare function validateListWorkflowsParams(object: unknown): Either<ListWorkflowsParamsValidationError, ListWorkflowsParams>;
|
|
1404
1455
|
type ListWorkflows200ResponseValidationError = "malformed_object" | "missing_data" | "invalid_data" | "missing_pagination" | "invalid_pagination";
|
|
1405
1456
|
declare function validateListWorkflows200Response(object: unknown): Either<ListWorkflows200ResponseValidationError, ListWorkflows200Response>;
|
|
@@ -1414,6 +1465,8 @@ type CanVoteResponseValidationError = "malformed_object" | "missing_can_vote" |
|
|
|
1414
1465
|
declare function validateCanVoteResponse(object: unknown): Either<CanVoteResponseValidationError, CanVoteResponse>;
|
|
1415
1466
|
type GetWorkflowVotes200ResponseValidationError = "malformed_object" | "missing_votes" | "invalid_votes";
|
|
1416
1467
|
declare function validateGetWorkflowVotes200Response(object: unknown): Either<GetWorkflowVotes200ResponseValidationError, GetWorkflowVotes200Response>;
|
|
1468
|
+
type ListWorkflowVotesParamsValidationError = "malformed_object" | "invalid_page" | "invalid_limit" | "invalid_order_by" | "duplicate_order_by_fields" | "too_many_order_by_items";
|
|
1469
|
+
declare function validateListWorkflowVotesParams(object: unknown): Either<ListWorkflowVotesParamsValidationError, ListWorkflowVotesParams>;
|
|
1417
1470
|
//#endregion
|
|
1418
1471
|
//#region src/validators/users.validators.d.ts
|
|
1419
1472
|
type UserValidationError = "malformed_object" | "missing_id" | "invalid_id" | "missing_display_name" | "invalid_display_name" | "missing_email" | "invalid_email" | "missing_org_role" | "invalid_org_role" | "missing_created_at" | "invalid_created_at";
|
|
@@ -1554,4 +1607,4 @@ type APIErrorValidationError = "malformed_object" | "missing_code" | "invalid_co
|
|
|
1554
1607
|
declare function validateAPIError(object: unknown): Either<APIErrorValidationError, APIError>;
|
|
1555
1608
|
declare function isAPIError(object: unknown): object is APIError;
|
|
1556
1609
|
//#endregion
|
|
1557
|
-
export { APIError, APIErrorDetailsInner, APIErrorDetailsInnerValidationError, APIErrorValidationError, AddGroupEntitiesRequest, AddGroupEntitiesRequestValidationError, AgentChallengeRequest, AgentChallengeRequestValidationError, AgentChallengeResponse, AgentChallengeResponseValidationError, AgentGet200Response, AgentGet200ResponseValidationError, AgentRegistrationRequest, AgentRegistrationRequestValidationError, AgentRegistrationResponse, AgentRegistrationResponseValidationError, AgentSummary, AgentSummaryValidationError, AgentTokenRequest, AgentTokenRequestValidationError, AgentTokenResponse, AgentTokenResponseValidationError, AndRule, ApprovalRule, CanVoteResponse, CanVoteResponseValidationError, ConcurrencyControl, EmailAction, EntityMembershipAdd, EntityMembershipAddValidationError, EntityMembershipRemove, EntityMembershipRemoveValidationError, EntityReference, EntityReferenceValidationError, GetEntityInfo200Response, GetEntityInfo200ResponseValidationError, GetWorkflowParams, GetWorkflowParamsValidationError, GetWorkflowVotes200Response, GetWorkflowVotes200ResponseValidationError, Group, GroupCreate, GroupCreateValidationError, GroupInfo, GroupInfoValidationError, GroupMembership, GroupMembershipValidationError, GroupRequirementRule, GroupScope, GroupScopeValidationError, GroupValidationError, HealthResponse, HealthResponseValidationError, InitiateCliLogin200Response, InitiateCliLogin200ResponseValidationError, InitiateCliLoginRequest, InitiateCliLoginRequestValidationError, ListAgents200Response, ListAgents200ResponseValidationError, ListAgentsParams, ListAgentsParamsValidationError, ListGroupEntities200Response, ListGroupEntities200ResponseValidationError, ListGroups200Response, ListGroups200ResponseValidationError, ListGroupsParams, ListGroupsParamsValidationError, ListOrganizationAdminsForOrg200Response, ListOrganizationAdminsForOrg200ResponseValidationError, ListParamsValidationError, ListRoleTemplates200Response, ListRoleTemplates200ResponseValidationError, ListSpaces200Response, ListSpaces200ResponseValidationError, ListSpacesParams, ListSpacesParamsValidationError, ListUsers200Response, ListUsers200ResponseValidationError, ListUsersParams, ListUsersParamsValidationError, ListWorkflowTemplates200Response, ListWorkflowTemplates200ResponseValidationError, ListWorkflowTemplatesParams, ListWorkflowTemplatesParamsValidationError, ListWorkflows200Response, ListWorkflows200ResponseValidationError, ListWorkflowsParams, ListWorkflowsParamsValidationError, OidcCallbackRequest, OidcCallbackRequestValidationError, OrRule, OrgScope, OrganizationAdmin, OrganizationAdminCreate, OrganizationAdminCreateValidationError, OrganizationAdminRemove, OrganizationAdminRemoveValidationError, OrganizationAdminValidationError, Pagination, PaginationValidationError, PrivilegedTokenExchangeRequest, PrivilegedTokenExchangeRequestValidationError, PrivilegedTokenResponse, PrivilegedTokenResponseValidationError, RefreshTokenRequest, RefreshTokenRequestValidationError, RemoveGroupEntitiesRequest, RemoveGroupEntitiesRequestValidationError, RoleAssignmentRequest, RoleOperationItem, RoleOperationItemValidationError, RoleOperationRequest, RoleOperationRequestValidationError, RoleRemovalRequest, RoleScope, RoleScopeValidationError, RoleTemplate, RoleTemplateValidationError, SortBy, SortDirection, Space, SpaceCreate, SpaceCreateValidationError, SpaceScope, SpaceScopeValidationError, SpaceValidationError, TokenRequest, TokenRequestValidationError, TokenResponse, TokenResponseValidationError, User, UserCreate, UserCreateValidationError, UserSummary, UserSummaryValidationError, UserValidationError, ValidatedListParams, VoteApprove, VoteApproveValidationError, VoteVeto, VoteVetoValidationError, VoteWithdraw, VoteWithdrawValidationError, WebhookAction, Workflow, WorkflowAction, WorkflowCreate, WorkflowCreateValidationError, WorkflowRef, WorkflowRefValidationError, WorkflowTemplate, WorkflowTemplateCreate, WorkflowTemplateCreateValidationError, WorkflowTemplateDeprecate, WorkflowTemplateDeprecateValidationError, WorkflowTemplateScope, WorkflowTemplateScopeValidationError, WorkflowTemplateStatus, WorkflowTemplateSummary, WorkflowTemplateUpdate, WorkflowTemplateUpdateValidationError, WorkflowTemplateValidationError, WorkflowValidationError, WorkflowVote, WorkflowVoteRequest, WorkflowVoteRequestValidationError, WorkflowVoteRequestVoteType, WorkflowVoteRequestVoteTypeValidationError, WorkflowVoteValidationError, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, validateConcurrencyControl, validateGetEntityInfo200Response, validateGetWorkflowParams, validateGetWorkflowVotes200Response, validateGroupCreate, validateGroupInfo, validateGroupScope, validateHealthResponse, validateInitiateCliLogin200Response, validateInitiateCliLoginRequest, validateListAgents200Response, validateListAgentsParams, validateListGroupEntities200Response, validateListGroups200Response, validateListGroupsParams, validateListOrganizationAdminsForOrg200Response, validateListRoleTemplates200Response, validateListSpaces200Response, validateListSpacesParams, validateListUsers200Response, validateListUsersParams, validateListWorkflowTemplates200Response, validateListWorkflowTemplatesParams, validateListWorkflows200Response, validateListWorkflowsParams, validateOidcCallbackRequest, validateOrganizationAdminCreate, validateOrganizationAdminRemove, validatePagination, validatePrivilegedTokenExchangeRequest, validatePrivilegedTokenResponse, validateRefreshTokenRequest, validateRemoveGroupEntitiesRequest, validateRoleAssignmentRequest, validateRoleRemovalRequest, validateSharedListParams, validateSpaceCreate, validateSpaceScope, validateTokenRequest, validateTokenResponse, validateUser, validateUserCreate, validateWorkflowCreate, validateWorkflowTemplate, validateWorkflowTemplateCreate, validateWorkflowTemplateDeprecate, validateWorkflowTemplateScope, validateWorkflowTemplateUpdate, validateWorkflowVoteRequest };
|
|
1610
|
+
export { APIError, APIErrorDetailsInner, APIErrorDetailsInnerValidationError, APIErrorValidationError, AddGroupEntitiesRequest, AddGroupEntitiesRequestValidationError, AgentChallengeRequest, AgentChallengeRequestValidationError, AgentChallengeResponse, AgentChallengeResponseValidationError, AgentGet200Response, AgentGet200ResponseValidationError, AgentRegistrationRequest, AgentRegistrationRequestValidationError, AgentRegistrationResponse, AgentRegistrationResponseValidationError, AgentSummary, AgentSummaryValidationError, AgentTokenRequest, AgentTokenRequestValidationError, AgentTokenResponse, AgentTokenResponseValidationError, AndRule, ApprovalRule, CanVoteResponse, CanVoteResponseValidationError, ConcurrencyControl, EmailAction, EntityMembershipAdd, EntityMembershipAddValidationError, EntityMembershipRemove, EntityMembershipRemoveValidationError, EntityReference, EntityReferenceValidationError, GetEntityInfo200Response, GetEntityInfo200ResponseValidationError, GetWorkflowParams, GetWorkflowParamsValidationError, GetWorkflowVotes200Response, GetWorkflowVotes200ResponseValidationError, Group, GroupCreate, GroupCreateValidationError, GroupInfo, GroupInfoValidationError, GroupMembership, GroupMembershipValidationError, GroupRequirementRule, GroupScope, GroupScopeValidationError, GroupValidationError, HealthResponse, HealthResponseValidationError, InitiateCliLogin200Response, InitiateCliLogin200ResponseValidationError, InitiateCliLoginRequest, InitiateCliLoginRequestValidationError, ListAgents200Response, ListAgents200ResponseValidationError, ListAgentsParams, ListAgentsParamsValidationError, ListGroupEntities200Response, ListGroupEntities200ResponseValidationError, ListGroups200Response, ListGroups200ResponseValidationError, ListGroupsParams, ListGroupsParamsValidationError, ListOrganizationAdminsForOrg200Response, ListOrganizationAdminsForOrg200ResponseValidationError, ListParamsValidationError, ListRoleTemplates200Response, ListRoleTemplates200ResponseValidationError, ListSpaces200Response, ListSpaces200ResponseValidationError, ListSpacesParams, ListSpacesParamsValidationError, ListUsers200Response, ListUsers200ResponseValidationError, ListUsersParams, ListUsersParamsValidationError, ListWorkflowTemplates200Response, ListWorkflowTemplates200ResponseValidationError, ListWorkflowTemplatesParams, ListWorkflowTemplatesParamsValidationError, ListWorkflowVotesParams, ListWorkflowVotesParamsValidationError, ListWorkflows200Response, ListWorkflows200ResponseValidationError, ListWorkflowsParams, ListWorkflowsParamsValidationError, OidcCallbackRequest, OidcCallbackRequestValidationError, OrRule, OrgScope, OrganizationAdmin, OrganizationAdminCreate, OrganizationAdminCreateValidationError, OrganizationAdminRemove, OrganizationAdminRemoveValidationError, OrganizationAdminValidationError, Pagination, PaginationValidationError, PrivilegedTokenExchangeRequest, PrivilegedTokenExchangeRequestValidationError, PrivilegedTokenResponse, PrivilegedTokenResponseValidationError, RefreshTokenRequest, RefreshTokenRequestValidationError, RemoveGroupEntitiesRequest, RemoveGroupEntitiesRequestValidationError, RoleAssignmentRequest, RoleOperationItem, RoleOperationItemValidationError, RoleOperationRequest, RoleOperationRequestValidationError, RoleRemovalRequest, RoleScope, RoleScopeValidationError, RoleTemplate, RoleTemplateValidationError, SortBy, SortDirection, Space, SpaceCreate, SpaceCreateValidationError, SpaceScope, SpaceScopeValidationError, SpaceValidationError, TokenRequest, TokenRequestValidationError, TokenResponse, TokenResponseValidationError, User, UserCreate, UserCreateValidationError, UserSummary, UserSummaryValidationError, UserValidationError, ValidatedListParams, VoteApprove, VoteApproveValidationError, VoteVeto, VoteVetoValidationError, VoteWithdraw, VoteWithdrawValidationError, WebhookAction, Workflow, WorkflowAction, WorkflowCreate, WorkflowCreateValidationError, WorkflowRef, WorkflowRefValidationError, WorkflowTemplate, WorkflowTemplateCreate, WorkflowTemplateCreateValidationError, WorkflowTemplateDeprecate, WorkflowTemplateDeprecateValidationError, WorkflowTemplateScope, WorkflowTemplateScopeValidationError, WorkflowTemplateStatus, WorkflowTemplateSummary, WorkflowTemplateUpdate, WorkflowTemplateUpdateValidationError, WorkflowTemplateValidationError, WorkflowValidationError, WorkflowVote, WorkflowVoteRequest, WorkflowVoteRequestValidationError, WorkflowVoteRequestVoteType, WorkflowVoteRequestVoteTypeValidationError, WorkflowVoteValidationError, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, validateConcurrencyControl, validateGetEntityInfo200Response, validateGetWorkflowParams, validateGetWorkflowVotes200Response, validateGroupCreate, validateGroupInfo, validateGroupScope, validateHealthResponse, validateInitiateCliLogin200Response, validateInitiateCliLoginRequest, validateListAgents200Response, validateListAgentsParams, validateListGroupEntities200Response, validateListGroups200Response, validateListGroupsParams, validateListOrganizationAdminsForOrg200Response, validateListRoleTemplates200Response, validateListSpaces200Response, validateListSpacesParams, validateListUsers200Response, validateListUsersParams, validateListWorkflowTemplates200Response, validateListWorkflowTemplatesParams, validateListWorkflowVotesParams, validateListWorkflows200Response, validateListWorkflowsParams, validateOidcCallbackRequest, validateOrganizationAdminCreate, validateOrganizationAdminRemove, validatePagination, validatePrivilegedTokenExchangeRequest, validatePrivilegedTokenResponse, validateRefreshTokenRequest, validateRemoveGroupEntitiesRequest, validateRoleAssignmentRequest, validateRoleRemovalRequest, validateSharedListParams, validateSpaceCreate, validateSpaceScope, validateTokenRequest, validateTokenResponse, validateUser, validateUserCreate, validateWorkflowCreate, validateWorkflowTemplate, validateWorkflowTemplateCreate, validateWorkflowTemplateDeprecate, validateWorkflowTemplateScope, validateWorkflowTemplateUpdate, validateWorkflowVoteRequest };
|