edge-impulse-api 1.83.4 → 1.83.6
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/adminApi.js +4 -4
- package/build/library/sdk/api/adminApi.js.map +1 -1
- package/build/library/sdk/api/classifyApi.js +4 -4
- package/build/library/sdk/api/classifyApi.js.map +1 -1
- package/build/library/sdk/api/deploymentApi.d.ts +43 -1
- package/build/library/sdk/api/deploymentApi.js +252 -9
- package/build/library/sdk/api/deploymentApi.js.map +1 -1
- package/build/library/sdk/api/impulseApi.js +12 -12
- package/build/library/sdk/api/impulseApi.js.map +1 -1
- package/build/library/sdk/api/jobsApi.d.ts +5 -4
- package/build/library/sdk/api/jobsApi.js +4 -4
- package/build/library/sdk/api/jobsApi.js.map +1 -1
- package/build/library/sdk/api/learnApi.js +16 -16
- package/build/library/sdk/api/learnApi.js.map +1 -1
- package/build/library/sdk/api/organizationBlocksApi.js +8 -8
- package/build/library/sdk/api/organizationBlocksApi.js.map +1 -1
- package/build/library/sdk/api/organizationCreateProjectApi.js +4 -4
- package/build/library/sdk/api/organizationCreateProjectApi.js.map +1 -1
- package/build/library/sdk/api/organizationDataApi.js +12 -12
- package/build/library/sdk/api/organizationDataApi.js.map +1 -1
- package/build/library/sdk/api/organizationDataCampaignsApi.js +4 -4
- package/build/library/sdk/api/organizationDataCampaignsApi.js.map +1 -1
- package/build/library/sdk/api/organizationsApi.js +28 -28
- package/build/library/sdk/api/organizationsApi.js.map +1 -1
- package/build/library/sdk/api/performanceCalibrationApi.js +4 -4
- package/build/library/sdk/api/performanceCalibrationApi.js.map +1 -1
- package/build/library/sdk/api/projectsApi.js +12 -12
- package/build/library/sdk/api/projectsApi.js.map +1 -1
- package/build/library/sdk/api/rawDataApi.js +4 -4
- package/build/library/sdk/api/rawDataApi.js.map +1 -1
- package/build/library/sdk/api/testApi.js +4 -4
- package/build/library/sdk/api/testApi.js.map +1 -1
- package/build/library/sdk/api/themesApi.js +4 -4
- package/build/library/sdk/api/themesApi.js.map +1 -1
- package/build/library/sdk/api/userApi.js +8 -8
- package/build/library/sdk/api/userApi.js.map +1 -1
- package/build/library/sdk/model/buildOnDeviceModelRequest.d.ts +2 -2
- package/build/library/sdk/model/buildOnDeviceModelRequest.js +1 -1
- package/build/library/sdk/model/buildOnDeviceModelRequest.js.map +1 -1
- package/build/library/sdk/model/buildOnDeviceModelResponse.d.ts +40 -0
- package/build/library/sdk/model/buildOnDeviceModelResponse.js +44 -0
- package/build/library/sdk/model/buildOnDeviceModelResponse.js.map +1 -0
- package/build/library/sdk/model/buildOnDeviceModelResponseAllOf.d.ts +32 -0
- package/build/library/sdk/model/buildOnDeviceModelResponseAllOf.js +34 -0
- package/build/library/sdk/model/buildOnDeviceModelResponseAllOf.js.map +1 -0
- package/build/library/sdk/model/buildOrganizationOnDeviceModelRequest.d.ts +2 -2
- package/build/library/sdk/model/buildOrganizationOnDeviceModelRequest.js +1 -1
- package/build/library/sdk/model/buildOrganizationOnDeviceModelRequest.js.map +1 -1
- package/build/library/sdk/model/deploymentHistory.d.ts +46 -0
- package/build/library/sdk/model/deploymentHistory.js +84 -0
- package/build/library/sdk/model/deploymentHistory.js.map +1 -0
- package/build/library/sdk/model/getDeploymentHistoryResponse.d.ts +34 -0
- package/build/library/sdk/model/getDeploymentHistoryResponse.js +39 -0
- package/build/library/sdk/model/getDeploymentHistoryResponse.js.map +1 -0
- package/build/library/sdk/model/getDeploymentHistoryResponseAllOf.d.ts +26 -0
- package/build/library/sdk/model/getDeploymentHistoryResponseAllOf.js +29 -0
- package/build/library/sdk/model/getDeploymentHistoryResponseAllOf.js.map +1 -0
- package/build/library/sdk/model/listDeploymentHistoryResponse.d.ts +35 -0
- package/build/library/sdk/model/listDeploymentHistoryResponse.js +44 -0
- package/build/library/sdk/model/listDeploymentHistoryResponse.js.map +1 -0
- package/build/library/sdk/model/listDeploymentHistoryResponseAllOf.d.ts +27 -0
- package/build/library/sdk/model/listDeploymentHistoryResponseAllOf.js +34 -0
- package/build/library/sdk/model/listDeploymentHistoryResponseAllOf.js.map +1 -0
- package/build/library/sdk/model/models.d.ts +7 -0
- package/build/library/sdk/model/models.js +21 -0
- package/build/library/sdk/model/models.js.map +1 -1
- package/package.json +2 -7
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { DeploymentTargetEngine } from './deploymentTargetEngine';
|
|
13
|
-
import {
|
|
13
|
+
import { KerasModelVariantEnum } from './kerasModelVariantEnum';
|
|
14
14
|
export declare class BuildOnDeviceModelRequest {
|
|
15
15
|
'engine': DeploymentTargetEngine;
|
|
16
|
-
'modelType'?:
|
|
16
|
+
'modelType'?: KerasModelVariantEnum;
|
|
17
17
|
/**
|
|
18
18
|
* List of custom parameters for this deployment job (see the list of parameters that the block exposes in DeploymentTarget#parameters).
|
|
19
19
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildOnDeviceModelRequest.js","sourceRoot":"","sources":["../../../../library/sdk/model/buildOnDeviceModelRequest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAKH,MAAa,yBAAyB;IA2BlC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AA7BL,8DA8BC;AAtBU,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"buildOnDeviceModelRequest.js","sourceRoot":"","sources":["../../../../library/sdk/model/buildOnDeviceModelRequest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAKH,MAAa,yBAAyB;IA2BlC,MAAM,CAAC,mBAAmB;QACtB,OAAO,yBAAyB,CAAC,gBAAgB,CAAC;IACtD,CAAC;;AA7BL,8DA8BC;AAtBU,uCAAa,GAAuB,SAAS,CAAC;AAE9C,0CAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,uBAAuB;KAClC;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,4BAA4B;KACvC;CAAK,CAAC"}
|
|
@@ -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 BuildOnDeviceModelResponse {
|
|
13
|
+
/**
|
|
14
|
+
* Whether the operation succeeded
|
|
15
|
+
*/
|
|
16
|
+
'success': boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Optional error description (set if \'success\' was false)
|
|
19
|
+
*/
|
|
20
|
+
'error'?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Job identifier. Status updates will include this identifier.
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Deployment version, use `downloadHistoricDeployment` to later download the deployment using this identifier.
|
|
27
|
+
*/
|
|
28
|
+
'deploymentVersion': number;
|
|
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.BuildOnDeviceModelResponse = void 0;
|
|
15
|
+
class BuildOnDeviceModelResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return BuildOnDeviceModelResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.BuildOnDeviceModelResponse = BuildOnDeviceModelResponse;
|
|
21
|
+
BuildOnDeviceModelResponse.discriminator = undefined;
|
|
22
|
+
BuildOnDeviceModelResponse.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": "id",
|
|
35
|
+
"baseName": "id",
|
|
36
|
+
"type": "number"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "deploymentVersion",
|
|
40
|
+
"baseName": "deploymentVersion",
|
|
41
|
+
"type": "number"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
//# sourceMappingURL=buildOnDeviceModelResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildOnDeviceModelResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/buildOnDeviceModelResponse.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAKH,MAAa,0BAA0B;IA0CnC,MAAM,CAAC,mBAAmB;QACtB,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;;AA5CL,gEA6CC;AA3BU,wCAAa,GAAuB,SAAS,CAAC;AAE9C,2CAAgB,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,IAAI;QACZ,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 BuildOnDeviceModelResponseAllOf {
|
|
13
|
+
/**
|
|
14
|
+
* Job identifier. Status updates will include this identifier.
|
|
15
|
+
*/
|
|
16
|
+
'id': number;
|
|
17
|
+
/**
|
|
18
|
+
* Deployment version, use `downloadHistoricDeployment` to later download the deployment using this identifier.
|
|
19
|
+
*/
|
|
20
|
+
'deploymentVersion': number;
|
|
21
|
+
static discriminator: string | undefined;
|
|
22
|
+
static attributeTypeMap: Array<{
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
}>;
|
|
27
|
+
static getAttributeTypeMap(): {
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}[];
|
|
32
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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.BuildOnDeviceModelResponseAllOf = void 0;
|
|
15
|
+
class BuildOnDeviceModelResponseAllOf {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return BuildOnDeviceModelResponseAllOf.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.BuildOnDeviceModelResponseAllOf = BuildOnDeviceModelResponseAllOf;
|
|
21
|
+
BuildOnDeviceModelResponseAllOf.discriminator = undefined;
|
|
22
|
+
BuildOnDeviceModelResponseAllOf.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "id",
|
|
25
|
+
"baseName": "id",
|
|
26
|
+
"type": "number"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "deploymentVersion",
|
|
30
|
+
"baseName": "deploymentVersion",
|
|
31
|
+
"type": "number"
|
|
32
|
+
}
|
|
33
|
+
];
|
|
34
|
+
//# sourceMappingURL=buildOnDeviceModelResponseAllOf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildOnDeviceModelResponseAllOf.js","sourceRoot":"","sources":["../../../../library/sdk/model/buildOnDeviceModelResponseAllOf.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAGH,MAAa,+BAA+B;IAwBxC,MAAM,CAAC,mBAAmB;QACtB,OAAO,+BAA+B,CAAC,gBAAgB,CAAC;IAC5D,CAAC;;AA1BL,0EA2BC;AAjBU,6CAAa,GAAuB,SAAS,CAAC;AAE9C,gDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,IAAI;QACZ,UAAU,EAAE,IAAI;QAChB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC"}
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { DeploymentTargetEngine } from './deploymentTargetEngine';
|
|
13
|
-
import {
|
|
13
|
+
import { KerasModelVariantEnum } from './kerasModelVariantEnum';
|
|
14
14
|
export declare class BuildOrganizationOnDeviceModelRequest {
|
|
15
15
|
'engine': DeploymentTargetEngine;
|
|
16
16
|
'deployBlockId': number;
|
|
17
|
-
'modelType'?:
|
|
17
|
+
'modelType'?: KerasModelVariantEnum;
|
|
18
18
|
/**
|
|
19
19
|
* List of custom parameters for this deployment job (see the list of parameters that the block exposes in DeploymentTarget#parameters).
|
|
20
20
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildOrganizationOnDeviceModelRequest.js","sourceRoot":"","sources":["../../../../library/sdk/model/buildOrganizationOnDeviceModelRequest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAKH,MAAa,qCAAqC;IAiC9C,MAAM,CAAC,mBAAmB;QACtB,OAAO,qCAAqC,CAAC,gBAAgB,CAAC;IAClE,CAAC;;AAnCL,sFAoCC;AA3BU,mDAAa,GAAuB,SAAS,CAAC;AAE9C,sDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"buildOrganizationOnDeviceModelRequest.js","sourceRoot":"","sources":["../../../../library/sdk/model/buildOrganizationOnDeviceModelRequest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAKH,MAAa,qCAAqC;IAiC9C,MAAM,CAAC,mBAAmB;QACtB,OAAO,qCAAqC,CAAC,gBAAgB,CAAC;IAClE,CAAC;;AAnCL,sFAoCC;AA3BU,mDAAa,GAAuB,SAAS,CAAC;AAE9C,sDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,uBAAuB;KAClC;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,4BAA4B;KACvC;CAAK,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
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 { CreatedUpdatedByUser } from './createdUpdatedByUser';
|
|
13
|
+
import { DeploymentTargetEngine } from './deploymentTargetEngine';
|
|
14
|
+
import { KerasModelTypeEnum } from './kerasModelTypeEnum';
|
|
15
|
+
import { ProjectDeploymentTarget } from './projectDeploymentTarget';
|
|
16
|
+
export declare class DeploymentHistory {
|
|
17
|
+
/**
|
|
18
|
+
* Date when the model was deployed
|
|
19
|
+
*/
|
|
20
|
+
'created': Date;
|
|
21
|
+
'deploymentVersion': number;
|
|
22
|
+
'deploymentFormat': string;
|
|
23
|
+
'deploymentTarget'?: ProjectDeploymentTarget;
|
|
24
|
+
'engine': DeploymentTargetEngine;
|
|
25
|
+
'modelType'?: KerasModelTypeEnum;
|
|
26
|
+
'impulseId': number;
|
|
27
|
+
'impulseName': string;
|
|
28
|
+
'impulseIsDeleted': boolean;
|
|
29
|
+
'createdByUser'?: CreatedUpdatedByUser;
|
|
30
|
+
/**
|
|
31
|
+
* Set to true if the deployment no longer exactly matches the impulse it was created from (e.g. model was trained since the deployment was created, or some thresholds have changed)
|
|
32
|
+
*/
|
|
33
|
+
'impulseHasChangedSinceDeployment': boolean;
|
|
34
|
+
'downloadUrl': string;
|
|
35
|
+
static discriminator: string | undefined;
|
|
36
|
+
static attributeTypeMap: Array<{
|
|
37
|
+
name: string;
|
|
38
|
+
baseName: string;
|
|
39
|
+
type: string;
|
|
40
|
+
}>;
|
|
41
|
+
static getAttributeTypeMap(): {
|
|
42
|
+
name: string;
|
|
43
|
+
baseName: string;
|
|
44
|
+
type: string;
|
|
45
|
+
}[];
|
|
46
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
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.DeploymentHistory = void 0;
|
|
15
|
+
class DeploymentHistory {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DeploymentHistory.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.DeploymentHistory = DeploymentHistory;
|
|
21
|
+
DeploymentHistory.discriminator = undefined;
|
|
22
|
+
DeploymentHistory.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "created",
|
|
25
|
+
"baseName": "created",
|
|
26
|
+
"type": "Date"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "deploymentVersion",
|
|
30
|
+
"baseName": "deploymentVersion",
|
|
31
|
+
"type": "number"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "deploymentFormat",
|
|
35
|
+
"baseName": "deploymentFormat",
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "deploymentTarget",
|
|
40
|
+
"baseName": "deploymentTarget",
|
|
41
|
+
"type": "ProjectDeploymentTarget"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "engine",
|
|
45
|
+
"baseName": "engine",
|
|
46
|
+
"type": "DeploymentTargetEngine"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "modelType",
|
|
50
|
+
"baseName": "modelType",
|
|
51
|
+
"type": "KerasModelTypeEnum"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "impulseId",
|
|
55
|
+
"baseName": "impulseId",
|
|
56
|
+
"type": "number"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "impulseName",
|
|
60
|
+
"baseName": "impulseName",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "impulseIsDeleted",
|
|
65
|
+
"baseName": "impulseIsDeleted",
|
|
66
|
+
"type": "boolean"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "createdByUser",
|
|
70
|
+
"baseName": "createdByUser",
|
|
71
|
+
"type": "CreatedUpdatedByUser"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "impulseHasChangedSinceDeployment",
|
|
75
|
+
"baseName": "impulseHasChangedSinceDeployment",
|
|
76
|
+
"type": "boolean"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "downloadUrl",
|
|
80
|
+
"baseName": "downloadUrl",
|
|
81
|
+
"type": "string"
|
|
82
|
+
}
|
|
83
|
+
];
|
|
84
|
+
//# sourceMappingURL=deploymentHistory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deploymentHistory.js","sourceRoot":"","sources":["../../../../library/sdk/model/deploymentHistory.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAOH,MAAa,iBAAiB;IAoF1B,MAAM,CAAC,mBAAmB;QACtB,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;;AAtFL,8CAuFC;AAnEU,+BAAa,GAAuB,SAAS,CAAC;AAE9C,kCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,MAAM;KACjB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,yBAAyB;KACpC;IACD;QACI,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,QAAQ;QACpB,MAAM,EAAE,wBAAwB;KACnC;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,oBAAoB;KAC/B;IACD;QACI,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,WAAW;QACvB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,kBAAkB;QAC1B,UAAU,EAAE,kBAAkB;QAC9B,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,kCAAkC;QAC1C,UAAU,EAAE,kCAAkC;QAC9C,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,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 { DeploymentHistory } from './deploymentHistory';
|
|
13
|
+
export declare class GetDeploymentHistoryResponse {
|
|
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
|
+
'deployment': DeploymentHistory;
|
|
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.GetDeploymentHistoryResponse = void 0;
|
|
15
|
+
class GetDeploymentHistoryResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetDeploymentHistoryResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GetDeploymentHistoryResponse = GetDeploymentHistoryResponse;
|
|
21
|
+
GetDeploymentHistoryResponse.discriminator = undefined;
|
|
22
|
+
GetDeploymentHistoryResponse.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": "deployment",
|
|
35
|
+
"baseName": "deployment",
|
|
36
|
+
"type": "DeploymentHistory"
|
|
37
|
+
}
|
|
38
|
+
];
|
|
39
|
+
//# sourceMappingURL=getDeploymentHistoryResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDeploymentHistoryResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/getDeploymentHistoryResponse.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAMH,MAAa,4BAA4B;IA8BrC,MAAM,CAAC,mBAAmB;QACtB,OAAO,4BAA4B,CAAC,gBAAgB,CAAC;IACzD,CAAC;;AAhCL,oEAiCC;AAtBU,0CAAa,GAAuB,SAAS,CAAC;AAE9C,6CAAgB,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,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,mBAAmB;KAC9B;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 { DeploymentHistory } from './deploymentHistory';
|
|
13
|
+
export declare class GetDeploymentHistoryResponseAllOf {
|
|
14
|
+
'deployment': DeploymentHistory;
|
|
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.GetDeploymentHistoryResponseAllOf = void 0;
|
|
15
|
+
class GetDeploymentHistoryResponseAllOf {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetDeploymentHistoryResponseAllOf.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.GetDeploymentHistoryResponseAllOf = GetDeploymentHistoryResponseAllOf;
|
|
21
|
+
GetDeploymentHistoryResponseAllOf.discriminator = undefined;
|
|
22
|
+
GetDeploymentHistoryResponseAllOf.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "deployment",
|
|
25
|
+
"baseName": "deployment",
|
|
26
|
+
"type": "DeploymentHistory"
|
|
27
|
+
}
|
|
28
|
+
];
|
|
29
|
+
//# sourceMappingURL=getDeploymentHistoryResponseAllOf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDeploymentHistoryResponseAllOf.js","sourceRoot":"","sources":["../../../../library/sdk/model/getDeploymentHistoryResponseAllOf.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,iCAAiC;IAY1C,MAAM,CAAC,mBAAmB;QACtB,OAAO,iCAAiC,CAAC,gBAAgB,CAAC;IAC9D,CAAC;;AAdL,8EAeC;AAZU,+CAAa,GAAuB,SAAS,CAAC;AAE9C,kDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,mBAAmB;KAC9B;CAAK,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { DeploymentHistory } from './deploymentHistory';
|
|
13
|
+
export declare class ListDeploymentHistoryResponse {
|
|
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
|
+
'deployments': Array<DeploymentHistory>;
|
|
23
|
+
'totalDeploymentCount': number;
|
|
24
|
+
static discriminator: string | undefined;
|
|
25
|
+
static attributeTypeMap: Array<{
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
}>;
|
|
30
|
+
static getAttributeTypeMap(): {
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
}[];
|
|
35
|
+
}
|
|
@@ -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.ListDeploymentHistoryResponse = void 0;
|
|
15
|
+
class ListDeploymentHistoryResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ListDeploymentHistoryResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ListDeploymentHistoryResponse = ListDeploymentHistoryResponse;
|
|
21
|
+
ListDeploymentHistoryResponse.discriminator = undefined;
|
|
22
|
+
ListDeploymentHistoryResponse.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": "deployments",
|
|
35
|
+
"baseName": "deployments",
|
|
36
|
+
"type": "Array<DeploymentHistory>"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "totalDeploymentCount",
|
|
40
|
+
"baseName": "totalDeploymentCount",
|
|
41
|
+
"type": "number"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
//# sourceMappingURL=listDeploymentHistoryResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listDeploymentHistoryResponse.js","sourceRoot":"","sources":["../../../../library/sdk/model/listDeploymentHistoryResponse.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAMH,MAAa,6BAA6B;IAoCtC,MAAM,CAAC,mBAAmB;QACtB,OAAO,6BAA6B,CAAC,gBAAgB,CAAC;IAC1D,CAAC;;AAtCL,sEAuCC;AA3BU,2CAAa,GAAuB,SAAS,CAAC;AAE9C,8CAAgB,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,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,0BAA0B;KACrC;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
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 { DeploymentHistory } from './deploymentHistory';
|
|
13
|
+
export declare class ListDeploymentHistoryResponseAllOf {
|
|
14
|
+
'deployments': Array<DeploymentHistory>;
|
|
15
|
+
'totalDeploymentCount': number;
|
|
16
|
+
static discriminator: string | undefined;
|
|
17
|
+
static attributeTypeMap: Array<{
|
|
18
|
+
name: string;
|
|
19
|
+
baseName: string;
|
|
20
|
+
type: string;
|
|
21
|
+
}>;
|
|
22
|
+
static getAttributeTypeMap(): {
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
}[];
|
|
27
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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.ListDeploymentHistoryResponseAllOf = void 0;
|
|
15
|
+
class ListDeploymentHistoryResponseAllOf {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ListDeploymentHistoryResponseAllOf.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ListDeploymentHistoryResponseAllOf = ListDeploymentHistoryResponseAllOf;
|
|
21
|
+
ListDeploymentHistoryResponseAllOf.discriminator = undefined;
|
|
22
|
+
ListDeploymentHistoryResponseAllOf.attributeTypeMap = [
|
|
23
|
+
{
|
|
24
|
+
"name": "deployments",
|
|
25
|
+
"baseName": "deployments",
|
|
26
|
+
"type": "Array<DeploymentHistory>"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "totalDeploymentCount",
|
|
30
|
+
"baseName": "totalDeploymentCount",
|
|
31
|
+
"type": "number"
|
|
32
|
+
}
|
|
33
|
+
];
|
|
34
|
+
//# sourceMappingURL=listDeploymentHistoryResponseAllOf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listDeploymentHistoryResponseAllOf.js","sourceRoot":"","sources":["../../../../library/sdk/model/listDeploymentHistoryResponseAllOf.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,kCAAkC;IAkB3C,MAAM,CAAC,mBAAmB;QACtB,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;;AApBL,gFAqBC;AAjBU,gDAAa,GAAuB,SAAS,CAAC;AAE9C,mDAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,aAAa;QACrB,UAAU,EAAE,aAAa;QACzB,MAAM,EAAE,0BAA0B;KACrC;IACD;QACI,MAAM,EAAE,sBAAsB;QAC9B,UAAU,EAAE,sBAAsB;QAClC,MAAM,EAAE,QAAQ;KACnB;CAAK,CAAC"}
|