files.com 1.0.202 → 1.0.203
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 +4 -4
- data/_VERSION +1 -1
- data/docs/bundle_registration.md +5 -1
- data/docs/inbox_registration.md +5 -1
- data/lib/files.com/models/bundle_registration.rb +10 -0
- data/lib/files.com/models/inbox_registration.rb +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8fa0199352b4e0f590b26eece8da9642e04f7d55845d2c2826865a9a8fc91917
|
|
4
|
+
data.tar.gz: 6d210b0734dd4fcfca49ab8422edd4b5dd15eac65b4709d747ff8ae83d6c20ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bd23773fb6fd91109d59e96364ea507fb511912e8201c2e8d62bc1ac71946121641a98227e31797feceda33d758b81ccb6cc20e947a7276f3dbc822f55d81b1
|
|
7
|
+
data.tar.gz: f4b941961517054bfd6bb0af0abe3914c34fdf3b409701505bb1114bcd9a030fa1647cd939aa09ac53d39f7bb5ba73ffb7949f7058c4ac1f52eeafb2c09fcf39
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.203
|
data/docs/bundle_registration.md
CHANGED
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"inbox_code": "abc123",
|
|
13
13
|
"clickwrap_body": "",
|
|
14
14
|
"form_field_set_id": 1,
|
|
15
|
-
"form_field_data": ""
|
|
15
|
+
"form_field_data": "",
|
|
16
|
+
"bundle_id": 1,
|
|
17
|
+
"bundle_recipient_id": 1
|
|
16
18
|
}
|
|
17
19
|
```
|
|
18
20
|
|
|
@@ -25,6 +27,8 @@
|
|
|
25
27
|
* `clickwrap_body` (string): Clickwrap text that was shown to the registrant
|
|
26
28
|
* `form_field_set_id` (int64): Id of associated form field set
|
|
27
29
|
* `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
|
|
30
|
+
* `bundle_id` (int64): Id of associated bundle
|
|
31
|
+
* `bundle_recipient_id` (int64): Id of associated bundle recipient
|
|
28
32
|
|
|
29
33
|
|
|
30
34
|
---
|
data/docs/inbox_registration.md
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"email": "john.doe@files.com",
|
|
11
11
|
"clickwrap_body": "",
|
|
12
12
|
"form_field_set_id": 1,
|
|
13
|
-
"form_field_data": ""
|
|
13
|
+
"form_field_data": "",
|
|
14
|
+
"inbox_id": 1,
|
|
15
|
+
"inbox_recipient_id": 1
|
|
14
16
|
}
|
|
15
17
|
```
|
|
16
18
|
|
|
@@ -21,6 +23,8 @@
|
|
|
21
23
|
* `clickwrap_body` (string): Clickwrap text that was shown to the registrant
|
|
22
24
|
* `form_field_set_id` (int64): Id of associated form field set
|
|
23
25
|
* `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
|
|
26
|
+
* `inbox_id` (int64): Id of associated inbox
|
|
27
|
+
* `inbox_recipient_id` (int64): Id of associated inbox recipient
|
|
24
28
|
|
|
25
29
|
|
|
26
30
|
---
|
|
@@ -54,6 +54,16 @@ module Files
|
|
|
54
54
|
@attributes[:form_field_data]
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
+
# int64 - Id of associated bundle
|
|
58
|
+
def bundle_id
|
|
59
|
+
@attributes[:bundle_id]
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# int64 - Id of associated bundle recipient
|
|
63
|
+
def bundle_recipient_id
|
|
64
|
+
@attributes[:bundle_recipient_id]
|
|
65
|
+
end
|
|
66
|
+
|
|
57
67
|
# Parameters:
|
|
58
68
|
# user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
|
|
59
69
|
# 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.
|
|
@@ -44,6 +44,16 @@ module Files
|
|
|
44
44
|
@attributes[:form_field_data]
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
+
# int64 - Id of associated inbox
|
|
48
|
+
def inbox_id
|
|
49
|
+
@attributes[:inbox_id]
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# int64 - Id of associated inbox recipient
|
|
53
|
+
def inbox_recipient_id
|
|
54
|
+
@attributes[:inbox_recipient_id]
|
|
55
|
+
end
|
|
56
|
+
|
|
47
57
|
# Parameters:
|
|
48
58
|
# 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.
|
|
49
59
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|