@devopness/sdk-js 2.80.0 → 2.82.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.
Files changed (52) hide show
  1. package/dist/DevopnessApiClient.d.ts +2 -0
  2. package/dist/DevopnessApiClient.js +2 -0
  3. package/dist/api/generated/apis/networks-api.d.ts +6 -0
  4. package/dist/api/generated/apis/networks-api.js +16 -0
  5. package/dist/api/generated/apis/networks-subnets-api.d.ts +36 -0
  6. package/dist/api/generated/apis/networks-subnets-api.js +78 -0
  7. package/dist/api/generated/apis/subnets-api.d.ts +25 -0
  8. package/dist/api/generated/apis/subnets-api.js +49 -0
  9. package/dist/api/generated/models/action-target.d.ts +6 -0
  10. package/dist/api/generated/models/application-update.d.ts +0 -6
  11. package/dist/api/generated/models/application.d.ts +0 -7
  12. package/dist/api/generated/models/{cloud-provider-credential-settings.d.ts → cloud-provider-input-settings.d.ts} +7 -7
  13. package/dist/api/generated/models/cloud-provider-relation.d.ts +42 -0
  14. package/dist/api/generated/models/cloud-provider-relation.js +14 -0
  15. package/dist/api/generated/models/cloud-provider-service-region.d.ts +6 -0
  16. package/dist/api/generated/models/cloud-provider-service-resource-type-scope.d.ts +21 -0
  17. package/dist/api/generated/models/cloud-provider-service-resource-type-scope.js +26 -0
  18. package/dist/api/generated/models/cloud-provider-service-resource-type.d.ts +44 -0
  19. package/dist/api/generated/models/cloud-provider-service-resource-type.js +14 -0
  20. package/dist/api/generated/models/cloud-provider-service.d.ts +14 -0
  21. package/dist/api/generated/models/cloud-provider-settings-list.d.ts +3 -3
  22. package/dist/api/generated/models/index.d.ts +13 -1
  23. package/dist/api/generated/models/index.js +13 -1
  24. package/dist/api/generated/models/network-environment-create.d.ts +1 -1
  25. package/dist/api/generated/models/pipeline-settings.d.ts +12 -0
  26. package/dist/api/generated/models/resource-type.d.ts +2 -1
  27. package/dist/api/generated/models/resource-type.js +1 -0
  28. package/dist/api/generated/models/server-environment-create.d.ts +1 -1
  29. package/dist/api/generated/models/subnet-network-create.d.ts +38 -0
  30. package/dist/api/generated/models/subnet-network-create.js +14 -0
  31. package/dist/api/generated/models/subnet-provision-input-settings-aws.d.ts +30 -0
  32. package/dist/api/generated/models/subnet-provision-input-settings-aws.js +14 -0
  33. package/dist/api/generated/models/subnet-provision-input-settings-digital-ocean.d.ts +24 -0
  34. package/dist/api/generated/models/subnet-provision-input-settings-digital-ocean.js +14 -0
  35. package/dist/api/generated/models/subnet-provision-input-settings-gcp.d.ts +36 -0
  36. package/dist/api/generated/models/subnet-provision-input-settings-gcp.js +14 -0
  37. package/dist/api/generated/models/subnet-provision-input-settings.d.ts +19 -0
  38. package/dist/api/generated/models/subnet-provision-input-settings.js +14 -0
  39. package/dist/api/generated/models/subnet-provision-input.d.ts +31 -0
  40. package/dist/api/generated/models/subnet-provision-input.js +14 -0
  41. package/dist/api/generated/models/subnet-relation.d.ts +86 -0
  42. package/dist/api/generated/models/subnet-relation.js +14 -0
  43. package/dist/api/generated/models/subnet-type.d.ts +20 -0
  44. package/dist/api/generated/models/subnet-type.js +25 -0
  45. package/dist/api/generated/models/subnet.d.ts +97 -0
  46. package/dist/api/generated/models/subnet.js +14 -0
  47. package/dist/services/NetworkService.d.ts +2 -0
  48. package/dist/services/NetworkService.js +5 -0
  49. package/dist/services/SubnetService.d.ts +3 -0
  50. package/dist/services/SubnetService.js +7 -0
  51. package/package.json +1 -1
  52. /package/dist/api/generated/models/{cloud-provider-credential-settings.js → cloud-provider-input-settings.js} +0 -0
@@ -17,7 +17,7 @@ import { NetworkProvisionInput } from './network-provision-input';
17
17
  */
