edge-impulse-api 1.93.8 → 1.93.10
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/browser/edge-impulse-api.d.ts +151 -91
- package/build/browser/edge-impulse-api.js +214 -258
- package/build/browser/edge-impulse-api.js.map +1 -1
- package/build/library/sdk/api/datasetVersionsApi.d.ts +12 -50
- package/build/library/sdk/api/datasetVersionsApi.js +19 -231
- package/build/library/sdk/api/datasetVersionsApi.js.map +1 -1
- package/build/library/sdk/api/organizationCreateProjectApi.d.ts +25 -0
- package/build/library/sdk/api/organizationCreateProjectApi.js +136 -0
- package/build/library/sdk/api/organizationCreateProjectApi.js.map +1 -1
- package/build/library/sdk/api/rawDataApi.d.ts +3 -1
- package/build/library/sdk/api/rawDataApi.js +5 -1
- package/build/library/sdk/api/rawDataApi.js.map +1 -1
- package/build/library/sdk/model/createCustomBlockUploadLinkRequest.d.ts +18 -0
- package/build/library/sdk/model/createCustomBlockUploadLinkRequest.js +6 -0
- package/build/library/sdk/model/createCustomBlockUploadLinkRequest.js.map +1 -0
- package/build/library/sdk/model/createCustomBlockUploadLinkResponse.d.ts +22 -0
- package/build/library/sdk/model/{listDatasetVersionChangesResponse.js → createCustomBlockUploadLinkResponse.js} +1 -1
- package/build/library/sdk/model/createCustomBlockUploadLinkResponse.js.map +1 -0
- package/build/library/sdk/model/datasetVersionRawDataChangeDetailItem.d.ts +6 -0
- package/build/library/sdk/model/{getDatasetVersionRawDataSampleResponse.js → datasetVersionRawDataChangeDetailItem.js} +1 -1
- package/build/library/sdk/model/datasetVersionRawDataChangeDetailItem.js.map +1 -0
- package/build/library/sdk/model/datasetVersionRawDataChangeDetails.d.ts +5 -0
- package/build/library/sdk/model/{getDatasetVersionRawDataResponse.js → datasetVersionRawDataChangeDetails.js} +1 -1
- package/build/library/sdk/model/datasetVersionRawDataChangeDetails.js.map +1 -0
- package/build/library/sdk/model/finalizeCustomBlockUploadRequest.d.ts +22 -0
- package/build/library/sdk/model/finalizeCustomBlockUploadRequest.js +6 -0
- package/build/library/sdk/model/finalizeCustomBlockUploadRequest.js.map +1 -0
- package/build/library/sdk/model/getDatasetVersionRawDataChangesResponse.d.ts +13 -0
- package/build/library/sdk/model/{getDatasetVersionSampleChangeDetailsResponse.js → getDatasetVersionRawDataChangesResponse.js} +1 -1
- package/build/library/sdk/model/getDatasetVersionRawDataChangesResponse.js.map +1 -0
- package/build/library/sdk/model/lastUpdatedByDatasetVersionRestore.d.ts +2 -2
- package/build/library/sdk/model/models.d.ts +7 -4
- package/build/library/sdk/model/models.js +7 -4
- package/build/library/sdk/model/models.js.map +1 -1
- package/build/library/sdk/model/projectDatasetMetadataBase.d.ts +5 -0
- package/build/library/sdk/model/projectDatasetMetadataBase.js.map +1 -1
- package/build/library/sdk/model/projectDatasetMetadataBaseChangeActionCounts.d.ts +17 -0
- package/build/library/sdk/model/projectDatasetMetadataBaseChangeActionCounts.js +4 -0
- package/build/library/sdk/model/projectDatasetMetadataBaseChangeActionCounts.js.map +1 -0
- package/build/library/sdk/model/projectDatasetMetadataClassesCategory.d.ts +5 -0
- package/build/library/sdk/model/projectDatasetMetadataClassesCategory.js.map +1 -1
- package/build/library/sdk/model/projectDatasetMetadataRegressionCategory.d.ts +5 -0
- package/build/library/sdk/model/projectDatasetMetadataRegressionCategory.js.map +1 -1
- package/package.json +1 -1
- package/build/library/sdk/model/getDatasetVersionRawDataResponse.d.ts +0 -13
- package/build/library/sdk/model/getDatasetVersionRawDataResponse.js.map +0 -1
- package/build/library/sdk/model/getDatasetVersionRawDataSampleResponse.d.ts +0 -12
- package/build/library/sdk/model/getDatasetVersionRawDataSampleResponse.js.map +0 -1
- package/build/library/sdk/model/getDatasetVersionSampleChangeDetailsResponse.d.ts +0 -12
- package/build/library/sdk/model/getDatasetVersionSampleChangeDetailsResponse.js.map +0 -1
- package/build/library/sdk/model/listDatasetVersionChangesResponse.d.ts +0 -13
- package/build/library/sdk/model/listDatasetVersionChangesResponse.js.map +0 -1
|
@@ -10880,8 +10880,8 @@ class DatasetVersionsApi {
|
|
|
10880
10880
|
return this.handleResponse(response, 'GetDatasetVersionResponse');
|
|
10881
10881
|
}
|
|
10882
10882
|
/**
|
|
10883
|
-
* Get
|
|
10884
|
-
* @summary Get dataset version raw-data
|
|
10883
|
+
* Get raw data samples from a specific dataset snapshot for this project, including per-sample change metadata when available.
|
|
10884
|
+
* @summary Get dataset version raw-data samples with changes
|
|
10885
10885
|
* @param projectId Project ID
|
|
10886
10886
|
* @param datasetVersionId Dataset version ID
|
|
10887
10887
|
* @param category Which of the three acquisition categories to retrieve data from
|
|
@@ -10907,9 +10907,10 @@ class DatasetVersionsApi {
|
|
|
10907
10907
|
* @param metadata Filter samples by metadata key-value pairs, provided as a JSON string. Each item in the filter list is an object with the following properties: - \"key\": Metadata key to filter on. - \"op\": Operator (\"eq\" for positive match, \"neq\" for negative match). - \"values\": (optional) Array of values to match/exclude. If omitted or empty, matches/excludes all values for the key. In addition to filter objects, the following option objects can be specified: - { \"no_metadata\": boolean } - If true, include samples without any metadata - { \"filters_combinator\": (\"and\" | \"or\") } - Specifies the combinator and matching mode: - \"and\": All filter items must match (logical AND). - \"or\": Any filter item may match (logical OR); samples with metadata keys not present in the filters are included.
|
|
10908
10908
|
* @param minDate Only include samples that where added after the date given
|
|
10909
10909
|
* @param maxDate Only include samples that were added before the date given
|
|
10910
|
+
* @param changeActions Only include changes with an action within the given list of actions, given as a JSON string
|
|
10910
10911
|
*/
|
|
10911
|
-
async
|
|
10912
|
-
const localVarPath = this.basePath + '/api/{projectId}/dataset-versions/{datasetVersionId}/raw-data'
|
|
10912
|
+
async getDatasetVersionRawDataChanges(projectId, datasetVersionId, queryParams, options = { headers: {} }) {
|
|
10913
|
+
const localVarPath = this.basePath + '/api/{projectId}/dataset-versions/{datasetVersionId}/raw-data-changes'
|
|
10913
10914
|
.replace('{' + 'projectId' + '}', encodeURIComponent(String(projectId)))
|
|
10914
10915
|
.replace('{' + 'datasetVersionId' + '}', encodeURIComponent(String(datasetVersionId)));
|
|
10915
10916
|
let queryParameters = {};
|
|
@@ -10929,15 +10930,15 @@ class DatasetVersionsApi {
|
|
|
10929
10930
|
let localVarFormParams;
|
|
10930
10931
|
// verify required parameter 'projectId' is not null or undefined
|
|
10931
10932
|
if (projectId === null || projectId === undefined) {
|
|
10932
|
-
throw new Error('Required parameter projectId was null or undefined when calling
|
|
10933
|
+
throw new Error('Required parameter projectId was null or undefined when calling getDatasetVersionRawDataChanges.');
|
|
10933
10934
|
}
|
|
10934
10935
|
// verify required parameter 'datasetVersionId' is not null or undefined
|
|
10935
10936
|
if (datasetVersionId === null || datasetVersionId === undefined) {
|
|
10936
|
-
throw new Error('Required parameter datasetVersionId was null or undefined when calling
|
|
10937
|
+
throw new Error('Required parameter datasetVersionId was null or undefined when calling getDatasetVersionRawDataChanges.');
|
|
10937
10938
|
}
|
|
10938
10939
|
// verify required parameter 'category' is not null or undefined
|
|
10939
10940
|
if (queryParams.category === null || queryParams.category === undefined) {
|
|
10940
|
-
throw new Error('Required parameter queryParams.category was null or undefined when calling
|
|
10941
|
+
throw new Error('Required parameter queryParams.category was null or undefined when calling getDatasetVersionRawDataChanges.');
|
|
10941
10942
|
}
|
|
10942
10943
|
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.category) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.category) !== null) {
|
|
10943
10944
|
queryParameters['category'] = queryParams.category;
|
|
@@ -11008,153 +11009,8 @@ class DatasetVersionsApi {
|
|
|
11008
11009
|
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.maxDate) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.maxDate) !== null) {
|
|
11009
11010
|
queryParameters['maxDate'] = queryParams.maxDate.toISOString();
|
|
11010
11011
|
}
|
|
11011
|
-
|
|
11012
|
-
|
|
11013
|
-
...options.headers,
|
|
11014
|
-
...this.opts.extraHeaders,
|
|
11015
|
-
};
|
|
11016
|
-
const queryString = Object.entries(queryParameters)
|
|
11017
|
-
.filter(([, value]) => value !== undefined)
|
|
11018
|
-
.map(([key, value]) => `${key}=${encodeURIComponent(String(value))}`)
|
|
11019
|
-
.join('&');
|
|
11020
|
-
let localVarUrl = localVarPath + (queryString ? `?${queryString}` : '');
|
|
11021
|
-
let localVarRequestOptions = {
|
|
11022
|
-
method: 'GET',
|
|
11023
|
-
headers: { ...localVarHeaderParams },
|
|
11024
|
-
};
|
|
11025
|
-
let requestOptions = localVarRequestOptions;
|
|
11026
|
-
let url = localVarUrl;
|
|
11027
|
-
const auth_ApiKeyAuthentication = await this.authentications.ApiKeyAuthentication.applyToRequest(requestOptions, url);
|
|
11028
|
-
requestOptions = auth_ApiKeyAuthentication.requestOptions;
|
|
11029
|
-
url = auth_ApiKeyAuthentication.url;
|
|
11030
|
-
const auth_JWTAuthentication = await this.authentications.JWTAuthentication.applyToRequest(requestOptions, url);
|
|
11031
|
-
requestOptions = auth_JWTAuthentication.requestOptions;
|
|
11032
|
-
url = auth_JWTAuthentication.url;
|
|
11033
|
-
const auth_JWTHttpHeaderAuthentication = await this.authentications.JWTHttpHeaderAuthentication.applyToRequest(requestOptions, url);
|
|
11034
|
-
requestOptions = auth_JWTHttpHeaderAuthentication.requestOptions;
|
|
11035
|
-
url = auth_JWTHttpHeaderAuthentication.url;
|
|
11036
|
-
const auth_OAuth2 = await this.authentications.OAuth2.applyToRequest(requestOptions, url);
|
|
11037
|
-
requestOptions = auth_OAuth2.requestOptions;
|
|
11038
|
-
url = auth_OAuth2.url;
|
|
11039
|
-
const authDefault = await this.authentications.default.applyToRequest(requestOptions, url);
|
|
11040
|
-
requestOptions = authDefault.requestOptions;
|
|
11041
|
-
url = authDefault.url;
|
|
11042
|
-
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
11043
|
-
const response = await fetch(url, requestOptions);
|
|
11044
|
-
return this.handleResponse(response, 'GetDatasetVersionRawDataResponse');
|
|
11045
|
-
}
|
|
11046
|
-
/**
|
|
11047
|
-
* Get a raw sample from a specific dataset version.
|
|
11048
|
-
* @summary Get dataset version raw sample
|
|
11049
|
-
* @param projectId Project ID
|
|
11050
|
-
* @param datasetVersionId Dataset version ID
|
|
11051
|
-
* @param sampleId Sample ID
|
|
11052
|
-
*/
|
|
11053
|
-
async getDatasetVersionRawSample(projectId, datasetVersionId, sampleId, options = { headers: {} }) {
|
|
11054
|
-
const localVarPath = this.basePath + '/api/{projectId}/dataset-versions/{datasetVersionId}/raw-data/{sampleId}'
|
|
11055
|
-
.replace('{' + 'projectId' + '}', encodeURIComponent(String(projectId)))
|
|
11056
|
-
.replace('{' + 'datasetVersionId' + '}', encodeURIComponent(String(datasetVersionId)))
|
|
11057
|
-
.replace('{' + 'sampleId' + '}', encodeURIComponent(String(sampleId)));
|
|
11058
|
-
let queryParameters = {};
|
|
11059
|
-
let localVarHeaderParams = {
|
|
11060
|
-
...(typeof window === "undefined" ? { "User-Agent": "edgeimpulse-api nodejs" } : {}),
|
|
11061
|
-
'Content-Type': 'application/json',
|
|
11062
|
-
...this.defaultHeaders,
|
|
11063
|
-
};
|
|
11064
|
-
const produces = ['application/json'];
|
|
11065
|
-
// give precedence to 'application/json'
|
|
11066
|
-
if (produces.indexOf('application/json') >= 0) {
|
|
11067
|
-
localVarHeaderParams.Accept = 'application/json';
|
|
11068
|
-
}
|
|
11069
|
-
else {
|
|
11070
|
-
localVarHeaderParams.Accept = produces.join(',');
|
|
11071
|
-
}
|
|
11072
|
-
let localVarFormParams;
|
|
11073
|
-
// verify required parameter 'projectId' is not null or undefined
|
|
11074
|
-
if (projectId === null || projectId === undefined) {
|
|
11075
|
-
throw new Error('Required parameter projectId was null or undefined when calling getDatasetVersionRawSample.');
|
|
11076
|
-
}
|
|
11077
|
-
// verify required parameter 'datasetVersionId' is not null or undefined
|
|
11078
|
-
if (datasetVersionId === null || datasetVersionId === undefined) {
|
|
11079
|
-
throw new Error('Required parameter datasetVersionId was null or undefined when calling getDatasetVersionRawSample.');
|
|
11080
|
-
}
|
|
11081
|
-
// verify required parameter 'sampleId' is not null or undefined
|
|
11082
|
-
if (sampleId === null || sampleId === undefined) {
|
|
11083
|
-
throw new Error('Required parameter sampleId was null or undefined when calling getDatasetVersionRawSample.');
|
|
11084
|
-
}
|
|
11085
|
-
localVarHeaderParams = {
|
|
11086
|
-
...localVarHeaderParams,
|
|
11087
|
-
...options.headers,
|
|
11088
|
-
...this.opts.extraHeaders,
|
|
11089
|
-
};
|
|
11090
|
-
const queryString = Object.entries(queryParameters)
|
|
11091
|
-
.filter(([, value]) => value !== undefined)
|
|
11092
|
-
.map(([key, value]) => `${key}=${encodeURIComponent(String(value))}`)
|
|
11093
|
-
.join('&');
|
|
11094
|
-
let localVarUrl = localVarPath + (queryString ? `?${queryString}` : '');
|
|
11095
|
-
let localVarRequestOptions = {
|
|
11096
|
-
method: 'GET',
|
|
11097
|
-
headers: { ...localVarHeaderParams },
|
|
11098
|
-
};
|
|
11099
|
-
let requestOptions = localVarRequestOptions;
|
|
11100
|
-
let url = localVarUrl;
|
|
11101
|
-
const auth_ApiKeyAuthentication = await this.authentications.ApiKeyAuthentication.applyToRequest(requestOptions, url);
|
|
11102
|
-
requestOptions = auth_ApiKeyAuthentication.requestOptions;
|
|
11103
|
-
url = auth_ApiKeyAuthentication.url;
|
|
11104
|
-
const auth_JWTAuthentication = await this.authentications.JWTAuthentication.applyToRequest(requestOptions, url);
|
|
11105
|
-
requestOptions = auth_JWTAuthentication.requestOptions;
|
|
11106
|
-
url = auth_JWTAuthentication.url;
|
|
11107
|
-
const auth_JWTHttpHeaderAuthentication = await this.authentications.JWTHttpHeaderAuthentication.applyToRequest(requestOptions, url);
|
|
11108
|
-
requestOptions = auth_JWTHttpHeaderAuthentication.requestOptions;
|
|
11109
|
-
url = auth_JWTHttpHeaderAuthentication.url;
|
|
11110
|
-
const auth_OAuth2 = await this.authentications.OAuth2.applyToRequest(requestOptions, url);
|
|
11111
|
-
requestOptions = auth_OAuth2.requestOptions;
|
|
11112
|
-
url = auth_OAuth2.url;
|
|
11113
|
-
const authDefault = await this.authentications.default.applyToRequest(requestOptions, url);
|
|
11114
|
-
requestOptions = authDefault.requestOptions;
|
|
11115
|
-
url = authDefault.url;
|
|
11116
|
-
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
11117
|
-
const response = await fetch(url, requestOptions);
|
|
11118
|
-
return this.handleResponse(response, 'GetDatasetVersionRawDataSampleResponse');
|
|
11119
|
-
}
|
|
11120
|
-
/**
|
|
11121
|
-
* Get a sample\'s changes in a specific dataset version for this project.
|
|
11122
|
-
* @summary Get dataset version sample change details
|
|
11123
|
-
* @param projectId Project ID
|
|
11124
|
-
* @param datasetVersionId Dataset version ID
|
|
11125
|
-
* @param sampleId Sample ID
|
|
11126
|
-
*/
|
|
11127
|
-
async getDatasetVersionSampleChangeDetails(projectId, datasetVersionId, sampleId, options = { headers: {} }) {
|
|
11128
|
-
const localVarPath = this.basePath + '/api/{projectId}/dataset-versions/{datasetVersionId}/changes/{sampleId}'
|
|
11129
|
-
.replace('{' + 'projectId' + '}', encodeURIComponent(String(projectId)))
|
|
11130
|
-
.replace('{' + 'datasetVersionId' + '}', encodeURIComponent(String(datasetVersionId)))
|
|
11131
|
-
.replace('{' + 'sampleId' + '}', encodeURIComponent(String(sampleId)));
|
|
11132
|
-
let queryParameters = {};
|
|
11133
|
-
let localVarHeaderParams = {
|
|
11134
|
-
...(typeof window === "undefined" ? { "User-Agent": "edgeimpulse-api nodejs" } : {}),
|
|
11135
|
-
'Content-Type': 'application/json',
|
|
11136
|
-
...this.defaultHeaders,
|
|
11137
|
-
};
|
|
11138
|
-
const produces = ['application/json'];
|
|
11139
|
-
// give precedence to 'application/json'
|
|
11140
|
-
if (produces.indexOf('application/json') >= 0) {
|
|
11141
|
-
localVarHeaderParams.Accept = 'application/json';
|
|
11142
|
-
}
|
|
11143
|
-
else {
|
|
11144
|
-
localVarHeaderParams.Accept = produces.join(',');
|
|
11145
|
-
}
|
|
11146
|
-
let localVarFormParams;
|
|
11147
|
-
// verify required parameter 'projectId' is not null or undefined
|
|
11148
|
-
if (projectId === null || projectId === undefined) {
|
|
11149
|
-
throw new Error('Required parameter projectId was null or undefined when calling getDatasetVersionSampleChangeDetails.');
|
|
11150
|
-
}
|
|
11151
|
-
// verify required parameter 'datasetVersionId' is not null or undefined
|
|
11152
|
-
if (datasetVersionId === null || datasetVersionId === undefined) {
|
|
11153
|
-
throw new Error('Required parameter datasetVersionId was null or undefined when calling getDatasetVersionSampleChangeDetails.');
|
|
11154
|
-
}
|
|
11155
|
-
// verify required parameter 'sampleId' is not null or undefined
|
|
11156
|
-
if (sampleId === null || sampleId === undefined) {
|
|
11157
|
-
throw new Error('Required parameter sampleId was null or undefined when calling getDatasetVersionSampleChangeDetails.');
|
|
11012
|
+
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.changeActions) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.changeActions) !== null) {
|
|
11013
|
+
queryParameters['changeActions'] = queryParams.changeActions;
|
|
11158
11014
|
}
|
|
11159
11015
|
localVarHeaderParams = {
|
|
11160
11016
|
...localVarHeaderParams,
|
|
@@ -11189,83 +11045,7 @@ class DatasetVersionsApi {
|
|
|
11189
11045
|
url = authDefault.url;
|
|
11190
11046
|
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
11191
11047
|
const response = await fetch(url, requestOptions);
|
|
11192
|
-
return this.handleResponse(response, '
|
|
11193
|
-
}
|
|
11194
|
-
/**
|
|
11195
|
-
* List details of the changes in a specific dataset version for this project.
|
|
11196
|
-
* @summary List dataset version changes
|
|
11197
|
-
* @param projectId Project ID
|
|
11198
|
-
* @param datasetVersionId Dataset version ID
|
|
11199
|
-
* @param limit Maximum number of results
|
|
11200
|
-
* @param offset Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
|
|
11201
|
-
*/
|
|
11202
|
-
async listDatasetVersionChanges(projectId, datasetVersionId, queryParams, options = { headers: {} }) {
|
|
11203
|
-
const localVarPath = this.basePath + '/api/{projectId}/dataset-versions/{datasetVersionId}/changes'
|
|
11204
|
-
.replace('{' + 'projectId' + '}', encodeURIComponent(String(projectId)))
|
|
11205
|
-
.replace('{' + 'datasetVersionId' + '}', encodeURIComponent(String(datasetVersionId)));
|
|
11206
|
-
let queryParameters = {};
|
|
11207
|
-
let localVarHeaderParams = {
|
|
11208
|
-
...(typeof window === "undefined" ? { "User-Agent": "edgeimpulse-api nodejs" } : {}),
|
|
11209
|
-
'Content-Type': 'application/json',
|
|
11210
|
-
...this.defaultHeaders,
|
|
11211
|
-
};
|
|
11212
|
-
const produces = ['application/json'];
|
|
11213
|
-
// give precedence to 'application/json'
|
|
11214
|
-
if (produces.indexOf('application/json') >= 0) {
|
|
11215
|
-
localVarHeaderParams.Accept = 'application/json';
|
|
11216
|
-
}
|
|
11217
|
-
else {
|
|
11218
|
-
localVarHeaderParams.Accept = produces.join(',');
|
|
11219
|
-
}
|
|
11220
|
-
let localVarFormParams;
|
|
11221
|
-
// verify required parameter 'projectId' is not null or undefined
|
|
11222
|
-
if (projectId === null || projectId === undefined) {
|
|
11223
|
-
throw new Error('Required parameter projectId was null or undefined when calling listDatasetVersionChanges.');
|
|
11224
|
-
}
|
|
11225
|
-
// verify required parameter 'datasetVersionId' is not null or undefined
|
|
11226
|
-
if (datasetVersionId === null || datasetVersionId === undefined) {
|
|
11227
|
-
throw new Error('Required parameter datasetVersionId was null or undefined when calling listDatasetVersionChanges.');
|
|
11228
|
-
}
|
|
11229
|
-
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.limit) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.limit) !== null) {
|
|
11230
|
-
queryParameters['limit'] = queryParams.limit;
|
|
11231
|
-
}
|
|
11232
|
-
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.offset) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.offset) !== null) {
|
|
11233
|
-
queryParameters['offset'] = queryParams.offset;
|
|
11234
|
-
}
|
|
11235
|
-
localVarHeaderParams = {
|
|
11236
|
-
...localVarHeaderParams,
|
|
11237
|
-
...options.headers,
|
|
11238
|
-
...this.opts.extraHeaders,
|
|
11239
|
-
};
|
|
11240
|
-
const queryString = Object.entries(queryParameters)
|
|
11241
|
-
.filter(([, value]) => value !== undefined)
|
|
11242
|
-
.map(([key, value]) => `${key}=${encodeURIComponent(String(value))}`)
|
|
11243
|
-
.join('&');
|
|
11244
|
-
let localVarUrl = localVarPath + (queryString ? `?${queryString}` : '');
|
|
11245
|
-
let localVarRequestOptions = {
|
|
11246
|
-
method: 'GET',
|
|
11247
|
-
headers: { ...localVarHeaderParams },
|
|
11248
|
-
};
|
|
11249
|
-
let requestOptions = localVarRequestOptions;
|
|
11250
|
-
let url = localVarUrl;
|
|
11251
|
-
const auth_ApiKeyAuthentication = await this.authentications.ApiKeyAuthentication.applyToRequest(requestOptions, url);
|
|
11252
|
-
requestOptions = auth_ApiKeyAuthentication.requestOptions;
|
|
11253
|
-
url = auth_ApiKeyAuthentication.url;
|
|
11254
|
-
const auth_JWTAuthentication = await this.authentications.JWTAuthentication.applyToRequest(requestOptions, url);
|
|
11255
|
-
requestOptions = auth_JWTAuthentication.requestOptions;
|
|
11256
|
-
url = auth_JWTAuthentication.url;
|
|
11257
|
-
const auth_JWTHttpHeaderAuthentication = await this.authentications.JWTHttpHeaderAuthentication.applyToRequest(requestOptions, url);
|
|
11258
|
-
requestOptions = auth_JWTHttpHeaderAuthentication.requestOptions;
|
|
11259
|
-
url = auth_JWTHttpHeaderAuthentication.url;
|
|
11260
|
-
const auth_OAuth2 = await this.authentications.OAuth2.applyToRequest(requestOptions, url);
|
|
11261
|
-
requestOptions = auth_OAuth2.requestOptions;
|
|
11262
|
-
url = auth_OAuth2.url;
|
|
11263
|
-
const authDefault = await this.authentications.default.applyToRequest(requestOptions, url);
|
|
11264
|
-
requestOptions = authDefault.requestOptions;
|
|
11265
|
-
url = authDefault.url;
|
|
11266
|
-
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
11267
|
-
const response = await fetch(url, requestOptions);
|
|
11268
|
-
return this.handleResponse(response, 'ListDatasetVersionChangesResponse');
|
|
11048
|
+
return this.handleResponse(response, 'GetDatasetVersionRawDataChangesResponse');
|
|
11269
11049
|
}
|
|
11270
11050
|
/**
|
|
11271
11051
|
* Get a list of all dataset versions for this project.
|
|
@@ -11273,6 +11053,8 @@ class DatasetVersionsApi {
|
|
|
11273
11053
|
* @param projectId Project ID
|
|
11274
11054
|
* @param limit Maximum number of results
|
|
11275
11055
|
* @param offset Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
|
|
11056
|
+
* @param search Search query
|
|
11057
|
+
* @param type Only include dataset versions with a type within the given list of types, given as a JSON string
|
|
11276
11058
|
*/
|
|
11277
11059
|
async listDatasetVersions(projectId, queryParams, options = { headers: {} }) {
|
|
11278
11060
|
const localVarPath = this.basePath + '/api/{projectId}/dataset-versions'
|
|
@@ -11302,6 +11084,12 @@ class DatasetVersionsApi {
|
|
|
11302
11084
|
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.offset) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.offset) !== null) {
|
|
11303
11085
|
queryParameters['offset'] = queryParams.offset;
|
|
11304
11086
|
}
|
|
11087
|
+
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.search) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.search) !== null) {
|
|
11088
|
+
queryParameters['search'] = queryParams.search;
|
|
11089
|
+
}
|
|
11090
|
+
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.type) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.type) !== null) {
|
|
11091
|
+
queryParameters['type'] = queryParams.type;
|
|
11092
|
+
}
|
|
11305
11093
|
localVarHeaderParams = {
|
|
11306
11094
|
...localVarHeaderParams,
|
|
11307
11095
|
...options.headers,
|
|
@@ -26133,6 +25921,74 @@ class OrganizationCreateProjectApi {
|
|
|
26133
25921
|
const response = await fetch(url, requestOptions);
|
|
26134
25922
|
return this.handleResponse(response, 'GenericApiResponse');
|
|
26135
25923
|
}
|
|
25924
|
+
/**
|
|
25925
|
+
* Creates a signed link to securely upload a custom block archive directly to S3.
|
|
25926
|
+
* @summary Create pre-signed S3 upload link for a custom block archive
|
|
25927
|
+
* @param organizationId Organization ID
|
|
25928
|
+
* @param createCustomBlockUploadLinkRequest
|
|
25929
|
+
*/
|
|
25930
|
+
async createCustomBlockUploadLink(organizationId, createCustomBlockUploadLinkRequest, options = { headers: {} }) {
|
|
25931
|
+
const localVarPath = this.basePath + '/api/organizations/{organizationId}/custom-block/upload-link'
|
|
25932
|
+
.replace('{' + 'organizationId' + '}', encodeURIComponent(String(organizationId)));
|
|
25933
|
+
let queryParameters = {};
|
|
25934
|
+
let localVarHeaderParams = {
|
|
25935
|
+
...(typeof window === "undefined" ? { "User-Agent": "edgeimpulse-api nodejs" } : {}),
|
|
25936
|
+
'Content-Type': 'application/json',
|
|
25937
|
+
...this.defaultHeaders,
|
|
25938
|
+
};
|
|
25939
|
+
const produces = ['application/json'];
|
|
25940
|
+
// give precedence to 'application/json'
|
|
25941
|
+
if (produces.indexOf('application/json') >= 0) {
|
|
25942
|
+
localVarHeaderParams.Accept = 'application/json';
|
|
25943
|
+
}
|
|
25944
|
+
else {
|
|
25945
|
+
localVarHeaderParams.Accept = produces.join(',');
|
|
25946
|
+
}
|
|
25947
|
+
let localVarFormParams;
|
|
25948
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
25949
|
+
if (organizationId === null || organizationId === undefined) {
|
|
25950
|
+
throw new Error('Required parameter organizationId was null or undefined when calling createCustomBlockUploadLink.');
|
|
25951
|
+
}
|
|
25952
|
+
// verify required parameter 'createCustomBlockUploadLinkRequest' is not null or undefined
|
|
25953
|
+
if (createCustomBlockUploadLinkRequest === null || createCustomBlockUploadLinkRequest === undefined) {
|
|
25954
|
+
throw new Error('Required parameter createCustomBlockUploadLinkRequest was null or undefined when calling createCustomBlockUploadLink.');
|
|
25955
|
+
}
|
|
25956
|
+
localVarHeaderParams = {
|
|
25957
|
+
...localVarHeaderParams,
|
|
25958
|
+
...options.headers,
|
|
25959
|
+
...this.opts.extraHeaders,
|
|
25960
|
+
};
|
|
25961
|
+
const queryString = Object.entries(queryParameters)
|
|
25962
|
+
.filter(([, value]) => value !== undefined)
|
|
25963
|
+
.map(([key, value]) => `${key}=${encodeURIComponent(String(value))}`)
|
|
25964
|
+
.join('&');
|
|
25965
|
+
let localVarUrl = localVarPath + (queryString ? `?${queryString}` : '');
|
|
25966
|
+
let localVarRequestOptions = {
|
|
25967
|
+
method: 'POST',
|
|
25968
|
+
headers: { ...localVarHeaderParams },
|
|
25969
|
+
};
|
|
25970
|
+
localVarRequestOptions.body = JSON.stringify(createCustomBlockUploadLinkRequest);
|
|
25971
|
+
let requestOptions = localVarRequestOptions;
|
|
25972
|
+
let url = localVarUrl;
|
|
25973
|
+
const auth_ApiKeyAuthentication = await this.authentications.ApiKeyAuthentication.applyToRequest(requestOptions, url);
|
|
25974
|
+
requestOptions = auth_ApiKeyAuthentication.requestOptions;
|
|
25975
|
+
url = auth_ApiKeyAuthentication.url;
|
|
25976
|
+
const auth_JWTAuthentication = await this.authentications.JWTAuthentication.applyToRequest(requestOptions, url);
|
|
25977
|
+
requestOptions = auth_JWTAuthentication.requestOptions;
|
|
25978
|
+
url = auth_JWTAuthentication.url;
|
|
25979
|
+
const auth_JWTHttpHeaderAuthentication = await this.authentications.JWTHttpHeaderAuthentication.applyToRequest(requestOptions, url);
|
|
25980
|
+
requestOptions = auth_JWTHttpHeaderAuthentication.requestOptions;
|
|
25981
|
+
url = auth_JWTHttpHeaderAuthentication.url;
|
|
25982
|
+
const auth_OAuth2 = await this.authentications.OAuth2.applyToRequest(requestOptions, url);
|
|
25983
|
+
requestOptions = auth_OAuth2.requestOptions;
|
|
25984
|
+
url = auth_OAuth2.url;
|
|
25985
|
+
const authDefault = await this.authentications.default.applyToRequest(requestOptions, url);
|
|
25986
|
+
requestOptions = authDefault.requestOptions;
|
|
25987
|
+
url = authDefault.url;
|
|
25988
|
+
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
25989
|
+
const response = await fetch(url, requestOptions);
|
|
25990
|
+
return this.handleResponse(response, 'CreateCustomBlockUploadLinkResponse');
|
|
25991
|
+
}
|
|
26136
25992
|
/**
|
|
26137
25993
|
* Remove a transformation job. This will stop all running jobs.
|
|
26138
25994
|
* @summary Delete transformation job
|
|
@@ -26275,6 +26131,74 @@ class OrganizationCreateProjectApi {
|
|
|
26275
26131
|
const response = await fetch(url, requestOptions);
|
|
26276
26132
|
return this.handleResponse(response, 'GenericApiResponse');
|
|
26277
26133
|
}
|
|
26134
|
+
/**
|
|
26135
|
+
* Verifies a staged custom block archive and starts a custom block build job.
|
|
26136
|
+
* @summary Finalize custom block upload
|
|
26137
|
+
* @param organizationId Organization ID
|
|
26138
|
+
* @param finalizeCustomBlockUploadRequest
|
|
26139
|
+
*/
|
|
26140
|
+
async finalizeCustomBlockUpload(organizationId, finalizeCustomBlockUploadRequest, options = { headers: {} }) {
|
|
26141
|
+
const localVarPath = this.basePath + '/api/organizations/{organizationId}/custom-block/finalize'
|
|
26142
|
+
.replace('{' + 'organizationId' + '}', encodeURIComponent(String(organizationId)));
|
|
26143
|
+
let queryParameters = {};
|
|
26144
|
+
let localVarHeaderParams = {
|
|
26145
|
+
...(typeof window === "undefined" ? { "User-Agent": "edgeimpulse-api nodejs" } : {}),
|
|
26146
|
+
'Content-Type': 'application/json',
|
|
26147
|
+
...this.defaultHeaders,
|
|
26148
|
+
};
|
|
26149
|
+
const produces = ['application/json'];
|
|
26150
|
+
// give precedence to 'application/json'
|
|
26151
|
+
if (produces.indexOf('application/json') >= 0) {
|
|
26152
|
+
localVarHeaderParams.Accept = 'application/json';
|
|
26153
|
+
}
|
|
26154
|
+
else {
|
|
26155
|
+
localVarHeaderParams.Accept = produces.join(',');
|
|
26156
|
+
}
|
|
26157
|
+
let localVarFormParams;
|
|
26158
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
26159
|
+
if (organizationId === null || organizationId === undefined) {
|
|
26160
|
+
throw new Error('Required parameter organizationId was null or undefined when calling finalizeCustomBlockUpload.');
|
|
26161
|
+
}
|
|
26162
|
+
// verify required parameter 'finalizeCustomBlockUploadRequest' is not null or undefined
|
|
26163
|
+
if (finalizeCustomBlockUploadRequest === null || finalizeCustomBlockUploadRequest === undefined) {
|
|
26164
|
+
throw new Error('Required parameter finalizeCustomBlockUploadRequest was null or undefined when calling finalizeCustomBlockUpload.');
|
|
26165
|
+
}
|
|
26166
|
+
localVarHeaderParams = {
|
|
26167
|
+
...localVarHeaderParams,
|
|
26168
|
+
...options.headers,
|
|
26169
|
+
...this.opts.extraHeaders,
|
|
26170
|
+
};
|
|
26171
|
+
const queryString = Object.entries(queryParameters)
|
|
26172
|
+
.filter(([, value]) => value !== undefined)
|
|
26173
|
+
.map(([key, value]) => `${key}=${encodeURIComponent(String(value))}`)
|
|
26174
|
+
.join('&');
|
|
26175
|
+
let localVarUrl = localVarPath + (queryString ? `?${queryString}` : '');
|
|
26176
|
+
let localVarRequestOptions = {
|
|
26177
|
+
method: 'POST',
|
|
26178
|
+
headers: { ...localVarHeaderParams },
|
|
26179
|
+
};
|
|
26180
|
+
localVarRequestOptions.body = JSON.stringify(finalizeCustomBlockUploadRequest);
|
|
26181
|
+
let requestOptions = localVarRequestOptions;
|
|
26182
|
+
let url = localVarUrl;
|
|
26183
|
+
const auth_ApiKeyAuthentication = await this.authentications.ApiKeyAuthentication.applyToRequest(requestOptions, url);
|
|
26184
|
+
requestOptions = auth_ApiKeyAuthentication.requestOptions;
|
|
26185
|
+
url = auth_ApiKeyAuthentication.url;
|
|
26186
|
+
const auth_JWTAuthentication = await this.authentications.JWTAuthentication.applyToRequest(requestOptions, url);
|
|
26187
|
+
requestOptions = auth_JWTAuthentication.requestOptions;
|
|
26188
|
+
url = auth_JWTAuthentication.url;
|
|
26189
|
+
const auth_JWTHttpHeaderAuthentication = await this.authentications.JWTHttpHeaderAuthentication.applyToRequest(requestOptions, url);
|
|
26190
|
+
requestOptions = auth_JWTHttpHeaderAuthentication.requestOptions;
|
|
26191
|
+
url = auth_JWTHttpHeaderAuthentication.url;
|
|
26192
|
+
const auth_OAuth2 = await this.authentications.OAuth2.applyToRequest(requestOptions, url);
|
|
26193
|
+
requestOptions = auth_OAuth2.requestOptions;
|
|
26194
|
+
url = auth_OAuth2.url;
|
|
26195
|
+
const authDefault = await this.authentications.default.applyToRequest(requestOptions, url);
|
|
26196
|
+
requestOptions = authDefault.requestOptions;
|
|
26197
|
+
url = authDefault.url;
|
|
26198
|
+
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
26199
|
+
const response = await fetch(url, requestOptions);
|
|
26200
|
+
return this.handleResponse(response, 'StartJobResponse');
|
|
26201
|
+
}
|
|
26278
26202
|
/**
|
|
26279
26203
|
* Get the current status of a transformation job job.
|
|
26280
26204
|
* @summary Get transformation job status
|
|
@@ -47439,6 +47363,7 @@ class RawDataApi {
|
|
|
47439
47363
|
* Get the raw data metadata for this project
|
|
47440
47364
|
* @summary Get project dataset metadata
|
|
47441
47365
|
* @param projectId Project ID
|
|
47366
|
+
* @param datasetVersionId Dataset version ID. If not set, the current dataset version is used
|
|
47442
47367
|
* @param includeDisabled Whether to include enabled-only samples, or both enabled and disabled samples (defaults to both).
|
|
47443
47368
|
*/
|
|
47444
47369
|
async getRawDataProjectMetadata(projectId, queryParams, options = { headers: {} }) {
|
|
@@ -47463,6 +47388,9 @@ class RawDataApi {
|
|
|
47463
47388
|
if (projectId === null || projectId === undefined) {
|
|
47464
47389
|
throw new Error('Required parameter projectId was null or undefined when calling getRawDataProjectMetadata.');
|
|
47465
47390
|
}
|
|
47391
|
+
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.datasetVersionId) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.datasetVersionId) !== null) {
|
|
47392
|
+
queryParameters['datasetVersionId'] = queryParams.datasetVersionId;
|
|
47393
|
+
}
|
|
47466
47394
|
if (typeof (queryParams === null || queryParams === void 0 ? void 0 : queryParams.includeDisabled) !== 'undefined' && (queryParams === null || queryParams === void 0 ? void 0 : queryParams.includeDisabled) !== null) {
|
|
47467
47395
|
queryParameters['includeDisabled'] = queryParams.includeDisabled;
|
|
47468
47396
|
}
|
|
@@ -48860,7 +48788,7 @@ class RawDataApi {
|
|
|
48860
48788
|
return this.handleResponse(response, 'RebalanceDatasetResponse');
|
|
48861
48789
|
}
|
|
48862
48790
|
/**
|
|
48863
|
-
* Rebalances the dataset over training / testing categories. This resets the category for all data and splits it 80%/20% between training and testing. This is a deterministic process based on the hash of the name of the data. Returns immediately on small datasets, or starts a job on larger datasets. To get the dataset ratio (as returned by the v1 endpoint), use getDatasetRatio.
|
|
48791
|
+
* Rebalances the dataset over training / testing categories. This resets the category for all data and splits it 80%/20% between training and testing. This is a deterministic process based on the hash of the name of the data. Returns immediately on small datasets, or starts a job on larger datasets. To get the dataset ratio (as returned by the v1 endpoint), use getDatasetRatio. For richer, more powerful dataset splitting with configurable ratios, stratification, and grouping, use splitDataset (`/v1/api/{projectId}/split`).
|
|
48864
48792
|
* @summary Rebalance dataset
|
|
48865
48793
|
* @param projectId Project ID
|
|
48866
48794
|
*/
|
|
@@ -57153,6 +57081,22 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
57153
57081
|
});
|
|
57154
57082
|
|
|
57155
57083
|
|
|
57084
|
+
define("library/sdk/model/createCustomBlockUploadLinkRequest", ["require", "exports"], function (require, exports) {
|
|
57085
|
+
"use strict";
|
|
57086
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
57087
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57088
|
+
exports.CreateCustomBlockUploadLinkRequestTypeEnumValues = void 0;
|
|
57089
|
+
exports.CreateCustomBlockUploadLinkRequestTypeEnumValues = ['transform', 'deploy', 'dsp', 'transferLearning'];
|
|
57090
|
+
});
|
|
57091
|
+
|
|
57092
|
+
|
|
57093
|
+
define("library/sdk/model/createCustomBlockUploadLinkResponse", ["require", "exports"], function (require, exports) {
|
|
57094
|
+
"use strict";
|
|
57095
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
57096
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57097
|
+
});
|
|
57098
|
+
|
|
57099
|
+
|
|
57156
57100
|
define("library/sdk/model/createDeveloperProfileResponse", ["require", "exports"], function (require, exports) {
|
|
57157
57101
|
"use strict";
|
|
57158
57102
|
// Generated by studio/openapi/generate-models/convert.ts
|
|
@@ -57646,6 +57590,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
57646
57590
|
});
|
|
57647
57591
|
|
|
57648
57592
|
|
|
57593
|
+
define("library/sdk/model/datasetVersionRawDataChangeDetailItem", ["require", "exports"], function (require, exports) {
|
|
57594
|
+
"use strict";
|
|
57595
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
57596
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57597
|
+
});
|
|
57598
|
+
|
|
57599
|
+
|
|
57600
|
+
define("library/sdk/model/datasetVersionRawDataChangeDetails", ["require", "exports"], function (require, exports) {
|
|
57601
|
+
"use strict";
|
|
57602
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
57603
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57604
|
+
});
|
|
57605
|
+
|
|
57606
|
+
|
|
57649
57607
|
define("library/sdk/model/datasetVersionSummary", ["require", "exports"], function (require, exports) {
|
|
57650
57608
|
"use strict";
|
|
57651
57609
|
// Generated by studio/openapi/generate-models/convert.ts
|
|
@@ -58227,6 +58185,15 @@ exports.FeatureValues = ['signup-thank-you-page', 'stripe-live-mode', 'azure-sto
|
|
|
58227
58185
|
});
|
|
58228
58186
|
|
|
58229
58187
|
|
|
58188
|
+
define("library/sdk/model/finalizeCustomBlockUploadRequest", ["require", "exports"], function (require, exports) {
|
|
58189
|
+
"use strict";
|
|
58190
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
58191
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58192
|
+
exports.FinalizeCustomBlockUploadRequestTypeEnumValues = void 0;
|
|
58193
|
+
exports.FinalizeCustomBlockUploadRequestTypeEnumValues = ['transform', 'deploy', 'dsp', 'transferLearning'];
|
|
58194
|
+
});
|
|
58195
|
+
|
|
58196
|
+
|
|
58230
58197
|
define("library/sdk/model/findSegmentSampleRequest", ["require", "exports"], function (require, exports) {
|
|
58231
58198
|
"use strict";
|
|
58232
58199
|
// Generated by studio/openapi/generate-models/convert.ts
|
|
@@ -58371,14 +58338,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58371
58338
|
});
|
|
58372
58339
|
|
|
58373
58340
|
|
|
58374
|
-
define("library/sdk/model/
|
|
58375
|
-
"use strict";
|
|
58376
|
-
// Generated by studio/openapi/generate-models/convert.ts
|
|
58377
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58378
|
-
});
|
|
58379
|
-
|
|
58380
|
-
|
|
58381
|
-
define("library/sdk/model/getDatasetVersionRawDataSampleResponse", ["require", "exports"], function (require, exports) {
|
|
58341
|
+
define("library/sdk/model/getDatasetVersionRawDataChangesResponse", ["require", "exports"], function (require, exports) {
|
|
58382
58342
|
"use strict";
|
|
58383
58343
|
// Generated by studio/openapi/generate-models/convert.ts
|
|
58384
58344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -58392,13 +58352,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
58392
58352
|
});
|
|
58393
58353
|
|
|
58394
58354
|
|
|
58395
|
-
define("library/sdk/model/getDatasetVersionSampleChangeDetailsResponse", ["require", "exports"], function (require, exports) {
|
|
58396
|
-
"use strict";
|
|
58397
|
-
// Generated by studio/openapi/generate-models/convert.ts
|
|
58398
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58399
|
-
});
|
|
58400
|
-
|
|
58401
|
-
|
|
58402
58355
|
define("library/sdk/model/getDeploymentHistoryResponse", ["require", "exports"], function (require, exports) {
|
|
58403
58356
|
"use strict";
|
|
58404
58357
|
// Generated by studio/openapi/generate-models/convert.ts
|
|
@@ -59355,13 +59308,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59355
59308
|
});
|
|
59356
59309
|
|
|
59357
59310
|
|
|
59358
|
-
define("library/sdk/model/listDatasetVersionChangesResponse", ["require", "exports"], function (require, exports) {
|
|
59359
|
-
"use strict";
|
|
59360
|
-
// Generated by studio/openapi/generate-models/convert.ts
|
|
59361
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59362
|
-
});
|
|
59363
|
-
|
|
59364
|
-
|
|
59365
59311
|
define("library/sdk/model/listDatasetVersionsResponse", ["require", "exports"], function (require, exports) {
|
|
59366
59312
|
"use strict";
|
|
59367
59313
|
// Generated by studio/openapi/generate-models/convert.ts
|
|
@@ -59892,6 +59838,8 @@ __exportStar(require("./convertUserRequest"), exports);
|
|
|
59892
59838
|
__exportStar(require("./cosineSimilarityData"), exports);
|
|
59893
59839
|
__exportStar(require("./cosineSimilarityIssue"), exports);
|
|
59894
59840
|
__exportStar(require("./countSamplesResponse"), exports);
|
|
59841
|
+
__exportStar(require("./createCustomBlockUploadLinkRequest"), exports);
|
|
59842
|
+
__exportStar(require("./createCustomBlockUploadLinkResponse"), exports);
|
|
59895
59843
|
__exportStar(require("./createDeveloperProfileResponse"), exports);
|
|
59896
59844
|
__exportStar(require("./createDeviceRequest"), exports);
|
|
59897
59845
|
__exportStar(require("./createEnterpriseTrialResponse"), exports);
|
|
@@ -59959,6 +59907,8 @@ __exportStar(require("./datasetSplitPreviewSection"), exports);
|
|
|
59959
59907
|
__exportStar(require("./datasetVersion"), exports);
|
|
59960
59908
|
__exportStar(require("./datasetVersionChangeItem"), exports);
|
|
59961
59909
|
__exportStar(require("./datasetVersionPendingWindow"), exports);
|
|
59910
|
+
__exportStar(require("./datasetVersionRawDataChangeDetailItem"), exports);
|
|
59911
|
+
__exportStar(require("./datasetVersionRawDataChangeDetails"), exports);
|
|
59962
59912
|
__exportStar(require("./datasetVersionSummary"), exports);
|
|
59963
59913
|
__exportStar(require("./datasetVersionType"), exports);
|
|
59964
59914
|
__exportStar(require("./deletePortalFileRequest"), exports);
|
|
@@ -60035,6 +59985,7 @@ __exportStar(require("./exportKerasBlockDataRequest"), exports);
|
|
|
60035
59985
|
__exportStar(require("./exportOriginalDataRequest"), exports);
|
|
60036
59986
|
__exportStar(require("./exportWavDataRequest"), exports);
|
|
60037
59987
|
__exportStar(require("./feature"), exports);
|
|
59988
|
+
__exportStar(require("./finalizeCustomBlockUploadRequest"), exports);
|
|
60038
59989
|
__exportStar(require("./findSegmentSampleRequest"), exports);
|
|
60039
59990
|
__exportStar(require("./findSegmentSampleResponse"), exports);
|
|
60040
59991
|
__exportStar(require("./findSyntiantPosteriorRequest"), exports);
|
|
@@ -60054,10 +60005,8 @@ __exportStar(require("./getCsvWizardUploadedFileInfo"), exports);
|
|
|
60054
60005
|
__exportStar(require("./getDataExplorerFeaturesResponse"), exports);
|
|
60055
60006
|
__exportStar(require("./getDataExplorerSettingsResponse"), exports);
|
|
60056
60007
|
__exportStar(require("./getDatasetRatioResponse"), exports);
|
|
60057
|
-
__exportStar(require("./
|
|
60058
|
-
__exportStar(require("./getDatasetVersionRawDataSampleResponse"), exports);
|
|
60008
|
+
__exportStar(require("./getDatasetVersionRawDataChangesResponse"), exports);
|
|
60059
60009
|
__exportStar(require("./getDatasetVersionResponse"), exports);
|
|
60060
|
-
__exportStar(require("./getDatasetVersionSampleChangeDetailsResponse"), exports);
|
|
60061
60010
|
__exportStar(require("./getDeploymentHistoryResponse"), exports);
|
|
60062
60011
|
__exportStar(require("./getDeploymentResponse"), exports);
|
|
60063
60012
|
__exportStar(require("./getDeviceResponse"), exports);
|
|
@@ -60187,7 +60136,6 @@ __exportStar(require("./learnBlock"), exports);
|
|
|
60187
60136
|
__exportStar(require("./learnBlockType"), exports);
|
|
60188
60137
|
__exportStar(require("./listAIActionsResponse"), exports);
|
|
60189
60138
|
__exportStar(require("./listApiKeysResponse"), exports);
|
|
60190
|
-
__exportStar(require("./listDatasetVersionChangesResponse"), exports);
|
|
60191
60139
|
__exportStar(require("./listDatasetVersionsResponse"), exports);
|
|
60192
60140
|
__exportStar(require("./listDeploymentHistoryResponse"), exports);
|
|
60193
60141
|
__exportStar(require("./listDevicesResponse"), exports);
|
|
@@ -60349,6 +60297,7 @@ __exportStar(require("./projectDataAxesSummaryResponse"), exports);
|
|
|
60349
60297
|
__exportStar(require("./projectDataIntervalResponse"), exports);
|
|
60350
60298
|
__exportStar(require("./projectDataSummary"), exports);
|
|
60351
60299
|
__exportStar(require("./projectDatasetMetadataBase"), exports);
|
|
60300
|
+
__exportStar(require("./projectDatasetMetadataBaseChangeActionCounts"), exports);
|
|
60352
60301
|
__exportStar(require("./projectDatasetMetadataCategoryData"), exports);
|
|
60353
60302
|
__exportStar(require("./projectDatasetMetadataClasses"), exports);
|
|
60354
60303
|
__exportStar(require("./projectDatasetMetadataClassesCategory"), exports);
|
|
@@ -61597,6 +61546,13 @@ exports.ProjectDatasetMetadataBaseTypeEnumValues = ['classes', 'regression'];
|
|
|
61597
61546
|
});
|
|
61598
61547
|
|
|
61599
61548
|
|
|
61549
|
+
define("library/sdk/model/projectDatasetMetadataBaseChangeActionCounts", ["require", "exports"], function (require, exports) {
|
|
61550
|
+
"use strict";
|
|
61551
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
61552
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
61553
|
+
});
|
|
61554
|
+
|
|
61555
|
+
|
|
61600
61556
|
define("library/sdk/model/projectDatasetMetadataCategoryData", ["require", "exports"], function (require, exports) {
|
|
61601
61557
|
"use strict";
|
|
61602
61558
|
// Generated by studio/openapi/generate-models/convert.ts
|