edge-impulse-api 1.93.27 → 1.93.29

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.
@@ -40,9 +40,48 @@ export type ProjectInfoResponse = {
40
40
  dataSummary: ProjectDataSummary;
41
41
  dataSummaryPerCategory: {
42
42
  training: ProjectDataSummary;
43
- testing: ProjectDataSummary;
44
- validation: ProjectDataSummary;
45
- postProcessing: ProjectDataSummary;
43
+ testing: ProjectDataSummary & {
44
+ /**
45
+ * Total length (in ms.) of all data in the testing set
46
+ */
47
+ totalLengthMs: number;
48
+ /**
49
+ * Labels in the testing set
50
+ */
51
+ labels: string[];
52
+ /**
53
+ * Number of files in the testing set
54
+ */
55
+ dataCount: number;
56
+ };
57
+ validation: ProjectDataSummary & {
58
+ /**
59
+ * Total length (in ms.) of all data in the validation set
60
+ */
61
+ totalLengthMs: number;
62
+ /**
63
+ * Labels in the validation set
64
+ */
65
+ labels: string[];
66
+ /**
67
+ * Number of files in the validation set
68
+ */
69
+ dataCount: number;
70
+ };
71
+ postProcessing: ProjectDataSummary & {
72
+ /**
73
+ * Total length (in ms.) of all data in the post-processing set
74
+ */
75
+ totalLengthMs: number;
76
+ /**
77
+ * Labels in the post-processing set
78
+ */
79
+ labels: string[];
80
+ /**
81
+ * Number of files in the post-processing set
82
+ */
83
+ dataCount: number;
84
+ };
46
85
  };
47
86
  computeTime: {
48
87
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"projectInfoResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/projectInfoResponse.ts"],"names":[],"mappings":";AAAA,yDAAyD;;;AA0O5C,QAAA,6DAA6D,GAAa,CAAE,MAAM,EAAE,MAAM,CAAE,CAAC;AAG7F,QAAA,sDAAsD,GAAa,CAAE,eAAe,EAAE,YAAY,EAAE,QAAQ,EAAE,YAAY,EAAE,eAAe,EAAE,QAAQ,EAAE,SAAS,CAAE,CAAC"}
1
+ {"version":3,"file":"projectInfoResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/projectInfoResponse.ts"],"names":[],"mappings":";AAAA,yDAAyD;;;AAiR5C,QAAA,6DAA6D,GAAa,CAAE,MAAM,EAAE,MAAM,CAAE,CAAC;AAG7F,QAAA,sDAAsD,GAAa,CAAE,eAAe,EAAE,YAAY,EAAE,QAAQ,EAAE,YAAY,EAAE,eAAe,EAAE,QAAQ,EAAE,SAAS,CAAE,CAAC"}
@@ -23,6 +23,10 @@ export type TransferLearningModel = {
23
23
  * URL to the source code of this custom learn block.
24
24
  */
25
25
  repositoryUrl?: string;
26
+ /**
27
+ * Unique stable string key used to create and find this custom block.
28
+ */
29
+ customBlockRef?: string;
26
30
  author: string;
27
31
  blockType: BlockType;
28
32
  customParameters?: DSPGroupItem[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edge-impulse-api",
3
- "version": "1.93.27",
3
+ "version": "1.93.29",
4
4
  "description": "Node.js bindings for the Edge Impulse API",
5
5
  "scripts": {
6
6
  "build": "npm run build:node && node bundler/build-browser-bundle.js",