@devopness/sdk-js 2.163.4 → 2.163.6
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-target-network-data.d.ts +2 -2
- package/dist/api/generated/models/action-target-server-data.d.ts +1 -1
- package/dist/api/generated/models/action-type.d.ts +1 -0
- package/dist/api/generated/models/action-type.js +1 -0
- package/dist/api/generated/models/application-relation.d.ts +2 -2
- package/dist/api/generated/models/credential-relation.d.ts +2 -2
- package/dist/api/generated/models/cron-job-relation.d.ts +4 -4
- package/dist/api/generated/models/daemon-relation.d.ts +3 -3
- package/dist/api/generated/models/server-relation.d.ts +4 -4
- package/dist/api/generated/models/service-relation.d.ts +3 -3
- package/dist/api/generated/models/ssl-certificate-relation.d.ts +3 -3
- package/dist/api/generated/models/virtual-host-relation.d.ts +3 -3
- package/package.json +4 -4
|
@@ -33,13 +33,13 @@ export interface ActionTargetNetworkData {
|
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof ActionTargetNetworkData
|
|
35
35
|
*/
|
|
36
|
-
provider_name
|
|
36
|
+
provider_name?: string;
|
|
37
37
|
/**
|
|
38
38
|
* The human readable version of the cloud provider\'s name
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof ActionTargetNetworkData
|
|
41
41
|
*/
|
|
42
|
-
provider_name_human_readable
|
|
42
|
+
provider_name_human_readable?: string;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {NetworkProvisionInput}
|
|
@@ -46,7 +46,7 @@ export interface ActionTargetServerData {
|
|
|
46
46
|
* @type {string}
|
|
47
47
|
* @memberof ActionTargetServerData
|
|
48
48
|
*/
|
|
49
|
-
ip_address: string;
|
|
49
|
+
ip_address: string | null;
|
|
50
50
|
/**
|
|
51
51
|
* The network port to which the SSH daemon is listening to SSH connections on the server
|
|
52
52
|
* @type {number}
|
|
@@ -29,6 +29,7 @@ var ActionType;
|
|
|
29
29
|
ActionType["Reload"] = "reload";
|
|
30
30
|
ActionType["Remove"] = "remove";
|
|
31
31
|
ActionType["Restart"] = "restart";
|
|
32
|
+
ActionType["RotateKey"] = "rotate_key";
|
|
32
33
|
ActionType["Start"] = "start";
|
|
33
34
|
ActionType["Stop"] = "stop";
|
|
34
35
|
})(ActionType || (exports.ActionType = ActionType = {}));
|
|
@@ -142,11 +142,11 @@ export interface ApplicationRelation {
|
|
|
142
142
|
* @type {string}
|
|
143
143
|
* @memberof ApplicationRelation
|
|
144
144
|
*/
|
|
145
|
-
created_at
|
|
145
|
+
created_at?: string;
|
|
146
146
|
/**
|
|
147
147
|
* The date and time when the record was last updated
|
|
148
148
|
* @type {string}
|
|
149
149
|
* @memberof ApplicationRelation
|
|
150
150
|
*/
|
|
151
|
-
updated_at
|
|
151
|
+
updated_at?: string;
|
|
152
152
|
}
|
|
@@ -65,11 +65,11 @@ export interface CredentialRelation {
|
|
|
65
65
|
* @type {string}
|
|
66
66
|
* @memberof CredentialRelation
|
|
67
67
|
*/
|
|
68
|
-
created_at
|
|
68
|
+
created_at?: string;
|
|
69
69
|
/**
|
|
70
70
|
* The date and time when the record was last updated
|
|
71
71
|
* @type {string}
|
|
72
72
|
* @memberof CredentialRelation
|
|
73
73
|
*/
|
|
74
|
-
updated_at
|
|
74
|
+
updated_at?: string;
|
|
75
75
|
}
|
|
@@ -66,13 +66,13 @@ export interface CronJobRelation {
|
|
|
66
66
|
* @type {ActionRelationShallow}
|
|
67
67
|
* @memberof CronJobRelation
|
|
68
68
|
*/
|
|
69
|
-
last_action
|
|
69
|
+
last_action?: ActionRelationShallow | null;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
72
|
* @type {UserRelation}
|
|
73
73
|
* @memberof CronJobRelation
|
|
74
74
|
*/
|
|
75
|
-
created_by_user
|
|
75
|
+
created_by_user?: UserRelation;
|
|
76
76
|
/**
|
|
77
77
|
*
|
|
78
78
|
* @type {ApplicationRelation}
|
|
@@ -84,11 +84,11 @@ export interface CronJobRelation {
|
|
|
84
84
|
* @type {string}
|
|
85
85
|
* @memberof CronJobRelation
|
|
86
86
|
*/
|
|
87
|
-
created_at
|
|
87
|
+
created_at?: string;
|
|
88
88
|
/**
|
|
89
89
|
* The date and time when the record was last updated
|
|
90
90
|
* @type {string}
|
|
91
91
|
* @memberof CronJobRelation
|
|
92
92
|
*/
|
|
93
|
-
updated_at
|
|
93
|
+
updated_at?: string;
|
|
94
94
|
}
|
|
@@ -65,7 +65,7 @@ export interface DaemonRelation {
|
|
|
65
65
|
* @type {ActionRelationShallow}
|
|
66
66
|
* @memberof DaemonRelation
|
|
67
67
|
*/
|
|
68
|
-
last_action
|
|
68
|
+
last_action?: ActionRelationShallow | null;
|
|
69
69
|
/**
|
|
70
70
|
*
|
|
71
71
|
* @type {ApplicationRelation}
|
|
@@ -83,11 +83,11 @@ export interface DaemonRelation {
|
|
|
83
83
|
* @type {string}
|
|
84
84
|
* @memberof DaemonRelation
|
|
85
85
|
*/
|
|
86
|
-
created_at
|
|
86
|
+
created_at?: string;
|
|
87
87
|
/**
|
|
88
88
|
* The date and time when the record was last updated
|
|
89
89
|
* @type {string}
|
|
90
90
|
* @memberof DaemonRelation
|
|
91
91
|
*/
|
|
92
|
-
updated_at
|
|
92
|
+
updated_at?: string;
|
|
93
93
|
}
|
|
@@ -59,7 +59,7 @@ export interface ServerRelation {
|
|
|
59
59
|
* @type {CredentialRelation}
|
|
60
60
|
* @memberof ServerRelation
|
|
61
61
|
*/
|
|
62
|
-
credential
|
|
62
|
+
credential?: CredentialRelation | null;
|
|
63
63
|
/**
|
|
64
64
|
* The region in which the server is located
|
|
65
65
|
* @type {string}
|
|
@@ -101,17 +101,17 @@ export interface ServerRelation {
|
|
|
101
101
|
* @type {ActionRelationShallow}
|
|
102
102
|
* @memberof ServerRelation
|
|
103
103
|
*/
|
|
104
|
-
last_action
|
|
104
|
+
last_action?: ActionRelationShallow | null;
|
|
105
105
|
/**
|
|
106
106
|
* The date and time when the record was created
|
|
107
107
|
* @type {string}
|
|
108
108
|
* @memberof ServerRelation
|
|
109
109
|
*/
|
|
110
|
-
created_at
|
|
110
|
+
created_at?: string;
|
|
111
111
|
/**
|
|
112
112
|
* The date and time when the record was last updated
|
|
113
113
|
* @type {string}
|
|
114
114
|
* @memberof ServerRelation
|
|
115
115
|
*/
|
|
116
|
-
updated_at
|
|
116
|
+
updated_at?: string;
|
|
117
117
|
}
|
|
@@ -76,17 +76,17 @@ export interface ServiceRelation {
|
|
|
76
76
|
* @type {ActionRelationShallow}
|
|
77
77
|
* @memberof ServiceRelation
|
|
78
78
|
*/
|
|
79
|
-
last_action
|
|
79
|
+
last_action?: ActionRelationShallow | null;
|
|
80
80
|
/**
|
|
81
81
|
* The date and time when the record was created
|
|
82
82
|
* @type {string}
|
|
83
83
|
* @memberof ServiceRelation
|
|
84
84
|
*/
|
|
85
|
-
created_at
|
|
85
|
+
created_at?: string;
|
|
86
86
|
/**
|
|
87
87
|
* The date and time when the record was last updated
|
|
88
88
|
* @type {string}
|
|
89
89
|
* @memberof ServiceRelation
|
|
90
90
|
*/
|
|
91
|
-
updated_at
|
|
91
|
+
updated_at?: string;
|
|
92
92
|
}
|
|
@@ -60,7 +60,7 @@ export interface SslCertificateRelation {
|
|
|
60
60
|
* @type {ActionRelationShallow}
|
|
61
61
|
* @memberof SslCertificateRelation
|
|
62
62
|
*/
|
|
63
|
-
last_action
|
|
63
|
+
last_action?: ActionRelationShallow | null;
|
|
64
64
|
/**
|
|
65
65
|
* The date and time when this certificate will no longer be valid, down to minute precision
|
|
66
66
|
* @type {string}
|
|
@@ -78,11 +78,11 @@ export interface SslCertificateRelation {
|
|
|
78
78
|
* @type {string}
|
|
79
79
|
* @memberof SslCertificateRelation
|
|
80
80
|
*/
|
|
81
|
-
created_at
|
|
81
|
+
created_at?: string;
|
|
82
82
|
/**
|
|
83
83
|
* The date and time when the record was last updated
|
|
84
84
|
* @type {string}
|
|
85
85
|
* @memberof SslCertificateRelation
|
|
86
86
|
*/
|
|
87
|
-
updated_at
|
|
87
|
+
updated_at?: string;
|
|
88
88
|
}
|
|
@@ -73,7 +73,7 @@ export interface VirtualHostRelation {
|
|
|
73
73
|
* @type {ActionRelationShallow}
|
|
74
74
|
* @memberof VirtualHostRelation
|
|
75
75
|
*/
|
|
76
|
-
last_action
|
|
76
|
+
last_action?: ActionRelationShallow | null;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {UserRelation}
|
|
@@ -85,11 +85,11 @@ export interface VirtualHostRelation {
|
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof VirtualHostRelation
|
|
87
87
|
*/
|
|
88
|
-
created_at
|
|
88
|
+
created_at?: string;
|
|
89
89
|
/**
|
|
90
90
|
* The date and time when the record was updated
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof VirtualHostRelation
|
|
93
93
|
*/
|
|
94
|
-
updated_at
|
|
94
|
+
updated_at?: string;
|
|
95
95
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@devopness/sdk-js",
|
|
4
|
-
"version": "2.163.
|
|
4
|
+
"version": "2.163.6",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://github.com/devopness/devopness#readme",
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@eslint/js": "^9.
|
|
54
|
+
"@eslint/js": "^9.26.0",
|
|
55
55
|
"@openapitools/openapi-generator-cli": "^2.20.0",
|
|
56
56
|
"@types/jest": "^29.5.12",
|
|
57
57
|
"@typescript-eslint/parser": "^8.31.1",
|
|
58
58
|
"axios-mock-adapter": "^2.1.0",
|
|
59
|
-
"eslint": "^9.
|
|
59
|
+
"eslint": "^9.26.0",
|
|
60
60
|
"eslint-import-resolver-typescript": "^4.3.4",
|
|
61
61
|
"eslint-plugin-import": "^2.31.0",
|
|
62
62
|
"eslint-plugin-n": "^17.17.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"husky": "9.1.7",
|
|
65
65
|
"jest": "^29.7.0",
|
|
66
66
|
"ts-jest": "^29.3.2",
|
|
67
|
-
"typedoc": "^0.28.
|
|
67
|
+
"typedoc": "^0.28.4",
|
|
68
68
|
"typescript": "^5.8.3",
|
|
69
69
|
"typescript-eslint": "^8.31.1"
|
|
70
70
|
},
|