@devopness/sdk-js 2.116.0 → 2.117.0
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/api/generated/models/action-relation.d.ts +1 -1
- package/dist/api/generated/models/action-retry-response.d.ts +1 -1
- package/dist/api/generated/models/action.d.ts +1 -1
- package/dist/api/generated/models/application-environment-create.d.ts +1 -1
- package/dist/api/generated/models/application-update.d.ts +1 -1
- package/dist/services/StaticService.d.ts +2 -0
- package/dist/services/StaticService.js +2 -0
- package/package.json +1 -1
|
@@ -53,7 +53,7 @@ export interface ApplicationEnvironmentCreate {
|
|
|
53
53
|
*/
|
|
54
54
|
framework: string;
|
|
55
55
|
/**
|
|
56
|
-
* The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>java</code>, <code>nodejs</code>, <code>php</code>, or <code>
|
|
56
|
+
* The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>java</code>, <code>nodejs</code>, <code>php</code>, <code>python</code>, or <code>ruby</code> Must not be greater than 30 characters.
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof ApplicationEnvironmentCreate
|
|
59
59
|
*/
|
|
@@ -59,7 +59,7 @@ export interface ApplicationUpdate {
|
|
|
59
59
|
*/
|
|
60
60
|
framework: string;
|
|
61
61
|
/**
|
|
62
|
-
* The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>java</code>, <code>nodejs</code>, <code>php</code>, or <code>
|
|
62
|
+
* The programming language runtime environment to be used to serve the application. E.g.: if a front-end web app is developed using Node.js, but should be served statically (a SPA application, for instance) then this field value should be `html`. Must be one of <code>docker</code>, <code>dotnetcore</code>, <code>html</code>, <code>java</code>, <code>nodejs</code>, <code>php</code>, <code>python</code>, or <code>ruby</code> Must not be greater than 30 characters.
|
|
63
63
|
* @type {string}
|
|
64
64
|
* @memberof ApplicationUpdate
|
|
65
65
|
*/
|
|
@@ -7,6 +7,7 @@ import { StaticDataEnvironmentOptionsApiService } from "../api/generated/apis/st
|
|
|
7
7
|
import { StaticDataNetworkRuleOptionsApiService } from "../api/generated/apis/static-data-network-rule-options-api";
|
|
8
8
|
import { StaticDataPermissionsApiService } from "../api/generated/apis/static-data-permissions-api";
|
|
9
9
|
import { StaticDataResourceTypesApiService } from "../api/generated/apis/static-data-resource-types-api";
|
|
10
|
+
import { StaticDataServerOptionsApiService } from "../api/generated/apis/static-data-server-options-api";
|
|
10
11
|
import { StaticDataServiceOptionsApiService } from "../api/generated/apis/static-data-service-options-api";
|
|
11
12
|
import { StaticDataUserProfileOptionsApiService } from "../api/generated/apis/static-data-user-profile-options-api";
|
|
12
13
|
export declare class StaticService {
|
|
@@ -19,6 +20,7 @@ export declare class StaticService {
|
|
|
19
20
|
networkRuleOptions: StaticDataNetworkRuleOptionsApiService;
|
|
20
21
|
permissions: StaticDataPermissionsApiService;
|
|
21
22
|
resourceTypes: StaticDataResourceTypesApiService;
|
|
23
|
+
serverOptions: StaticDataServerOptionsApiService;
|
|
22
24
|
serviceOptions: StaticDataServiceOptionsApiService;
|
|
23
25
|
userProfileOptions: StaticDataUserProfileOptionsApiService;
|
|
24
26
|
}
|
|
@@ -10,6 +10,7 @@ const static_data_environment_options_api_1 = require("../api/generated/apis/sta
|
|
|
10
10
|
const static_data_network_rule_options_api_1 = require("../api/generated/apis/static-data-network-rule-options-api");
|
|
11
11
|
const static_data_permissions_api_1 = require("../api/generated/apis/static-data-permissions-api");
|
|
12
12
|
const static_data_resource_types_api_1 = require("../api/generated/apis/static-data-resource-types-api");
|
|
13
|
+
const static_data_server_options_api_1 = require("../api/generated/apis/static-data-server-options-api");
|
|
13
14
|
const static_data_service_options_api_1 = require("../api/generated/apis/static-data-service-options-api");
|
|
14
15
|
const static_data_user_profile_options_api_1 = require("../api/generated/apis/static-data-user-profile-options-api");
|
|
15
16
|
class StaticService {
|
|
@@ -23,6 +24,7 @@ class StaticService {
|
|
|
23
24
|
this.networkRuleOptions = new static_data_network_rule_options_api_1.StaticDataNetworkRuleOptionsApiService();
|
|
24
25
|
this.permissions = new static_data_permissions_api_1.StaticDataPermissionsApiService();
|
|
25
26
|
this.resourceTypes = new static_data_resource_types_api_1.StaticDataResourceTypesApiService();
|
|
27
|
+
this.serverOptions = new static_data_server_options_api_1.StaticDataServerOptionsApiService();
|
|
26
28
|
this.serviceOptions = new static_data_service_options_api_1.StaticDataServiceOptionsApiService();
|
|
27
29
|
this.userProfileOptions = new static_data_user_profile_options_api_1.StaticDataUserProfileOptionsApiService();
|
|
28
30
|
}
|