edge-impulse-api 1.92.1 → 1.92.3
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/rawDataApi.d.ts +34 -0
- package/build/library/sdk/api/rawDataApi.js +231 -0
- package/build/library/sdk/api/rawDataApi.js.map +1 -1
- package/build/library/sdk/model/datasetStratificationOptions.d.ts +40 -0
- package/build/library/sdk/model/datasetStratificationOptions.js +44 -0
- package/build/library/sdk/model/datasetStratificationOptions.js.map +1 -0
- package/build/library/sdk/model/datasetStratificationPreviewData.d.ts +26 -0
- package/build/library/sdk/model/datasetStratificationPreviewData.js +29 -0
- package/build/library/sdk/model/datasetStratificationPreviewData.js.map +1 -0
- package/build/library/sdk/model/datasetStratificationPreviewDataData.d.ts +28 -0
- package/build/library/sdk/model/datasetStratificationPreviewDataData.js +44 -0
- package/build/library/sdk/model/datasetStratificationPreviewDataData.js.map +1 -0
- package/build/library/sdk/model/datasetStratificationPreviewResponse.d.ts +34 -0
- package/build/library/sdk/model/datasetStratificationPreviewResponse.js +39 -0
- package/build/library/sdk/model/datasetStratificationPreviewResponse.js.map +1 -0
- package/build/library/sdk/model/models.d.ts +4 -0
- package/build/library/sdk/model/models.js +12 -0
- package/build/library/sdk/model/models.js.map +1 -1
- package/build/library/sdk/model/projectInfoResponse.d.ts +2 -0
- package/build/library/sdk/model/projectInfoResponse.js +5 -0
- package/build/library/sdk/model/projectInfoResponse.js.map +1 -1
- package/build/library/sdk/model/projectInfoResponseAllOf.d.ts +2 -0
- package/build/library/sdk/model/projectInfoResponseAllOf.js +5 -0
- package/build/library/sdk/model/projectInfoResponseAllOf.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export declare class DatasetStratificationOptions {
|
|
13
|
+
/**
|
|
14
|
+
* Proportion of the dataset to use for training. The remainder will be used for testing. For example, a value of 0.8 means 80% training, 20% testing.
|
|
15
|
+
*/
|
|
16
|
+
'splitRatio': number;
|
|
17
|
+
/**
|
|
18
|
+
* Whether to stratify by label. If true, the label column will be used for stratification combined with metadataKeys. If false, only metadataKeys will be used.
|
|
19
|
+
*/
|
|
20
|
+
'stratifyByLabel': boolean;
|
|
21
|
+
/**
|
|
22
|
+
* List of metadata keys to use for stratification. If more than one, they will be combined into composite strata. If stratifyByLabel is true, the label column will be used as well.
|
|
23
|
+
*/
|
|
24
|
+
'metadataKeys': Array<string>;
|
|
25
|
+
/**
|
|
26
|
+
* Whether to exclude samples that are marked as disabled.
|
|
27
|
+
*/
|
|
28
|
+
'excludeDisabledSamples'?: boolean;
|
|
29
|
+
static discriminator: string | undefined;
|
|
30
|
+
static attributeTypeMap: Array<{
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
}>;
|
|
35
|
+
static getAttributeTypeMap(): {
|
|
36
|
+
name: string;
|
|
37
|
+
baseName: string;
|
|
38
|
+
type: string;
|
|
39
|
+
}[];
|
|
40
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.DatasetStratificationOptions = void 0;
|
|
15
|
+
class DatasetStratificationOptions {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetStratificationOptions.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetStratificationOptions = DatasetStratificationOptions;
|
|
21
|
+
DatasetStratificationOptions.discriminator = undefined;
|
|
22
|
+
DatasetStratificationOptions.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "splitRatio",
|
|
25
|
+
"baseName": "splitRatio",
|
|
26
|
+
"type": "number"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "stratifyByLabel",
|
|
30
|
+
"baseName": "stratifyByLabel",
|
|
31
|
+
"type": "boolean"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "metadataKeys",
|
|
35
|
+
"baseName": "metadataKeys",
|
|
36
|
+
"type": "Array<string>"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "excludeDisabledSamples",
|
|
40
|
+
"baseName": "excludeDisabledSamples",
|
|
41
|
+
"type": "boolean"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
//# sourceMappingURL=datasetStratificationOptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetStratificationOptions.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetStratificationOptions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAGH,MAAa,4BAA4B;IA0CrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AA5CL,oEA6CC;AA3BU,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,iBAAiB;QACzB,UAAU,EAAE,iBAAiB;QAC7B,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,eAAe;KAC1B;IACD;QACI,MAAM,EAAE,wBAAwB;QAChC,UAAU,EAAE,wBAAwB;QACpC,MAAM,EAAE,SAAS;KACpB;CAAK,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { DatasetStratificationPreviewDataData } from './datasetStratificationPreviewDataData';
|
|
13
|
+
export declare class DatasetStratificationPreviewData {
|
|
14
|
+
'data': Array<DatasetStratificationPreviewDataData>;
|
|
15
|
+
static discriminator: string | undefined;
|
|
16
|
+
static attributeTypeMap: Array<{
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
}>;
|
|
21
|
+
static getAttributeTypeMap(): {
|
|
22
|
+
name: string;
|
|
23
|
+
baseName: string;
|
|
24
|
+
type: string;
|
|
25
|
+
}[];
|
|
26
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.DatasetStratificationPreviewData = void 0;
|
|
15
|
+
class DatasetStratificationPreviewData {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetStratificationPreviewData.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetStratificationPreviewData = DatasetStratificationPreviewData;
|
|
21
|
+
DatasetStratificationPreviewData.discriminator = undefined;
|
|
22
|
+
DatasetStratificationPreviewData.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "data",
|
|
25
|
+
"baseName": "data",
|
|
26
|
+
"type": "Array<DatasetStratificationPreviewDataData>"
|
|
27
|
+
}
|
|
28
|
+
];
|
|
29
|
+
//# sourceMappingURL=datasetStratificationPreviewData.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetStratificationPreviewData.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetStratificationPreviewData.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,gCAAgC;IAYzC,MAAM,CAAC,mBAAmB;QACtB,OAAO,gCAAgC,CAAC,gBAAgB,CAAC;IAC7D,CAAC;;AAdL,4EAeC;AAZU,8CAAa,GAAuB,SAAS,CAAC;AAE9C,iDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,6CAA6C;KACxD;CAAK,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export declare class DatasetStratificationPreviewDataData {
|
|
13
|
+
'stratValue': string;
|
|
14
|
+
'splitCategory': string;
|
|
15
|
+
'sampleCount': number;
|
|
16
|
+
'percentWithinGroup': number;
|
|
17
|
+
static discriminator: string | undefined;
|
|
18
|
+
static attributeTypeMap: Array<{
|
|
19
|
+
name: string;
|
|
20
|
+
baseName: string;
|
|
21
|
+
type: string;
|
|
22
|
+
}>;
|
|
23
|
+
static getAttributeTypeMap(): {
|
|
24
|
+
name: string;
|
|
25
|
+
baseName: string;
|
|
26
|
+
type: string;
|
|
27
|
+
}[];
|
|
28
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.DatasetStratificationPreviewDataData = void 0;
|
|
15
|
+
class DatasetStratificationPreviewDataData {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetStratificationPreviewDataData.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetStratificationPreviewDataData = DatasetStratificationPreviewDataData;
|
|
21
|
+
DatasetStratificationPreviewDataData.discriminator = undefined;
|
|
22
|
+
DatasetStratificationPreviewDataData.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "stratValue",
|
|
25
|
+
"baseName": "strat_value",
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "splitCategory",
|
|
30
|
+
"baseName": "split_category",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "sampleCount",
|
|
35
|
+
"baseName": "sample_count",
|
|
36
|
+
"type": "number"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "percentWithinGroup",
|
|
40
|
+
"baseName": "percent_within_group",
|
|
41
|
+
"type": "number"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
//# sourceMappingURL=datasetStratificationPreviewDataData.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetStratificationPreviewDataData.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetStratificationPreviewDataData.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAGH,MAAa,oCAAoC;IA8B7C,MAAM,CAAC,mBAAmB;QACtB,OAAO,oCAAoC,CAAC,gBAAgB,CAAC;IACjE,CAAC;;AAhCL,oFAiCC;AA3BU,kDAAa,GAAuB,SAAS,CAAC;AAE9C,qDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,gBAAgB;QAC5B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,cAAc;QAC1B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Edge Impulse API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { DatasetStratificationPreviewDataData } from './datasetStratificationPreviewDataData';
|
|
13
|
+
export declare class DatasetStratificationPreviewResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Whether the operation succeeded
|
|
16
|
+
*/
|
|
17
|
+
'success': boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Optional error description (set if \'success\' was false)
|
|
20
|
+
*/
|
|
21
|
+
'error'?: string;
|
|
22
|
+
'data': Array<DatasetStratificationPreviewDataData>;
|
|
23
|
+
static discriminator: string | undefined;
|
|
24
|
+
static attributeTypeMap: Array<{
|
|
25
|
+
name: string;
|
|
26
|
+
baseName: string;
|
|
27
|
+
type: string;
|
|
28
|
+
}>;
|
|
29
|
+
static getAttributeTypeMap(): {
|
|
30
|
+
name: string;
|
|
31
|
+
baseName: string;
|
|
32
|
+
type: string;
|
|
33
|
+
}[];
|
|
34
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Edge Impulse API
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.DatasetStratificationPreviewResponse = void 0;
|
|
15
|
+
class DatasetStratificationPreviewResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DatasetStratificationPreviewResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DatasetStratificationPreviewResponse = DatasetStratificationPreviewResponse;
|
|
21
|
+
DatasetStratificationPreviewResponse.discriminator = undefined;
|
|
22
|
+
DatasetStratificationPreviewResponse.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "success",
|
|
25
|
+
"baseName": "success",
|
|
26
|
+
"type": "boolean"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "error",
|
|
30
|
+
"baseName": "error",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "data",
|
|
35
|
+
"baseName": "data",
|
|
36
|
+
"type": "Array<DatasetStratificationPreviewDataData>"
|
|
37
|
+
}
|
|
38
|
+
];
|
|
39
|
+
//# sourceMappingURL=datasetStratificationPreviewResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datasetStratificationPreviewResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/datasetStratificationPreviewResponse.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAMH,MAAa,oCAAoC;IA8B7C,MAAM,CAAC,mBAAmB;QACtB,OAAO,oCAAoC,CAAC,gBAAgB,CAAC;IACjE,CAAC;;AAhCL,oFAiCC;AAtBU,kDAAa,GAAuB,SAAS,CAAC;AAE9C,qDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,MAAM;QAClB,MAAM,EAAE,6CAA6C;KACxD;CAAK,CAAC"}
|
|
@@ -261,6 +261,10 @@ export * from './dataExplorerPredictionsResponseAllOf';
|
|
|
261
261
|
export * from './dataExplorerSettings';
|
|
262
262
|
export * from './datasetRatioData';
|
|
263
263
|
export * from './datasetRatioDataRatio';
|
|
264
|
+
export * from './datasetStratificationOptions';
|
|
265
|
+
export * from './datasetStratificationPreviewData';
|
|
266
|
+
export * from './datasetStratificationPreviewDataData';
|
|
267
|
+
export * from './datasetStratificationPreviewResponse';
|
|
264
268
|
export * from './deletePortalFileRequest';
|
|
265
269
|
export * from './deleteUserRequest';
|
|
266
270
|
export * from './dependencyData';
|
|
@@ -278,6 +278,10 @@ __exportStar(require("./dataExplorerPredictionsResponseAllOf"), exports);
|
|
|
278
278
|
__exportStar(require("./dataExplorerSettings"), exports);
|
|
279
279
|
__exportStar(require("./datasetRatioData"), exports);
|
|
280
280
|
__exportStar(require("./datasetRatioDataRatio"), exports);
|
|
281
|
+
__exportStar(require("./datasetStratificationOptions"), exports);
|
|
282
|
+
__exportStar(require("./datasetStratificationPreviewData"), exports);
|
|
283
|
+
__exportStar(require("./datasetStratificationPreviewDataData"), exports);
|
|
284
|
+
__exportStar(require("./datasetStratificationPreviewResponse"), exports);
|
|
281
285
|
__exportStar(require("./deletePortalFileRequest"), exports);
|
|
282
286
|
__exportStar(require("./deleteUserRequest"), exports);
|
|
283
287
|
__exportStar(require("./dependencyData"), exports);
|
|
@@ -1424,6 +1428,10 @@ const dataExplorerPredictionsResponseAllOf_1 = require("./dataExplorerPrediction
|
|
|
1424
1428
|
const dataExplorerSettings_1 = require("./dataExplorerSettings");
|
|
1425
1429
|
const datasetRatioData_1 = require("./datasetRatioData");
|
|
1426
1430
|
const datasetRatioDataRatio_1 = require("./datasetRatioDataRatio");
|
|
1431
|
+
const datasetStratificationOptions_1 = require("./datasetStratificationOptions");
|
|
1432
|
+
const datasetStratificationPreviewData_1 = require("./datasetStratificationPreviewData");
|
|
1433
|
+
const datasetStratificationPreviewDataData_1 = require("./datasetStratificationPreviewDataData");
|
|
1434
|
+
const datasetStratificationPreviewResponse_1 = require("./datasetStratificationPreviewResponse");
|
|
1427
1435
|
const deletePortalFileRequest_1 = require("./deletePortalFileRequest");
|
|
1428
1436
|
const deleteUserRequest_1 = require("./deleteUserRequest");
|
|
1429
1437
|
const dependencyData_1 = require("./dependencyData");
|
|
@@ -2725,6 +2733,10 @@ const typeMap = {
|
|
|
2725
2733
|
"DataExplorerSettings": dataExplorerSettings_1.DataExplorerSettings,
|
|
2726
2734
|
"DatasetRatioData": datasetRatioData_1.DatasetRatioData,
|
|
2727
2735
|
"DatasetRatioDataRatio": datasetRatioDataRatio_1.DatasetRatioDataRatio,
|
|
2736
|
+
"DatasetStratificationOptions": datasetStratificationOptions_1.DatasetStratificationOptions,
|
|
2737
|
+
"DatasetStratificationPreviewData": datasetStratificationPreviewData_1.DatasetStratificationPreviewData,
|
|
2738
|
+
"DatasetStratificationPreviewDataData": datasetStratificationPreviewDataData_1.DatasetStratificationPreviewDataData,
|
|
2739
|
+
"DatasetStratificationPreviewResponse": datasetStratificationPreviewResponse_1.DatasetStratificationPreviewResponse,
|
|
2728
2740
|
"DeletePortalFileRequest": deletePortalFileRequest_1.DeletePortalFileRequest,
|
|
2729
2741
|
"DeleteUserRequest": deleteUserRequest_1.DeleteUserRequest,
|
|
2730
2742
|
"DependencyData": dependencyData_1.DependencyData,
|