@approvio/api 0.0.38 → 0.0.39

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.
@@ -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-CUw6ayXE.cjs";
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-YXAJ6Gr8.cjs";
2
2
 
3
3
  //#region mocks/user.fixtures.d.ts
4
4
  declare const MOCK_USER_ID = "e6e08687-2189-4710-91b5-479cd25a9119";
@@ -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-Du4B7X9Z.mjs";
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-BWzcjT6i.mjs";
2
2
 
3
3
  //#region mocks/user.fixtures.d.ts
4
4
  declare const MOCK_USER_ID = "e6e08687-2189-4710-91b5-479cd25a9119";
@@ -732,6 +732,17 @@ function validateListWorkflowTemplates200Response(object) {
732
732
  pagination: paginationValidation.right
733
733
  });
734
734
  }
735
+ let SortBy = /* @__PURE__ */ function(SortBy) {
736
+ SortBy["VERSION"] = "VERSION";
737
+ SortBy["UPDATED_AT"] = "UPDATED_AT";
738
+ SortBy["CREATED_AT"] = "CREATED_AT";
739
+ return SortBy;
740
+ }({});
741
+ let SortDirection = /* @__PURE__ */ function(SortDirection) {
742
+ SortDirection["ASC"] = "ASC";
743
+ SortDirection["DESC"] = "DESC";
744
+ return SortDirection;
745
+ }({});
735
746
  function validateListWorkflowTemplatesParams(object) {
736
747
  const sharedValidation = validateSharedListParams(object);
737
748
  if ((0, fp_ts_Either.isLeft)(sharedValidation)) return (0, fp_ts_Either.left)(sharedValidation.left);
@@ -760,6 +771,40 @@ function validateListWorkflowTemplatesParams(object) {
760
771
  else return (0, fp_ts_Either.left)("invalid_status");
761
772
  }
762
773
  result.status = status;
774
+ if (hasOwnProperty(object, "sortBy") && object.sortBy !== void 0) {
775
+ const sortByVal = object.sortBy;
776
+ const values = [];
777
+ if (Array.isArray(sortByVal)) for (const unsafeSortBy of sortByVal) {
778
+ if (typeof unsafeSortBy !== "string") return (0, fp_ts_Either.left)("invalid_sort_by");
779
+ const sortBy = getStringAsEnum(unsafeSortBy, SortBy);
780
+ if (sortBy === void 0) return (0, fp_ts_Either.left)("invalid_sort_by");
781
+ values.push(sortBy);
782
+ }
783
+ else if (typeof sortByVal === "string") {
784
+ const sortBy = getStringAsEnum(sortByVal, SortBy);
785
+ if (sortBy === void 0) return (0, fp_ts_Either.left)("invalid_sort_by");
786
+ values.push(sortBy);
787
+ } else return (0, fp_ts_Either.left)("invalid_sort_by");
788
+ result.sortBy = values;
789
+ }
790
+ if (hasOwnProperty(object, "sortDirection") && object.sortDirection !== void 0) {
791
+ const sortDirectionVal = object.sortDirection;
792
+ const values = [];
793
+ if (Array.isArray(sortDirectionVal)) for (const item of sortDirectionVal) {
794
+ if (typeof item !== "string") return (0, fp_ts_Either.left)("invalid_sort_direction");
795
+ const sortDirection = getStringAsEnum(item, SortDirection);
796
+ if (sortDirection === void 0) return (0, fp_ts_Either.left)("invalid_sort_direction");
797
+ values.push(sortDirection);
798
+ }
799
+ else if (typeof sortDirectionVal === "string") {
800
+ const sortDirection = getStringAsEnum(sortDirectionVal, SortDirection);
801
+ if (sortDirection === void 0) return (0, fp_ts_Either.left)("invalid_sort_direction");
802
+ values.push(sortDirection);
803
+ } else return (0, fp_ts_Either.left)("invalid_sort_direction");
804
+ if (result.sortBy === void 0 || result.sortBy.length === 0) return (0, fp_ts_Either.left)("sort_direction_without_sort_by");
805
+ if (values.length > result.sortBy.length) return (0, fp_ts_Either.left)("sort_direction_length_mismatch");
806
+ result.sortDirection = values;
807
+ }
763
808
  return (0, fp_ts_Either.right)(result);
764
809
  }