18
18
  export interface NetworkEnvironmentCreate {
19
19
  /**
20
- * The network\'s name. The value format is invalid. Must be between 1 and 64 characters.
20
+ * The network\'s name. Must be between 1 and 63 characters.
21
21
  * @type {string}
22
22
  * @memberof NetworkEnvironmentCreate
23
23
  */
@@ -17,6 +17,18 @@ import { PipelineSettingsVariable } from './pipeline-settings-variable';
17
17
  * @interface PipelineSettings
18
18
  */
19
19
  export interface PipelineSettings {
20
+ /**
21
+ *
22
+ * @type {number}
23
+ * @memberof PipelineSettings
24
+ */
25
+ max_pipelines_per_resource?: number;
26
+ /**
27
+ *
28
+ * @type {boolean}
29
+ * @memberof PipelineSettings
30
+ */
31
+ allow_custom_steps?: boolean;
20
32
  /**
21
33
  * The list of pipeline setting stage
22
34
  * @type {Array<PipelineSettingsStage>}
@@ -24,5 +24,6 @@ export declare enum ResourceType {
24
24
  Server = "server",
25
25
  Service = "service",
26
26
  SshKey = "ssh-key",
27
- SslCertificate = "ssl-certificate"
27
+ SslCertificate = "ssl-certificate",
28
+ Subnet = "subnet"
28
29
  }
@@ -30,4 +30,5 @@ var ResourceType;
30
30
  ResourceType["Service"] = "service";
31
31
  ResourceType["SshKey"] = "ssh-key";
32
32
  ResourceType["SslCertificate"] = "ssl-certificate";
33
+ ResourceType["Subnet"] = "subnet";
33
34
  })(ResourceType = exports.ResourceType || (exports.ResourceType = {}));
@@ -18,7 +18,7 @@ import { ServerProvisionSettings } from './server-provision-settings';
18
18
  */
19
19
  export interface ServerEnvironmentCreate {
20
20
  /**
21
- * The hostname to be set on Linux servers. Accepts numbers (0-9), dash (-) and lower case non accented characters. Must contain only letters, numbers, dashes and underscores. Must not be greater than 60 characters.
21
+ * The hostname to be set on Linux servers. Accepts numbers (0-9), dash (-) and lower case non accented characters. Must not be greater than 60 characters.
22
22
  * @type {string}
23
23
  * @memberof ServerEnvironmentCreate
24
24
  */
@@ -0,0 +1,38 @@
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 { SubnetProvisionInput } from './subnet-provision-input';
13
+ import { SubnetType } from './subnet-type';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface SubnetNetworkCreate
18
+ */
19
+ export interface SubnetNetworkCreate {
20
+ /**
21
+ * The subnet\'s name. Must be between 1 and 63 characters.
22
+ * @type {string}
23
+ * @memberof SubnetNetworkCreate
24
+ */
25
+ name: string;
26
+ /**
27
+ *
28
+ * @type {SubnetType}
29
+ * @memberof SubnetNetworkCreate
30
+ */
31
+ type: SubnetType;
32
+ /**
33
+ *
34
+ * @type {SubnetProvisionInput}
35
+ * @memberof SubnetNetworkCreate
36
+ */
37
+ provision_input: SubnetProvisionInput;
38
+ }
@@ -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 });
@@ -0,0 +1,30 @@
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 SubnetProvisionInputSettingsAws
16
+ */
17
+ export interface SubnetProvisionInputSettingsAws {
18
+ /**
19
+ * The cloud provider availability zone where the subnet will be created
20
+ * @type {string}
21
+ * @memberof SubnetProvisionInputSettingsAws
22
+ */
23
+ zone: string;
24
+ /**
25
+ * The IP CIDR range of the subnet
26
+ * @type {string}
27
+ * @memberof SubnetProvisionInputSettingsAws
28
+ */
29
+ cidr_block: string;
30
+ }
@@ -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 });
@@ -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
+ /**
13
+ *
14
+ * @export
15
+ * @interface SubnetProvisionInputSettingsDigitalOcean
16
+ */
17
+ export interface SubnetProvisionInputSettingsDigitalOcean {
18
+ /**
19
+ * The IP CIDR range of the subnet
20
+ * @type {string}
21
+ * @memberof SubnetProvisionInputSettingsDigitalOcean
22
+ */
23
+ cidr_block: string;
24
+ }
@@ -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 });
@@ -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 SubnetProvisionInputSettingsGcp
16
+ */
17
+ export interface SubnetProvisionInputSettingsGcp {
18
+ /**
19
+ * The cloud provider region where the subnet will be created
20
+ * @type {string}
21
+ * @memberof SubnetProvisionInputSettingsGcp
22
+ */
23
+ region: string;
24
+ /**
25
+ * The cloud provider availability zone where the subnet will be created
26
+ * @type {string}
27
+ * @memberof SubnetProvisionInputSettingsGcp
28
+ */
29
+ zone: string;
30
+ /**
31
+ * The IP CIDR range of the subnet
32
+ * @type {string}
33
+ * @memberof SubnetProvisionInputSettingsGcp
34
+ */
35
+ cidr_block: 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 });
@@ -0,0 +1,19 @@
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 { SubnetProvisionInputSettingsAws } from './subnet-provision-input-settings-aws';
13
+ import { SubnetProvisionInputSettingsDigitalOcean } from './subnet-provision-input-settings-digital-ocean';
14
+ import { SubnetProvisionInputSettingsGcp } from './subnet-provision-input-settings-gcp';
15
+ /**
16
+ * @type SubnetProvisionInputSettings
17
+ * @export
18
+ */
19
+ export declare type SubnetProvisionInputSettings = SubnetProvisionInputSettingsAws | SubnetProvisionInputSettingsDigitalOcean | SubnetProvisionInputSettingsGcp;
@@ -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 });
@@ -0,0 +1,31 @@
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 { SubnetProvisionInputSettings } from './subnet-provision-input-settings';
13
+ /**
14
+ * Subnet provision input parameters
15
+ * @export
16
+ * @interface SubnetProvisionInput
17
+ */
18
+ export interface SubnetProvisionInput {
19
+ /**
20
+ * The ID of the cloud credential
21
+ * @type {number}
22
+ * @memberof SubnetProvisionInput
23
+ */
24
+ credential_id: number;
25
+ /**
26
+ *
27
+ * @type {SubnetProvisionInputSettings}
28
+ * @memberof SubnetProvisionInput
29
+ */
30
+ settings: SubnetProvisionInputSettings;
31
+ }
@@ -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 });
@@ -0,0 +1,86 @@
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 { SubnetProvisionInput } from './subnet-provision-input';
13
+ import { SubnetType } from './subnet-type';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface SubnetRelation
18
+ */
19
+ export interface SubnetRelation {
20
+ /**
21
+ * The unique id of the given record
22
+ * @type {number}
23
+ * @memberof SubnetRelation
24
+ */
25
+ id: number;
26
+ /**
27
+ * Numeric ID of the project to which the subnet belongs to
28
+ * @type {number}
29
+ * @memberof SubnetRelation
30
+ */
31
+ project_id: number;
32
+ /**
33
+ * Numeric ID of the environment to which the subnet belongs to
34
+ * @type {number}
35
+ * @memberof SubnetRelation
36
+ */
37
+ environment_id: number;
38
+ /**
39
+ * The id of the user who created the subnet
40
+ * @type {number}
41
+ * @memberof SubnetRelation
42
+ */
43
+ created_by: number;
44
+ /**
45
+ * Numeric ID of the network to which the subnet belongs to
46
+ * @type {number}
47
+ * @memberof SubnetRelation
48
+ */
49
+ network_id: number;
50
+ /**
51
+ * The subnet\'s name
52
+ * @type {string}
53
+ * @memberof SubnetRelation
54
+ */
55
+ name: string;
56
+ /**
57
+ *
58
+ * @type {SubnetType}
59
+ * @memberof SubnetRelation
60
+ */
61
+ type: SubnetType;
62
+ /**
63
+ * True if this subnet is auto-generated or false if this was created by the user
64
+ * @type {boolean}
65
+ * @memberof SubnetRelation
66
+ */
67
+ is_auto_generated: boolean;
68
+ /**
69
+ *
70
+ * @type {SubnetProvisionInput}
71
+ * @memberof SubnetRelation
72
+ */
73
+ provision_input: SubnetProvisionInput;
74
+ /**
75
+ * The date and time when the record was created
76
+ * @type {string}
77
+ * @memberof SubnetRelation
78
+ */
79
+ created_at: string;
80
+ /**
81
+ * The date and time when the record was last updated
82
+ * @type {string}
83
+ * @memberof SubnetRelation
84
+ */
85
+ updated_at: string;
86
+ }
@@ -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 });
@@ -0,0 +1,20 @@
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
+ * The subnet\'s type. The `public` type means an internet visible subnet, and `private` means a subnet visible only from the subnet\'s network
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare enum SubnetType {
18
+ Private = "private",
19
+ Public = "public"
20
+ }
@@ -0,0 +1,25 @@
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 });
15
+ exports.SubnetType = void 0;
16
+ /**
17
+ * The subnet\'s type. The `public` type means an internet visible subnet, and `private` means a subnet visible only from the subnet\'s network
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ var SubnetType;
22
+ (function (SubnetType) {
23
+ SubnetType["Private"] = "private";
24
+ SubnetType["Public"] = "public";
25
+ })(SubnetType = exports.SubnetType || (exports.SubnetType = {}));
@@ -0,0 +1,97 @@
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 { ActionRelation } from './action-relation';
13
+ import { EnvironmentRelation } from './environment-relation';
14
+ import { NetworkRelation } from './network-relation';
15
+ import { ProjectRelation } from './project-relation';
16
+ import { SubnetProvisionInput } from './subnet-provision-input';
17
+ import { SubnetType } from './subnet-type';
18
+ import { UserRelation } from './user-relation';
19
+ /**
20
+ *
21
+ * @export
22
+ * @interface Subnet
23
+ */
24
+ export interface Subnet {
25
+ /**
26
+ * The unique id of the given record
27
+ * @type {number}
28
+ * @memberof Subnet
29
+ */
30
+ id: number;
31
+ /**
32
+ * The subnet\'s name
33
+ * @type {string}
34
+ * @memberof Subnet
35
+ */
36
+ name: string;
37
+ /**
38
+ *
39
+ * @type {SubnetType}
40
+ * @memberof Subnet
41
+ */
42
+ type: SubnetType;
43
+ /**
44
+ * True if this subnet is auto-generated or false if this was created by the user
45
+ * @type {boolean}
46
+ * @memberof Subnet
47
+ */
48
+ is_auto_generated: boolean;
49
+ /**
50
+ *
51
+ * @type {SubnetProvisionInput}
52
+ * @memberof Subnet
53
+ */
54
+ provision_input: SubnetProvisionInput;
55
+ /**
56
+ *
57
+ * @type {UserRelation}
58
+ * @memberof Subnet
59
+ */
60
+ created_by_user: UserRelation;
61
+ /**
62
+ *
63
+ * @type {ProjectRelation}
64
+ * @memberof Subnet
65
+ */
66
+ project: ProjectRelation | null;
67
+ /**
68
+ *
69
+ * @type {EnvironmentRelation}
70
+ * @memberof Subnet
71
+ */
72
+ environment: EnvironmentRelation | null;
73
+ /**
74
+ *
75
+ * @type {NetworkRelation}
76
+ * @memberof Subnet
77
+ */
78
+ network: NetworkRelation | null;
79
+ /**
80
+ *
81
+ * @type {ActionRelation}
82
+ * @memberof Subnet
83
+ */
84
+ last_action: ActionRelation | null;
85
+ /**
86
+ * The date and time when the record was created
87
+ * @type {string}
88
+ * @memberof Subnet
89
+ */
90
+ created_at: string;
91
+ /**
92
+ * The date and time when the record was last updated
93
+ * @type {string}
94
+ * @memberof Subnet
95
+ */
96
+ updated_at: string;
97
+ }
@@ -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 });
@@ -1,3 +1,5 @@
1
1
  import { NetworksApiService } from "../api/generated/apis/networks-api";
2
+ import { NetworksSubnetsApiService } from "../api/generated/apis/networks-subnets-api";
2
3
  export declare class NetworkService extends NetworksApiService {
4
+ subnets: NetworksSubnetsApiService;
3
5
  }
@@ -2,6 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NetworkService = void 0;
4
4
  const networks_api_1 = require("../api/generated/apis/networks-api");
5
+ const networks_subnets_api_1 = require("../api/generated/apis/networks-subnets-api");
5
6
  class NetworkService extends networks_api_1.NetworksApiService {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.subnets = new networks_subnets_api_1.NetworksSubnetsApiService();
10
+ }
6
11
  }
7
12
  exports.NetworkService = NetworkService;
@@ -0,0 +1,3 @@
1
+ import { SubnetsApiService } from "../api/generated/apis/subnets-api";
2
+ export declare class SubnetService extends SubnetsApiService {
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SubnetService = void 0;
4
+ const subnets_api_1 = require("../api/generated/apis/subnets-api");
5
+ class SubnetService extends subnets_api_1.SubnetsApiService {
6
+ }
7
+ exports.SubnetService = SubnetService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.80.0",
3
+ "version": "2.82.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },