attio 0.1.1

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.
Files changed (89) hide show
  1. checksums.yaml +7 -0
  2. data/.codecov.yml +52 -0
  3. data/.github/CODEOWNERS +28 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +40 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.md +28 -0
  6. data/.github/dependabot.yml +54 -0
  7. data/.github/pull_request_template.md +40 -0
  8. data/.github/workflows/ci.yml +112 -0
  9. data/.github/workflows/dependabot-auto-merge.yml +45 -0
  10. data/.github/workflows/pr_checks.yml +145 -0
  11. data/.github/workflows/release.yml +147 -0
  12. data/.gitignore +10 -0
  13. data/.rspec +4 -0
  14. data/.rubocop.yml +133 -0
  15. data/.yardopts +18 -0
  16. data/CHANGELOG.md +34 -0
  17. data/CODE_OF_CONDUCT.md +37 -0
  18. data/CONTRIBUTING.md +280 -0
  19. data/Gemfile +17 -0
  20. data/Gemfile.lock +127 -0
  21. data/LICENSE.txt +21 -0
  22. data/README.md +292 -0
  23. data/Rakefile +57 -0
  24. data/SECURITY.md +59 -0
  25. data/attio.gemspec +34 -0
  26. data/bin/console +14 -0
  27. data/bin/setup +8 -0
  28. data/danger/Dangerfile +121 -0
  29. data/docs/.nojekyll +0 -0
  30. data/docs/Attio/AuthenticationError.html +152 -0
  31. data/docs/Attio/Client.html +1373 -0
  32. data/docs/Attio/ConnectionPool/TimeoutError.html +148 -0
  33. data/docs/Attio/ConnectionPool.html +944 -0
  34. data/docs/Attio/Error.html +152 -0
  35. data/docs/Attio/HttpClient/ConnectionError.html +152 -0
  36. data/docs/Attio/HttpClient/TimeoutError.html +152 -0
  37. data/docs/Attio/HttpClient.html +1329 -0
  38. data/docs/Attio/Logger.html +747 -0
  39. data/docs/Attio/NotFoundError.html +152 -0
  40. data/docs/Attio/RateLimitError.html +152 -0
  41. data/docs/Attio/RequestLogger.html +780 -0
  42. data/docs/Attio/Resources/Attributes.html +508 -0
  43. data/docs/Attio/Resources/Base.html +624 -0
  44. data/docs/Attio/Resources/Lists.html +1002 -0
  45. data/docs/Attio/Resources/Objects.html +415 -0
  46. data/docs/Attio/Resources/Records.html +1465 -0
  47. data/docs/Attio/Resources/Users.html +415 -0
  48. data/docs/Attio/Resources/Workspaces.html +324 -0
  49. data/docs/Attio/Resources.html +141 -0
  50. data/docs/Attio/RetryHandler.html +1023 -0
  51. data/docs/Attio/ServerError.html +152 -0
  52. data/docs/Attio/ValidationError.html +152 -0
  53. data/docs/Attio.html +397 -0
  54. data/docs/SETUP.md +117 -0
  55. data/docs/_index.html +378 -0
  56. data/docs/class_list.html +54 -0
  57. data/docs/css/common.css +1 -0
  58. data/docs/css/full_list.css +58 -0
  59. data/docs/css/style.css +503 -0
  60. data/docs/example.rb +119 -0
  61. data/docs/file.CHANGELOG.html +124 -0
  62. data/docs/file.README.html +371 -0
  63. data/docs/file_list.html +64 -0
  64. data/docs/frames.html +22 -0
  65. data/docs/index.html +371 -0
  66. data/docs/js/app.js +344 -0
  67. data/docs/js/full_list.js +242 -0
  68. data/docs/js/jquery.js +4 -0
  69. data/docs/method_list.html +750 -0
  70. data/docs/top-level-namespace.html +110 -0
  71. data/lib/attio/client.rb +118 -0
  72. data/lib/attio/connection_pool.rb +69 -0
  73. data/lib/attio/errors.rb +9 -0
  74. data/lib/attio/http_client.rb +100 -0
  75. data/lib/attio/logger.rb +110 -0
  76. data/lib/attio/resources/attributes.rb +26 -0
  77. data/lib/attio/resources/base.rb +55 -0
  78. data/lib/attio/resources/lists.rb +56 -0
  79. data/lib/attio/resources/objects.rb +20 -0
  80. data/lib/attio/resources/records.rb +158 -0
  81. data/lib/attio/resources/users.rb +20 -0
  82. data/lib/attio/resources/workspaces.rb +13 -0
  83. data/lib/attio/retry_handler.rb +70 -0
  84. data/lib/attio/version.rb +3 -0
  85. data/lib/attio.rb +60 -0
  86. data/run_tests.rb +52 -0
  87. data/test_basic.rb +51 -0
  88. data/test_typhoeus.rb +31 -0
  89. metadata +160 -0
