@forteplatforms/sdk 1.0.61 → 1.0.85
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/dist/generated/apis/ProjectsServerApi.d.ts +115 -1
- package/dist/generated/apis/ProjectsServerApi.js +527 -2
- package/dist/generated/models/BuildStepLog.d.ts +20 -0
- package/dist/generated/models/BuildStepLog.js +20 -0
- package/dist/generated/models/CreateWebAppRequest.d.ts +110 -0
- package/dist/generated/models/CreateWebAppRequest.js +85 -0
- package/dist/generated/models/DockerfileDetectionOutput.d.ts +0 -6
- package/dist/generated/models/DockerfileDetectionOutput.js +0 -4
- package/dist/generated/models/DockerfileGenerationResponse.d.ts +1 -1
- package/dist/generated/models/ForteApiException.d.ts +5 -0
- package/dist/generated/models/ForteApiException.js +6 -1
- package/dist/generated/models/HealthCheckDetectionResponse.d.ts +1 -1
- package/dist/generated/models/PaginatedResponseWebAppBuildRequestObject.d.ts +45 -0
- package/dist/generated/models/PaginatedResponseWebAppBuildRequestObject.js +58 -0
- package/dist/generated/models/ProjectObject.d.ts +3 -3
- package/dist/generated/models/ProjectObject.js +4 -4
- package/dist/generated/models/SendUserEmailRequest.d.ts +38 -0
- package/dist/generated/models/SendUserEmailRequest.js +55 -0
- package/dist/generated/models/SendUserSmsRequest.d.ts +32 -0
- package/dist/generated/models/SendUserSmsRequest.js +51 -0
- package/dist/generated/models/ServiceBuildRequestObject.d.ts +10 -0
- package/dist/generated/models/ServiceBuildRequestObject.js +10 -0
- package/dist/generated/models/UpdateWebAppRequest.d.ts +90 -0
- package/dist/generated/models/UpdateWebAppRequest.js +67 -0
- package/dist/generated/models/UpdateWebAppResponse.d.ts +40 -0
- package/dist/generated/models/UpdateWebAppResponse.js +55 -0
- package/dist/generated/models/UserActionLogObject.d.ts +7 -0
- package/dist/generated/models/UserActionLogObject.js +8 -1
- package/dist/generated/models/WebAppBuildRequestObject.d.ts +219 -0
- package/dist/generated/models/WebAppBuildRequestObject.js +149 -0
- package/dist/generated/models/WebAppDetectionError.d.ts +50 -0
- package/dist/generated/models/WebAppDetectionError.js +63 -0
- package/dist/generated/models/WebAppDetectionResponse.d.ts +89 -0
- package/dist/generated/models/WebAppDetectionResponse.js +74 -0
- package/dist/generated/models/WebAppObject.d.ts +201 -0
- package/dist/generated/models/{StaticWebAppObject.js → WebAppObject.js} +45 -17
- package/dist/generated/models/index.d.ts +10 -1
- package/dist/generated/models/index.js +10 -1
- package/package.json +1 -1
- package/dist/generated/models/StaticWebAppObject.d.ts +0 -132
|
@@ -42,6 +42,16 @@ exports.ServiceBuildRequestObjectStatusType = {
|
|
|
42
42
|
VALIDATING_SERVICE_HEALTH: 'VALIDATING_SERVICE_HEALTH',
|
|
43
43
|
DEPLOYMENT_FAILURE: 'DEPLOYMENT_FAILURE',
|
|
44
44
|
VALIDATION_HEALTH_CHECK_FAILURE: 'VALIDATION_HEALTH_CHECK_FAILURE',
|
|
45
|
+
DETECTING_WEB_APP_CONFIG: 'DETECTING_WEB_APP_CONFIG',
|
|
46
|
+
WEB_APP_CONFIG_DETECTION_FAILURE: 'WEB_APP_CONFIG_DETECTION_FAILURE',
|
|
47
|
+
BUILDING_WEB_APP: 'BUILDING_WEB_APP',
|
|
48
|
+
WEB_APP_BUILD_FAILURE: 'WEB_APP_BUILD_FAILURE',
|
|
49
|
+
DEPLOYING_STATIC_SITE: 'DEPLOYING_STATIC_SITE',
|
|
50
|
+
STATIC_SITE_DEPLOYMENT_FAILURE: 'STATIC_SITE_DEPLOYMENT_FAILURE',
|
|
51
|
+
DEPLOYING_SERVER_SIDE_SITE: 'DEPLOYING_SERVER_SIDE_SITE',
|
|
52
|
+
SERVER_SIDE_SITE_DEPLOYMENT_FAILURE: 'SERVER_SIDE_SITE_DEPLOYMENT_FAILURE',
|
|
53
|
+
CONFIGURING_CUSTOM_DOMAIN: 'CONFIGURING_CUSTOM_DOMAIN',
|
|
54
|
+
CUSTOM_DOMAIN_CONFIGURATION_FAILURE: 'CUSTOM_DOMAIN_CONFIGURATION_FAILURE',
|
|
45
55
|
CANCELLED: 'CANCELLED',
|
|
46
56
|
FAILED: 'FAILED',
|
|
47
57
|
SUCCEEDED: 'SUCCEEDED'
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UpdateWebAppRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateWebAppRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateWebAppRequest
|
|
22
|
+
*/
|
|
23
|
+
webAppName?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateWebAppRequest
|
|
28
|
+
*/
|
|
29
|
+
buildCommand?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateWebAppRequest
|
|
34
|
+
*/
|
|
35
|
+
buildPath?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdateWebAppRequest
|
|
40
|
+
*/
|
|
41
|
+
packageManager?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UpdateWebAppRequest
|
|
46
|
+
*/
|
|
47
|
+
nodeVersion?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof UpdateWebAppRequest
|
|
52
|
+
*/
|
|
53
|
+
installCommand?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {{ [key: string]: string; }}
|
|
57
|
+
* @memberof UpdateWebAppRequest
|
|
58
|
+
*/
|
|
59
|
+
environmentVariables?: {
|
|
60
|
+
[key: string]: string;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {{ [key: string]: string; }}
|
|
65
|
+
* @memberof UpdateWebAppRequest
|
|
66
|
+
*/
|
|
67
|
+
secretsToUpsert?: {
|
|
68
|
+
[key: string]: string;
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {Set<string>}
|
|
73
|
+
* @memberof UpdateWebAppRequest
|
|
74
|
+
*/
|
|
75
|
+
secretKeysToDelete?: Set<string>;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {boolean}
|
|
79
|
+
* @memberof UpdateWebAppRequest
|
|
80
|
+
*/
|
|
81
|
+
resetDetectedConfig?: boolean;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Check if a given object implements the UpdateWebAppRequest interface.
|
|
85
|
+
*/
|
|
86
|
+
export declare function instanceOfUpdateWebAppRequest(value: object): value is UpdateWebAppRequest;
|
|
87
|
+
export declare function UpdateWebAppRequestFromJSON(json: any): UpdateWebAppRequest;
|
|
88
|
+
export declare function UpdateWebAppRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWebAppRequest;
|
|
89
|
+
export declare function UpdateWebAppRequestToJSON(json: any): UpdateWebAppRequest;
|
|
90
|
+
export declare function UpdateWebAppRequestToJSONTyped(value?: UpdateWebAppRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* OpenAPI definition
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfUpdateWebAppRequest = instanceOfUpdateWebAppRequest;
|
|
17
|
+
exports.UpdateWebAppRequestFromJSON = UpdateWebAppRequestFromJSON;
|
|
18
|
+
exports.UpdateWebAppRequestFromJSONTyped = UpdateWebAppRequestFromJSONTyped;
|
|
19
|
+
exports.UpdateWebAppRequestToJSON = UpdateWebAppRequestToJSON;
|
|
20
|
+
exports.UpdateWebAppRequestToJSONTyped = UpdateWebAppRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the UpdateWebAppRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfUpdateWebAppRequest(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function UpdateWebAppRequestFromJSON(json) {
|
|
28
|
+
return UpdateWebAppRequestFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function UpdateWebAppRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'webAppName': json['webAppName'] == null ? undefined : json['webAppName'],
|
|
36
|
+
'buildCommand': json['buildCommand'] == null ? undefined : json['buildCommand'],
|
|
37
|
+
'buildPath': json['buildPath'] == null ? undefined : json['buildPath'],
|
|
38
|
+
'packageManager': json['packageManager'] == null ? undefined : json['packageManager'],
|
|
39
|
+
'nodeVersion': json['nodeVersion'] == null ? undefined : json['nodeVersion'],
|
|
40
|
+
'installCommand': json['installCommand'] == null ? undefined : json['installCommand'],
|
|
41
|
+
'environmentVariables': json['environmentVariables'] == null ? undefined : json['environmentVariables'],
|
|
42
|
+
'secretsToUpsert': json['secretsToUpsert'] == null ? undefined : json['secretsToUpsert'],
|
|
43
|
+
'secretKeysToDelete': json['secretKeysToDelete'] == null ? undefined : new Set(json['secretKeysToDelete']),
|
|
44
|
+
'resetDetectedConfig': json['resetDetectedConfig'] == null ? undefined : json['resetDetectedConfig'],
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
function UpdateWebAppRequestToJSON(json) {
|
|
48
|
+
return UpdateWebAppRequestToJSONTyped(json, false);
|
|
49
|
+
}
|
|
50
|
+
function UpdateWebAppRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
51
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
52
|
+
if (value == null) {
|
|
53
|
+
return value;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'webAppName': value['webAppName'],
|
|
57
|
+
'buildCommand': value['buildCommand'],
|
|
58
|
+
'buildPath': value['buildPath'],
|
|
59
|
+
'packageManager': value['packageManager'],
|
|
60
|
+
'nodeVersion': value['nodeVersion'],
|
|
61
|
+
'installCommand': value['installCommand'],
|
|
62
|
+
'environmentVariables': value['environmentVariables'],
|
|
63
|
+
'secretsToUpsert': value['secretsToUpsert'],
|
|
64
|
+
'secretKeysToDelete': value['secretKeysToDelete'] == null ? undefined : Array.from(value['secretKeysToDelete']),
|
|
65
|
+
'resetDetectedConfig': value['resetDetectedConfig'],
|
|
66
|
+
};
|
|
67
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
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 type { WebAppObject } from './WebAppObject';
|
|
13
|
+
import type { WebAppBuildRequestObject } from './WebAppBuildRequestObject';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface UpdateWebAppResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateWebAppResponse {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {WebAppObject}
|
|
23
|
+
* @memberof UpdateWebAppResponse
|
|
24
|
+
*/
|
|
25
|
+
updatedWebApp: WebAppObject;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {WebAppBuildRequestObject}
|
|
29
|
+
* @memberof UpdateWebAppResponse
|
|
30
|
+
*/
|
|
31
|
+
build?: WebAppBuildRequestObject;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the UpdateWebAppResponse interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfUpdateWebAppResponse(value: object): value is UpdateWebAppResponse;
|
|
37
|
+
export declare function UpdateWebAppResponseFromJSON(json: any): UpdateWebAppResponse;
|
|
38
|
+
export declare function UpdateWebAppResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWebAppResponse;
|
|
39
|
+
export declare function UpdateWebAppResponseToJSON(json: any): UpdateWebAppResponse;
|
|
40
|
+
export declare function UpdateWebAppResponseToJSONTyped(value?: UpdateWebAppResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* OpenAPI definition
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfUpdateWebAppResponse = instanceOfUpdateWebAppResponse;
|
|
17
|
+
exports.UpdateWebAppResponseFromJSON = UpdateWebAppResponseFromJSON;
|
|
18
|
+
exports.UpdateWebAppResponseFromJSONTyped = UpdateWebAppResponseFromJSONTyped;
|
|
19
|
+
exports.UpdateWebAppResponseToJSON = UpdateWebAppResponseToJSON;
|
|
20
|
+
exports.UpdateWebAppResponseToJSONTyped = UpdateWebAppResponseToJSONTyped;
|
|
21
|
+
var WebAppObject_1 = require("./WebAppObject");
|
|
22
|
+
var WebAppBuildRequestObject_1 = require("./WebAppBuildRequestObject");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the UpdateWebAppResponse interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfUpdateWebAppResponse(value) {
|
|
27
|
+
if (!('updatedWebApp' in value) || value['updatedWebApp'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function UpdateWebAppResponseFromJSON(json) {
|
|
32
|
+
return UpdateWebAppResponseFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function UpdateWebAppResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'updatedWebApp': (0, WebAppObject_1.WebAppObjectFromJSON)(json['updatedWebApp']),
|
|
40
|
+
'build': json['build'] == null ? undefined : (0, WebAppBuildRequestObject_1.WebAppBuildRequestObjectFromJSON)(json['build']),
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function UpdateWebAppResponseToJSON(json) {
|
|
44
|
+
return UpdateWebAppResponseToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function UpdateWebAppResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'updatedWebApp': (0, WebAppObject_1.WebAppObjectToJSON)(value['updatedWebApp']),
|
|
53
|
+
'build': (0, WebAppBuildRequestObject_1.WebAppBuildRequestObjectToJSON)(value['build']),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -60,6 +60,13 @@ export declare const UserActionLogObjectActionTypeType: {
|
|
|
60
60
|
readonly CONTACT_METHOD_VERIFIED: "CONTACT_METHOD_VERIFIED";
|
|
61
61
|
readonly USER_LOGIN: "USER_LOGIN";
|
|
62
62
|
readonly USER_LOGOUT: "USER_LOGOUT";
|
|
63
|
+
readonly PAYMENT_CONNECT_SUBMITTED: "PAYMENT_CONNECT_SUBMITTED";
|
|
64
|
+
readonly PAYMENT_CONNECT_UPDATED: "PAYMENT_CONNECT_UPDATED";
|
|
65
|
+
readonly PAYMENT_CONNECT_RESUME_LINK_SENT: "PAYMENT_CONNECT_RESUME_LINK_SENT";
|
|
66
|
+
readonly PAYMENT_CONNECT_SYNCED: "PAYMENT_CONNECT_SYNCED";
|
|
67
|
+
readonly PAYMENT_CONNECT_VERIFIED: "PAYMENT_CONNECT_VERIFIED";
|
|
68
|
+
readonly PAYMENT_CONNECT_REJECTED: "PAYMENT_CONNECT_REJECTED";
|
|
69
|
+
readonly PAYMENT_CONNECT_DEAUTHORIZED: "PAYMENT_CONNECT_DEAUTHORIZED";
|
|
63
70
|
};
|
|
64
71
|
export type UserActionLogObjectActionTypeType = typeof UserActionLogObjectActionTypeType[keyof typeof UserActionLogObjectActionTypeType];
|
|
65
72
|
/**
|
|
@@ -32,7 +32,14 @@ exports.UserActionLogObjectActionTypeType = {
|
|
|
32
32
|
CONTACT_METHOD_VERIFICATION_CODE_RE_SENT: 'CONTACT_METHOD_VERIFICATION_CODE_RE_SENT',
|
|
33
33
|
CONTACT_METHOD_VERIFIED: 'CONTACT_METHOD_VERIFIED',
|
|
34
34
|
USER_LOGIN: 'USER_LOGIN',
|
|
35
|
-
USER_LOGOUT: 'USER_LOGOUT'
|
|
35
|
+
USER_LOGOUT: 'USER_LOGOUT',
|
|
36
|
+
PAYMENT_CONNECT_SUBMITTED: 'PAYMENT_CONNECT_SUBMITTED',
|
|
37
|
+
PAYMENT_CONNECT_UPDATED: 'PAYMENT_CONNECT_UPDATED',
|
|
38
|
+
PAYMENT_CONNECT_RESUME_LINK_SENT: 'PAYMENT_CONNECT_RESUME_LINK_SENT',
|
|
39
|
+
PAYMENT_CONNECT_SYNCED: 'PAYMENT_CONNECT_SYNCED',
|
|
40
|
+
PAYMENT_CONNECT_VERIFIED: 'PAYMENT_CONNECT_VERIFIED',
|
|
41
|
+
PAYMENT_CONNECT_REJECTED: 'PAYMENT_CONNECT_REJECTED',
|
|
42
|
+
PAYMENT_CONNECT_DEAUTHORIZED: 'PAYMENT_CONNECT_DEAUTHORIZED'
|
|
36
43
|
};
|
|
37
44
|
/**
|
|
38
45
|
* Check if a given object implements the UserActionLogObject interface.
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
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 type { WebAppDetectionError } from './WebAppDetectionError';
|
|
13
|
+
import type { BuildStepLog } from './BuildStepLog';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface WebAppBuildRequestObject
|
|
18
|
+
*/
|
|
19
|
+
export interface WebAppBuildRequestObject {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof WebAppBuildRequestObject
|
|
24
|
+
*/
|
|
25
|
+
buildId?: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {WebAppDetectionError}
|
|
29
|
+
* @memberof WebAppBuildRequestObject
|
|
30
|
+
*/
|
|
31
|
+
detectionError?: WebAppDetectionError;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof WebAppBuildRequestObject
|
|
36
|
+
*/
|
|
37
|
+
packageManager?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof WebAppBuildRequestObject
|
|
42
|
+
*/
|
|
43
|
+
nodeVersion?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof WebAppBuildRequestObject
|
|
48
|
+
*/
|
|
49
|
+
buildCommand?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof WebAppBuildRequestObject
|
|
54
|
+
*/
|
|
55
|
+
buildPath?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof WebAppBuildRequestObject
|
|
60
|
+
*/
|
|
61
|
+
detectedFramework?: string;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof WebAppBuildRequestObject
|
|
66
|
+
*/
|
|
67
|
+
installCommand?: string;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof WebAppBuildRequestObject
|
|
72
|
+
*/
|
|
73
|
+
subdirectory?: string;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof WebAppBuildRequestObject
|
|
78
|
+
*/
|
|
79
|
+
outputZipS3Key?: string;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof WebAppBuildRequestObject
|
|
84
|
+
*/
|
|
85
|
+
hostingDeploymentId?: string;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof WebAppBuildRequestObject
|
|
90
|
+
*/
|
|
91
|
+
hostingDeploymentStatus?: string;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {boolean}
|
|
95
|
+
* @memberof WebAppBuildRequestObject
|
|
96
|
+
*/
|
|
97
|
+
allBuildLogsReceived?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {Date}
|
|
101
|
+
* @memberof WebAppBuildRequestObject
|
|
102
|
+
*/
|
|
103
|
+
startTime: Date;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {Date}
|
|
107
|
+
* @memberof WebAppBuildRequestObject
|
|
108
|
+
*/
|
|
109
|
+
lastUpdatedTime?: Date;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof WebAppBuildRequestObject
|
|
114
|
+
*/
|
|
115
|
+
serviceId: string;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof WebAppBuildRequestObject
|
|
120
|
+
*/
|
|
121
|
+
commitHash?: string;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof WebAppBuildRequestObject
|
|
126
|
+
*/
|
|
127
|
+
commitMessage?: string;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof WebAppBuildRequestObject
|
|
132
|
+
*/
|
|
133
|
+
commitAuthorName?: string;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {string}
|
|
137
|
+
* @memberof WebAppBuildRequestObject
|
|
138
|
+
*/
|
|
139
|
+
gitRef?: string;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof WebAppBuildRequestObject
|
|
144
|
+
*/
|
|
145
|
+
releaseTagName?: string;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {Array<BuildStepLog>}
|
|
149
|
+
* @memberof WebAppBuildRequestObject
|
|
150
|
+
*/
|
|
151
|
+
buildStepLogs?: Array<BuildStepLog>;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof WebAppBuildRequestObject
|
|
156
|
+
*/
|
|
157
|
+
status: WebAppBuildRequestObjectStatusType;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {string}
|
|
161
|
+
* @memberof WebAppBuildRequestObject
|
|
162
|
+
*/
|
|
163
|
+
origin?: WebAppBuildRequestObjectOriginType;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* @export
|
|
167
|
+
*/
|
|
168
|
+
export declare const WebAppBuildRequestObjectStatusType: {
|
|
169
|
+
readonly PENDING: "PENDING";
|
|
170
|
+
readonly CLONING_REPOSITORY: "CLONING_REPOSITORY";
|
|
171
|
+
readonly GENERATING_DOCKERFILE: "GENERATING_DOCKERFILE";
|
|
172
|
+
readonly DOCKERFILE_GENERATION_FAILURE: "DOCKERFILE_GENERATION_FAILURE";
|
|
173
|
+
readonly VALIDATING_GENERATED_DOCKERFILE: "VALIDATING_GENERATED_DOCKERFILE";
|
|
174
|
+
readonly VALIDATED_GENERATED_DOCKERFILE: "VALIDATED_GENERATED_DOCKERFILE";
|
|
175
|
+
readonly BUILDING_DOCKER_IMAGE: "BUILDING_DOCKER_IMAGE";
|
|
176
|
+
readonly DOCKER_IMAGE_BUILD_FAILURE: "DOCKER_IMAGE_BUILD_FAILURE";
|
|
177
|
+
readonly DETECTING_HEALTH_CHECK_CONFIG: "DETECTING_HEALTH_CHECK_CONFIG";
|
|
178
|
+
readonly HEALTH_CHECK_DETECTION_FAILURE: "HEALTH_CHECK_DETECTION_FAILURE";
|
|
179
|
+
readonly DEPLOYMENT_PENDING: "DEPLOYMENT_PENDING";
|
|
180
|
+
readonly DEPLOYMENT_IN_PROGRESS: "DEPLOYMENT_IN_PROGRESS";
|
|
181
|
+
readonly CONFIGURING_NETWORK: "CONFIGURING_NETWORK";
|
|
182
|
+
readonly VALIDATING_SERVICE_HEALTH: "VALIDATING_SERVICE_HEALTH";
|
|
183
|
+
readonly DEPLOYMENT_FAILURE: "DEPLOYMENT_FAILURE";
|
|
184
|
+
readonly VALIDATION_HEALTH_CHECK_FAILURE: "VALIDATION_HEALTH_CHECK_FAILURE";
|
|
185
|
+
readonly DETECTING_WEB_APP_CONFIG: "DETECTING_WEB_APP_CONFIG";
|
|
186
|
+
readonly WEB_APP_CONFIG_DETECTION_FAILURE: "WEB_APP_CONFIG_DETECTION_FAILURE";
|
|
187
|
+
readonly BUILDING_WEB_APP: "BUILDING_WEB_APP";
|
|
188
|
+
readonly WEB_APP_BUILD_FAILURE: "WEB_APP_BUILD_FAILURE";
|
|
189
|
+
readonly DEPLOYING_STATIC_SITE: "DEPLOYING_STATIC_SITE";
|
|
190
|
+
readonly STATIC_SITE_DEPLOYMENT_FAILURE: "STATIC_SITE_DEPLOYMENT_FAILURE";
|
|
191
|
+
readonly DEPLOYING_SERVER_SIDE_SITE: "DEPLOYING_SERVER_SIDE_SITE";
|
|
192
|
+
readonly SERVER_SIDE_SITE_DEPLOYMENT_FAILURE: "SERVER_SIDE_SITE_DEPLOYMENT_FAILURE";
|
|
193
|
+
readonly CONFIGURING_CUSTOM_DOMAIN: "CONFIGURING_CUSTOM_DOMAIN";
|
|
194
|
+
readonly CUSTOM_DOMAIN_CONFIGURATION_FAILURE: "CUSTOM_DOMAIN_CONFIGURATION_FAILURE";
|
|
195
|
+
readonly CANCELLED: "CANCELLED";
|
|
196
|
+
readonly FAILED: "FAILED";
|
|
197
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
198
|
+
};
|
|
199
|
+
export type WebAppBuildRequestObjectStatusType = typeof WebAppBuildRequestObjectStatusType[keyof typeof WebAppBuildRequestObjectStatusType];
|
|
200
|
+
/**
|
|
201
|
+
* @export
|
|
202
|
+
*/
|
|
203
|
+
export declare const WebAppBuildRequestObjectOriginType: {
|
|
204
|
+
readonly INITIAL_BUILD: "INITIAL_BUILD";
|
|
205
|
+
readonly TRIGGERED_BY_PUSH: "TRIGGERED_BY_PUSH";
|
|
206
|
+
readonly TRIGGERED_BY_RELEASE: "TRIGGERED_BY_RELEASE";
|
|
207
|
+
readonly MANUAL_TRIGGER_FROM_DASHBOARD: "MANUAL_TRIGGER_FROM_DASHBOARD";
|
|
208
|
+
readonly CONFIG_CHANGE: "CONFIG_CHANGE";
|
|
209
|
+
readonly SHADOW_VALIDATION_BUILD: "SHADOW_VALIDATION_BUILD";
|
|
210
|
+
};
|
|
211
|
+
export type WebAppBuildRequestObjectOriginType = typeof WebAppBuildRequestObjectOriginType[keyof typeof WebAppBuildRequestObjectOriginType];
|
|
212
|
+
/**
|
|
213
|
+
* Check if a given object implements the WebAppBuildRequestObject interface.
|
|
214
|
+
*/
|
|
215
|
+
export declare function instanceOfWebAppBuildRequestObject(value: object): value is WebAppBuildRequestObject;
|
|
216
|
+
export declare function WebAppBuildRequestObjectFromJSON(json: any): WebAppBuildRequestObject;
|
|
217
|
+
export declare function WebAppBuildRequestObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebAppBuildRequestObject;
|
|
218
|
+
export declare function WebAppBuildRequestObjectToJSON(json: any): WebAppBuildRequestObject;
|
|
219
|
+
export declare function WebAppBuildRequestObjectToJSONTyped(value?: WebAppBuildRequestObject | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* OpenAPI definition
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.WebAppBuildRequestObjectOriginType = exports.WebAppBuildRequestObjectStatusType = void 0;
|
|
17
|
+
exports.instanceOfWebAppBuildRequestObject = instanceOfWebAppBuildRequestObject;
|
|
18
|
+
exports.WebAppBuildRequestObjectFromJSON = WebAppBuildRequestObjectFromJSON;
|
|
19
|
+
exports.WebAppBuildRequestObjectFromJSONTyped = WebAppBuildRequestObjectFromJSONTyped;
|
|
20
|
+
exports.WebAppBuildRequestObjectToJSON = WebAppBuildRequestObjectToJSON;
|
|
21
|
+
exports.WebAppBuildRequestObjectToJSONTyped = WebAppBuildRequestObjectToJSONTyped;
|
|
22
|
+
var WebAppDetectionError_1 = require("./WebAppDetectionError");
|
|
23
|
+
var BuildStepLog_1 = require("./BuildStepLog");
|
|
24
|
+
/**
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
exports.WebAppBuildRequestObjectStatusType = {
|
|
28
|
+
PENDING: 'PENDING',
|
|
29
|
+
CLONING_REPOSITORY: 'CLONING_REPOSITORY',
|
|
30
|
+
GENERATING_DOCKERFILE: 'GENERATING_DOCKERFILE',
|
|
31
|
+
DOCKERFILE_GENERATION_FAILURE: 'DOCKERFILE_GENERATION_FAILURE',
|
|
32
|
+
VALIDATING_GENERATED_DOCKERFILE: 'VALIDATING_GENERATED_DOCKERFILE',
|
|
33
|
+
VALIDATED_GENERATED_DOCKERFILE: 'VALIDATED_GENERATED_DOCKERFILE',
|
|
34
|
+
BUILDING_DOCKER_IMAGE: 'BUILDING_DOCKER_IMAGE',
|
|
35
|
+
DOCKER_IMAGE_BUILD_FAILURE: 'DOCKER_IMAGE_BUILD_FAILURE',
|
|
36
|
+
DETECTING_HEALTH_CHECK_CONFIG: 'DETECTING_HEALTH_CHECK_CONFIG',
|
|
37
|
+
HEALTH_CHECK_DETECTION_FAILURE: 'HEALTH_CHECK_DETECTION_FAILURE',
|
|
38
|
+
DEPLOYMENT_PENDING: 'DEPLOYMENT_PENDING',
|
|
39
|
+
DEPLOYMENT_IN_PROGRESS: 'DEPLOYMENT_IN_PROGRESS',
|
|
40
|
+
CONFIGURING_NETWORK: 'CONFIGURING_NETWORK',
|
|
41
|
+
VALIDATING_SERVICE_HEALTH: 'VALIDATING_SERVICE_HEALTH',
|
|
42
|
+
DEPLOYMENT_FAILURE: 'DEPLOYMENT_FAILURE',
|
|
43
|
+
VALIDATION_HEALTH_CHECK_FAILURE: 'VALIDATION_HEALTH_CHECK_FAILURE',
|
|
44
|
+
DETECTING_WEB_APP_CONFIG: 'DETECTING_WEB_APP_CONFIG',
|
|
45
|
+
WEB_APP_CONFIG_DETECTION_FAILURE: 'WEB_APP_CONFIG_DETECTION_FAILURE',
|
|
46
|
+
BUILDING_WEB_APP: 'BUILDING_WEB_APP',
|
|
47
|
+
WEB_APP_BUILD_FAILURE: 'WEB_APP_BUILD_FAILURE',
|
|
48
|
+
DEPLOYING_STATIC_SITE: 'DEPLOYING_STATIC_SITE',
|
|
49
|
+
STATIC_SITE_DEPLOYMENT_FAILURE: 'STATIC_SITE_DEPLOYMENT_FAILURE',
|
|
50
|
+
DEPLOYING_SERVER_SIDE_SITE: 'DEPLOYING_SERVER_SIDE_SITE',
|
|
51
|
+
SERVER_SIDE_SITE_DEPLOYMENT_FAILURE: 'SERVER_SIDE_SITE_DEPLOYMENT_FAILURE',
|
|
52
|
+
CONFIGURING_CUSTOM_DOMAIN: 'CONFIGURING_CUSTOM_DOMAIN',
|
|
53
|
+
CUSTOM_DOMAIN_CONFIGURATION_FAILURE: 'CUSTOM_DOMAIN_CONFIGURATION_FAILURE',
|
|
54
|
+
CANCELLED: 'CANCELLED',
|
|
55
|
+
FAILED: 'FAILED',
|
|
56
|
+
SUCCEEDED: 'SUCCEEDED'
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* @export
|
|
60
|
+
*/
|
|
61
|
+
exports.WebAppBuildRequestObjectOriginType = {
|
|
62
|
+
INITIAL_BUILD: 'INITIAL_BUILD',
|
|
63
|
+
TRIGGERED_BY_PUSH: 'TRIGGERED_BY_PUSH',
|
|
64
|
+
TRIGGERED_BY_RELEASE: 'TRIGGERED_BY_RELEASE',
|
|
65
|
+
MANUAL_TRIGGER_FROM_DASHBOARD: 'MANUAL_TRIGGER_FROM_DASHBOARD',
|
|
66
|
+
CONFIG_CHANGE: 'CONFIG_CHANGE',
|
|
67
|
+
SHADOW_VALIDATION_BUILD: 'SHADOW_VALIDATION_BUILD'
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Check if a given object implements the WebAppBuildRequestObject interface.
|
|
71
|
+
*/
|
|
72
|
+
function instanceOfWebAppBuildRequestObject(value) {
|
|
73
|
+
if (!('startTime' in value) || value['startTime'] === undefined)
|
|
74
|
+
return false;
|
|
75
|
+
if (!('serviceId' in value) || value['serviceId'] === undefined)
|
|
76
|
+
return false;
|
|
77
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
78
|
+
return false;
|
|
79
|
+
return true;
|
|
80
|
+
}
|
|
81
|
+
function WebAppBuildRequestObjectFromJSON(json) {
|
|
82
|
+
return WebAppBuildRequestObjectFromJSONTyped(json, false);
|
|
83
|
+
}
|
|
84
|
+
function WebAppBuildRequestObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
85
|
+
if (json == null) {
|
|
86
|
+
return json;
|
|
87
|
+
}
|
|
88
|
+
return {
|
|
89
|
+
'buildId': json['buildId'] == null ? undefined : json['buildId'],
|
|
90
|
+
'detectionError': json['detectionError'] == null ? undefined : (0, WebAppDetectionError_1.WebAppDetectionErrorFromJSON)(json['detectionError']),
|
|
91
|
+
'packageManager': json['packageManager'] == null ? undefined : json['packageManager'],
|
|
92
|
+
'nodeVersion': json['nodeVersion'] == null ? undefined : json['nodeVersion'],
|
|
93
|
+
'buildCommand': json['buildCommand'] == null ? undefined : json['buildCommand'],
|
|
94
|
+
'buildPath': json['buildPath'] == null ? undefined : json['buildPath'],
|
|
95
|
+
'detectedFramework': json['detectedFramework'] == null ? undefined : json['detectedFramework'],
|
|
96
|
+
'installCommand': json['installCommand'] == null ? undefined : json['installCommand'],
|
|
97
|
+
'subdirectory': json['subdirectory'] == null ? undefined : json['subdirectory'],
|
|
98
|
+
'outputZipS3Key': json['outputZipS3Key'] == null ? undefined : json['outputZipS3Key'],
|
|
99
|
+
'hostingDeploymentId': json['hostingDeploymentId'] == null ? undefined : json['hostingDeploymentId'],
|
|
100
|
+
'hostingDeploymentStatus': json['hostingDeploymentStatus'] == null ? undefined : json['hostingDeploymentStatus'],
|
|
101
|
+
'allBuildLogsReceived': json['allBuildLogsReceived'] == null ? undefined : json['allBuildLogsReceived'],
|
|
102
|
+
'startTime': (new Date(json['startTime'])),
|
|
103
|
+
'lastUpdatedTime': json['lastUpdatedTime'] == null ? undefined : (new Date(json['lastUpdatedTime'])),
|
|
104
|
+
'serviceId': json['serviceId'],
|
|
105
|
+
'commitHash': json['commitHash'] == null ? undefined : json['commitHash'],
|
|
106
|
+
'commitMessage': json['commitMessage'] == null ? undefined : json['commitMessage'],
|
|
107
|
+
'commitAuthorName': json['commitAuthorName'] == null ? undefined : json['commitAuthorName'],
|
|
108
|
+
'gitRef': json['gitRef'] == null ? undefined : json['gitRef'],
|
|
109
|
+
'releaseTagName': json['releaseTagName'] == null ? undefined : json['releaseTagName'],
|
|
110
|
+
'buildStepLogs': json['buildStepLogs'] == null ? undefined : (json['buildStepLogs'].map(BuildStepLog_1.BuildStepLogFromJSON)),
|
|
111
|
+
'status': json['status'],
|
|
112
|
+
'origin': json['origin'] == null ? undefined : json['origin'],
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
function WebAppBuildRequestObjectToJSON(json) {
|
|
116
|
+
return WebAppBuildRequestObjectToJSONTyped(json, false);
|
|
117
|
+
}
|
|
118
|
+
function WebAppBuildRequestObjectToJSONTyped(value, ignoreDiscriminator) {
|
|
119
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
120
|
+
if (value == null) {
|
|
121
|
+
return value;
|
|
122
|
+
}
|
|
123
|
+
return {
|
|
124
|
+
'buildId': value['buildId'],
|
|
125
|
+
'detectionError': (0, WebAppDetectionError_1.WebAppDetectionErrorToJSON)(value['detectionError']),
|
|
126
|
+
'packageManager': value['packageManager'],
|
|
127
|
+
'nodeVersion': value['nodeVersion'],
|
|
128
|
+
'buildCommand': value['buildCommand'],
|
|
129
|
+
'buildPath': value['buildPath'],
|
|
130
|
+
'detectedFramework': value['detectedFramework'],
|
|
131
|
+
'installCommand': value['installCommand'],
|
|
132
|
+
'subdirectory': value['subdirectory'],
|
|
133
|
+
'outputZipS3Key': value['outputZipS3Key'],
|
|
134
|
+
'hostingDeploymentId': value['hostingDeploymentId'],
|
|
135
|
+
'hostingDeploymentStatus': value['hostingDeploymentStatus'],
|
|
136
|
+
'allBuildLogsReceived': value['allBuildLogsReceived'],
|
|
137
|
+
'startTime': value['startTime'].toISOString(),
|
|
138
|
+
'lastUpdatedTime': value['lastUpdatedTime'] == null ? value['lastUpdatedTime'] : value['lastUpdatedTime'].toISOString(),
|
|
139
|
+
'serviceId': value['serviceId'],
|
|
140
|
+
'commitHash': value['commitHash'],
|
|
141
|
+
'commitMessage': value['commitMessage'],
|
|
142
|
+
'commitAuthorName': value['commitAuthorName'],
|
|
143
|
+
'gitRef': value['gitRef'],
|
|
144
|
+
'releaseTagName': value['releaseTagName'],
|
|
145
|
+
'buildStepLogs': value['buildStepLogs'] == null ? undefined : (value['buildStepLogs'].map(BuildStepLog_1.BuildStepLogToJSON)),
|
|
146
|
+
'status': value['status'],
|
|
147
|
+
'origin': value['origin'],
|
|
148
|
+
};
|
|
149
|
+
}
|