@epilot/cli 0.1.124 → 0.1.125
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/definitions/permissions.json +85 -2
- package/dist/bin/epilot.js +6 -6
- package/dist/{chunk-XV6Z22GM.js → chunk-ONZTQZV4.js} +1 -1
- package/dist/{completion-F6MX5VSK.js → completion-XAU4BLMW.js} +1 -1
- package/dist/{upgrade-SS3SL26Q.js → upgrade-R2QXDOPO.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -928,15 +928,21 @@
|
|
|
928
928
|
{
|
|
929
929
|
"$ref": "#/components/schemas/EqualsCondition"
|
|
930
930
|
},
|
|
931
|
+
{
|
|
932
|
+
"$ref": "#/components/schemas/NotEqualsCondition"
|
|
933
|
+
},
|
|
931
934
|
{
|
|
932
935
|
"$ref": "#/components/schemas/EqualsCurrentUserCondition"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"$ref": "#/components/schemas/NotEqualsCurrentUserCondition"
|
|
933
939
|
}
|
|
934
940
|
]
|
|
935
941
|
}
|
|
936
942
|
]
|
|
937
943
|
},
|
|
938
944
|
"EqualsCurrentUserCondition": {
|
|
939
|
-
"description": "Check if any relation_user attribute on the entity contains the current user. When attribute is provided, only that specific attribute path is checked.",
|
|
945
|
+
"description": "Check if any relation_user attribute on the entity contains the current user. When attribute is provided, only that specific attribute path is checked. When attributes is provided, it takes precedence over attribute and the condition passes when the current user appears in ANY of the listed attribute paths.",
|
|
940
946
|
"type": "object",
|
|
941
947
|
"properties": {
|
|
942
948
|
"attribute": {
|
|
@@ -944,6 +950,18 @@
|
|
|
944
950
|
"description": "Optional JSON path to a specific user attribute. When omitted, all relation_user attributes on the entity are scanned.",
|
|
945
951
|
"example": "assignee.*.user_id"
|
|
946
952
|
},
|
|
953
|
+
"attributes": {
|
|
954
|
+
"type": "array",
|
|
955
|
+
"description": "Optional list of JSON paths to user attributes. Takes precedence over attribute.",
|
|
956
|
+
"minItems": 1,
|
|
957
|
+
"items": {
|
|
958
|
+
"type": "string"
|
|
959
|
+
},
|
|
960
|
+
"example": [
|
|
961
|
+
"assignee.*.user_id",
|
|
962
|
+
"owner.*.user_id"
|
|
963
|
+
]
|
|
964
|
+
},
|
|
947
965
|
"operation": {
|
|
948
966
|
"type": "string",
|
|
949
967
|
"enum": [
|
|
@@ -955,6 +973,38 @@
|
|
|
955
973
|
"operation"
|
|
956
974
|
]
|
|
957
975
|
},
|
|
976
|
+
"NotEqualsCurrentUserCondition": {
|
|
977
|
+
"description": "Check if the current user is absent from the relation_user attributes on the entity. When attribute is provided, only that specific attribute path is checked. When attributes is provided, it takes precedence over attribute and the condition passes only when the current user appears in NONE of the listed attribute paths.",
|
|
978
|
+
"type": "object",
|
|
979
|
+
"properties": {
|
|
980
|
+
"attribute": {
|
|
981
|
+
"type": "string",
|
|
982
|
+
"description": "Optional JSON path to a specific user attribute. When omitted, all relation_user attributes on the entity are scanned.",
|
|
983
|
+
"example": "assignee.*.user_id"
|
|
984
|
+
},
|
|
985
|
+
"attributes": {
|
|
986
|
+
"type": "array",
|
|
987
|
+
"description": "Optional list of JSON paths to user attributes. Takes precedence over attribute.",
|
|
988
|
+
"minItems": 1,
|
|
989
|
+
"items": {
|
|
990
|
+
"type": "string"
|
|
991
|
+
},
|
|
992
|
+
"example": [
|
|
993
|
+
"assignee.*.user_id",
|
|
994
|
+
"owner.*.user_id"
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
"operation": {
|
|
998
|
+
"type": "string",
|
|
999
|
+
"enum": [
|
|
1000
|
+
"not_equals_current_user"
|
|
1001
|
+
]
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
"required": [
|
|
1005
|
+
"operation"
|
|
1006
|
+
]
|
|
1007
|
+
},
|
|
958
1008
|
"EqualsCondition": {
|
|
959
1009
|
"description": "Check if attribute equals to any of the values",
|
|
960
1010
|
"type": "object",
|
|
@@ -971,6 +1021,35 @@
|
|
|
971
1021
|
},
|
|
972
1022
|
"values": {
|
|
973
1023
|
"type": "array",
|
|
1024
|
+
"minItems": 1,
|
|
1025
|
+
"items": {
|
|
1026
|
+
"example": "Qualification"
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
"required": [
|
|
1031
|
+
"attribute",
|
|
1032
|
+
"operation",
|
|
1033
|
+
"values"
|
|
1034
|
+
]
|
|
1035
|
+
},
|
|
1036
|
+
"NotEqualsCondition": {
|
|
1037
|
+
"description": "Passes when the attribute does not equal any of the values. Records where the attribute is missing or empty pass the condition.",
|
|
1038
|
+
"type": "object",
|
|
1039
|
+
"properties": {
|
|
1040
|
+
"attribute": {
|
|
1041
|
+
"type": "string",
|
|
1042
|
+
"example": "workflows.primary.task_name"
|
|
1043
|
+
},
|
|
1044
|
+
"operation": {
|
|
1045
|
+
"type": "string",
|
|
1046
|
+
"enum": [
|
|
1047
|
+
"not_equals"
|
|
1048
|
+
]
|
|
1049
|
+
},
|
|
1050
|
+
"values": {
|
|
1051
|
+
"type": "array",
|
|
1052
|
+
"minItems": 1,
|
|
974
1053
|
"items": {
|
|
975
1054
|
"example": "Qualification"
|
|
976
1055
|
}
|
|
@@ -1511,5 +1590,9 @@
|
|
|
1511
1590
|
}
|
|
1512
1591
|
}
|
|
1513
1592
|
},
|
|
1514
|
-
"servers": [
|
|
1593
|
+
"servers": [
|
|
1594
|
+
{
|
|
1595
|
+
"url": "https://permissions.sls.epilot.io"
|
|
1596
|
+
}
|
|
1597
|
+
]
|
|
1515
1598
|
}
|
package/dist/bin/epilot.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
API_LIST
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-ONZTQZV4.js";
|
|
5
5
|
|
|
6
6
|
// bin/epilot.ts
|
|
7
7
|
import { runMain } from "citty";
|
|
@@ -11,7 +11,7 @@ import { defineCommand } from "citty";
|
|
|
11
11
|
var main = defineCommand({
|
|
12
12
|
meta: {
|
|
13
13
|
name: "epilot",
|
|
14
|
-
version: "0.1.
|
|
14
|
+
version: "0.1.125",
|
|
15
15
|
description: "CLI for epilot APIs"
|
|
16
16
|
},
|
|
17
17
|
args: {
|
|
@@ -30,8 +30,8 @@ var main = defineCommand({
|
|
|
30
30
|
auth: () => import("../auth-WMXFMPWE.js").then((m) => m.default),
|
|
31
31
|
profile: () => import("../profile-OZJL5ZPT.js").then((m) => m.default),
|
|
32
32
|
config: () => import("../config-DGZIMLZK.js").then((m) => m.default),
|
|
33
|
-
completion: () => import("../completion-
|
|
34
|
-
upgrade: () => import("../upgrade-
|
|
33
|
+
completion: () => import("../completion-XAU4BLMW.js").then((m) => m.default),
|
|
34
|
+
upgrade: () => import("../upgrade-R2QXDOPO.js").then((m) => m.default),
|
|
35
35
|
"access-token": () => import("../access-token-WWE6BDJH.js").then((m) => m.default),
|
|
36
36
|
address: () => import("../address-EH3C4CVB.js").then((m) => m.default),
|
|
37
37
|
"address-suggestions": () => import("../address-suggestions-RRSLOBFW.js").then((m) => m.default),
|
|
@@ -134,13 +134,13 @@ process.stderr.on("error", (err) => {
|
|
|
134
134
|
if (err.code === "EPIPE") process.exit(0);
|
|
135
135
|
throw err;
|
|
136
136
|
});
|
|
137
|
-
var VERSION = true ? "0.1.
|
|
137
|
+
var VERSION = true ? "0.1.125" : (await null).default.version;
|
|
138
138
|
var reorderedArgv = hoistFlagsAfterSubcommand(process.argv.slice(2));
|
|
139
139
|
process.argv = [process.argv[0], process.argv[1], ...reorderedArgv];
|
|
140
140
|
var args = process.argv.slice(2);
|
|
141
141
|
var completionsIdx = args.indexOf("--_completions");
|
|
142
142
|
if (completionsIdx >= 0) {
|
|
143
|
-
const { handleCompletions } = await import("../completion-
|
|
143
|
+
const { handleCompletions } = await import("../completion-XAU4BLMW.js");
|
|
144
144
|
handleCompletions(args[completionsIdx + 1], args[completionsIdx + 2]);
|
|
145
145
|
process.exit(0);
|
|
146
146
|
}
|
|
@@ -1183,7 +1183,7 @@ var API_LIST = [
|
|
|
1183
1183
|
apiName: "permissions",
|
|
1184
1184
|
kebabName: "permissions",
|
|
1185
1185
|
title: "Permissions API",
|
|
1186
|
-
serverUrl: "",
|
|
1186
|
+
serverUrl: "https://permissions.sls.epilot.io",
|
|
1187
1187
|
operationCount: 13,
|
|
1188
1188
|
operationIds: [
|
|
1189
1189
|
"listCurrentRoles",
|
|
@@ -72,7 +72,7 @@ ${GREEN}${BOLD}Upgraded to @epilot/cli@${latest}${RESET}
|
|
|
72
72
|
}
|
|
73
73
|
});
|
|
74
74
|
var getCurrentVersion = () => {
|
|
75
|
-
if (true) return "0.1.
|
|
75
|
+
if (true) return "0.1.125";
|
|
76
76
|
try {
|
|
77
77
|
const output = execSync("npm ls -g @epilot/cli --depth=0 --json 2>/dev/null", {
|
|
78
78
|
encoding: "utf-8",
|