files.com 1.0.225 → 1.0.227
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/_VERSION +1 -1
- package/docs/models/File.md +4 -0
- package/docs/models/Folder.md +2 -0
- package/docs/models/IpAddress.md +16 -0
- package/lib/models/File.js +6 -0
- package/lib/models/Folder.js +6 -0
- package/lib/models/IpAddress.js +40 -2
- package/package.json +1 -1
- package/src/models/File.js +7 -0
- package/src/models/Folder.js +7 -0
- package/src/models/IpAddress.js +17 -0
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.227
|
package/docs/models/File.md
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
"region": "us-east-1",
|
18
18
|
"permissions": "rwd",
|
19
19
|
"subfolders_locked?": true,
|
20
|
+
"is_locked": true,
|
20
21
|
"download_uri": "https://mysite.files.com/...",
|
21
22
|
"priority_color": "red",
|
22
23
|
"preview_id": 1,
|
@@ -37,6 +38,7 @@
|
|
37
38
|
* `region` (string): Region location
|
38
39
|
* `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
|
39
40
|
* `subfolders_locked?` (boolean): Are subfolders locked and unable to be modified?
|
41
|
+
* `is_locked` (boolean): Is this folder locked and unable to be modified?
|
40
42
|
* `download_uri` (string): Link to download file. Provided only in response to a download request.
|
41
43
|
* `priority_color` (string): Bookmark/priority color of file/folder
|
42
44
|
* `preview_id` (int64): File preview ID
|
@@ -144,6 +146,7 @@ await file.download({
|
|
144
146
|
"region": "us-east-1",
|
145
147
|
"permissions": "rwd",
|
146
148
|
"subfolders_locked?": true,
|
149
|
+
"is_locked": true,
|
147
150
|
"download_uri": "https://mysite.files.com/...",
|
148
151
|
"priority_color": "red",
|
149
152
|
"preview_id": 1,
|
@@ -188,6 +191,7 @@ await file.update({
|
|
188
191
|
"region": "us-east-1",
|
189
192
|
"permissions": "rwd",
|
190
193
|
"subfolders_locked?": true,
|
194
|
+
"is_locked": true,
|
191
195
|
"download_uri": "https://mysite.files.com/...",
|
192
196
|
"priority_color": "red",
|
193
197
|
"preview_id": 1,
|
package/docs/models/Folder.md
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
"region": "us-east-1",
|
18
18
|
"permissions": "rwd",
|
19
19
|
"subfolders_locked?": true,
|
20
|
+
"is_locked": true,
|
20
21
|
"download_uri": "https://mysite.files.com/...",
|
21
22
|
"priority_color": "red",
|
22
23
|
"preview_id": 1,
|
@@ -37,6 +38,7 @@
|
|
37
38
|
* `region` (string): Region location
|
38
39
|
* `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
|
39
40
|
* `subfolders_locked?` (boolean): Are subfolders locked and unable to be modified?
|
41
|
+
* `is_locked` (boolean): Is this folder locked and unable to be modified?
|
40
42
|
* `download_uri` (string): Link to download file. Provided only in response to a download request.
|
41
43
|
* `priority_color` (string): Bookmark/priority color of file/folder
|
42
44
|
* `preview_id` (int64): File preview ID
|
package/docs/models/IpAddress.md
CHANGED
@@ -29,6 +29,22 @@ await IpAddress.list({
|
|
29
29
|
```
|
30
30
|
|
31
31
|
|
32
|
+
### Parameters
|
33
|
+
|
34
|
+
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
35
|
+
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
36
|
+
|
37
|
+
---
|
38
|
+
|
39
|
+
## List all possible public ExaVault IP addresses
|
40
|
+
|
41
|
+
```
|
42
|
+
await IpAddress.getExavaultReserved({
|
43
|
+
'per_page': 1,
|
44
|
+
})
|
45
|
+
```
|
46
|
+
|
47
|
+
|
32
48
|
### Parameters
|
33
49
|
|
34
50
|
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
package/lib/models/File.js
CHANGED
@@ -220,6 +220,12 @@ var File = /*#__PURE__*/(0, _createClass2.default)(function File() {
|
|
220
220
|
(0, _defineProperty2.default)(this, "setSubfoldersLocked", function (value) {
|
221
221
|
_this.attributes.subfolders_locked = value;
|
222
222
|
});
|
223
|
+
(0, _defineProperty2.default)(this, "getIsLocked", function () {
|
224
|
+
return _this.attributes.is_locked;
|
225
|
+
});
|
226
|
+
(0, _defineProperty2.default)(this, "setIsLocked", function (value) {
|
227
|
+
_this.attributes.is_locked = value;
|
228
|
+
});
|
223
229
|
(0, _defineProperty2.default)(this, "getDownloadUri", function () {
|
224
230
|
return _this.attributes.download_uri;
|
225
231
|
});
|
package/lib/models/Folder.js
CHANGED
@@ -107,6 +107,12 @@ var Folder = /*#__PURE__*/(0, _createClass2.default)(function Folder() {
|
|
107
107
|
(0, _defineProperty2.default)(this, "setSubfoldersLocked", function (value) {
|
108
108
|
_this.attributes.subfolders_locked = value;
|
109
109
|
});
|
110
|
+
(0, _defineProperty2.default)(this, "getIsLocked", function () {
|
111
|
+
return _this.attributes.is_locked;
|
112
|
+
});
|
113
|
+
(0, _defineProperty2.default)(this, "setIsLocked", function (value) {
|
114
|
+
_this.attributes.is_locked = value;
|
115
|
+
});
|
110
116
|
(0, _defineProperty2.default)(this, "getDownloadUri", function () {
|
111
117
|
return _this.attributes.download_uri;
|
112
118
|
});
|
package/lib/models/IpAddress.js
CHANGED
@@ -99,7 +99,7 @@ var IpAddress = /*#__PURE__*/(0, _createClass2.default)(function IpAddress() {
|
|
99
99
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
100
100
|
return IpAddress.list(params, options);
|
101
101
|
});
|
102
|
-
(0, _defineProperty2.default)(IpAddress, "
|
102
|
+
(0, _defineProperty2.default)(IpAddress, "getExavaultReserved", /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() {
|
103
103
|
var _response$data2;
|
104
104
|
var params,
|
105
105
|
options,
|
@@ -124,7 +124,7 @@ var IpAddress = /*#__PURE__*/(0, _createClass2.default)(function IpAddress() {
|
|
124
124
|
throw new errors.InvalidParameterError("Bad parameter: per_page must be of type Int, received ".concat((0, _utils.getType)(params['per_page'])));
|
125
125
|
case 6:
|
126
126
|
_context2.next = 8;
|
127
|
-
return _Api.default.sendRequest("/ip_addresses/reserved", 'GET', params, options);
|
127
|
+
return _Api.default.sendRequest("/ip_addresses/exavault-reserved", 'GET', params, options);
|
128
128
|
case 8:
|
129
129
|
response = _context2.sent;
|
130
130
|
return _context2.abrupt("return", (response === null || response === void 0 ? void 0 : (_response$data2 = response.data) === null || _response$data2 === void 0 ? void 0 : _response$data2.map(function (obj) {
|
@@ -137,5 +137,43 @@ var IpAddress = /*#__PURE__*/(0, _createClass2.default)(function IpAddress() {
|
|
137
137
|
}
|
138
138
|
}, _callee2);
|
139
139
|
})));
|
140
|
+
(0, _defineProperty2.default)(IpAddress, "getReserved", /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() {
|
141
|
+
var _response$data3;
|
142
|
+
var params,
|
143
|
+
options,
|
144
|
+
response,
|
145
|
+
_args3 = arguments;
|
146
|
+
return _regenerator.default.wrap(function _callee3$(_context3) {
|
147
|
+
while (1) {
|
148
|
+
switch (_context3.prev = _context3.next) {
|
149
|
+
case 0:
|
150
|
+
params = _args3.length > 0 && _args3[0] !== undefined ? _args3[0] : {};
|
151
|
+
options = _args3.length > 1 && _args3[1] !== undefined ? _args3[1] : {};
|
152
|
+
if (!(params['cursor'] && !(0, _utils.isString)(params['cursor']))) {
|
153
|
+
_context3.next = 4;
|
154
|
+
break;
|
155
|
+
}
|
156
|
+
throw new errors.InvalidParameterError("Bad parameter: cursor must be of type String, received ".concat((0, _utils.getType)(params['cursor'])));
|
157
|
+
case 4:
|
158
|
+
if (!(params['per_page'] && !(0, _utils.isInt)(params['per_page']))) {
|
159
|
+
_context3.next = 6;
|
160
|
+
break;
|
161
|
+
}
|
162
|
+
throw new errors.InvalidParameterError("Bad parameter: per_page must be of type Int, received ".concat((0, _utils.getType)(params['per_page'])));
|
163
|
+
case 6:
|
164
|
+
_context3.next = 8;
|
165
|
+
return _Api.default.sendRequest("/ip_addresses/reserved", 'GET', params, options);
|
166
|
+
case 8:
|
167
|
+
response = _context3.sent;
|
168
|
+
return _context3.abrupt("return", (response === null || response === void 0 ? void 0 : (_response$data3 = response.data) === null || _response$data3 === void 0 ? void 0 : _response$data3.map(function (obj) {
|
169
|
+
return new PublicIpAddress(obj, options);
|
170
|
+
})) || []);
|
171
|
+
case 10:
|
172
|
+
case "end":
|
173
|
+
return _context3.stop();
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}, _callee3);
|
177
|
+
})));
|
140
178
|
var _default = IpAddress;
|
141
179
|
exports.default = _default;
|
package/package.json
CHANGED
package/src/models/File.js
CHANGED
@@ -308,6 +308,13 @@ class File {
|
|
308
308
|
this.attributes.subfolders_locked = value
|
309
309
|
}
|
310
310
|
|
311
|
+
// boolean # Is this folder locked and unable to be modified?
|
312
|
+
getIsLocked = () => this.attributes.is_locked
|
313
|
+
|
314
|
+
setIsLocked = value => {
|
315
|
+
this.attributes.is_locked = value
|
316
|
+
}
|
317
|
+
|
311
318
|
// string # Link to download file. Provided only in response to a download request.
|
312
319
|
getDownloadUri = () => this.attributes.download_uri
|
313
320
|
|
package/src/models/Folder.js
CHANGED
@@ -111,6 +111,13 @@ class Folder {
|
|
111
111
|
this.attributes.subfolders_locked = value
|
112
112
|
}
|
113
113
|
|
114
|
+
// boolean # Is this folder locked and unable to be modified?
|
115
|
+
getIsLocked = () => this.attributes.is_locked
|
116
|
+
|
117
|
+
setIsLocked = value => {
|
118
|
+
this.attributes.is_locked = value
|
119
|
+
}
|
120
|
+
|
114
121
|
// string # Link to download file. Provided only in response to a download request.
|
115
122
|
getDownloadUri = () => this.attributes.download_uri
|
116
123
|
|
package/src/models/IpAddress.js
CHANGED
@@ -56,6 +56,23 @@ class IpAddress {
|
|
56
56
|
static all = (params = {}, options = {}) =>
|
57
57
|
IpAddress.list(params, options)
|
58
58
|
|
59
|
+
// Parameters:
|
60
|
+
// cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
61
|
+
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
62
|
+
static getExavaultReserved = async (params = {}, options = {}) => {
|
63
|
+
if (params['cursor'] && !isString(params['cursor'])) {
|
64
|
+
throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(params['cursor'])}`)
|
65
|
+
}
|
66
|
+
|
67
|
+
if (params['per_page'] && !isInt(params['per_page'])) {
|
68
|
+
throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(params['per_page'])}`)
|
69
|
+
}
|
70
|
+
|
71
|
+
const response = await Api.sendRequest(`/ip_addresses/exavault-reserved`, 'GET', params, options)
|
72
|
+
|
73
|
+
return response?.data?.map(obj => new PublicIpAddress(obj, options)) || []
|
74
|
+
}
|
75
|
+
|
59
76
|
// Parameters:
|
60
77
|
// cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
61
78
|
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|