@forteplatforms/sdk 1.0.168 → 1.0.169
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.
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { CustomDomain } from './CustomDomain';
|
|
13
13
|
import type { WebAppDetectionResponse } from './WebAppDetectionResponse';
|
|
14
|
+
import type { DockerfileGenerationResponse } from './DockerfileGenerationResponse';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
16
17
|
* @export
|
|
@@ -125,6 +126,18 @@ export interface WebAppObject {
|
|
|
125
126
|
* @memberof WebAppObject
|
|
126
127
|
*/
|
|
127
128
|
detectionResponse?: WebAppDetectionResponse;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof WebAppObject
|
|
133
|
+
*/
|
|
134
|
+
dockerfilePath?: string;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {DockerfileGenerationResponse}
|
|
138
|
+
* @memberof WebAppObject
|
|
139
|
+
*/
|
|
140
|
+
dockerfileDetectionResponse?: DockerfileGenerationResponse;
|
|
128
141
|
/**
|
|
129
142
|
*
|
|
130
143
|
* @type {string}
|
|
@@ -21,6 +21,7 @@ exports.WebAppObjectToJSON = WebAppObjectToJSON;
|
|
|
21
21
|
exports.WebAppObjectToJSONTyped = WebAppObjectToJSONTyped;
|
|
22
22
|
var CustomDomain_1 = require("./CustomDomain");
|
|
23
23
|
var WebAppDetectionResponse_1 = require("./WebAppDetectionResponse");
|
|
24
|
+
var DockerfileGenerationResponse_1 = require("./DockerfileGenerationResponse");
|
|
24
25
|
/**
|
|
25
26
|
* @export
|
|
26
27
|
*/
|
|
@@ -84,6 +85,8 @@ function WebAppObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
84
85
|
'detectionVersion': json['detectionVersion'] == null ? undefined : json['detectionVersion'],
|
|
85
86
|
'containerImageUri': json['containerImageUri'] == null ? undefined : json['containerImageUri'],
|
|
86
87
|
'detectionResponse': json['detectionResponse'] == null ? undefined : (0, WebAppDetectionResponse_1.WebAppDetectionResponseFromJSON)(json['detectionResponse']),
|
|
88
|
+
'dockerfilePath': json['dockerfilePath'] == null ? undefined : json['dockerfilePath'],
|
|
89
|
+
'dockerfileDetectionResponse': json['dockerfileDetectionResponse'] == null ? undefined : (0, DockerfileGenerationResponse_1.DockerfileGenerationResponseFromJSON)(json['dockerfileDetectionResponse']),
|
|
87
90
|
'hostingProviderAppId': json['hostingProviderAppId'] == null ? undefined : json['hostingProviderAppId'],
|
|
88
91
|
'hostingProviderBranchName': json['hostingProviderBranchName'] == null ? undefined : json['hostingProviderBranchName'],
|
|
89
92
|
'hostingProviderDomainStatus': json['hostingProviderDomainStatus'] == null ? undefined : json['hostingProviderDomainStatus'],
|
|
@@ -126,6 +129,8 @@ function WebAppObjectToJSONTyped(value, ignoreDiscriminator) {
|
|
|
126
129
|
'detectionVersion': value['detectionVersion'],
|
|
127
130
|
'containerImageUri': value['containerImageUri'],
|
|
128
131
|
'detectionResponse': (0, WebAppDetectionResponse_1.WebAppDetectionResponseToJSON)(value['detectionResponse']),
|
|
132
|
+
'dockerfilePath': value['dockerfilePath'],
|
|
133
|
+
'dockerfileDetectionResponse': (0, DockerfileGenerationResponse_1.DockerfileGenerationResponseToJSON)(value['dockerfileDetectionResponse']),
|
|
129
134
|
'hostingProviderAppId': value['hostingProviderAppId'],
|
|
130
135
|
'hostingProviderBranchName': value['hostingProviderBranchName'],
|
|
131
136
|
'hostingProviderDomainStatus': value['hostingProviderDomainStatus'],
|