files.com 1.0.220 → 1.0.221

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98ce510868addea03411d75ab91abcc76df99f57437985ceb870703ff35f3f17
4
- data.tar.gz: 6fbb076b3b27630e0b18c41f60a21b42c14536cb232c9c0c3517891d6313fa1c
3
+ metadata.gz: 35d424ac4aab256474b32522ecef3af8e8b2cea8142f390e643a7fa2862db9a8
4
+ data.tar.gz: b5b3cfd4ccbff04fdf849802d99195c3395def5caa8ccabd317b8bc93951e452
5
5
  SHA512:
6
- metadata.gz: 20dd906b5c2755202dbb54d249734a1c1106319f54d1b6861cb260a0603e33199faf4018127e81c34b52206e8292c7a5953cdc7f5e394767461a1cad34c010f6
7
- data.tar.gz: 186f3d9313efff7b916af1039cc3c372d0f3a8cfc800a91e9da483e2205b4ce62235149415f414d206b548bed887d2fb2b3d77b155b3a7d478001ceeaa89adf4
6
+ metadata.gz: 1fefd2ed6233e8d67b708dc73e0140b0c0686a21a936c80382fa7372b1a4549cbc0f94a25206a0c89d0ebe52da81920d7b00b1c0c26718d7af0a4cbbf213e33a
7
+ data.tar.gz: e7de32d1d2326236aaaed051727e4429f92d33892f3e5e4fd9f8876f336cd62078096426d923e16a8f830bfdf836c670eb6eb16b31161b6d6d750163892ecfd5
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.220
1
+ 1.0.221
@@ -13,6 +13,7 @@
13
13
  "clickwrap_body": "",
14
14
  "form_field_set_id": 1,
15
15
  "form_field_data": "",
16
+ "bundle_code": "",
16
17
  "bundle_id": 1,
17
18
  "bundle_recipient_id": 1
18
19
  }
@@ -27,6 +28,7 @@
27
28
  * `clickwrap_body` (string): Clickwrap text that was shown to the registrant
28
29
  * `form_field_set_id` (int64): Id of associated form field set
29
30
  * `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
31
+ * `bundle_code` (string): Bundle URL code
30
32
  * `bundle_id` (int64): Id of associated bundle
31
33
  * `bundle_recipient_id` (int64): Id of associated bundle recipient
32
34
 
data/docs/file.md CHANGED
@@ -27,7 +27,8 @@ may places where a Ruby File object can be used.
27
27
  "status": "complete",
28
28
  "download_uri": "https://mysite.files.com/...",
29
29
  "type": "complete",
30
- "size": 1024
30
+ "size": 1024,
31
+ "status_message": ""
31
32
  }
32
33
  }
33
34
  ```
data/docs/folder.md CHANGED
@@ -29,7 +29,8 @@ Files::Dir is an alias of Files::Folder
29
29
  "status": "complete",
30
30
  "download_uri": "https://mysite.files.com/...",
31
31
  "type": "complete",
32
- "size": 1024
32
+ "size": 1024,
33
+ "status_message": ""
33
34
  }
34
35
  }
35
36
  ```
@@ -12,7 +12,8 @@
12
12
  "form_field_set_id": 1,
13
13
  "form_field_data": "",
14
14
  "inbox_id": 1,
15
- "inbox_recipient_id": 1
15
+ "inbox_recipient_id": 1,
16
+ "inbox_title": ""
16
17
  }
17
18
  ```
18
19
 
@@ -25,6 +26,7 @@
25
26
  * `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
26
27
  * `inbox_id` (int64): Id of associated inbox
27
28
  * `inbox_recipient_id` (int64): Id of associated inbox recipient
29
+ * `inbox_title` (string): Title of associated inbox
28
30
 
29
31
 
30
32
  ---
data/docs/preview.md CHANGED
@@ -8,7 +8,8 @@
8
8
  "status": "complete",
9
9
  "download_uri": "https://mysite.files.com/...",
10
10
  "type": "complete",
11
- "size": 1024
11
+ "size": 1024,
12
+ "status_message": ""
12
13
  }
13
14
  ```
14
15
 
@@ -17,3 +18,4 @@
17
18
  * `download_uri` (string): Link to download preview
18
19
  * `type` (string): Preview status. Can be invalid, not_generated, generating, complete, or file_too_large
19
20
  * `size` (int64): Preview size
21
+ * `status_message` (string): Preview status message. Addtional context from the preview generation process about the status
@@ -54,6 +54,11 @@ module Files
54
54
  @attributes[:form_field_data]
55
55
  end
56
56
 
57
+ # string - Bundle URL code
58
+ def bundle_code
59
+ @attributes[:bundle_code]
60
+ end
61
+
57
62
  # int64 - Id of associated bundle
58
63
  def bundle_id
59
64
  @attributes[:bundle_id]
@@ -54,6 +54,11 @@ module Files
54
54
  @attributes[:inbox_recipient_id]
55
55
  end
56
56
 
57
+ # string - Title of associated inbox
58
+ def inbox_title
59
+ @attributes[:inbox_title]
60
+ end
61
+
57
62
  # Parameters:
58
63
  # 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 the X-Files-Cursor-Next header.
59
64
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
@@ -33,5 +33,10 @@ module Files
33
33
  def size
34
34
  @attributes[:size]
35
35
  end
36
+
37
+ # string - Preview status message. Addtional context from the preview generation process about the status
38
+ def status_message
39
+ @attributes[:status_message]
40
+ end
36
41
  end
37
42
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.220
4
+ version: 1.0.221
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-08 00:00:00.000000000 Z
11
+ date: 2021-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable