edge-impulse-api 1.61.21 → 1.61.23
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/build/library/sdk/api/projectsApi.d.ts +1 -1
- package/build/library/sdk/api/projectsApi.js +1 -1
- package/build/library/sdk/model/adminApiProject.d.ts +2 -0
- package/build/library/sdk/model/adminApiProject.js +5 -0
- package/build/library/sdk/model/adminApiProject.js.map +1 -1
- package/package.json +1 -3
|
@@ -474,7 +474,7 @@ export declare class ProjectsApi {
|
|
|
474
474
|
* @summary List public projects
|
|
475
475
|
* @param limit Maximum number of results
|
|
476
476
|
* @param offset Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
|
|
477
|
-
* @param project Only include projects
|
|
477
|
+
* @param project Only include projects where the name or owner contains this string
|
|
478
478
|
* @param projectTypes Comma separated list of project types to filter on. Supported values are \'audio\', \'object-detection\', \'image\', \'accelerometer\', \'other\'.
|
|
479
479
|
* @param sort Fields and order to sort query by
|
|
480
480
|
*/
|
|
@@ -2616,7 +2616,7 @@ class ProjectsApi {
|
|
|
2616
2616
|
* @summary List public projects
|
|
2617
2617
|
* @param limit Maximum number of results
|
|
2618
2618
|
* @param offset Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
|
|
2619
|
-
* @param project Only include projects
|
|
2619
|
+
* @param project Only include projects where the name or owner contains this string
|
|
2620
2620
|
* @param projectTypes Comma separated list of project types to filter on. Supported values are \'audio\', \'object-detection\', \'image\', \'accelerometer\', \'other\'.
|
|
2621
2621
|
* @param sort Fields and order to sort query by
|
|
2622
2622
|
*/
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { ProjectTierEnum } from './projectTierEnum';
|
|
13
|
+
import { ProjectType } from './projectType';
|
|
13
14
|
export declare class AdminApiProject {
|
|
14
15
|
'id': number;
|
|
15
16
|
'name': string;
|
|
@@ -27,6 +28,7 @@ export declare class AdminApiProject {
|
|
|
27
28
|
*/
|
|
28
29
|
'whitelabelId'?: number | null;
|
|
29
30
|
'tier'?: ProjectTierEnum;
|
|
31
|
+
'category'?: ProjectType;
|
|
30
32
|
static discriminator: string | undefined;
|
|
31
33
|
static attributeTypeMap: Array<{
|
|
32
34
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adminApiProject.js","sourceRoot":"","sources":["../../../../library/sdk/model/adminApiProject.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"adminApiProject.js","sourceRoot":"","sources":["../../../../library/sdk/model/adminApiProject.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAKH,MAAa,eAAe;IA8ExB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AAhFL,0CAiFC;AA9DU,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,IAAI;QACZ,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,qBAAqB;QAC7B,UAAU,EAAE,qBAAqB;QACjC,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,iBAAiB;KAC5B;IACD;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,aAAa;KACxB;CAAK,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edge-impulse-api",
|
|
3
|
-
"version": "1.61.
|
|
3
|
+
"version": "1.61.23",
|
|
4
4
|
"description": "Node.js bindings for the Edge Impulse API",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "./node_modules/.bin/tsc -p .",
|
|
@@ -28,8 +28,6 @@
|
|
|
28
28
|
"request": "2.88.0",
|
|
29
29
|
"request-promise": "4.2.4",
|
|
30
30
|
"socket.io": "2.5.1",
|
|
31
|
-
"tsee": "1.3.4",
|
|
32
|
-
"typed-emitter": "1.3.1",
|
|
33
31
|
"ws": "7.5.10"
|
|
34
32
|
},
|
|
35
33
|
"devDependencies": {
|