765
810
  //#endregion
@@ -1451,6 +1496,8 @@ Object.defineProperty(exports, "OrgScope", {
1451
1496
  return OrgScope;
1452
1497
  }
1453
1498
  });
1499
+ exports.SortBy = SortBy;
1500
+ exports.SortDirection = SortDirection;
1454
1501
  Object.defineProperty(exports, "SpaceScope", {
1455
1502
  enumerable: true,
1456
1503
  get: function() {
@@ -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-CUw6ayXE.cjs";
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-YXAJ6Gr8.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.33
9
+ * The version of the OpenAPI document: 0.0.34
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.33
39
+ * The version of the OpenAPI document: 0.0.34
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.33
78
+ * The version of the OpenAPI document: 0.0.34
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.33
97
+ * The version of the OpenAPI document: 0.0.34
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.33
116
+ * The version of the OpenAPI document: 0.0.34
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.33
147
+ * The version of the OpenAPI document: 0.0.34
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.33
166
+ * The version of the OpenAPI document: 0.0.34
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.33
201
+ * The version of the OpenAPI document: 0.0.34
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.33
224
+ * The version of the OpenAPI document: 0.0.34
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.33
261
+ * The version of the OpenAPI document: 0.0.34
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.33
284
+ * The version of the OpenAPI document: 0.0.34
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.33
329
+ * The version of the OpenAPI document: 0.0.34
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.33
348
+ * The version of the OpenAPI document: 0.0.34
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.33
392
+ * The version of the OpenAPI document: 0.0.34
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.33
424
+ * The version of the OpenAPI document: 0.0.34
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.33
456
+ * The version of the OpenAPI document: 0.0.34
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.33
479
+ * The version of the OpenAPI document: 0.0.34
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.33
495
+ * The version of the OpenAPI document: 0.0.34
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.33
520
+ * The version of the OpenAPI document: 0.0.34
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.33
549
+ * The version of the OpenAPI document: 0.0.34
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.33
576
+ * The version of the OpenAPI document: 0.0.34
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.33
609
+ * The version of the OpenAPI document: 0.0.34
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.33
641
+ * The version of the OpenAPI document: 0.0.34
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.33
682
+ * The version of the OpenAPI document: 0.0.34
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.33
715
+ * The version of the OpenAPI document: 0.0.34
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.33
742
+ * The version of the OpenAPI document: 0.0.34
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.33
787
+ * The version of the OpenAPI document: 0.0.34
788
788
  *
789
789
  *
790
790
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -812,6 +812,14 @@ interface ListWorkflowTemplatesParams {
812
812
  * Optional space identifier (UUID or name) to filter workflow templates.
813
813
  */
814
814
  spaceIdentifier?: string;
815
+ /**
816
+ * Fields to sort the results by. Can be specified multiple times. For the \'VERSION\' field, sorting is numerical for versions that can be coerced to a number, and alphabetical for everything else. Non-numerical versions take precedence over numbers.
817
+ */
818
+ sortBy?: Array<string>;
819
+ /**
820
+ * The sort directions that correspond to the sortBy parameters in order. If specified, must not have more items than sortBy.
821
+ */
822
+ sortDirection?: Array<string>;
815
823
  /**
816
824
  * Filter by workflow template status. Can provide multiple values. Defaults to returning only ACTIVE templates.
817
825
  */
@@ -823,7 +831,7 @@ interface ListWorkflowTemplatesParams {
823
831
  * Workflow Approval System API
824
832
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
825
833
  *
826
- * The version of the OpenAPI document: 0.0.33
834
+ * The version of the OpenAPI document: 0.0.34
827
835
  *
828
836
  *
829
837
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -858,7 +866,7 @@ interface ListWorkflowsParams {
858
866
  * Workflow Approval System API
859
867
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
860
868
  *
861
- * The version of the OpenAPI document: 0.0.33
869
+ * The version of the OpenAPI document: 0.0.34
862
870
  *
863
871
  *
864
872
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -881,7 +889,7 @@ interface OidcCallbackRequest {
881
889
  * Workflow Approval System API
882
890
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
883
891
  *
884
- * The version of the OpenAPI document: 0.0.33
892
+ * The version of the OpenAPI document: 0.0.34
885
893
  *
886
894
  *
887
895
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -909,7 +917,7 @@ declare namespace OrgScope {
909
917
  * Workflow Approval System API
910
918
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
911
919
  *
912
- * The version of the OpenAPI document: 0.0.33
920
+ * The version of the OpenAPI document: 0.0.34
913
921
  *
914
922
  *
915
923
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -928,7 +936,7 @@ interface OrganizationAdminCreate {
928
936
  * Workflow Approval System API
929
937
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
930
938
  *
931
- * The version of the OpenAPI document: 0.0.33
939
+ * The version of the OpenAPI document: 0.0.34
932
940
  *
933
941
  *
934
942
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -947,7 +955,7 @@ interface OrganizationAdminRemove {
947
955
  * Workflow Approval System API
948
956
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
949
957
  *
950
- * The version of the OpenAPI document: 0.0.33
958
+ * The version of the OpenAPI document: 0.0.34
951
959
  *
952
960
  *
953
961
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -978,7 +986,7 @@ interface PrivilegedTokenExchangeRequest {
978
986
  * Workflow Approval System API
979
987
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
980
988
  *
981
- * The version of the OpenAPI document: 0.0.33
989
+ * The version of the OpenAPI document: 0.0.34
982
990
  *
983
991
  *
984
992
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -997,7 +1005,7 @@ interface PrivilegedTokenResponse {
997
1005
  * Workflow Approval System API
998
1006
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
999
1007
  *
1000
- * The version of the OpenAPI document: 0.0.33
1008
+ * The version of the OpenAPI document: 0.0.34
1001
1009
  *
1002
1010
  *
1003
1011
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1027,7 +1035,7 @@ interface RemoveGroupEntitiesRequest {
1027
1035
  * Workflow Approval System API
1028
1036
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1029
1037
  *
1030
- * The version of the OpenAPI document: 0.0.33
1038
+ * The version of the OpenAPI document: 0.0.34
1031
1039
  *
1032
1040
  *
1033
1041
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1059,7 +1067,7 @@ declare namespace SpaceScope {
1059
1067
  * Workflow Approval System API
1060
1068
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1061
1069
  *
1062
- * The version of the OpenAPI document: 0.0.33
1070
+ * The version of the OpenAPI document: 0.0.34
1063
1071
  *
1064
1072
  *
1065
1073
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1147,7 +1155,7 @@ interface RoleRemovalRequest {
1147
1155
  * Workflow Approval System API
1148
1156
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1149
1157
  *
1150
- * The version of the OpenAPI document: 0.0.33
1158
+ * The version of the OpenAPI document: 0.0.34
1151
1159
  *
1152
1160
  *
1153
1161
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1170,7 +1178,7 @@ interface SpaceCreate {
1170
1178
  * Workflow Approval System API
1171
1179
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1172
1180
  *
1173
- * The version of the OpenAPI document: 0.0.33
1181
+ * The version of the OpenAPI document: 0.0.34
1174
1182
  *
1175
1183
  *
1176
1184
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1193,7 +1201,7 @@ interface TokenRequest {
1193
1201
  * Workflow Approval System API
1194
1202
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1195
1203
  *
1196
- * The version of the OpenAPI document: 0.0.33
1204
+ * The version of the OpenAPI document: 0.0.34
1197
1205
  *
1198
1206
  *
1199
1207
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1220,7 +1228,7 @@ interface UserCreate {
1220
1228
  * Workflow Approval System API
1221
1229
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1222
1230
  *
1223
- * The version of the OpenAPI document: 0.0.33
1231
+ * The version of the OpenAPI document: 0.0.34
1224
1232
  *
1225
1233
  *
1226
1234
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1249,7 +1257,7 @@ declare namespace VoteApprove {
1249
1257
  * Workflow Approval System API
1250
1258
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1251
1259
  *
1252
- * The version of the OpenAPI document: 0.0.33
1260
+ * The version of the OpenAPI document: 0.0.34
1253
1261
  *
1254
1262
  *
1255
1263
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1274,7 +1282,7 @@ declare namespace VoteVeto {
1274
1282
  * Workflow Approval System API
1275
1283
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1276
1284
  *
1277
- * The version of the OpenAPI document: 0.0.33
1285
+ * The version of the OpenAPI document: 0.0.34
1278
1286
  *
1279
1287
  *
1280
1288
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1328,7 +1336,7 @@ interface WorkflowTemplateCreate {
1328
1336
  * Workflow Approval System API
1329
1337
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1330
1338
  *
1331
- * The version of the OpenAPI document: 0.0.33
1339
+ * The version of the OpenAPI document: 0.0.34
1332
1340
  *
1333
1341
  *
1334
1342
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1480,7 +1488,16 @@ declare function validateWorkflowTemplateScope(object: unknown): Either<Workflow
1480
1488
  type WorkflowTemplateSummaryValidationError = "malformed_object" | "invalid_id" | "invalid_name" | "invalid_version" | "invalid_created_at" | "invalid_updated_at" | "invalid_description";
1481
1489
  type ListWorkflowTemplates200ResponseValidationError = "malformed_object" | "invalid_data" | "invalid_pagination" | "missing_pagination" | PrefixUnion<"data_item", WorkflowTemplateSummaryValidationError>;
1482
1490
  declare function validateListWorkflowTemplates200Response(object: unknown): Either<ListWorkflowTemplates200ResponseValidationError, ListWorkflowTemplates200Response>;
1483
- type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status" | "invalid_search_mode" | "invalid_search_length";
1491
+ type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status" | "invalid_search_mode" | "invalid_search_length" | "invalid_sort_by" | "invalid_sort_direction" | "sort_direction_without_sort_by" | "sort_direction_length_mismatch";
1492
+ declare enum SortBy {
1493
+ VERSION = "VERSION",
1494
+ UPDATED_AT = "UPDATED_AT",
1495
+ CREATED_AT = "CREATED_AT"
1496
+ }
1497
+ declare enum SortDirection {
1498
+ ASC = "ASC",
1499
+ DESC = "DESC"
1500
+ }
1484
1501
  declare function validateListWorkflowTemplatesParams(object: unknown): Either<ListWorkflowTemplatesParamsValidationError, ListWorkflowTemplatesParams>;
1485
1502
  //#endregion
1486
1503
  //#region src/validators/spaces.validators.d.ts
@@ -1555,4 +1572,4 @@ type APIErrorValidationError = "malformed_object" | "missing_code" | "invalid_co
1555
1572
  declare function validateAPIError(object: unknown): Either<APIErrorValidationError, APIError>;
1556
1573
  declare function isAPIError(object: unknown): object is APIError;
1557
1574
  //#endregion
1558
- 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, 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, 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, WorkflowTemplateSummary, WorkflowTemplateUpdate, WorkflowTemplateUpdateValidationError, WorkflowTemplateValidationError, WorkflowValidationError, WorkflowVote, WorkflowVoteRequest, WorkflowVoteRequestValidationError, WorkflowVoteRequestVoteType, WorkflowVoteRequestVoteTypeValidationError, WorkflowVoteValidationError, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, 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 };
1575
+ 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, 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, WorkflowTemplateSummary, WorkflowTemplateUpdate, WorkflowTemplateUpdateValidationError, WorkflowTemplateValidationError, WorkflowValidationError, WorkflowVote, WorkflowVoteRequest, WorkflowVoteRequestValidationError, WorkflowVoteRequestVoteType, WorkflowVoteRequestVoteTypeValidationError, WorkflowVoteValidationError, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, 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 };
@@ -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-Du4B7X9Z.mjs";
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-BWzcjT6i.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.33
9
+ * The version of the OpenAPI document: 0.0.34
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.33
39
+ * The version of the OpenAPI document: 0.0.34
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.33
78
+ * The version of the OpenAPI document: 0.0.34
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.33
97
+ * The version of the OpenAPI document: 0.0.34
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.33
116
+ * The version of the OpenAPI document: 0.0.34
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.33
147
+ * The version of the OpenAPI document: 0.0.34
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.33
166
+ * The version of the OpenAPI document: 0.0.34
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.33
201
+ * The version of the OpenAPI document: 0.0.34
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.33
224
+ * The version of the OpenAPI document: 0.0.34
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.33
261
+ * The version of the OpenAPI document: 0.0.34
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.33
284
+ * The version of the OpenAPI document: 0.0.34
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.33
329
+ * The version of the OpenAPI document: 0.0.34
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.33
348
+ * The version of the OpenAPI document: 0.0.34
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.33
392
+ * The version of the OpenAPI document: 0.0.34
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.33
424
+ * The version of the OpenAPI document: 0.0.34
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.33
456
+ * The version of the OpenAPI document: 0.0.34
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.33
479
+ * The version of the OpenAPI document: 0.0.34
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.33
495
+ * The version of the OpenAPI document: 0.0.34
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.33
520
+ * The version of the OpenAPI document: 0.0.34
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.33
549
+ * The version of the OpenAPI document: 0.0.34
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.33
576
+ * The version of the OpenAPI document: 0.0.34
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.33
609
+ * The version of the OpenAPI document: 0.0.34
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.33
641
+ * The version of the OpenAPI document: 0.0.34
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.33
682
+ * The version of the OpenAPI document: 0.0.34
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.33
715
+ * The version of the OpenAPI document: 0.0.34
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.33
742
+ * The version of the OpenAPI document: 0.0.34
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.33
787
+ * The version of the OpenAPI document: 0.0.34
788
788
  *
789
789
  *
790
790
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -812,6 +812,14 @@ interface ListWorkflowTemplatesParams {
812
812
  * Optional space identifier (UUID or name) to filter workflow templates.
813
813
  */
814
814
  spaceIdentifier?: string;
815
+ /**
816
+ * Fields to sort the results by. Can be specified multiple times. For the \'VERSION\' field, sorting is numerical for versions that can be coerced to a number, and alphabetical for everything else. Non-numerical versions take precedence over numbers.
817
+ */
818
+ sortBy?: Array<string>;
819
+ /**
820
+ * The sort directions that correspond to the sortBy parameters in order. If specified, must not have more items than sortBy.
821
+ */
822
+ sortDirection?: Array<string>;
815
823
  /**
816
824
  * Filter by workflow template status. Can provide multiple values. Defaults to returning only ACTIVE templates.
817
825
  */
@@ -823,7 +831,7 @@ interface ListWorkflowTemplatesParams {
823
831
  * Workflow Approval System API
824
832
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
825
833
  *
826
- * The version of the OpenAPI document: 0.0.33
834
+ * The version of the OpenAPI document: 0.0.34
827
835
  *
828
836
  *
829
837
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -858,7 +866,7 @@ interface ListWorkflowsParams {
858
866
  * Workflow Approval System API
859
867
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
860
868
  *
861
- * The version of the OpenAPI document: 0.0.33
869
+ * The version of the OpenAPI document: 0.0.34
862
870
  *
863
871
  *
864
872
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -881,7 +889,7 @@ interface OidcCallbackRequest {
881
889
  * Workflow Approval System API
882
890
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
883
891
  *
884
- * The version of the OpenAPI document: 0.0.33
892
+ * The version of the OpenAPI document: 0.0.34
885
893
  *
886
894
  *
887
895
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -909,7 +917,7 @@ declare namespace OrgScope {
909
917
  * Workflow Approval System API
910
918
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
911
919
  *
912
- * The version of the OpenAPI document: 0.0.33
920
+ * The version of the OpenAPI document: 0.0.34
913
921
  *
914
922
  *
915
923
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -928,7 +936,7 @@ interface OrganizationAdminCreate {
928
936
  * Workflow Approval System API
929
937
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
930
938
  *
931
- * The version of the OpenAPI document: 0.0.33
939
+ * The version of the OpenAPI document: 0.0.34
932
940
  *
933
941
  *
934
942
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -947,7 +955,7 @@ interface OrganizationAdminRemove {
947
955
  * Workflow Approval System API
948
956
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
949
957
  *
950
- * The version of the OpenAPI document: 0.0.33
958
+ * The version of the OpenAPI document: 0.0.34
951
959
  *
952
960
  *
953
961
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -978,7 +986,7 @@ interface PrivilegedTokenExchangeRequest {
978
986
  * Workflow Approval System API
979
987
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
980
988
  *
981
- * The version of the OpenAPI document: 0.0.33
989
+ * The version of the OpenAPI document: 0.0.34
982
990
  *
983
991
  *
984
992
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -997,7 +1005,7 @@ interface PrivilegedTokenResponse {
997
1005
  * Workflow Approval System API
998
1006
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
999
1007
  *
1000
- * The version of the OpenAPI document: 0.0.33
1008
+ * The version of the OpenAPI document: 0.0.34
1001
1009
  *
1002
1010
  *
1003
1011
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1027,7 +1035,7 @@ interface RemoveGroupEntitiesRequest {
1027
1035
  * Workflow Approval System API
1028
1036
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1029
1037
  *
1030
- * The version of the OpenAPI document: 0.0.33
1038
+ * The version of the OpenAPI document: 0.0.34
1031
1039
  *
1032
1040
  *
1033
1041
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1059,7 +1067,7 @@ declare namespace SpaceScope {
1059
1067
  * Workflow Approval System API
1060
1068
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1061
1069
  *
1062
- * The version of the OpenAPI document: 0.0.33
1070
+ * The version of the OpenAPI document: 0.0.34
1063
1071
  *
1064
1072
  *
1065
1073
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1147,7 +1155,7 @@ interface RoleRemovalRequest {
1147
1155
  * Workflow Approval System API
1148
1156
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1149
1157
  *
1150
- * The version of the OpenAPI document: 0.0.33
1158
+ * The version of the OpenAPI document: 0.0.34
1151
1159
  *
1152
1160
  *
1153
1161
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1170,7 +1178,7 @@ interface SpaceCreate {
1170
1178
  * Workflow Approval System API
1171
1179
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1172
1180
  *
1173
- * The version of the OpenAPI document: 0.0.33
1181
+ * The version of the OpenAPI document: 0.0.34
1174
1182
  *
1175
1183
  *
1176
1184
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1193,7 +1201,7 @@ interface TokenRequest {
1193
1201
  * Workflow Approval System API
1194
1202
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1195
1203
  *
1196
- * The version of the OpenAPI document: 0.0.33
1204
+ * The version of the OpenAPI document: 0.0.34
1197
1205
  *
1198
1206
  *
1199
1207
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1220,7 +1228,7 @@ interface UserCreate {
1220
1228
  * Workflow Approval System API
1221
1229
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1222
1230
  *
1223
- * The version of the OpenAPI document: 0.0.33
1231
+ * The version of the OpenAPI document: 0.0.34
1224
1232
  *
1225
1233
  *
1226
1234
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1249,7 +1257,7 @@ declare namespace VoteApprove {
1249
1257
  * Workflow Approval System API
1250
1258
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1251
1259
  *
1252
- * The version of the OpenAPI document: 0.0.33
1260
+ * The version of the OpenAPI document: 0.0.34
1253
1261
  *
1254
1262
  *
1255
1263
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1274,7 +1282,7 @@ declare namespace VoteVeto {
1274
1282
  * Workflow Approval System API
1275
1283
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1276
1284
  *
1277
- * The version of the OpenAPI document: 0.0.33
1285
+ * The version of the OpenAPI document: 0.0.34
1278
1286
  *
1279
1287
  *
1280
1288
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1328,7 +1336,7 @@ interface WorkflowTemplateCreate {
1328
1336
  * Workflow Approval System API
1329
1337
  * API for a SaaS platform that allows customers to manage approvals for generic workflows, users, and groups.
1330
1338
  *
1331
- * The version of the OpenAPI document: 0.0.33
1339
+ * The version of the OpenAPI document: 0.0.34
1332
1340
  *
1333
1341
  *
1334
1342
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1480,7 +1488,16 @@ declare function validateWorkflowTemplateScope(object: unknown): Either<Workflow
1480
1488
  type WorkflowTemplateSummaryValidationError = "malformed_object" | "invalid_id" | "invalid_name" | "invalid_version" | "invalid_created_at" | "invalid_updated_at" | "invalid_description";
1481
1489
  type ListWorkflowTemplates200ResponseValidationError = "malformed_object" | "invalid_data" | "invalid_pagination" | "missing_pagination" | PrefixUnion<"data_item", WorkflowTemplateSummaryValidationError>;
1482
1490
  declare function validateListWorkflowTemplates200Response(object: unknown): Either<ListWorkflowTemplates200ResponseValidationError, ListWorkflowTemplates200Response>;
1483
- type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status" | "invalid_search_mode" | "invalid_search_length";
1491
+ type ListWorkflowTemplatesParamsValidationError = ListParamsValidationError | "invalid_space_identifier" | "invalid_status" | "invalid_search_mode" | "invalid_search_length" | "invalid_sort_by" | "invalid_sort_direction" | "sort_direction_without_sort_by" | "sort_direction_length_mismatch";
1492
+ declare enum SortBy {
1493
+ VERSION = "VERSION",
1494
+ UPDATED_AT = "UPDATED_AT",
1495
+ CREATED_AT = "CREATED_AT"
1496
+ }
1497
+ declare enum SortDirection {
1498
+ ASC = "ASC",
1499
+ DESC = "DESC"
1500
+ }
1484
1501
  declare function validateListWorkflowTemplatesParams(object: unknown): Either<ListWorkflowTemplatesParamsValidationError, ListWorkflowTemplatesParams>;
1485
1502
  //#endregion
1486
1503
  //#region src/validators/spaces.validators.d.ts
@@ -1555,4 +1572,4 @@ type APIErrorValidationError = "malformed_object" | "missing_code" | "invalid_co
1555
1572
  declare function validateAPIError(object: unknown): Either<APIErrorValidationError, APIError>;
1556
1573
  declare function isAPIError(object: unknown): object is APIError;
1557
1574
  //#endregion
1558
- 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, 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, 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, WorkflowTemplateSummary, WorkflowTemplateUpdate, WorkflowTemplateUpdateValidationError, WorkflowTemplateValidationError, WorkflowValidationError, WorkflowVote, WorkflowVoteRequest, WorkflowVoteRequestValidationError, WorkflowVoteRequestVoteType, WorkflowVoteRequestVoteTypeValidationError, WorkflowVoteValidationError, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, 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 };
1575
+ 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, 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, WorkflowTemplateSummary, WorkflowTemplateUpdate, WorkflowTemplateUpdateValidationError, WorkflowTemplateValidationError, WorkflowValidationError, WorkflowVote, WorkflowVoteRequest, WorkflowVoteRequestValidationError, WorkflowVoteRequestVoteType, WorkflowVoteRequestVoteTypeValidationError, WorkflowVoteValidationError, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, 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 };
@@ -708,6 +708,17 @@ function validateListWorkflowTemplates200Response(object) {
708
708
  pagination: paginationValidation.right
709
709
  });
710
710
  }
711
+ let SortBy = /* @__PURE__ */ function(SortBy) {
712
+ SortBy["VERSION"] = "VERSION";
713
+ SortBy["UPDATED_AT"] = "UPDATED_AT";
714
+ SortBy["CREATED_AT"] = "CREATED_AT";
715
+ return SortBy;
716
+ }({});
717
+ let SortDirection = /* @__PURE__ */ function(SortDirection) {
718
+ SortDirection["ASC"] = "ASC";
719
+ SortDirection["DESC"] = "DESC";
720
+ return SortDirection;
721
+ }({});
711
722
  function validateListWorkflowTemplatesParams(object) {
712
723
  const sharedValidation = validateSharedListParams(object);
713
724
  if (isLeft(sharedValidation)) return left(sharedValidation.left);
@@ -736,6 +747,40 @@ function validateListWorkflowTemplatesParams(object) {
736
747
  else return left("invalid_status");
737
748
  }
738
749
  result.status = status;
750
+ if (hasOwnProperty(object, "sortBy") && object.sortBy !== void 0) {
751
+ const sortByVal = object.sortBy;
752
+ const values = [];
753
+ if (Array.isArray(sortByVal)) for (const unsafeSortBy of sortByVal) {
754
+ if (typeof unsafeSortBy !== "string") return left("invalid_sort_by");
755
+ const sortBy = getStringAsEnum(unsafeSortBy, SortBy);
756
+ if (sortBy === void 0) return left("invalid_sort_by");
757
+ values.push(sortBy);
758
+ }
759
+ else if (typeof sortByVal === "string") {
760
+ const sortBy = getStringAsEnum(sortByVal, SortBy);
761
+ if (sortBy === void 0) return left("invalid_sort_by");
762
+ values.push(sortBy);
763
+ } else return left("invalid_sort_by");
764
+ result.sortBy = values;
765
+ }
766
+ if (hasOwnProperty(object, "sortDirection") && object.sortDirection !== void 0) {
767
+ const sortDirectionVal = object.sortDirection;
768
+ const values = [];
769
+ if (Array.isArray(sortDirectionVal)) for (const item of sortDirectionVal) {
770
+ if (typeof item !== "string") return left("invalid_sort_direction");
771
+ const sortDirection = getStringAsEnum(item, SortDirection);
772
+ if (sortDirection === void 0) return left("invalid_sort_direction");
773
+ values.push(sortDirection);
774
+ }
775
+ else if (typeof sortDirectionVal === "string") {
776
+ const sortDirection = getStringAsEnum(sortDirectionVal, SortDirection);
777
+ if (sortDirection === void 0) return left("invalid_sort_direction");
778
+ values.push(sortDirection);
779
+ } else return left("invalid_sort_direction");
780
+ if (result.sortBy === void 0 || result.sortBy.length === 0) return left("sort_direction_without_sort_by");
781
+ if (values.length > result.sortBy.length) return left("sort_direction_length_mismatch");
782
+ result.sortDirection = values;
783
+ }
739
784
  return right(result);
740
785
  }
741
786
  //#endregion
@@ -1385,4 +1430,4 @@ function isAPIError(object) {
1385
1430
  return E.isRight(validateAPIError(object));
1386
1431
  }
1387
1432
  //#endregion
1388
- export { AgentTokenRequest, AndRule, EmailAction, GroupRequirementRule, GroupScope, OrRule, OrgScope, SpaceScope, VoteApprove, VoteVeto, VoteWithdraw, WebhookAction, WorkflowTemplate, WorkflowTemplateScope, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, 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 };
1433
+ export { AgentTokenRequest, AndRule, EmailAction, GroupRequirementRule, GroupScope, OrRule, OrgScope, SortBy, SortDirection, SpaceScope, VoteApprove, VoteVeto, VoteWithdraw, WebhookAction, WorkflowTemplate, WorkflowTemplateScope, isAPIError, validateAPIError, validateAddGroupEntitiesRequest, validateAgentChallengeRequest, validateAgentChallengeResponse, validateAgentGet200Response, validateAgentRegistrationRequest, validateAgentRegistrationResponse, validateAgentTokenRequest, validateAgentTokenResponse, validateCanVoteResponse, 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 };
@@ -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.33
27
+ * The version of the OpenAPI document: 0.0.34
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.33
99
+ * The version of the OpenAPI document: 0.0.34
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.33
131
+ * The version of the OpenAPI document: 0.0.34
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.33
148
+ * The version of the OpenAPI document: 0.0.34
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.33
187
+ * The version of the OpenAPI document: 0.0.34
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.33
220
+ * The version of the OpenAPI document: 0.0.34
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.33
247
+ * The version of the OpenAPI document: 0.0.34
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.33
422
+ * The version of the OpenAPI document: 0.0.34
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.33
445
+ * The version of the OpenAPI document: 0.0.34
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.33
480
+ * The version of the OpenAPI document: 0.0.34
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.33
27
+ * The version of the OpenAPI document: 0.0.34
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.33
99
+ * The version of the OpenAPI document: 0.0.34
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.33
131
+ * The version of the OpenAPI document: 0.0.34
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.33
148
+ * The version of the OpenAPI document: 0.0.34
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.33
187
+ * The version of the OpenAPI document: 0.0.34
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.33
220
+ * The version of the OpenAPI document: 0.0.34
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.33
247
+ * The version of the OpenAPI document: 0.0.34
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.33
422
+ * The version of the OpenAPI document: 0.0.34
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.33
445
+ * The version of the OpenAPI document: 0.0.34
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.33
480
+ * The version of the OpenAPI document: 0.0.34
481
481
  *
482
482
  *
483
483
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@approvio/api",
3
3
  "author": "Giovanni Baratta",
4
4
  "license": "MIT",
5
- "version": "0.0.38",
5
+ "version": "0.0.39",
6
6
  "private": false,
7
7
  "type": "module",
8
8
  "main": "./dist/src/index.cjs",