@epilot/kanban-client 0.1.0 → 0.1.1
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/dist/openapi.d.ts +7 -0
- package/dist/openapi.json +18 -3
- package/package.json +3 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare namespace Components {
|
|
|
26
26
|
updated_at?: string; // date-time
|
|
27
27
|
created_by?: string;
|
|
28
28
|
updated_by?: string;
|
|
29
|
+
shared_with?: string[];
|
|
29
30
|
config: {
|
|
30
31
|
/**
|
|
31
32
|
* example:
|
|
@@ -33,6 +34,9 @@ declare namespace Components {
|
|
|
33
34
|
*/
|
|
34
35
|
dataset?: string;
|
|
35
36
|
swimlanes?: Swimlane[];
|
|
37
|
+
card_config?: {
|
|
38
|
+
fields?: string[];
|
|
39
|
+
};
|
|
36
40
|
board_filters?: BoardFilter[];
|
|
37
41
|
sorting?: Sorting;
|
|
38
42
|
};
|
|
@@ -61,6 +65,7 @@ declare namespace Components {
|
|
|
61
65
|
updated_at?: string; // date-time
|
|
62
66
|
created_by?: string;
|
|
63
67
|
updated_by?: string;
|
|
68
|
+
shared_with?: string[];
|
|
64
69
|
}
|
|
65
70
|
export interface Sorting {
|
|
66
71
|
/**
|
|
@@ -185,6 +190,7 @@ declare namespace Paths {
|
|
|
185
190
|
}
|
|
186
191
|
}
|
|
187
192
|
|
|
193
|
+
|
|
188
194
|
export interface OperationMethods {
|
|
189
195
|
/**
|
|
190
196
|
* createKanbanBoard - Create a Kanban board
|
|
@@ -299,6 +305,7 @@ export interface PathsDictionary {
|
|
|
299
305
|
|
|
300
306
|
export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
301
307
|
|
|
308
|
+
|
|
302
309
|
export type Board = Components.Schemas.Board;
|
|
303
310
|
export type BoardFilter = Components.Schemas.BoardFilter;
|
|
304
311
|
export type BoardSummary = Components.Schemas.BoardSummary;
|
package/dist/openapi.json
CHANGED
|
@@ -274,6 +274,12 @@
|
|
|
274
274
|
},
|
|
275
275
|
"updated_by": {
|
|
276
276
|
"type": "string"
|
|
277
|
+
},
|
|
278
|
+
"shared_with": {
|
|
279
|
+
"type": "array",
|
|
280
|
+
"items": {
|
|
281
|
+
"type": "string"
|
|
282
|
+
}
|
|
277
283
|
}
|
|
278
284
|
}
|
|
279
285
|
},
|
|
@@ -298,6 +304,18 @@
|
|
|
298
304
|
"$ref": "#/components/schemas/Swimlane"
|
|
299
305
|
}
|
|
300
306
|
},
|
|
307
|
+
"card_config": {
|
|
308
|
+
"type": "object",
|
|
309
|
+
"properties": {
|
|
310
|
+
"fields": {
|
|
311
|
+
"type": "array",
|
|
312
|
+
"items": {
|
|
313
|
+
"type": "string",
|
|
314
|
+
"example": "assignee"
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
},
|
|
301
319
|
"board_filters": {
|
|
302
320
|
"type": "array",
|
|
303
321
|
"items": {
|
|
@@ -388,9 +406,6 @@
|
|
|
388
406
|
}
|
|
389
407
|
},
|
|
390
408
|
"servers": [
|
|
391
|
-
{
|
|
392
|
-
"url": "https://kanban.sls.epilot.io"
|
|
393
|
-
},
|
|
394
409
|
{
|
|
395
410
|
"url": "https://kanban.sls.epilot.io"
|
|
396
411
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/kanban-client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Client library for epilot Kanban API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"author": "epilot GmbH",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"private": false,
|
|
9
10
|
"repository": {
|
|
10
11
|
"type": "git",
|
|
11
12
|
"url": "git+https://github.com/epilot-dev/sdk-js.git",
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
"copy-webpack-plugin": "^7.0.0",
|
|
64
65
|
"jest": "^26.6.3",
|
|
65
66
|
"json-loader": "^0.5.7",
|
|
66
|
-
"openapicmd": "^2.6.
|
|
67
|
+
"openapicmd": "^2.6.2",
|
|
67
68
|
"ts-jest": "^26.5.0",
|
|
68
69
|
"ts-loader": "^8.0.14",
|
|
69
70
|
"ts-node": "^10.9.1",
|