@epilot/cli 0.1.11 → 0.1.12
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 +16 -19
- package/definitions/automation.json +214 -1
- package/definitions/blueprint-manifest.json +1279 -150
- package/definitions/data-governance.json +1126 -0
- package/definitions/deduplication.json +135 -4
- package/definitions/design.json +103 -57
- package/definitions/email-settings.json +29 -0
- package/definitions/entity.json +88 -6
- package/definitions/erp-integration.json +1819 -187
- package/definitions/integration-toolkit.json +7998 -0
- package/definitions/message.json +202 -0
- package/definitions/sharing.json +956 -0
- package/definitions/template-variables.json +12 -4
- package/definitions/workflow-definition.json +87 -202
- package/definitions/workflow.json +102 -0
- package/dist/{add-component-IW4644NE.js → add-component-AAVQVPKK.js} +68 -13
- package/dist/app-I3XXHZLD.js +24 -0
- package/dist/bin/epilot.js +10 -9
- package/dist/{chunk-POCU2J27.js → chunk-CEP7S7X3.js} +2 -1
- package/dist/{chunk-K2UQOP3Q.js → chunk-F6KWKTQJ.js} +104 -59
- package/dist/{completion-HTO64G2S.js → completion-QP4IYMVI.js} +1 -1
- package/dist/{data-management-KXAPA7ZU.js → data-governance-DJAAIE6F.js} +5 -5
- package/dist/{deploy-UQZAUHAB.js → deploy-4XDFWOEV.js} +1 -1
- package/dist/{export-US5GMHTS.js → export-JA5N4JCJ.js} +1 -1
- package/dist/{init-DGPWBRRB.js → init-5KGNJEWF.js} +1 -1
- package/dist/integration-toolkit-4CLQDSK7.js +54 -0
- package/dist/{remove-component-B2GMICMD.js → remove-component-LXSRR23E.js} +1 -1
- package/dist/{review-QFPON37R.js → review-HFOO3NXE.js} +1 -1
- package/dist/{erp-integration-DXFYJ2F3.js → sharing-X5U53KSU.js} +5 -5
- package/dist/{upgrade-KZSOPDCR.js → upgrade-SYSSIAQC.js} +1 -1
- package/dist/{validate-G7K6AVBI.js → validate-TUMXW56Y.js} +1 -1
- package/dist/{versions-UTPAWTIU.js → versions-ZTWQAGXY.js} +1 -1
- package/package.json +1 -1
- package/definitions/data-management.json +0 -972
- package/dist/app-BKS7M4UQ.js +0 -24
package/definitions/message.json
CHANGED
|
@@ -536,6 +536,11 @@
|
|
|
536
536
|
"type": "number",
|
|
537
537
|
"description": "Total of unassigned messages",
|
|
538
538
|
"example": 1
|
|
539
|
+
},
|
|
540
|
+
"spam": {
|
|
541
|
+
"type": "number",
|
|
542
|
+
"description": "Total of spam messages",
|
|
543
|
+
"example": 3
|
|
539
544
|
}
|
|
540
545
|
}
|
|
541
546
|
}
|
|
@@ -1021,6 +1026,190 @@
|
|
|
1021
1026
|
}
|
|
1022
1027
|
}
|
|
1023
1028
|
},
|
|
1029
|
+
"/v1/message/threads/{id}/spam": {
|
|
1030
|
+
"post": {
|
|
1031
|
+
"operationId": "spamThread",
|
|
1032
|
+
"summary": "spamThread",
|
|
1033
|
+
"description": "Mark a thread as spam",
|
|
1034
|
+
"tags": [
|
|
1035
|
+
"Threads"
|
|
1036
|
+
],
|
|
1037
|
+
"parameters": [
|
|
1038
|
+
{
|
|
1039
|
+
"name": "id",
|
|
1040
|
+
"description": "Thread ID",
|
|
1041
|
+
"in": "path",
|
|
1042
|
+
"required": true,
|
|
1043
|
+
"schema": {
|
|
1044
|
+
"type": "string"
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
],
|
|
1048
|
+
"responses": {
|
|
1049
|
+
"200": {
|
|
1050
|
+
"description": "Success"
|
|
1051
|
+
},
|
|
1052
|
+
"403": {
|
|
1053
|
+
"description": "Forbidden"
|
|
1054
|
+
},
|
|
1055
|
+
"404": {
|
|
1056
|
+
"description": "Not Found"
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"/v1/message/threads/{id}/unspam": {
|
|
1062
|
+
"post": {
|
|
1063
|
+
"operationId": "unspamThread",
|
|
1064
|
+
"summary": "unspamThread",
|
|
1065
|
+
"description": "Remove spam marking from a thread",
|
|
1066
|
+
"tags": [
|
|
1067
|
+
"Threads"
|
|
1068
|
+
],
|
|
1069
|
+
"parameters": [
|
|
1070
|
+
{
|
|
1071
|
+
"name": "id",
|
|
1072
|
+
"description": "Thread ID",
|
|
1073
|
+
"in": "path",
|
|
1074
|
+
"required": true,
|
|
1075
|
+
"schema": {
|
|
1076
|
+
"type": "string"
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
],
|
|
1080
|
+
"responses": {
|
|
1081
|
+
"200": {
|
|
1082
|
+
"description": "Success"
|
|
1083
|
+
},
|
|
1084
|
+
"403": {
|
|
1085
|
+
"description": "Forbidden"
|
|
1086
|
+
},
|
|
1087
|
+
"404": {
|
|
1088
|
+
"description": "Not Found"
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"/v1/message/messages/{id}/spam": {
|
|
1094
|
+
"post": {
|
|
1095
|
+
"operationId": "spamMessage",
|
|
1096
|
+
"summary": "spamMessage",
|
|
1097
|
+
"description": "Mark a single message as spam. Also marks the parent thread as spam if all messages in the thread are spam.",
|
|
1098
|
+
"tags": [
|
|
1099
|
+
"Messages"
|
|
1100
|
+
],
|
|
1101
|
+
"parameters": [
|
|
1102
|
+
{
|
|
1103
|
+
"name": "id",
|
|
1104
|
+
"description": "Message ID",
|
|
1105
|
+
"in": "path",
|
|
1106
|
+
"required": true,
|
|
1107
|
+
"schema": {
|
|
1108
|
+
"type": "string"
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
"responses": {
|
|
1113
|
+
"204": {
|
|
1114
|
+
"description": "Success"
|
|
1115
|
+
},
|
|
1116
|
+
"403": {
|
|
1117
|
+
"description": "Forbidden"
|
|
1118
|
+
},
|
|
1119
|
+
"404": {
|
|
1120
|
+
"description": "Not Found"
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1125
|
+
"/v1/message/messages/{id}/unspam": {
|
|
1126
|
+
"post": {
|
|
1127
|
+
"operationId": "unspamMessage",
|
|
1128
|
+
"summary": "unspamMessage",
|
|
1129
|
+
"description": "Remove spam marking from a single message. Also removes spam from the parent thread if no other messages are spam.",
|
|
1130
|
+
"tags": [
|
|
1131
|
+
"Messages"
|
|
1132
|
+
],
|
|
1133
|
+
"parameters": [
|
|
1134
|
+
{
|
|
1135
|
+
"name": "id",
|
|
1136
|
+
"description": "Message ID",
|
|
1137
|
+
"in": "path",
|
|
1138
|
+
"required": true,
|
|
1139
|
+
"schema": {
|
|
1140
|
+
"type": "string"
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"responses": {
|
|
1145
|
+
"204": {
|
|
1146
|
+
"description": "Success"
|
|
1147
|
+
},
|
|
1148
|
+
"403": {
|
|
1149
|
+
"description": "Forbidden"
|
|
1150
|
+
},
|
|
1151
|
+
"404": {
|
|
1152
|
+
"description": "Not Found"
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
"/v1/message/threads/bulk:move": {
|
|
1158
|
+
"post": {
|
|
1159
|
+
"operationId": "bulkMoveThreads",
|
|
1160
|
+
"summary": "bulkMoveThreads",
|
|
1161
|
+
"description": "Move many threads to a different inbox",
|
|
1162
|
+
"tags": [
|
|
1163
|
+
"Threads"
|
|
1164
|
+
],
|
|
1165
|
+
"requestBody": {
|
|
1166
|
+
"required": true,
|
|
1167
|
+
"content": {
|
|
1168
|
+
"application/json": {
|
|
1169
|
+
"schema": {
|
|
1170
|
+
"$ref": "#/components/schemas/BulkActionsPayloadWithScopes"
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
"responses": {
|
|
1176
|
+
"200": {
|
|
1177
|
+
"description": "Success"
|
|
1178
|
+
},
|
|
1179
|
+
"403": {
|
|
1180
|
+
"description": "Forbidden"
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"/v1/message/threads/bulk:assign": {
|
|
1186
|
+
"post": {
|
|
1187
|
+
"operationId": "bulkAssignThreads",
|
|
1188
|
+
"summary": "bulkAssignThreads",
|
|
1189
|
+
"description": "Assign many threads",
|
|
1190
|
+
"tags": [
|
|
1191
|
+
"Threads"
|
|
1192
|
+
],
|
|
1193
|
+
"requestBody": {
|
|
1194
|
+
"required": true,
|
|
1195
|
+
"content": {
|
|
1196
|
+
"application/json": {
|
|
1197
|
+
"schema": {
|
|
1198
|
+
"$ref": "#/components/schemas/BulkActionsPayloadWithScopes"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
"responses": {
|
|
1204
|
+
"200": {
|
|
1205
|
+
"description": "Success"
|
|
1206
|
+
},
|
|
1207
|
+
"403": {
|
|
1208
|
+
"description": "Forbidden"
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1024
1213
|
"/v1/message/threads/bulk:read": {
|
|
1025
1214
|
"post": {
|
|
1026
1215
|
"operationId": "threadBulkActionsRead",
|
|
@@ -2598,6 +2787,19 @@
|
|
|
2598
2787
|
{
|
|
2599
2788
|
"type": "object",
|
|
2600
2789
|
"properties": {
|
|
2790
|
+
"assign_to": {
|
|
2791
|
+
"description": "Assignable IDs to assign the threads to",
|
|
2792
|
+
"type": "array",
|
|
2793
|
+
"items": {
|
|
2794
|
+
"type": "string",
|
|
2795
|
+
"example": "206801"
|
|
2796
|
+
}
|
|
2797
|
+
},
|
|
2798
|
+
"inbox_id": {
|
|
2799
|
+
"description": "Inbox ID to move the threads to",
|
|
2800
|
+
"type": "string",
|
|
2801
|
+
"example": "3f34ce73-089c-4d45-a5ee-c161234e41c3"
|
|
2802
|
+
},
|
|
2601
2803
|
"scopes": {
|
|
2602
2804
|
"description": "The scopes to be used when marking an item as read or unread. The read status will be synced for all provided scopes.",
|
|
2603
2805
|
"example": [
|