edge-impulse-api 1.71.30 → 1.71.32

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.
Files changed (33) hide show
  1. package/build/library/sdk/api/projectsApi.d.ts +1 -1
  2. package/build/library/sdk/api/projectsApi.js +1 -1
  3. package/build/library/sdk/api/rawDataApi.d.ts +2 -0
  4. package/build/library/sdk/api/rawDataApi.js +4 -0
  5. package/build/library/sdk/api/rawDataApi.js.map +1 -1
  6. package/build/library/sdk/model/createProjectRequest.d.ts +2 -0
  7. package/build/library/sdk/model/createProjectRequest.js +5 -0
  8. package/build/library/sdk/model/createProjectRequest.js.map +1 -1
  9. package/build/library/sdk/model/models.d.ts +1 -0
  10. package/build/library/sdk/model/models.js +2 -0
  11. package/build/library/sdk/model/models.js.map +1 -1
  12. package/build/library/sdk/model/projectInfoResponseAllOfShowGettingStartedWizard.d.ts +6 -0
  13. package/build/library/sdk/model/projectInfoResponseAllOfShowGettingStartedWizard.js +10 -0
  14. package/build/library/sdk/model/projectInfoResponseAllOfShowGettingStartedWizard.js.map +1 -1
  15. package/build/library/sdk/model/projectInfoSummaryResponse.d.ts +2 -0
  16. package/build/library/sdk/model/projectInfoSummaryResponse.js +10 -0
  17. package/build/library/sdk/model/projectInfoSummaryResponse.js.map +1 -1
  18. package/build/library/sdk/model/projectInfoSummaryResponseAllOf.d.ts +2 -0
  19. package/build/library/sdk/model/projectInfoSummaryResponseAllOf.js +10 -0
  20. package/build/library/sdk/model/projectInfoSummaryResponseAllOf.js.map +1 -1
  21. package/build/library/sdk/model/startSamplingRequest.d.ts +12 -0
  22. package/build/library/sdk/model/startSamplingRequest.js +15 -0
  23. package/build/library/sdk/model/startSamplingRequest.js.map +1 -1
  24. package/build/library/sdk/model/tutorialType.d.ts +16 -0
  25. package/build/library/sdk/model/tutorialType.js +16 -0
  26. package/build/library/sdk/model/tutorialType.js.map +1 -0
  27. package/build/library/sdk/model/updateOrganizationCreateEmptyProjectRequest.d.ts +2 -0
  28. package/build/library/sdk/model/updateOrganizationCreateEmptyProjectRequest.js +5 -0
  29. package/build/library/sdk/model/updateOrganizationCreateEmptyProjectRequest.js.map +1 -1
  30. package/build/library/sdk/model/updateProjectRequest.d.ts +6 -0
  31. package/build/library/sdk/model/updateProjectRequest.js +10 -0
  32. package/build/library/sdk/model/updateProjectRequest.js.map +1 -1
  33. package/package.json +1 -1
@@ -335,7 +335,7 @@ export declare class ProjectsApi {
335
335
  };
336
336
  }): Promise<LastModificationDateResponse>;
337
337
  /**
338
- * Get the interval of the training data; if multiple intervals are present, the interval of the longest data item is returned.
338
+ * Get the interval of the training data; if multiple intervals are present, the interval of the longest data item is returned. This only takes data in your _training_ set into account.
339
339
  * @summary Get the interval (in ms) of the training data
340
340
  * @param projectId Project ID
341
341
  */
@@ -1622,7 +1622,7 @@ class ProjectsApi {
1622
1622
  });
1623
1623
  }
1624
1624
  /**
1625
- * Get the interval of the training data; if multiple intervals are present, the interval of the longest data item is returned.
1625
+ * Get the interval of the training data; if multiple intervals are present, the interval of the longest data item is returned. This only takes data in your _training_ set into account.
1626
1626
  * @summary Get the interval (in ms) of the training data
1627
1627
  * @param projectId Project ID
1628
1628
  */
@@ -286,6 +286,7 @@ type listSamplesQueryParams = {
286
286
  search?: string;
287
287
  proposedActionsJobId?: number;
288
288
  truncateStructuredLabels?: boolean;
289
+ sortBy?: 'id-desc' | 'random';
289
290
  dataType?: 'audio' | 'image';
290
291
  minId?: number;
291
292
  maxId?: number;
@@ -940,6 +941,7 @@ export declare class RawDataApi {
940
941
  * @param search Search query
941
942
  * @param proposedActionsJobId Pass this parameter when querying samples from inside an AI Action job. If you pass this parameter in a multi-stage AI Action, previous proposed changes (from an earlier step) will be applied to the returned dataset.
942
943
  * @param truncateStructuredLabels If true, only a slice of labels will be returned for samples with multiple labels.
944
+ * @param sortBy If not specified, \&quot;id-desc\&quot; is used.
943
945
  * @param dataType Include only samples with a particular data type
944
946
  * @param minId Include only samples with an ID &gt;&#x3D; this value
945
947
  * @param maxId Include only samples with an ID &lt; this value
@@ -3959,6 +3959,7 @@ class RawDataApi {
3959
3959
  * @param search Search query
3960
3960
  * @param proposedActionsJobId Pass this parameter when querying samples from inside an AI Action job. If you pass this parameter in a multi-stage AI Action, previous proposed changes (from an earlier step) will be applied to the returned dataset.
3961
3961
  * @param truncateStructuredLabels If true, only a slice of labels will be returned for samples with multiple labels.
3962
+ * @param sortBy If not specified, \&quot;id-desc\&quot; is used.
3962
3963
  * @param dataType Include only samples with a particular data type
3963
3964
  * @param minId Include only samples with an ID &gt;&#x3D; this value
3964
3965
  * @param maxId Include only samples with an ID &lt; this value
@@ -4038,6 +4039,9 @@ class RawDataApi {
4038
4039
  if ((queryParams === null || queryParams === void 0 ? void 0 : queryParams.truncateStructuredLabels) !== undefined) {
4039
4040
  localVarQueryParameters['truncateStructuredLabels'] = models_1.ObjectSerializer.serialize(queryParams.truncateStructuredLabels, "boolean");
4040
4041
  }
4042
+ if ((queryParams === null || queryParams === void 0 ? void 0 : queryParams.sortBy) !== undefined) {
4043
+ localVarQueryParameters['sortBy'] = models_1.ObjectSerializer.serialize(queryParams.sortBy, "'id-desc' | 'random'");
4044
+ }
4041
4045
  if ((queryParams === null || queryParams === void 0 ? void 0 : queryParams.dataType) !== undefined) {
4042
4046
  localVarQueryParameters['dataType'] = models_1.ObjectSerializer.serialize(queryParams.dataType, "'audio' | 'image'");
4043
4047
  }