3
3
## Core Functions
4
4
```
5
5
wrapper.init(token)
6
- wrapper.get(endpoint, sort_options)
6
+ wrapper.get(endpoint, ? sort_options)
7
7
wrapper.patch(endpoint, body)
8
8
wrapper.post(endpoint, body)
9
9
wrapper.delete(endpoint)
@@ -13,21 +13,21 @@ wrapper.ping()
13
13
14
14
## Alerts
15
15
```
16
- wrapper.alerts.list(sort_options)
17
- wrapper.alerts.list_all(sort_options)
18
- wrapper.alerts.list_until(func, sort_options)
16
+ wrapper.alerts.list(? sort_options)
17
+ wrapper.alerts.list_all(? sort_options)
18
+ wrapper.alerts.list_until(should_continue, ? sort_options)
19
19
wrapper.alerts.mark_as_read()
20
20
```
21
21
22
22
## Conversations
23
23
```
24
- wrapper.conversations.list(sort_options)
25
- wrapper.conversations.list_all(sort_options)
26
- wrapper.conversations.list_until(func, sort_options)
24
+ wrapper.conversations.list(?sort_options)
25
+ wrapper.conversations.list_all(?sort_options)
26
+ wrapper.conversations.list_until(should_continue, ?sort_options)
27
+ wrapper.conversations.list_replies(conversation_id, ?sort_options)
28
+ wrapper.conversations.list_replies_all(conversation_id, ?sort_options)
29
+ wrapper.conversations.list_replies_until(conversation_id, should_continue, ?sort_options)
27
30
wrapper.conversations.create(title, message, recipient_id)
28
- wrapper.conversations.list_replies(conversation_id, sort_options)
29
- wrapper.conversations.list_replies_all(conversation_id, sort_options)
30
- wrapper.conversations.list_replies_until(conversation_id, func, sort_options)
31
31
wrapper.conversations.reply(conversation_id, message)
32
32
```
33
33
@@ -36,93 +36,93 @@ wrapper.conversations.reply(conversation_id, message)
36
36
wrapper.members.self()
37
37
wrapper.members.fetch(member_id)
38
38
39
- wrapper.member.profile_posts.list(sort_options)
40
- wrapper.member.profile_posts.list_all(sort_options)
41
- wrapper.member.profile_posts.list_until(func, sort_options)
39
+ wrapper.member.profile_posts.list(? sort_options)
40
+ wrapper.member.profile_posts.list_all(? sort_options)
41
+ wrapper.member.profile_posts.list_until(should_continue, ? sort_options)
42
42
wrapper.member.profile_posts.fetch(profile_post_id)
43
43
wrapper.member.profile_posts.edit(profile_post_id, message)
44
44
wrapper.member.profile_posts.delete(profile_post_id)
45
45
```
46
46
47
47
## Resources
48
48
```
49
- wrapper.resources.list(sort_options)
50
- wrapper.resources.list_owned(sort_options)
51
- wrapper.resources.list_owned_all(sort_options)
52
- wrapper.resources.list_owned_until(func, sort_options)
49
+ wrapper.resources.list(? sort_options)
50
+ wrapper.resources.list_owned(? sort_options)
51
+ wrapper.resources.list_owned_all(? sort_options)
52
+ wrapper.resources.list_owned_until(should_continue, ? sort_options)
53
53
wrapper.resources.fetch(resource_id)
54
54
wrapper.resources.edit(resource_id, fields)
55
55
```
56
56
57
57
#### Downloads
58
58
```
59
- wrapper.resources.downloads.list(resource_id, sort_options)
60
- wrapper.resources.downloads.list_all(resource_id, sort_options)
61
- wrapper.resources.downloads.list_until(resource_id, func, sort_options)
62
- wrapper.resources.downloads.list_member(resource_id, member_id, sort_options)
63
- wrapper.resources.downloads.list_member_all(resource_id, member_id, sort_options)
64
- wrapper.resources.downloads.list_member_until(resource_id, member_id, func, sort_options)
65
- wrapper.resources.downloads.list_version(resource_id, version_id, sort_options)
66
- wrapper.resources.downloads.list_version_all(resource_id, version_id, sort_options)
67
- wrapper.resources.downloads.list_version_until(resource_id, version_id, func, sort_options)
59
+ wrapper.resources.downloads.list(resource_id, ? sort_options)
60
+ wrapper.resources.downloads.list_all(resource_id, ? sort_options)
61
+ wrapper.resources.downloads.list_until(resource_id, should_continue, ? sort_options)
62
+ wrapper.resources.downloads.list_member(resource_id, member_id, ? sort_options)
63
+ wrapper.resources.downloads.list_member_all(resource_id, member_id, ? sort_options)
64
+ wrapper.resources.downloads.list_member_until(resource_id, member_id, should_continue, ? sort_options)
65
+ wrapper.resources.downloads.list_version(resource_id, version_id, ? sort_options)
66
+ wrapper.resources.downloads.list_version_all(resource_id, version_id, ? sort_options)
67
+ wrapper.resources.downloads.list_version_until(resource_id, version_id, should_continue, ? sort_options)
68
68
```
69
69
70
70
#### Licenses
71
71
```
72
- wrapper.resources.licenses.list(resource_id, sort_options)
73
- wrapper.resources.licenses.list_all(resource_id, sort_options)
74
- wrapper.resources.licenses.list_until(resource_id, func, sort_options)
72
+ wrapper.resources.licenses.list(resource_id, ? sort_options)
73
+ wrapper.resources.licenses.list_all(resource_id, ? sort_options)
74
+ wrapper.resources.licenses.list_until(resource_id, should_continue, ? sort_options)
75
75
wrapper.resources.licenses.issue(resource_id, fields)
76
76
wrapper.resources.licenses.fetch(resource_id, license_id)
77
77
wrapper.resources.licenses.modify(resource_id, license_id, fields)
78
78
wrapper.resources.licenses.validate(resource_id, member_id, fields)
79
79
```
80
80
81
- ### Purchases
81
+ #### Purchases
82
82
```
83
- wrapper.resources.purchases.list(resource_id, sort_options)
84
- wrapper.resources.purchases.list_all(resource_id, sort_options)
85
- wrapper.resources.purchases.list_until(resource_id, func, sort_options)
83
+ wrapper.resources.purchases.list(resource_id, ? sort_options)
84
+ wrapper.resources.purchases.list_all(resource_id, ? sort_options)
85
+ wrapper.resources.purchases.list_until(resource_id, should_continue, ? sort_options)
86
86
wrapper.resources.purchases.fetch(resource_id, purchase_id)
87
87
```
88
88
89
89
#### Reviews
90
90
```
91
- wrapper.resources.reviews.list(resource_id, sort_options)
92
- wrapper.resources.reviews.list_all(resource_id, sort_options)
93
- wrapper.resources.reviews.list_until(resource_id, func, sort_options)
91
+ wrapper.resources.reviews.list(resource_id, ? sort_options)
92
+ wrapper.resources.reviews.list_all(resource_id, ? sort_options)
93
+ wrapper.resources.reviews.list_until(resource_id, should_continue, ? sort_options)
94
94
wrapper.resources.reviews.fetch(resource_id, member_id)
95
95
wrapper.resources.reviews.respond(resource_id, review_id, message)
96
96
```
97
97
98
98
#### Updates
99
99
```
100
- wrapper.resources.updates.list(resource_id, sort_options)
101
- wrapper.resources.updates.list_all(resource_id, sort_options)
102
- wrapper.resources.updates.list_until(resource_id, func, sort_options)
100
+ wrapper.resources.updates.list(resource_id, ? sort_options)
101
+ wrapper.resources.updates.list_all(resource_id, ? sort_options)
102
+ wrapper.resources.updates.list_until(resource_id, should_continue, ? sort_options)
103
103
wrapper.resources.updates.latest(resource_id)
104
104
wrapper.resources.updates.fetch(resource_id, update_id)
105
105
wrapper.resources.updates.delete(resource_id, update_id)
106
106
```
107
107
108
108
#### Versions
109
109
```
110
- wrapper.resources.versions.list(resource_id, sort_options)
111
- wrapper.resources.versions.list_all(resource_id, sort_options)
112
- wrapper.resources.versions.list_until(resource_id, func, sort_options)
110
+ wrapper.resources.versions.list(resource_id, ? sort_options)
111
+ wrapper.resources.versions.list_all(resource_id, ? sort_options)
112
+ wrapper.resources.versions.list_until(resource_id, should_continue, ? sort_options)
113
113
wrapper.resources.versions.latest(resource_id)
114
114
wrapper.resources.versions.fetch(resource_id, version_id)
115
115
wrapper.resources.versions.delete(resource_id, version_id)
116
116
```
117
117
118
118
## Threads
119
119
```
120
- wrapper.threads.list(sort_options)
121
- wrapper.threads.list_all(sort_options)
122
- wrapper.threads.list_until(func, sort_options)
120
+ wrapper.threads.list(?sort_options)
121
+ wrapper.threads.list_all(?sort_options)
122
+ wrapper.threads.list_until(should_continue, ?sort_options)
123
+ wrapper.threads.list_replies(thread_id, ?sort_options)
124
+ wrapper.threads.list_replies_all(thread_id, ?sort_options)
125
+ wrapper.threads.list_replies_until(thread_id, should_continue, ?sort_options)
123
126
wrapper.threads.fetch(thread_id)
124
- wrapper.threads.list_replies(thread_id, sort_options)
125
- wrapper.threads.list_replies_all(thread_id, sort_options)
126
- wrapper.threads.list_replies_until(thread_id, func, sort_options)
127
127
wrapper.threads.reply(thread_id, message)
128
128
```
0 commit comments