@@ -0,0 +1,750 @@
1
+ <!DOCTYPE html>
2
+ <html >
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta charset="utf-8" />
6
+
7
+ <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" />
8
+
9
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
10
+
11
+
12
+
13
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
+
17
+
18
+ <title>Method List</title>
19
+ <base id="base_target" target="_parent" />
20
+ </head>
21
+ <body>
22
+ <div id="content">
23
+ <div class="fixed_header">
24
+ <h1 id="full_list_header">Method List</h1>
25
+ <div id="full_list_nav">
26
+
27
+ <span><a target="_self" href="class_list.html">
28
+ Classes
29
+ </a></span>
30
+
31
+ <span><a target="_self" href="method_list.html">
32
+ Methods
33
+ </a></span>
34
+
35
+ <span><a target="_self" href="file_list.html">
36
+ Files
37
+ </a></span>
38
+
39
+ </div>
40
+
41
+ <div id="search">
42
+ <label for="search-class">Search:</label>
43
+ <input id="search-class" type="text" />
44
+ </div>
45
+ </div>
46
+
47
+ <ul id="full_list" class="method">
48
+
49
+
50
+ <li class="odd ">
51
+ <div class="item">
52
+ <span class='object_link'><a href="Attio/Client.html#api_key-instance_method" title="Attio::Client#api_key (method)">#api_key</a></span>
53
+ <small>Attio::Client</small>
54
+ </div>
55
+ </li>
56
+
57
+
58
+ <li class="even ">
59
+ <div class="item">
60
+ <span class='object_link'><a href="Attio/Client.html#attributes-instance_method" title="Attio::Client#attributes (method)">#attributes</a></span>
61
+ <small>Attio::Client</small>
62
+ </div>
63
+ </li>
64
+
65
+
66
+ <li class="odd ">
67
+ <div class="item">
68
+ <span class='object_link'><a href="Attio/RetryHandler.html#backoff_factor-instance_method" title="Attio::RetryHandler#backoff_factor (method)">#backoff_factor</a></span>
69
+ <small>Attio::RetryHandler</small>
70
+ </div>
71
+ </li>
72
+
73
+
74
+ <li class="even ">
75
+ <div class="item">
76
+ <span class='object_link'><a href="Attio/HttpClient.html#base_url-instance_method" title="Attio::HttpClient#base_url (method)">#base_url</a></span>
77
+ <small>Attio::HttpClient</small>
78
+ </div>
79
+ </li>
80
+
81
+
82
+ <li class="odd ">
83
+ <div class="item">
84
+ <span class='object_link'><a href="Attio/ConnectionPool.html#checkin-instance_method" title="Attio::ConnectionPool#checkin (method)">#checkin</a></span>
85
+ <small>Attio::ConnectionPool</small>
86
+ </div>
87
+ </li>
88
+
89
+
90
+ <li class="even ">
91
+ <div class="item">
92
+ <span class='object_link'><a href="Attio/ConnectionPool.html#checkout-instance_method" title="Attio::ConnectionPool#checkout (method)">#checkout</a></span>
93
+ <small>Attio::ConnectionPool</small>
94
+ </div>
95
+ </li>
96
+
97
+
98
+ <li class="odd ">
99
+ <div class="item">
100
+ <span class='object_link'><a href="Attio/Resources/Base.html#client-instance_method" title="Attio::Resources::Base#client (method)">#client</a></span>
101
+ <small>Attio::Resources::Base</small>
102
+ </div>
103
+ </li>
104
+
105
+
106
+ <li class="even ">
107
+ <div class="item">
108
+ <span class='object_link'><a href="Attio.html#client-class_method" title="Attio.client (method)">client</a></span>
109
+ <small>Attio</small>
110
+ </div>
111
+ </li>
112
+
113
+
114
+ <li class="odd ">
115
+ <div class="item">
116
+ <span class='object_link'><a href="Attio/Client.html#connection-instance_method" title="Attio::Client#connection (method)">#connection</a></span>
117
+ <small>Attio::Client</small>
118
+ </div>
119
+ </li>
120
+
121
+
122
+ <li class="even ">
123
+ <div class="item">
124
+ <span class='object_link'><a href="Attio/Resources/Records.html#create-instance_method" title="Attio::Resources::Records#create (method)">#create</a></span>
125
+ <small>Attio::Resources::Records</small>
126
+ </div>
127
+ </li>
128
+
129
+
130
+ <li class="odd ">
131
+ <div class="item">
132
+ <span class='object_link'><a href="Attio/ConnectionPool.html#create_connection-instance_method" title="Attio::ConnectionPool#create_connection (method)">#create_connection</a></span>
133
+ <small>Attio::ConnectionPool</small>
134
+ </div>
135
+ </li>
136
+
137
+
138
+ <li class="even ">
139
+ <div class="item">
140
+ <span class='object_link'><a href="Attio/Resources/Lists.html#create_entry-instance_method" title="Attio::Resources::Lists#create_entry (method)">#create_entry</a></span>
141
+ <small>Attio::Resources::Lists</small>
142
+ </div>
143
+ </li>
144
+
145
+
146
+ <li class="odd ">
147
+ <div class="item">
148
+ <span class='object_link'><a href="Attio/Logger.html#debug-instance_method" title="Attio::Logger#debug (method)">#debug</a></span>
149
+ <small>Attio::Logger</small>
150
+ </div>
151
+ </li>
152
+
153
+
154
+ <li class="even ">
155
+ <div class="item">
156
+ <span class='object_link'><a href="Attio/Logger.html#default_formatter-instance_method" title="Attio::Logger#default_formatter (method)">#default_formatter</a></span>
157
+ <small>Attio::Logger</small>
158
+ </div>
159
+ </li>
160
+
161
+
162
+ <li class="odd ">
163
+ <div class="item">
164
+ <span class='object_link'><a href="Attio/HttpClient.html#delete-instance_method" title="Attio::HttpClient#delete (method)">#delete</a></span>
165
+ <small>Attio::HttpClient</small>
166
+ </div>
167
+ </li>
168
+
169
+
170
+ <li class="even ">
171
+ <div class="item">
172
+ <span class='object_link'><a href="Attio/Resources/Records.html#delete-instance_method" title="Attio::Resources::Records#delete (method)">#delete</a></span>
173
+ <small>Attio::Resources::Records</small>
174
+ </div>
175
+ </li>
176
+
177
+
178
+ <li class="odd ">
179
+ <div class="item">
180
+ <span class='object_link'><a href="Attio/Resources/Lists.html#delete_entry-instance_method" title="Attio::Resources::Lists#delete_entry (method)">#delete_entry</a></span>
181
+ <small>Attio::Resources::Lists</small>
182
+ </div>
183
+ </li>
184
+
185
+
186
+ <li class="even ">
187
+ <div class="item">
188
+ <span class='object_link'><a href="Attio/Resources/Lists.html#entries-instance_method" title="Attio::Resources::Lists#entries (method)">#entries</a></span>
189
+ <small>Attio::Resources::Lists</small>
190
+ </div>
191
+ </li>
192
+
193
+
194
+ <li class="odd ">
195
+ <div class="item">
196
+ <span class='object_link'><a href="Attio/Logger.html#error-instance_method" title="Attio::Logger#error (method)">#error</a></span>
197
+ <small>Attio::Logger</small>
198
+ </div>
199
+ </li>
200
+
201
+
202
+ <li class="even ">
203
+ <div class="item">
204
+ <span class='object_link'><a href="Attio/HttpClient.html#execute_request-instance_method" title="Attio::HttpClient#execute_request (method)">#execute_request</a></span>
205
+ <small>Attio::HttpClient</small>
206
+ </div>
207
+ </li>
208
+
209
+
210
+ <li class="odd ">
211
+ <div class="item">
212
+ <span class='object_link'><a href="Attio/Logger.html#format_message-instance_method" title="Attio::Logger#format_message (method)">#format_message</a></span>
213
+ <small>Attio::Logger</small>
214
+ </div>
215
+ </li>
216
+
217
+
218
+ <li class="even ">
219
+ <div class="item">
220
+ <span class='object_link'><a href="Attio/Resources/Objects.html#get-instance_method" title="Attio::Resources::Objects#get (method)">#get</a></span>
221
+ <small>Attio::Resources::Objects</small>
222
+ </div>
223
+ </li>
224
+
225
+
226
+ <li class="odd ">
227
+ <div class="item">
228
+ <span class='object_link'><a href="Attio/Resources/Records.html#get-instance_method" title="Attio::Resources::Records#get (method)">#get</a></span>
229
+ <small>Attio::Resources::Records</small>
230
+ </div>
231
+ </li>
232
+
233
+
234
+ <li class="even ">
235
+ <div class="item">
236
+ <span class='object_link'><a href="Attio/Resources/Users.html#get-instance_method" title="Attio::Resources::Users#get (method)">#get</a></span>
237
+ <small>Attio::Resources::Users</small>
238
+ </div>
239
+ </li>
240
+
241
+
242
+ <li class="odd ">
243
+ <div class="item">
244
+ <span class='object_link'><a href="Attio/Resources/Lists.html#get-instance_method" title="Attio::Resources::Lists#get (method)">#get</a></span>
245
+ <small>Attio::Resources::Lists</small>
246
+ </div>
247
+ </li>
248
+
249
+
250
+ <li class="even ">
251
+ <div class="item">
252
+ <span class='object_link'><a href="Attio/Resources/Attributes.html#get-instance_method" title="Attio::Resources::Attributes#get (method)">#get</a></span>
253
+ <small>Attio::Resources::Attributes</small>
254
+ </div>
255
+ </li>
256
+
257
+
258
+ <li class="odd ">
259
+ <div class="item">
260
+ <span class='object_link'><a href="Attio/Resources/Workspaces.html#get-instance_method" title="Attio::Resources::Workspaces#get (method)">#get</a></span>
261
+ <small>Attio::Resources::Workspaces</small>
262
+ </div>
263
+ </li>
264
+
265
+
266
+ <li class="even ">
267
+ <div class="item">
268
+ <span class='object_link'><a href="Attio/HttpClient.html#get-instance_method" title="Attio::HttpClient#get (method)">#get</a></span>
269
+ <small>Attio::HttpClient</small>
270
+ </div>
271
+ </li>
272
+
273
+
274
+ <li class="odd ">
275
+ <div class="item">
276
+ <span class='object_link'><a href="Attio/Resources/Lists.html#get_entry-instance_method" title="Attio::Resources::Lists#get_entry (method)">#get_entry</a></span>
277
+ <small>Attio::Resources::Lists</small>
278
+ </div>
279
+ </li>
280
+
281
+
282
+ <li class="even ">
283
+ <div class="item">
284
+ <span class='object_link'><a href="Attio/HttpClient.html#handle_response-instance_method" title="Attio::HttpClient#handle_response (method)">#handle_response</a></span>
285
+ <small>Attio::HttpClient</small>
286
+ </div>
287
+ </li>
288
+
289
+
290
+ <li class="odd ">
291
+ <div class="item">
292
+ <span class='object_link'><a href="Attio/HttpClient.html#headers-instance_method" title="Attio::HttpClient#headers (method)">#headers</a></span>
293
+ <small>Attio::HttpClient</small>
294
+ </div>
295
+ </li>
296
+
297
+
298
+ <li class="even ">
299
+ <div class="item">
300
+ <span class='object_link'><a href="Attio/Logger.html#info-instance_method" title="Attio::Logger#info (method)">#info</a></span>
301
+ <small>Attio::Logger</small>
302
+ </div>
303
+ </li>
304
+
305
+
306
+ <li class="odd ">
307
+ <div class="item">
308
+ <span class='object_link'><a href="Attio/RequestLogger.html#initialize-instance_method" title="Attio::RequestLogger#initialize (method)">#initialize</a></span>
309
+ <small>Attio::RequestLogger</small>
310
+ </div>
311
+ </li>
312
+
313
+
314
+ <li class="even ">
315
+ <div class="item">
316
+ <span class='object_link'><a href="Attio/Client.html#initialize-instance_method" title="Attio::Client#initialize (method)">#initialize</a></span>
317
+ <small>Attio::Client</small>
318
+ </div>
319
+ </li>
320
+
321
+
322
+ <li class="odd ">
323
+ <div class="item">
324
+ <span class='object_link'><a href="Attio/Logger.html#initialize-instance_method" title="Attio::Logger#initialize (method)">#initialize</a></span>
325
+ <small>Attio::Logger</small>
326
+ </div>
327
+ </li>
328
+
329
+
330
+ <li class="even ">
331
+ <div class="item">
332
+ <span class='object_link'><a href="Attio/HttpClient.html#initialize-instance_method" title="Attio::HttpClient#initialize (method)">#initialize</a></span>
333
+ <small>Attio::HttpClient</small>
334
+ </div>
335
+ </li>
336
+
337
+
338
+ <li class="odd ">
339
+ <div class="item">
340
+ <span class='object_link'><a href="Attio/RetryHandler.html#initialize-instance_method" title="Attio::RetryHandler#initialize (method)">#initialize</a></span>
341
+ <small>Attio::RetryHandler</small>
342
+ </div>
343
+ </li>
344
+
345
+
346
+ <li class="even ">
347
+ <div class="item">
348
+ <span class='object_link'><a href="Attio/Resources/Base.html#initialize-instance_method" title="Attio::Resources::Base#initialize (method)">#initialize</a></span>
349
+ <small>Attio::Resources::Base</small>
350
+ </div>
351
+ </li>
352
+
353
+
354
+ <li class="odd ">
355
+ <div class="item">
356
+ <span class='object_link'><a href="Attio/ConnectionPool.html#initialize-instance_method" title="Attio::ConnectionPool#initialize (method)">#initialize</a></span>
357
+ <small>Attio::ConnectionPool</small>
358
+ </div>
359
+ </li>
360
+
361
+
362
+ <li class="even ">
363
+ <div class="item">
364
+ <span class='object_link'><a href="Attio/Resources/Lists.html#list-instance_method" title="Attio::Resources::Lists#list (method)">#list</a></span>
365
+ <small>Attio::Resources::Lists</small>
366
+ </div>
367
+ </li>
368
+
369
+
370
+ <li class="odd ">
371
+ <div class="item">
372
+ <span class='object_link'><a href="Attio/Resources/Records.html#list-instance_method" title="Attio::Resources::Records#list (method)">#list</a></span>
373
+ <small>Attio::Resources::Records</small>
374
+ </div>
375
+ </li>
376
+
377
+
378
+ <li class="even ">
379
+ <div class="item">
380
+ <span class='object_link'><a href="Attio/Resources/Attributes.html#list-instance_method" title="Attio::Resources::Attributes#list (method)">#list</a></span>
381
+ <small>Attio::Resources::Attributes</small>
382
+ </div>
383
+ </li>
384
+
385
+
386
+ <li class="odd ">
387
+ <div class="item">
388
+ <span class='object_link'><a href="Attio/Resources/Objects.html#list-instance_method" title="Attio::Resources::Objects#list (method)">#list</a></span>
389
+ <small>Attio::Resources::Objects</small>
390
+ </div>
391
+ </li>
392
+
393
+
394
+ <li class="even ">
395
+ <div class="item">
396
+ <span class='object_link'><a href="Attio/Resources/Users.html#list-instance_method" title="Attio::Resources::Users#list (method)">#list</a></span>
397
+ <small>Attio::Resources::Users</small>
398
+ </div>
399
+ </li>
400
+
401
+
402
+ <li class="odd ">
403
+ <div class="item">
404
+ <span class='object_link'><a href="Attio/Client.html#lists-instance_method" title="Attio::Client#lists (method)">#lists</a></span>
405
+ <small>Attio::Client</small>
406
+ </div>
407
+ </li>
408
+
409
+
410
+ <li class="even ">
411
+ <div class="item">
412
+ <span class='object_link'><a href="Attio/RetryHandler.html#log_failure-instance_method" title="Attio::RetryHandler#log_failure (method)">#log_failure</a></span>
413
+ <small>Attio::RetryHandler</small>
414
+ </div>
415
+ </li>
416
+
417
+
418
+ <li class="odd ">
419
+ <div class="item">
420
+ <span class='object_link'><a href="Attio/RequestLogger.html#log_level-instance_method" title="Attio::RequestLogger#log_level (method)">#log_level</a></span>
421
+ <small>Attio::RequestLogger</small>
422
+ </div>
423
+ </li>
424
+
425
+
426
+ <li class="even ">
427
+ <div class="item">
428
+ <span class='object_link'><a href="Attio/RequestLogger.html#log_request-instance_method" title="Attio::RequestLogger#log_request (method)">#log_request</a></span>
429
+ <small>Attio::RequestLogger</small>
430
+ </div>
431
+ </li>
432
+
433
+
434
+ <li class="odd ">
435
+ <div class="item">
436
+ <span class='object_link'><a href="Attio/RequestLogger.html#log_response-instance_method" title="Attio::RequestLogger#log_response (method)">#log_response</a></span>
437
+ <small>Attio::RequestLogger</small>
438
+ </div>
439
+ </li>
440
+
441
+
442
+ <li class="even ">
443
+ <div class="item">
444
+ <span class='object_link'><a href="Attio/RetryHandler.html#log_retry-instance_method" title="Attio::RetryHandler#log_retry (method)">#log_retry</a></span>
445
+ <small>Attio::RetryHandler</small>
446
+ </div>
447
+ </li>
448
+
449
+
450
+ <li class="odd ">
451
+ <div class="item">
452
+ <span class='object_link'><a href="Attio/RequestLogger.html#logger-instance_method" title="Attio::RequestLogger#logger (method)">#logger</a></span>
453
+ <small>Attio::RequestLogger</small>
454
+ </div>
455
+ </li>
456
+
457
+
458
+ <li class="even ">
459
+ <div class="item">
460
+ <span class='object_link'><a href="Attio/RetryHandler.html#logger-instance_method" title="Attio::RetryHandler#logger (method)">#logger</a></span>
461
+ <small>Attio::RetryHandler</small>
462
+ </div>
463
+ </li>
464
+
465
+
466
+ <li class="odd ">
467
+ <div class="item">
468
+ <span class='object_link'><a href="Attio/RetryHandler.html#max_retries-instance_method" title="Attio::RetryHandler#max_retries (method)">#max_retries</a></span>
469
+ <small>Attio::RetryHandler</small>
470
+ </div>
471
+ </li>
472
+
473
+
474
+ <li class="even ">
475
+ <div class="item">
476
+ <span class='object_link'><a href="Attio/Resources/Workspaces.html#members-instance_method" title="Attio::Resources::Workspaces#members (method)">#members</a></span>
477
+ <small>Attio::Resources::Workspaces</small>
478
+ </div>
479
+ </li>
480
+
481
+
482
+ <li class="odd ">
483
+ <div class="item">
484
+ <span class='object_link'><a href="Attio/Client.html#objects-instance_method" title="Attio::Client#objects (method)">#objects</a></span>
485
+ <small>Attio::Client</small>
486
+ </div>
487
+ </li>
488
+
489
+
490
+ <li class="even ">
491
+ <div class="item">
492
+ <span class='object_link'><a href="Attio/HttpClient.html#parse_error_message-instance_method" title="Attio::HttpClient#parse_error_message (method)">#parse_error_message</a></span>
493
+ <small>Attio::HttpClient</small>
494
+ </div>
495
+ </li>
496
+
497
+
498
+ <li class="odd ">
499
+ <div class="item">
500
+ <span class='object_link'><a href="Attio/HttpClient.html#parse_json-instance_method" title="Attio::HttpClient#parse_json (method)">#parse_json</a></span>
501
+ <small>Attio::HttpClient</small>
502
+ </div>
503
+ </li>
504
+
505
+
506
+ <li class="even ">
507
+ <div class="item">
508
+ <span class='object_link'><a href="Attio/HttpClient.html#patch-instance_method" title="Attio::HttpClient#patch (method)">#patch</a></span>
509
+ <small>Attio::HttpClient</small>
510
+ </div>
511
+ </li>
512
+
513
+
514
+ <li class="odd ">
515
+ <div class="item">
516
+ <span class='object_link'><a href="Attio/HttpClient.html#post-instance_method" title="Attio::HttpClient#post (method)">#post</a></span>
517
+ <small>Attio::HttpClient</small>
518
+ </div>
519
+ </li>
520
+
521
+
522
+ <li class="even ">
523
+ <div class="item">
524
+ <span class='object_link'><a href="Attio/HttpClient.html#put-instance_method" title="Attio::HttpClient#put (method)">#put</a></span>
525
+ <small>Attio::HttpClient</small>
526
+ </div>
527
+ </li>
528
+
529
+
530
+ <li class="odd ">
531
+ <div class="item">
532
+ <span class='object_link'><a href="Attio/Client.html#records-instance_method" title="Attio::Client#records (method)">#records</a></span>
533
+ <small>Attio::Client</small>
534
+ </div>
535
+ </li>
536
+
537
+
538
+ <li class="even ">
539
+ <div class="item">
540
+ <span class='object_link'><a href="Attio/Resources/Base.html#request-instance_method" title="Attio::Resources::Base#request (method)">#request</a></span>
541
+ <small>Attio::Resources::Base</small>
542
+ </div>
543
+ </li>
544
+
545
+
546
+ <li class="odd ">
547
+ <div class="item">
548
+ <span class='object_link'><a href="Attio/RetryHandler.html#retry_delay-instance_method" title="Attio::RetryHandler#retry_delay (method)">#retry_delay</a></span>
549
+ <small>Attio::RetryHandler</small>
550
+ </div>
551
+ </li>
552
+
553
+
554
+ <li class="even ">
555
+ <div class="item">
556
+ <span class='object_link'><a href="Attio/RequestLogger.html#sanitize_body-instance_method" title="Attio::RequestLogger#sanitize_body (method)">#sanitize_body</a></span>
557
+ <small>Attio::RequestLogger</small>
558
+ </div>
559
+ </li>
560
+
561
+
562
+ <li class="odd ">
563
+ <div class="item">
564
+ <span class='object_link'><a href="Attio/RequestLogger.html#sanitize_headers-instance_method" title="Attio::RequestLogger#sanitize_headers (method)">#sanitize_headers</a></span>
565
+ <small>Attio::RequestLogger</small>
566
+ </div>
567
+ </li>
568
+
569
+
570
+ <li class="even ">
571
+ <div class="item">
572
+ <span class='object_link'><a href="Attio/ConnectionPool.html#shutdown-instance_method" title="Attio::ConnectionPool#shutdown (method)">#shutdown</a></span>
573
+ <small>Attio::ConnectionPool</small>
574
+ </div>
575
+ </li>
576
+
577
+
578
+ <li class="odd ">
579
+ <div class="item">
580
+ <span class='object_link'><a href="Attio/ConnectionPool.html#size-instance_method" title="Attio::ConnectionPool#size (method)">#size</a></span>
581
+ <small>Attio::ConnectionPool</small>
582
+ </div>
583
+ </li>
584
+
585
+
586
+ <li class="even ">
587
+ <div class="item">
588
+ <span class='object_link'><a href="Attio/HttpClient.html#timeout-instance_method" title="Attio::HttpClient#timeout (method)">#timeout</a></span>
589
+ <small>Attio::HttpClient</small>
590
+ </div>
591
+ </li>
592
+
593
+
594
+ <li class="odd ">
595
+ <div class="item">
596
+ <span class='object_link'><a href="Attio/ConnectionPool.html#timeout-instance_method" title="Attio::ConnectionPool#timeout (method)">#timeout</a></span>
597
+ <small>Attio::ConnectionPool</small>
598
+ </div>
599
+ </li>
600
+
601
+
602
+ <li class="even ">
603
+ <div class="item">
604
+ <span class='object_link'><a href="Attio/Client.html#timeout-instance_method" title="Attio::Client#timeout (method)">#timeout</a></span>
605
+ <small>Attio::Client</small>
606
+ </div>
607
+ </li>
608
+
609
+
610
+ <li class="odd ">
611
+ <div class="item">
612
+ <span class='object_link'><a href="Attio/Resources/Records.html#update-instance_method" title="Attio::Resources::Records#update (method)">#update</a></span>
613
+ <small>Attio::Resources::Records</small>
614
+ </div>
615
+ </li>
616
+
617
+
618
+ <li class="even ">
619
+ <div class="item">
620
+ <span class='object_link'><a href="Attio/Client.html#users-instance_method" title="Attio::Client#users (method)">#users</a></span>
621
+ <small>Attio::Client</small>
622
+ </div>
623
+ </li>
624
+
625
+
626
+ <li class="odd ">
627
+ <div class="item">
628
+ <span class='object_link'><a href="Attio/Resources/Records.html#validate_data!-instance_method" title="Attio::Resources::Records#validate_data! (method)">#validate_data!</a></span>
629
+ <small>Attio::Resources::Records</small>
630
+ </div>
631
+ </li>
632
+
633
+
634
+ <li class="even ">
635
+ <div class="item">
636
+ <span class='object_link'><a href="Attio/Resources/Lists.html#validate_data!-instance_method" title="Attio::Resources::Lists#validate_data! (method)">#validate_data!</a></span>
637
+ <small>Attio::Resources::Lists</small>
638
+ </div>
639
+ </li>
640
+
641
+
642
+ <li class="odd ">
643
+ <div class="item">
644
+ <span class='object_link'><a href="Attio/Resources/Lists.html#validate_entry_id!-instance_method" title="Attio::Resources::Lists#validate_entry_id! (method)">#validate_entry_id!</a></span>
645
+ <small>Attio::Resources::Lists</small>
646
+ </div>
647
+ </li>
648
+
649
+
650
+ <li class="even ">
651
+ <div class="item">
652
+ <span class='object_link'><a href="Attio/Resources/Records.html#validate_id!-instance_method" title="Attio::Resources::Records#validate_id! (method)">#validate_id!</a></span>
653
+ <small>Attio::Resources::Records</small>
654
+ </div>
655
+ </li>
656
+
657
+
658
+ <li class="odd ">
659
+ <div class="item">
660
+ <span class='object_link'><a href="Attio/Resources/Users.html#validate_id!-instance_method" title="Attio::Resources::Users#validate_id! (method)">#validate_id!</a></span>
661
+ <small>Attio::Resources::Users</small>
662
+ </div>
663
+ </li>
664
+
665
+
666
+ <li class="even ">
667
+ <div class="item">
668
+ <span class='object_link'><a href="Attio/Resources/Lists.html#validate_id!-instance_method" title="Attio::Resources::Lists#validate_id! (method)">#validate_id!</a></span>
669
+ <small>Attio::Resources::Lists</small>
670
+ </div>
671
+ </li>
672
+
673
+
674
+ <li class="odd ">
675
+ <div class="item">
676
+ <span class='object_link'><a href="Attio/Resources/Attributes.html#validate_id_or_slug!-instance_method" title="Attio::Resources::Attributes#validate_id_or_slug! (method)">#validate_id_or_slug!</a></span>
677
+ <small>Attio::Resources::Attributes</small>
678
+ </div>
679
+ </li>
680
+
681
+
682
+ <li class="even ">
683
+ <div class="item">
684
+ <span class='object_link'><a href="Attio/Resources/Objects.html#validate_id_or_slug!-instance_method" title="Attio::Resources::Objects#validate_id_or_slug! (method)">#validate_id_or_slug!</a></span>
685
+ <small>Attio::Resources::Objects</small>
686
+ </div>
687
+ </li>
688
+
689
+
690
+ <li class="odd ">
691
+ <div class="item">
692
+ <span class='object_link'><a href="Attio/Resources/Lists.html#validate_list_id!-instance_method" title="Attio::Resources::Lists#validate_list_id! (method)">#validate_list_id!</a></span>
693
+ <small>Attio::Resources::Lists</small>
694
+ </div>
695
+ </li>
696
+
697
+
698
+ <li class="even ">
699
+ <div class="item">
700
+ <span class='object_link'><a href="Attio/Resources/Records.html#validate_object!-instance_method" title="Attio::Resources::Records#validate_object! (method)">#validate_object!</a></span>
701
+ <small>Attio::Resources::Records</small>
702
+ </div>
703
+ </li>
704
+
705
+
706
+ <li class="odd ">
707
+ <div class="item">
708
+ <span class='object_link'><a href="Attio/Resources/Attributes.html#validate_object!-instance_method" title="Attio::Resources::Attributes#validate_object! (method)">#validate_object!</a></span>
709
+ <small>Attio::Resources::Attributes</small>
710
+ </div>
711
+ </li>
712
+
713
+
714
+ <li class="even ">
715
+ <div class="item">
716
+ <span class='object_link'><a href="Attio/Logger.html#warn-instance_method" title="Attio::Logger#warn (method)">#warn</a></span>
717
+ <small>Attio::Logger</small>
718
+ </div>
719
+ </li>
720
+
721
+
722
+ <li class="odd ">
723
+ <div class="item">
724
+ <span class='object_link'><a href="Attio/ConnectionPool.html#with_connection-instance_method" title="Attio::ConnectionPool#with_connection (method)">#with_connection</a></span>
725
+ <small>Attio::ConnectionPool</small>
726
+ </div>
727
+ </li>
728
+
729
+
730
+ <li class="even ">
731
+ <div class="item">
732
+ <span class='object_link'><a href="Attio/RetryHandler.html#with_retry-instance_method" title="Attio::RetryHandler#with_retry (method)">#with_retry</a></span>
733
+ <small>Attio::RetryHandler</small>
734
+ </div>
735
+ </li>
736
+
737
+
738
+ <li class="odd ">
739
+ <div class="item">
740
+ <span class='object_link'><a href="Attio/Client.html#workspaces-instance_method" title="Attio::Client#workspaces (method)">#workspaces</a></span>
741
+ <small>Attio::Client</small>
742
+ </div>
743
+ </li>
744
+
745
+
746
+
747
+ </ul>
748
+ </div>
749
+ </body>
750
+ </html>