@devopness/sdk-js 2.127.0 → 2.129.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.
@@ -0,0 +1,24 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
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 { ApiBaseService } from "../../../services/ApiBaseService";
13
+ import { ApiResponse } from "../../../common/ApiResponse";
14
+ import { VirtualHostOptions } from '../../generated/models';
15
+ /**
16
+ * StaticDataVirtualHostOptionsApiService - Auto-generated
17
+ */
18
+ export declare class StaticDataVirtualHostOptionsApiService extends ApiBaseService {
19
+ /**
20
+ *
21
+ * @summary List `Virtual Host` options
22
+ */
23
+ getStaticVirtualHostOptions(): Promise<ApiResponse<VirtualHostOptions>>;
24
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /**
4
+ * devopness API
5
+ * Devopness API - Painless essential DevOps to everyone
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
15
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
16
+ return new (P || (P = Promise))(function (resolve, reject) {
17
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
19
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
20
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
21
+ });
22
+ };
23
+ Object.defineProperty(exports, "__esModule", { value: true });
24
+ exports.StaticDataVirtualHostOptionsApiService = void 0;
25
+ const ApiBaseService_1 = require("../../../services/ApiBaseService");
26
+ const ApiResponse_1 = require("../../../common/ApiResponse");
27
+ /**
28
+ * StaticDataVirtualHostOptionsApiService - Auto-generated
29
+ */
30
+ class StaticDataVirtualHostOptionsApiService extends ApiBaseService_1.ApiBaseService {
31
+ /**
32
+ *
33
+ * @summary List `Virtual Host` options
34
+ */
35
+ getStaticVirtualHostOptions() {
36
+ return __awaiter(this, void 0, void 0, function* () {
37
+ let queryString = '';
38
+ const requestUrl = '/static/virtual-host-options' + (queryString ? `?${queryString}` : '');
39
+ const response = yield this.get(requestUrl);
40
+ return new ApiResponse_1.ApiResponse(response);
41
+ });
42
+ }
43
+ }
44
+ exports.StaticDataVirtualHostOptionsApiService = StaticDataVirtualHostOptionsApiService;
@@ -21,5 +21,5 @@ export interface ApplicationTypesPrivateApplication {
21
21
  * @type {Array<VariableTargets>}
22
22
  * @memberof ApplicationTypesPrivateApplication
23
23
  */
24
- variables_targets?: Array<VariableTargets>;
24
+ variable_targets?: Array<VariableTargets>;
25
25
  }
@@ -21,5 +21,5 @@ export interface ApplicationTypesPublicApplication {
21
21
  * @type {Array<VariableTargets>}
22
22
  * @memberof ApplicationTypesPublicApplication
23
23
  */
24
- variables_targets?: Array<VariableTargets>;
24
+ variable_targets?: Array<VariableTargets>;
25
25
  }
@@ -111,6 +111,7 @@ export * from './language-runtime-engine-versions';
111
111
  export * from './language-runtime-framework';
112
112
  export * from './language-runtime-framework-commands';
113
113
  export * from './language-runtime-framework-defaults';
114
+ export * from './linked-resource-attribute';
114
115
  export * from './linked-resource-data';
115
116
  export * from './log';
116
117
  export * from './member';
@@ -280,3 +281,4 @@ export * from './variable-target';
280
281
  export * from './variable-targets';
281
282
  export * from './variable-type';
282
283
  export * from './variable-update';
284
+ export * from './virtual-host-options';
@@ -127,6 +127,7 @@ __exportStar(require("./language-runtime-engine-versions"), exports);
127
127
  __exportStar(require("./language-runtime-framework"), exports);
128
128
  __exportStar(require("./language-runtime-framework-commands"), exports);
129
129
  __exportStar(require("./language-runtime-framework-defaults"), exports);
130
+ __exportStar(require("./linked-resource-attribute"), exports);
130
131
  __exportStar(require("./linked-resource-data"), exports);
131
132
  __exportStar(require("./log"), exports);
132
133
  __exportStar(require("./member"), exports);
@@ -296,3 +297,4 @@ __exportStar(require("./variable-target"), exports);
296
297
  __exportStar(require("./variable-targets"), exports);
297
298
  __exportStar(require("./variable-type"), exports);
298
299
  __exportStar(require("./variable-update"), exports);
300
+ __exportStar(require("./virtual-host-options"), exports);
@@ -0,0 +1,36 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
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 LinkedResourceAttribute
16
+ */
17
+ export interface LinkedResourceAttribute {
18
+ /**
19
+ * The attribute name
20
+ * @type {string}
21
+ * @memberof LinkedResourceAttribute
22
+ */
23
+ field_name?: string;
24
+ /**
25
+ * Human redable version of the attribute name
26
+ * @type {string}
27
+ * @memberof LinkedResourceAttribute
28
+ */
29
+ field_name_human_readable?: string;
30
+ /**
31
+ * The attribute value
32
+ * @type {string}
33
+ * @memberof LinkedResourceAttribute
34
+ */
35
+ value?: string;
36
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /**
4
+ * devopness API
5
+ * Devopness API - Painless essential DevOps to everyone
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { LinkedResourceAttribute } from './linked-resource-attribute';
12
13
  /**
13
14
  * Object with common attributes that identify a linked resource
14
15
  * @export
@@ -27,6 +28,12 @@ export interface LinkedResourceData {
27
28
  * @memberof LinkedResourceData
28
29
  */
29
30
  name: string;
31
+ /**
32
+ * The list of linked resource attributes
33
+ * @type {Array<LinkedResourceAttribute>}
34
+ * @memberof LinkedResourceData
35
+ */
36
+ extra_attributes?: Array<LinkedResourceAttribute>;
30
37
  /**
31
38
  * The date and time when the record was created
32
39
  * @type {string}
@@ -21,5 +21,5 @@ export interface ServerOptions {
21
21
  * @type {Array<VariableTargets>}
22
22
  * @memberof ServerOptions
23
23
  */
24
- variables_targets: Array<VariableTargets>;
24
+ variable_targets: Array<VariableTargets>;
25
25
  }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
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 { VariableTargets } from './variable-targets';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface VirtualHostOptions
17
+ */
18
+ export interface VirtualHostOptions {
19
+ /**
20
+ * The list of VariableTarget
21
+ * @type {Array<VariableTargets>}
22
+ * @memberof VirtualHostOptions
23
+ */
24
+ variable_targets: Array<VariableTargets>;
25
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /**
4
+ * devopness API
5
+ * Devopness API - Painless essential DevOps to everyone
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -11,6 +11,7 @@ import { StaticDataServerOptionsApiService } from "../api/generated/apis/static-
11
11
  import { StaticDataServiceOptionsApiService } from "../api/generated/apis/static-data-service-options-api";
12
12
  import { StaticDataSourceProviderOptionsApiService } from "../api/generated/apis/static-data-source-provider-options-api";
13
13
  import { StaticDataUserProfileOptionsApiService } from "../api/generated/apis/static-data-user-profile-options-api";
14
+ import { StaticDataVirtualHostOptionsApiService } from "../api/generated/apis/static-data-virtual-host-options-api";
14
15
  export declare class StaticService {
15
16
  applicationOptions: StaticDataApplicationOptionsApiService;
16
17
  cloudProviderOptions: StaticDataCloudProviderOptionsApiService;
@@ -25,4 +26,5 @@ export declare class StaticService {
25
26
  serviceOptions: StaticDataServiceOptionsApiService;
26
27
  sourceProviderOptions: StaticDataSourceProviderOptionsApiService;
27
28
  userProfileOptions: StaticDataUserProfileOptionsApiService;
29
+ virtualHostOptions: StaticDataVirtualHostOptionsApiService;
28
30
  }
@@ -14,6 +14,7 @@ const static_data_server_options_api_1 = require("../api/generated/apis/static-d
14
14
  const static_data_service_options_api_1 = require("../api/generated/apis/static-data-service-options-api");
15
15
  const static_data_source_provider_options_api_1 = require("../api/generated/apis/static-data-source-provider-options-api");
16
16
  const static_data_user_profile_options_api_1 = require("../api/generated/apis/static-data-user-profile-options-api");
17
+ const static_data_virtual_host_options_api_1 = require("../api/generated/apis/static-data-virtual-host-options-api");
17
18
  class StaticService {
18
19
  constructor() {
19
20
  this.applicationOptions = new static_data_application_options_api_1.StaticDataApplicationOptionsApiService();
@@ -29,6 +30,7 @@ class StaticService {
29
30
  this.serviceOptions = new static_data_service_options_api_1.StaticDataServiceOptionsApiService();
30
31
  this.sourceProviderOptions = new static_data_source_provider_options_api_1.StaticDataSourceProviderOptionsApiService();
31
32
  this.userProfileOptions = new static_data_user_profile_options_api_1.StaticDataUserProfileOptionsApiService();
33
+ this.virtualHostOptions = new static_data_virtual_host_options_api_1.StaticDataVirtualHostOptionsApiService();
32
34
  }
33
35
  }
34
36
  exports.StaticService = StaticService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.127.0",
3
+ "version": "2.129.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "@types/parse-link-header": "^2.0.0",
71
- "axios": "^0.27.2",
71
+ "axios": "^0.28.0",
72
72
  "parse-link-header": "^2.0.0"
73
73
  }
74
74
  }