attio 0.1.3 → 0.3.0
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/.github/workflows/release.yml +3 -51
- data/CHANGELOG.md +62 -1
- data/CLAUDE.md +360 -0
- data/CONCEPTS.md +428 -0
- data/Gemfile.lock +3 -1
- data/README.md +304 -7
- data/examples/advanced_filtering.rb +178 -0
- data/examples/basic_usage.rb +110 -0
- data/examples/collaboration_example.rb +173 -0
- data/examples/full_workflow.rb +348 -0
- data/examples/notes_and_tasks.rb +200 -0
- data/lib/attio/client.rb +86 -0
- data/lib/attio/errors.rb +30 -2
- data/lib/attio/http_client.rb +16 -4
- data/lib/attio/rate_limiter.rb +212 -0
- data/lib/attio/resources/base.rb +70 -6
- data/lib/attio/resources/bulk.rb +290 -0
- data/lib/attio/resources/comments.rb +147 -0
- data/lib/attio/resources/deals.rb +183 -0
- data/lib/attio/resources/lists.rb +9 -21
- data/lib/attio/resources/meta.rb +72 -0
- data/lib/attio/resources/notes.rb +110 -0
- data/lib/attio/resources/records.rb +11 -24
- data/lib/attio/resources/tasks.rb +131 -0
- data/lib/attio/resources/threads.rb +154 -0
- data/lib/attio/resources/workspace_members.rb +103 -0
- data/lib/attio/version.rb +1 -1
- data/lib/attio.rb +9 -0
- metadata +17 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ernest Sim
|
@@ -48,7 +48,9 @@ files:
|
|
48
48
|
- ".rubocop.yml"
|
49
49
|
- ".yardopts"
|
50
50
|
- CHANGELOG.md
|
51
|
+
- CLAUDE.md
|
51
52
|
- CODE_OF_CONDUCT.md
|
53
|
+
- CONCEPTS.md
|
52
54
|
- CONTRIBUTING.md
|
53
55
|
- Gemfile
|
54
56
|
- Gemfile.lock
|
@@ -102,18 +104,32 @@ files:
|
|
102
104
|
- docs/js/jquery.js
|
103
105
|
- docs/method_list.html
|
104
106
|
- docs/top-level-namespace.html
|
107
|
+
- examples/advanced_filtering.rb
|
108
|
+
- examples/basic_usage.rb
|
109
|
+
- examples/collaboration_example.rb
|
110
|
+
- examples/full_workflow.rb
|
111
|
+
- examples/notes_and_tasks.rb
|
105
112
|
- lib/attio.rb
|
106
113
|
- lib/attio/client.rb
|
107
114
|
- lib/attio/connection_pool.rb
|
108
115
|
- lib/attio/errors.rb
|
109
116
|
- lib/attio/http_client.rb
|
110
117
|
- lib/attio/logger.rb
|
118
|
+
- lib/attio/rate_limiter.rb
|
111
119
|
- lib/attio/resources/attributes.rb
|
112
120
|
- lib/attio/resources/base.rb
|
121
|
+
- lib/attio/resources/bulk.rb
|
122
|
+
- lib/attio/resources/comments.rb
|
123
|
+
- lib/attio/resources/deals.rb
|
113
124
|
- lib/attio/resources/lists.rb
|
125
|
+
- lib/attio/resources/meta.rb
|
126
|
+
- lib/attio/resources/notes.rb
|
114
127
|
- lib/attio/resources/objects.rb
|
115
128
|
- lib/attio/resources/records.rb
|
129
|
+
- lib/attio/resources/tasks.rb
|
130
|
+
- lib/attio/resources/threads.rb
|
116
131
|
- lib/attio/resources/users.rb
|
132
|
+
- lib/attio/resources/workspace_members.rb
|
117
133
|
- lib/attio/resources/workspaces.rb
|
118
134
|
- lib/attio/retry_handler.rb
|
119
135
|
- lib/attio/version.rb
|