@epilot/kanban-client 1.2.0 → 1.4.0
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/LICENSE +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/definition.js +1 -1
- package/dist/openapi-runtime.json +4 -0
- package/dist/openapi.d.ts +250 -120
- package/dist/openapi.json +654 -78
- package/package.json +4 -7
package/LICENSE
CHANGED
package/dist/client.d.ts
CHANGED
package/dist/definition.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={
|
|
1
|
+
(()=>{"use strict";var e={330(e,r,a){var t=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(r,"__esModule",{value:!0});var n=t(a(466));r.default=n.default},466(e){e.exports=JSON.parse('{"openapi":"3.0.3","info":{"title":"","version":""},"paths":{"/v1/kanban/board":{"post":{"operationId":"createKanbanBoard","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}},"/v1/kanban/boards":{"get":{"operationId":"getKanbanBoards","parameters":[{"name":"filter","in":"query","required":false}],"responses":{}}},"/v1/kanban/board/{boardId}":{"get":{"operationId":"getKanbanBoard","parameters":[{"name":"boardId","in":"path","required":true}],"responses":{}},"put":{"operationId":"updateKanbanBoard","parameters":[{"name":"boardId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}},"patch":{"operationId":"patchKanbanBoard","parameters":[{"name":"boardId","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}},"delete":{"operationId":"deleteKanbanBoard","parameters":[{"name":"boardId","in":"path","required":true}],"responses":{}}},"/v1/kanban/org/default-board":{"put":{"operationId":"setDefaultKanbanBoard","parameters":[{"name":"boardId","in":"query","required":true}],"responses":{}},"delete":{"operationId":"clearDefaultKanbanBoard","responses":{}}},"/v1/kanban/query/flows:autocomplete":{"get":{"operationId":"flowsAutocomplete","parameters":[{"name":"input","in":"query"},{"name":"attribute","in":"query","required":true},{"name":"size","in":"query"},{"name":"from","in":"query"}],"responses":{}}},"/v1/kanban/query/flows:execute":{"post":{"operationId":"executeFlowsQuery","requestBody":{"required":true,"content":{"application/json":{}}},"responses":{}}}},"components":{},"servers":[{"url":"https://kanban.sls.epilot.io"}]}')}},r={},a=function a(t){var n=r[t];if(void 0!==n)return n.exports;var o=r[t]={exports:{}};return e[t].call(o.exports,o,o.exports,a),o.exports}(330),t=exports;for(var n in a)t[n]=a[n];a.__esModule&&Object.defineProperty(t,"__esModule",{value:!0})})();
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"post": {
|
|
10
10
|
"operationId": "createKanbanBoard",
|
|
11
11
|
"requestBody": {
|
|
12
|
+
"required": true,
|
|
12
13
|
"content": {
|
|
13
14
|
"application/json": {}
|
|
14
15
|
}
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
}
|
|
52
53
|
],
|
|
53
54
|
"requestBody": {
|
|
55
|
+
"required": true,
|
|
54
56
|
"content": {
|
|
55
57
|
"application/json": {}
|
|
56
58
|
}
|
|
@@ -67,6 +69,7 @@
|
|
|
67
69
|
}
|
|
68
70
|
],
|
|
69
71
|
"requestBody": {
|
|
72
|
+
"required": true,
|
|
70
73
|
"content": {
|
|
71
74
|
"application/json": {}
|
|
72
75
|
}
|
|
@@ -131,6 +134,7 @@
|
|
|
131
134
|
"post": {
|
|
132
135
|
"operationId": "executeFlowsQuery",
|
|
133
136
|
"requestBody": {
|
|
137
|
+
"required": true,
|
|
134
138
|
"content": {
|
|
135
139
|
"application/json": {}
|
|
136
140
|
}
|