@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.
@@ -63,7 +63,7 @@ export interface ActionRelation {
63
63
  * @type {ActionData}
64
64
  * @memberof ActionRelation
65
65
  */
66
- action_data: ActionData;
66
+ action_data: ActionData | null;
67
67
  /**
68
68
  *
69
69
  * @type {ActionTriggeredFrom}
@@ -80,7 +80,7 @@ export interface ActionRetryResponse {
80
80
  * @type {ActionData}
81
81
  * @memberof ActionRetryResponse
82
82
  */
83
- action_data: ActionData;
83
+ action_data: ActionData | null;
84
84
  /**
85
85
  *
86
86
  * @type {ActionTriggeredFrom}
@@ -80,7 +80,7 @@ export interface Action {
80
80
  * @type {ActionData}
81
81
  * @memberof Action
82
82
  */
83
- action_data: ActionData;
83
+ action_data: ActionData | null;
84
84
  /**
85
85
  *
86
86
  * @type {ActionTriggeredFrom}
@@ -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>python</code> Must not be greater than 30 characters.
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>python</code> Must not be greater than 30 characters.
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.116.0",
3
+ "version": "2.117.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },