Skip to content

Commit 73688d8

Browse files
v1.2.485
[Bot] push changes from Files.com
1 parent cd6fc8b commit 73688d8

File tree

17 files changed

+126
-218
lines changed

17 files changed

+126
-218
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ permissions:
1212
jobs:
1313
publish:
1414
runs-on: ubuntu-latest
15+
environment: publish
1516
steps:
1617
- name: Checkout code
1718
uses: actions/checkout@v4
@@ -23,7 +24,4 @@ jobs:
2324
registry-url: 'https://registry.npmjs.org'
2425

2526
- name: Publish to npm
26-
env:
27-
NODE_AUTH_TOKEN: ""
28-
NPM_TOKEN: ""
2927
run: npm publish

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.484
1+
1.2.485

docs/models/AutomationRun.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ await AutomationRun.list({
5454
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
5555
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
5656
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
57-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
57+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
5858
* `automation_id` (int64): Required - ID of the associated Automation.
5959

6060
---

docs/models/Bundle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ await Bundle.list({
154154
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
155155
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
156156
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
157-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
157+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
158158
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
159159
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
160160
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.

docs/models/RemoteServerCredential.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
"aws_access_key": "example",
1313
"google_cloud_storage_s3_compatible_access_key": "example",
1414
"wasabi_access_key": "example",
15-
"azure_blob_storage_account": "storage-account-name",
16-
"azure_files_storage_account": "storage-account-name",
1715
"s3_compatible_access_key": "example",
1816
"filebase_access_key": "example",
1917
"cloudflare_access_key": "example",
@@ -30,8 +28,6 @@
3028
* `aws_access_key` (string): AWS Access Key.
3129
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
3230
* `wasabi_access_key` (string): Wasabi: Access Key.
33-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
34-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
3531
* `s3_compatible_access_key` (string): S3-compatible: Access Key
3632
* `filebase_access_key` (string): Filebase: Access Key.
3733
* `cloudflare_access_key` (string): Cloudflare: Access Key.
@@ -95,8 +91,6 @@ await RemoteServerCredential.create({
9591
'description': "More information or notes about this credential.",
9692
'server_type': "s3",
9793
'aws_access_key': "example",
98-
'azure_blob_storage_account': "storage-account-name",
99-
'azure_files_storage_account': "storage-account-name",
10094
'cloudflare_access_key': "example",
10195
'filebase_access_key': "example",
10296
'google_cloud_storage_s3_compatible_access_key': "example",
@@ -115,8 +109,6 @@ await RemoteServerCredential.create({
115109
* `description` (string): Internal description for your reference
116110
* `server_type` (string): Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
117111
* `aws_access_key` (string): AWS Access Key.
118-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
119-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
120112
* `cloudflare_access_key` (string): Cloudflare: Access Key.
121113
* `filebase_access_key` (string): Filebase: Access Key.
122114
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
@@ -155,8 +147,6 @@ await remote_server_credential.update({
155147
'description': "More information or notes about this credential.",
156148
'server_type': "s3",
157149
'aws_access_key': "example",
158-
'azure_blob_storage_account': "storage-account-name",
159-
'azure_files_storage_account': "storage-account-name",
160150
'cloudflare_access_key': "example",
161151
'filebase_access_key': "example",
162152
'google_cloud_storage_s3_compatible_access_key': "example",
@@ -174,8 +164,6 @@ await remote_server_credential.update({
174164
* `description` (string): Internal description for your reference
175165
* `server_type` (string): Remote server type. Remote Server Credentials are only valid for a single type of Remote Server.
176166
* `aws_access_key` (string): AWS Access Key.
177-
* `azure_blob_storage_account` (string): Azure Blob Storage: Account name
178-
* `azure_files_storage_account` (string): Azure Files: Storage Account name
179167
* `cloudflare_access_key` (string): Cloudflare: Access Key.
180168
* `filebase_access_key` (string): Filebase: Access Key.
181169
* `google_cloud_storage_s3_compatible_access_key` (string): Google Cloud Storage: S3-compatible Access Key.
@@ -213,8 +201,6 @@ await remote_server_credential.update({
213201
"aws_access_key": "example",
214202
"google_cloud_storage_s3_compatible_access_key": "example",
215203
"wasabi_access_key": "example",
216-
"azure_blob_storage_account": "storage-account-name",
217-
"azure_files_storage_account": "storage-account-name",
218204
"s3_compatible_access_key": "example",
219205
"filebase_access_key": "example",
220206
"cloudflare_access_key": "example",

docs/models/User.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ await User.list({
184184
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
185185
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
186186
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `workspace_id`, `company`, `name`, `disabled`, `authenticate_until`, `username`, `email`, `last_desktop_login_at`, `last_login_at`, `site_admin`, `password_validity_days` or `ssl_required`.
187-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin`, `disabled`, `partner_id` or `workspace_id`. Valid field combinations are `[ site_admin, username ]`.
187+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin`, `disabled`, `partner_id` or `workspace_id`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]`, `[ workspace_id, username ]`, `[ company, name ]`, `[ workspace_id, name ]`, `[ workspace_id, email ]`, `[ workspace_id, company ]`, `[ workspace_id, disabled ]`, `[ workspace_id, disabled, username ]` or `[ workspace_id, company, name ]`.
188188
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
189189
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
190-
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`.
190+
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`. Valid field combinations are `[ company, name ]`.
191191
* `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
192192
* `filter_lteq` (object): If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
193193
* `ids` (string): comma-separated list of User IDs

lib/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
1414
var language = null;
15-
var version = '1.2.484';
15+
var version = '1.2.485';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

lib/models/AutomationRun.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ _AutomationRun = AutomationRun;
107107
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
108108
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
109109
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
110-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
110+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
111111
// automation_id (required) - int64 - ID of the associated Automation.
112112
(0, _defineProperty2.default)(AutomationRun, "list", /*#__PURE__*/(0, _asyncToGenerator2.default)(/*#__PURE__*/_regenerator.default.mark(function _callee() {
113113
var _response$data;

lib/models/Bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ _Bundle = Bundle;
699699
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
700700
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
701701
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
702-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
702+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
703703
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
704704
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
705705
// filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.

0 commit comments

Comments
 (0)