@devopness/sdk-js 2.163.4 → 2.163.5

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.
@@ -33,13 +33,13 @@ export interface ActionTargetNetworkData {
33
33
  * @type {string}
34
34
  * @memberof ActionTargetNetworkData
35
35
  */
36
- provider_name: string;
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: string;
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}
@@ -142,11 +142,11 @@ export interface ApplicationRelation {
142
142
  * @type {string}
143
143
  * @memberof ApplicationRelation
144
144
  */
145
- created_at: string;
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: string;
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: string;
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: string;
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: ActionRelationShallow | null;
69
+ last_action?: ActionRelationShallow | null;
70
70
  /**
71
71
  *
72
72
  * @type {UserRelation}
73
73
  * @memberof CronJobRelation
74
74
  */
75
- created_by_user: UserRelation;
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: string;
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: string;
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: ActionRelationShallow | null;
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: string;
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: string;
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: CredentialRelation | null;
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: ActionRelationShallow | null;
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: string;
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: string;
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: ActionRelationShallow | null;
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: string;
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: string;
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: ActionRelationShallow | null;
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: string;
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: string;
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: ActionRelationShallow | null;
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: string;
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: string;
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",
4
+ "version": "2.163.5",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "homepage": "https://github.com/devopness/devopness#readme",
53
53
  "devDependencies": {
54
- "@eslint/js": "^9.25.0",
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",