files.com 1.1.615 → 1.1.616

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08a389272f6bcfa76465e87a6b5ad10f725f5fc15cb6a808efdf6430a4a25bfd'
4
- data.tar.gz: 86773e32fb71727835ceebd0a90d5f5c8509147cf9dcb076d1eea09766f336de
3
+ metadata.gz: a0c89fedade4611f4b13190a4c84791e024f5eb1b7604ad1e7789d69e5675505
4
+ data.tar.gz: fa1eaaacf01cbbf25fd0d6a6a3da62c199ebf920c0ac657e73f459fc8a58a700
5
5
  SHA512:
6
- metadata.gz: 2399198c4851849d440e4e69ddbc491041bd9143c7d9897c955c82725884acd38f94b0331a112418c0029fe7f66a921629653e9dfd6d60ad929a647c057c9749
7
- data.tar.gz: 2309caab315de1ce3c18cb81a7d6dc2d53ff3cf48d5e7d21b9c369153b33492aff6caeb4d170ca85d8cb247d872644e4b82f842dbf098bc3dd00b8d0f4dab1c9
6
+ metadata.gz: d8c506820d509c292ec12818569fef92c16a7d0cc52c97c947f2b60a81e94a869b71e5985edd0030329d4fe4b4687423faf45fd2f380c649b05e630b5e1b3590
7
+ data.tar.gz: 8906ec8ae902d899d7b813559a748110cd185a01854e7dc2212517924fcad2ee53b24b5b0cadff9b9f450a72260812a50113ce29a1229f756f13f298c20f6c3b
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.615
1
+ 1.1.616
@@ -31,7 +31,11 @@
31
31
  "workspace_id": 1,
32
32
  "bundle_registration_name": "John Doe",
33
33
  "bundle_registration_email": "john@example.com",
34
- "bundle_registration_ip": "127.0.0.1"
34
+ "bundle_registration_ip": "127.0.0.1",
35
+ "form_field_set_id": 1,
36
+ "form_field_data": {
37
+ "key": "example value"
38
+ }
35
39
  }
36
40
  ```
37
41
 
@@ -46,6 +50,8 @@
46
50
  * `bundle_registration_name` (string): Name of the registrant who performed the action
47
51
  * `bundle_registration_email` (string): Email of the registrant
48
52
  * `bundle_registration_ip` (string): IP address of the registrant
53
+ * `form_field_set_id` (int64): Id of associated form field set
54
+ * `form_field_data` (object): Data for form field set with form field ids as keys and user data as values
49
55
 
50
56
 
51
57
  ---
@@ -64,6 +64,16 @@ module Files
64
64
  @attributes[:bundle_registration_ip]
65
65
  end
66
66
 
67
+ # int64 - Id of associated form field set
68
+ def form_field_set_id
69
+ @attributes[:form_field_set_id]
70
+ end
71
+
72
+ # object - Data for form field set with form field ids as keys and user data as values
73
+ def form_field_data
74
+ @attributes[:form_field_data]
75
+ end
76
+
67
77
  # Parameters:
68
78
  # user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
69
79
  # 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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.615"
4
+ VERSION = "1.1.616"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.615
4
+ version: 1.1.616
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com