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.
- package/build/library/sdk/api/projectsApi.d.ts +1 -1
- package/build/library/sdk/api/projectsApi.js +1 -1
- package/build/library/sdk/api/rawDataApi.d.ts +2 -0
- package/build/library/sdk/api/rawDataApi.js +4 -0
- package/build/library/sdk/api/rawDataApi.js.map +1 -1
- package/build/library/sdk/model/createProjectRequest.d.ts +2 -0
- package/build/library/sdk/model/createProjectRequest.js +5 -0
- package/build/library/sdk/model/createProjectRequest.js.map +1 -1
- package/build/library/sdk/model/models.d.ts +1 -0
- package/build/library/sdk/model/models.js +2 -0
- package/build/library/sdk/model/models.js.map +1 -1
- package/build/library/sdk/model/projectInfoResponseAllOfShowGettingStartedWizard.d.ts +6 -0
- package/build/library/sdk/model/projectInfoResponseAllOfShowGettingStartedWizard.js +10 -0
- package/build/library/sdk/model/projectInfoResponseAllOfShowGettingStartedWizard.js.map +1 -1
- package/build/library/sdk/model/projectInfoSummaryResponse.d.ts +2 -0
- package/build/library/sdk/model/projectInfoSummaryResponse.js +10 -0
- package/build/library/sdk/model/projectInfoSummaryResponse.js.map +1 -1
- package/build/library/sdk/model/projectInfoSummaryResponseAllOf.d.ts +2 -0
- package/build/library/sdk/model/projectInfoSummaryResponseAllOf.js +10 -0
- package/build/library/sdk/model/projectInfoSummaryResponseAllOf.js.map +1 -1
- package/build/library/sdk/model/startSamplingRequest.d.ts +12 -0
- package/build/library/sdk/model/startSamplingRequest.js +15 -0
- package/build/library/sdk/model/startSamplingRequest.js.map +1 -1
- package/build/library/sdk/model/tutorialType.d.ts +16 -0
- package/build/library/sdk/model/tutorialType.js +16 -0
- package/build/library/sdk/model/tutorialType.js.map +1 -0
- package/build/library/sdk/model/updateOrganizationCreateEmptyProjectRequest.d.ts +2 -0
- package/build/library/sdk/model/updateOrganizationCreateEmptyProjectRequest.js +5 -0
- package/build/library/sdk/model/updateOrganizationCreateEmptyProjectRequest.js.map +1 -1
- package/build/library/sdk/model/updateProjectRequest.d.ts +6 -0
- package/build/library/sdk/model/updateProjectRequest.js +10 -0
- package/build/library/sdk/model/updateProjectRequest.js.map +1 -1
- 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, \"id-desc\" is used.
|
|
943
945
|
* @param dataType Include only samples with a particular data type
|
|
944
946
|
* @param minId Include only samples with an ID >= this value
|
|
945
947
|
* @param maxId Include only samples with an ID < 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, \"id-desc\" is used.
|
|
3962
3963
|
* @param dataType Include only samples with a particular data type
|
|
3963
3964
|
* @param minId Include only samples with an ID >= this value
|
|
3964
3965
|
* @param maxId Include only samples with an ID < 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
|
}
|