files.com 1.0.179 → 1.0.180

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.179
1
+ 1.0.180
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.179",
3
+ "version": "1.0.180",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -128,6 +128,13 @@ class As2IncomingMessage {
128
128
  // Parameters:
129
129
  // 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.
130
130
  // per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
131
+ // sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `created_at` and `as2_partner_id`.
132
+ // filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`.
133
+ // filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
134
+ // filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `created_at`.
135
+ // filter_like - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`.
136
+ // filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `created_at`.
137
+ // filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `created_at`.
131
138
  // as2_partner_id - int64 - As2 Partner ID. If provided, will return message specific to that partner.
132
139
  static list = async (params = {}, options = {}) => {
133
140
  if (params['cursor'] && !isString(params['cursor'])) {
@@ -113,6 +113,13 @@ class As2OutgoingMessage {
113
113
  // Parameters:
114
114
  // 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.
115
115
  // per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
116
+ // sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `created_at` and `as2_partner_id`.
117
+ // filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`.
118
+ // filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
119
+ // filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `created_at`.
120
+ // filter_like - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`.
121
+ // filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `created_at`.
122
+ // filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `created_at`.
116
123
  // as2_partner_id - int64 - As2 Partner ID. If provided, will return message specific to that partner.
117
124
  static list = async (params = {}, options = {}) => {
118
125
  if (params['cursor'] && !isString(params['cursor'])) {