fizzy-sdk 0.1.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.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/.rubocop.yml +18 -0
  3. data/Rakefile +26 -0
  4. data/fizzy-sdk.gemspec +45 -0
  5. data/lib/fizzy/auth_strategy.rb +38 -0
  6. data/lib/fizzy/bulkhead.rb +68 -0
  7. data/lib/fizzy/cache.rb +101 -0
  8. data/lib/fizzy/chain_hooks.rb +45 -0
  9. data/lib/fizzy/circuit_breaker.rb +115 -0
  10. data/lib/fizzy/client.rb +212 -0
  11. data/lib/fizzy/config.rb +143 -0
  12. data/lib/fizzy/cookie_auth.rb +27 -0
  13. data/lib/fizzy/errors.rb +291 -0
  14. data/lib/fizzy/generated/metadata.json +1341 -0
  15. data/lib/fizzy/generated/services/boards_service.rb +91 -0
  16. data/lib/fizzy/generated/services/cards_service.rb +313 -0
  17. data/lib/fizzy/generated/services/columns_service.rb +69 -0
  18. data/lib/fizzy/generated/services/comments_service.rb +68 -0
  19. data/lib/fizzy/generated/services/devices_service.rb +35 -0
  20. data/lib/fizzy/generated/services/identity_service.rb +19 -0
  21. data/lib/fizzy/generated/services/miscellaneous_service.rb +256 -0
  22. data/lib/fizzy/generated/services/notifications_service.rb +65 -0
  23. data/lib/fizzy/generated/services/pins_service.rb +19 -0
  24. data/lib/fizzy/generated/services/reactions_service.rb +80 -0
  25. data/lib/fizzy/generated/services/sessions_service.rb +58 -0
  26. data/lib/fizzy/generated/services/steps_service.rb +69 -0
  27. data/lib/fizzy/generated/services/tags_service.rb +20 -0
  28. data/lib/fizzy/generated/services/uploads_service.rb +24 -0
  29. data/lib/fizzy/generated/services/users_service.rb +52 -0
  30. data/lib/fizzy/generated/services/webhooks_service.rb +83 -0
  31. data/lib/fizzy/generated/types.rb +988 -0
  32. data/lib/fizzy/hooks.rb +70 -0
  33. data/lib/fizzy/http.rb +411 -0
  34. data/lib/fizzy/logger_hooks.rb +46 -0
  35. data/lib/fizzy/magic_link_flow.rb +57 -0
  36. data/lib/fizzy/noop_hooks.rb +9 -0
  37. data/lib/fizzy/operation_info.rb +17 -0
  38. data/lib/fizzy/rate_limiter.rb +68 -0
  39. data/lib/fizzy/request_info.rb +10 -0
  40. data/lib/fizzy/request_result.rb +14 -0
  41. data/lib/fizzy/resilience.rb +59 -0
  42. data/lib/fizzy/security.rb +103 -0
  43. data/lib/fizzy/services/base_service.rb +116 -0
  44. data/lib/fizzy/static_token_provider.rb +24 -0
  45. data/lib/fizzy/token_provider.rb +42 -0
  46. data/lib/fizzy/version.rb +6 -0
  47. data/lib/fizzy/webhooks/verify.rb +36 -0
  48. data/lib/fizzy.rb +95 -0
  49. data/scripts/generate-metadata.rb +105 -0
  50. data/scripts/generate-services.rb +681 -0
  51. data/scripts/generate-types.rb +160 -0
  52. metadata +252 -0
@@ -0,0 +1,1341 @@
1
+ {
2
+ "$schema": "https://fizzy.do/schemas/sdk-metadata.json",
3
+ "version": "1.0.0",
4
+ "generated": "2026-03-10T05:37:58Z",
5
+ "operations": {
6
+ "ListAccessTokens": {
7
+ "retry": {
8
+ "maxAttempts": 3,
9
+ "baseDelayMs": 1000,
10
+ "backoff": "exponential",
11
+ "retryOn": [
12
+ 429,
13
+ 500,
14
+ 503
15
+ ]
16
+ }
17
+ },
18
+ "CreateAccessToken": {
19
+ "retry": {
20
+ "maxAttempts": 1,
21
+ "baseDelayMs": null,
22
+ "backoff": null,
23
+ "retryOn": null
24
+ }
25
+ },
26
+ "DeleteAccessToken": {
27
+ "retry": {
28
+ "maxAttempts": 3,
29
+ "baseDelayMs": 1000,
30
+ "backoff": "exponential",
31
+ "retryOn": [
32
+ 429,
33
+ 500,
34
+ 503
35
+ ]
36
+ },
37
+ "idempotent": {
38
+ "natural": true
39
+ }
40
+ },
41
+ "GetMyIdentity": {
42
+ "retry": {
43
+ "maxAttempts": 3,
44
+ "baseDelayMs": 1000,
45
+ "backoff": "exponential",
46
+ "retryOn": [
47
+ 429,
48
+ 500,
49
+ 503
50
+ ]
51
+ }
52
+ },
53
+ "ListPins": {
54
+ "retry": {
55
+ "maxAttempts": 3,
56
+ "baseDelayMs": 1000,
57
+ "backoff": "exponential",
58
+ "retryOn": [
59
+ 429,
60
+ 500,
61
+ 503
62
+ ]
63
+ }
64
+ },
65
+ "CreateSession": {
66
+ "retry": {
67
+ "maxAttempts": 1,
68
+ "baseDelayMs": null,
69
+ "backoff": null,
70
+ "retryOn": null
71
+ }
72
+ },
73
+ "DestroySession": {
74
+ "retry": {
75
+ "maxAttempts": 1,
76
+ "baseDelayMs": null,
77
+ "backoff": null,
78
+ "retryOn": null
79
+ }
80
+ },
81
+ "RedeemMagicLink": {
82
+ "retry": {
83
+ "maxAttempts": 1,
84
+ "baseDelayMs": null,
85
+ "backoff": null,
86
+ "retryOn": null
87
+ }
88
+ },
89
+ "CompleteSignup": {
90
+ "retry": {
91
+ "maxAttempts": 1,
92
+ "baseDelayMs": null,
93
+ "backoff": null,
94
+ "retryOn": null
95
+ }
96
+ },
97
+ "CompleteJoin": {
98
+ "retry": {
99
+ "maxAttempts": 1,
100
+ "baseDelayMs": null,
101
+ "backoff": null,
102
+ "retryOn": null
103
+ }
104
+ },
105
+ "UpdateAccountEntropy": {
106
+ "retry": {
107
+ "maxAttempts": 3,
108
+ "baseDelayMs": 1000,
109
+ "backoff": "exponential",
110
+ "retryOn": [
111
+ 429,
112
+ 500,
113
+ 503
114
+ ]
115
+ },
116
+ "idempotent": {
117
+ "natural": true
118
+ }
119
+ },
120
+ "CreateAccountExport": {
121
+ "retry": {
122
+ "maxAttempts": 1,
123
+ "baseDelayMs": null,
124
+ "backoff": null,
125
+ "retryOn": null
126
+ }
127
+ },
128
+ "GetAccountExport": {
129
+ "retry": {
130
+ "maxAttempts": 3,
131
+ "baseDelayMs": 1000,
132
+ "backoff": "exponential",
133
+ "retryOn": [
134
+ 429,
135
+ 500,
136
+ 503
137
+ ]
138
+ }
139
+ },
140
+ "GetJoinCode": {
141
+ "retry": {
142
+ "maxAttempts": 3,
143
+ "baseDelayMs": 1000,
144
+ "backoff": "exponential",
145
+ "retryOn": [
146
+ 429,
147
+ 500,
148
+ 503
149
+ ]
150
+ }
151
+ },
152
+ "UpdateJoinCode": {
153
+ "retry": {
154
+ "maxAttempts": 3,
155
+ "baseDelayMs": 1000,
156
+ "backoff": "exponential",
157
+ "retryOn": [
158
+ 429,
159
+ 500,
160
+ 503
161
+ ]
162
+ },
163
+ "idempotent": {
164
+ "natural": true
165
+ }
166
+ },
167
+ "ResetJoinCode": {
168
+ "retry": {
169
+ "maxAttempts": 3,
170
+ "baseDelayMs": 1000,
171
+ "backoff": "exponential",
172
+ "retryOn": [
173
+ 429,
174
+ 500,
175
+ 503
176
+ ]
177
+ },
178
+ "idempotent": {
179
+ "natural": true
180
+ }
181
+ },
182
+ "GetAccountSettings": {
183
+ "retry": {
184
+ "maxAttempts": 3,
185
+ "baseDelayMs": 1000,
186
+ "backoff": "exponential",
187
+ "retryOn": [
188
+ 429,
189
+ 500,
190
+ 503
191
+ ]
192
+ }
193
+ },
194
+ "UpdateAccountSettings": {
195
+ "retry": {
196
+ "maxAttempts": 3,
197
+ "baseDelayMs": 1000,
198
+ "backoff": "exponential",
199
+ "retryOn": [
200
+ 429,
201
+ 500,
202
+ 503
203
+ ]
204
+ },
205
+ "idempotent": {
206
+ "natural": true
207
+ }
208
+ },
209
+ "ListBoards": {
210
+ "retry": {
211
+ "maxAttempts": 3,
212
+ "baseDelayMs": 1000,
213
+ "backoff": "exponential",
214
+ "retryOn": [
215
+ 429,
216
+ 500,
217
+ 503
218
+ ]
219
+ },
220
+ "pagination": {
221
+ "style": "link",
222
+ "pageParam": "page"
223
+ }
224
+ },
225
+ "CreateBoard": {
226
+ "retry": {
227
+ "maxAttempts": 1,
228
+ "baseDelayMs": null,
229
+ "backoff": null,
230
+ "retryOn": null
231
+ }
232
+ },
233
+ "GetBoard": {
234
+ "retry": {
235
+ "maxAttempts": 3,
236
+ "baseDelayMs": 1000,
237
+ "backoff": "exponential",
238
+ "retryOn": [
239
+ 429,
240
+ 500,
241
+ 503
242
+ ]
243
+ }
244
+ },
245
+ "UpdateBoard": {
246
+ "retry": {
247
+ "maxAttempts": 3,
248
+ "baseDelayMs": 1000,
249
+ "backoff": "exponential",
250
+ "retryOn": [
251
+ 429,
252
+ 500,
253
+ 503
254
+ ]
255
+ },
256
+ "idempotent": {
257
+ "natural": true
258
+ }
259
+ },
260
+ "DeleteBoard": {
261
+ "retry": {
262
+ "maxAttempts": 3,
263
+ "baseDelayMs": 1000,
264
+ "backoff": "exponential",
265
+ "retryOn": [
266
+ 429,
267
+ 500,
268
+ 503
269
+ ]
270
+ },
271
+ "idempotent": {
272
+ "natural": true
273
+ }
274
+ },
275
+ "ListColumns": {
276
+ "retry": {
277
+ "maxAttempts": 3,
278
+ "baseDelayMs": 1000,
279
+ "backoff": "exponential",
280
+ "retryOn": [
281
+ 429,
282
+ 500,
283
+ 503
284
+ ]
285
+ }
286
+ },
287
+ "CreateColumn": {
288
+ "retry": {
289
+ "maxAttempts": 1,
290
+ "baseDelayMs": null,
291
+ "backoff": null,
292
+ "retryOn": null
293
+ }
294
+ },
295
+ "ListClosedCards": {
296
+ "retry": {
297
+ "maxAttempts": 3,
298
+ "baseDelayMs": 1000,
299
+ "backoff": "exponential",
300
+ "retryOn": [
301
+ 429,
302
+ 500,
303
+ 503
304
+ ]
305
+ },
306
+ "pagination": {
307
+ "style": "link",
308
+ "pageParam": "page"
309
+ }
310
+ },
311
+ "ListPostponedCards": {
312
+ "retry": {
313
+ "maxAttempts": 3,
314
+ "baseDelayMs": 1000,
315
+ "backoff": "exponential",
316
+ "retryOn": [
317
+ 429,
318
+ 500,
319
+ 503
320
+ ]
321
+ },
322
+ "pagination": {
323
+ "style": "link",
324
+ "pageParam": "page"
325
+ }
326
+ },
327
+ "ListStreamCards": {
328
+ "retry": {
329
+ "maxAttempts": 3,
330
+ "baseDelayMs": 1000,
331
+ "backoff": "exponential",
332
+ "retryOn": [
333
+ 429,
334
+ 500,
335
+ 503
336
+ ]
337
+ },
338
+ "pagination": {
339
+ "style": "link",
340
+ "pageParam": "page"
341
+ }
342
+ },
343
+ "GetColumn": {
344
+ "retry": {
345
+ "maxAttempts": 3,
346
+ "baseDelayMs": 1000,
347
+ "backoff": "exponential",
348
+ "retryOn": [
349
+ 429,
350
+ 500,
351
+ 503
352
+ ]
353
+ }
354
+ },
355
+ "UpdateColumn": {
356
+ "retry": {
357
+ "maxAttempts": 3,
358
+ "baseDelayMs": 1000,
359
+ "backoff": "exponential",
360
+ "retryOn": [
361
+ 429,
362
+ 500,
363
+ 503
364
+ ]
365
+ },
366
+ "idempotent": {
367
+ "natural": true
368
+ }
369
+ },
370
+ "DeleteColumn": {
371
+ "retry": {
372
+ "maxAttempts": 3,
373
+ "baseDelayMs": 1000,
374
+ "backoff": "exponential",
375
+ "retryOn": [
376
+ 429,
377
+ 500,
378
+ 503
379
+ ]
380
+ },
381
+ "idempotent": {
382
+ "natural": true
383
+ }
384
+ },
385
+ "UpdateBoardEntropy": {
386
+ "retry": {
387
+ "maxAttempts": 3,
388
+ "baseDelayMs": 1000,
389
+ "backoff": "exponential",
390
+ "retryOn": [
391
+ 429,
392
+ 500,
393
+ 503
394
+ ]
395
+ },
396
+ "idempotent": {
397
+ "natural": true
398
+ }
399
+ },
400
+ "UpdateBoardInvolvement": {
401
+ "retry": {
402
+ "maxAttempts": 3,
403
+ "baseDelayMs": 1000,
404
+ "backoff": "exponential",
405
+ "retryOn": [
406
+ 429,
407
+ 500,
408
+ 503
409
+ ]
410
+ },
411
+ "idempotent": {
412
+ "natural": true
413
+ }
414
+ },
415
+ "PublishBoard": {
416
+ "retry": {
417
+ "maxAttempts": 3,
418
+ "baseDelayMs": 1000,
419
+ "backoff": "exponential",
420
+ "retryOn": [
421
+ 429,
422
+ 500,
423
+ 503
424
+ ]
425
+ },
426
+ "idempotent": {
427
+ "natural": true
428
+ }
429
+ },
430
+ "UnpublishBoard": {
431
+ "retry": {
432
+ "maxAttempts": 3,
433
+ "baseDelayMs": 1000,
434
+ "backoff": "exponential",
435
+ "retryOn": [
436
+ 429,
437
+ 500,
438
+ 503
439
+ ]
440
+ },
441
+ "idempotent": {
442
+ "natural": true
443
+ }
444
+ },
445
+ "ListWebhooks": {
446
+ "retry": {
447
+ "maxAttempts": 3,
448
+ "baseDelayMs": 1000,
449
+ "backoff": "exponential",
450
+ "retryOn": [
451
+ 429,
452
+ 500,
453
+ 503
454
+ ]
455
+ }
456
+ },
457
+ "CreateWebhook": {
458
+ "retry": {
459
+ "maxAttempts": 1,
460
+ "baseDelayMs": null,
461
+ "backoff": null,
462
+ "retryOn": null
463
+ }
464
+ },
465
+ "GetWebhook": {
466
+ "retry": {
467
+ "maxAttempts": 3,
468
+ "baseDelayMs": 1000,
469
+ "backoff": "exponential",
470
+ "retryOn": [
471
+ 429,
472
+ 500,
473
+ 503
474
+ ]
475
+ }
476
+ },
477
+ "UpdateWebhook": {
478
+ "retry": {
479
+ "maxAttempts": 3,
480
+ "baseDelayMs": 1000,
481
+ "backoff": "exponential",
482
+ "retryOn": [
483
+ 429,
484
+ 500,
485
+ 503
486
+ ]
487
+ },
488
+ "idempotent": {
489
+ "natural": true
490
+ }
491
+ },
492
+ "DeleteWebhook": {
493
+ "retry": {
494
+ "maxAttempts": 3,
495
+ "baseDelayMs": 1000,
496
+ "backoff": "exponential",
497
+ "retryOn": [
498
+ 429,
499
+ 500,
500
+ 503
501
+ ]
502
+ },
503
+ "idempotent": {
504
+ "natural": true
505
+ }
506
+ },
507
+ "ActivateWebhook": {
508
+ "retry": {
509
+ "maxAttempts": 3,
510
+ "baseDelayMs": 1000,
511
+ "backoff": "exponential",
512
+ "retryOn": [
513
+ 429,
514
+ 500,
515
+ 503
516
+ ]
517
+ },
518
+ "idempotent": {
519
+ "natural": true
520
+ }
521
+ },
522
+ "ListCards": {
523
+ "retry": {
524
+ "maxAttempts": 3,
525
+ "baseDelayMs": 1000,
526
+ "backoff": "exponential",
527
+ "retryOn": [
528
+ 429,
529
+ 500,
530
+ 503
531
+ ]
532
+ },
533
+ "pagination": {
534
+ "style": "link",
535
+ "pageParam": "page"
536
+ }
537
+ },
538
+ "CreateCard": {
539
+ "retry": {
540
+ "maxAttempts": 1,
541
+ "baseDelayMs": null,
542
+ "backoff": null,
543
+ "retryOn": null
544
+ }
545
+ },
546
+ "GetCard": {
547
+ "retry": {
548
+ "maxAttempts": 3,
549
+ "baseDelayMs": 1000,
550
+ "backoff": "exponential",
551
+ "retryOn": [
552
+ 429,
553
+ 500,
554
+ 503
555
+ ]
556
+ }
557
+ },
558
+ "UpdateCard": {
559
+ "retry": {
560
+ "maxAttempts": 3,
561
+ "baseDelayMs": 1000,
562
+ "backoff": "exponential",
563
+ "retryOn": [
564
+ 429,
565
+ 500,
566
+ 503
567
+ ]
568
+ },
569
+ "idempotent": {
570
+ "natural": true
571
+ }
572
+ },
573
+ "DeleteCard": {
574
+ "retry": {
575
+ "maxAttempts": 3,
576
+ "baseDelayMs": 1000,
577
+ "backoff": "exponential",
578
+ "retryOn": [
579
+ 429,
580
+ 500,
581
+ 503
582
+ ]
583
+ },
584
+ "idempotent": {
585
+ "natural": true
586
+ }
587
+ },
588
+ "AssignCard": {
589
+ "retry": {
590
+ "maxAttempts": 1,
591
+ "baseDelayMs": null,
592
+ "backoff": null,
593
+ "retryOn": null
594
+ }
595
+ },
596
+ "MoveCard": {
597
+ "retry": {
598
+ "maxAttempts": 3,
599
+ "baseDelayMs": 1000,
600
+ "backoff": "exponential",
601
+ "retryOn": [
602
+ 429,
603
+ 500,
604
+ 503
605
+ ]
606
+ },
607
+ "idempotent": {
608
+ "natural": true
609
+ }
610
+ },
611
+ "CloseCard": {
612
+ "retry": {
613
+ "maxAttempts": 3,
614
+ "baseDelayMs": 1000,
615
+ "backoff": "exponential",
616
+ "retryOn": [
617
+ 429,
618
+ 500,
619
+ 503
620
+ ]
621
+ },
622
+ "idempotent": {
623
+ "natural": true
624
+ }
625
+ },
626
+ "ReopenCard": {
627
+ "retry": {
628
+ "maxAttempts": 3,
629
+ "baseDelayMs": 1000,
630
+ "backoff": "exponential",
631
+ "retryOn": [
632
+ 429,
633
+ 500,
634
+ 503
635
+ ]
636
+ },
637
+ "idempotent": {
638
+ "natural": true
639
+ }
640
+ },
641
+ "ListComments": {
642
+ "retry": {
643
+ "maxAttempts": 3,
644
+ "baseDelayMs": 1000,
645
+ "backoff": "exponential",
646
+ "retryOn": [
647
+ 429,
648
+ 500,
649
+ 503
650
+ ]
651
+ },
652
+ "pagination": {
653
+ "style": "link",
654
+ "pageParam": "page"
655
+ }
656
+ },
657
+ "CreateComment": {
658
+ "retry": {
659
+ "maxAttempts": 1,
660
+ "baseDelayMs": null,
661
+ "backoff": null,
662
+ "retryOn": null
663
+ }
664
+ },
665
+ "GetComment": {
666
+ "retry": {
667
+ "maxAttempts": 3,
668
+ "baseDelayMs": 1000,
669
+ "backoff": "exponential",
670
+ "retryOn": [
671
+ 429,
672
+ 500,
673
+ 503
674
+ ]
675
+ }
676
+ },
677
+ "UpdateComment": {
678
+ "retry": {
679
+ "maxAttempts": 3,
680
+ "baseDelayMs": 1000,
681
+ "backoff": "exponential",
682
+ "retryOn": [
683
+ 429,
684
+ 500,
685
+ 503
686
+ ]
687
+ },
688
+ "idempotent": {
689
+ "natural": true
690
+ }
691
+ },
692
+ "DeleteComment": {
693
+ "retry": {
694
+ "maxAttempts": 3,
695
+ "baseDelayMs": 1000,
696
+ "backoff": "exponential",
697
+ "retryOn": [
698
+ 429,
699
+ 500,
700
+ 503
701
+ ]
702
+ },
703
+ "idempotent": {
704
+ "natural": true
705
+ }
706
+ },
707
+ "ListCommentReactions": {
708
+ "retry": {
709
+ "maxAttempts": 3,
710
+ "baseDelayMs": 1000,
711
+ "backoff": "exponential",
712
+ "retryOn": [
713
+ 429,
714
+ 500,
715
+ 503
716
+ ]
717
+ }
718
+ },
719
+ "CreateCommentReaction": {
720
+ "retry": {
721
+ "maxAttempts": 1,
722
+ "baseDelayMs": null,
723
+ "backoff": null,
724
+ "retryOn": null
725
+ }
726
+ },
727
+ "DeleteCommentReaction": {
728
+ "retry": {
729
+ "maxAttempts": 3,
730
+ "baseDelayMs": 1000,
731
+ "backoff": "exponential",
732
+ "retryOn": [
733
+ 429,
734
+ 500,
735
+ 503
736
+ ]
737
+ },
738
+ "idempotent": {
739
+ "natural": true
740
+ }
741
+ },
742
+ "GoldCard": {
743
+ "retry": {
744
+ "maxAttempts": 3,
745
+ "baseDelayMs": 1000,
746
+ "backoff": "exponential",
747
+ "retryOn": [
748
+ 429,
749
+ 500,
750
+ 503
751
+ ]
752
+ },
753
+ "idempotent": {
754
+ "natural": true
755
+ }
756
+ },
757
+ "UngoldCard": {
758
+ "retry": {
759
+ "maxAttempts": 3,
760
+ "baseDelayMs": 1000,
761
+ "backoff": "exponential",
762
+ "retryOn": [
763
+ 429,
764
+ 500,
765
+ 503
766
+ ]
767
+ },
768
+ "idempotent": {
769
+ "natural": true
770
+ }
771
+ },
772
+ "DeleteCardImage": {
773
+ "retry": {
774
+ "maxAttempts": 3,
775
+ "baseDelayMs": 1000,
776
+ "backoff": "exponential",
777
+ "retryOn": [
778
+ 429,
779
+ 500,
780
+ 503
781
+ ]
782
+ },
783
+ "idempotent": {
784
+ "natural": true
785
+ }
786
+ },
787
+ "PostponeCard": {
788
+ "retry": {
789
+ "maxAttempts": 3,
790
+ "baseDelayMs": 1000,
791
+ "backoff": "exponential",
792
+ "retryOn": [
793
+ 429,
794
+ 500,
795
+ 503
796
+ ]
797
+ },
798
+ "idempotent": {
799
+ "natural": true
800
+ }
801
+ },
802
+ "PinCard": {
803
+ "retry": {
804
+ "maxAttempts": 3,
805
+ "baseDelayMs": 1000,
806
+ "backoff": "exponential",
807
+ "retryOn": [
808
+ 429,
809
+ 500,
810
+ 503
811
+ ]
812
+ },
813
+ "idempotent": {
814
+ "natural": true
815
+ }
816
+ },
817
+ "UnpinCard": {
818
+ "retry": {
819
+ "maxAttempts": 3,
820
+ "baseDelayMs": 1000,
821
+ "backoff": "exponential",
822
+ "retryOn": [
823
+ 429,
824
+ 500,
825
+ 503
826
+ ]
827
+ },
828
+ "idempotent": {
829
+ "natural": true
830
+ }
831
+ },
832
+ "PublishCard": {
833
+ "retry": {
834
+ "maxAttempts": 1,
835
+ "baseDelayMs": null,
836
+ "backoff": null,
837
+ "retryOn": null
838
+ }
839
+ },
840
+ "ListCardReactions": {
841
+ "retry": {
842
+ "maxAttempts": 3,
843
+ "baseDelayMs": 1000,
844
+ "backoff": "exponential",
845
+ "retryOn": [
846
+ 429,
847
+ 500,
848
+ 503
849
+ ]
850
+ }
851
+ },
852
+ "CreateCardReaction": {
853
+ "retry": {
854
+ "maxAttempts": 1,
855
+ "baseDelayMs": null,
856
+ "backoff": null,
857
+ "retryOn": null
858
+ }
859
+ },
860
+ "DeleteCardReaction": {
861
+ "retry": {
862
+ "maxAttempts": 3,
863
+ "baseDelayMs": 1000,
864
+ "backoff": "exponential",
865
+ "retryOn": [
866
+ 429,
867
+ 500,
868
+ 503
869
+ ]
870
+ },
871
+ "idempotent": {
872
+ "natural": true
873
+ }
874
+ },
875
+ "MarkCardRead": {
876
+ "retry": {
877
+ "maxAttempts": 3,
878
+ "baseDelayMs": 1000,
879
+ "backoff": "exponential",
880
+ "retryOn": [
881
+ 429,
882
+ 500,
883
+ 503
884
+ ]
885
+ },
886
+ "idempotent": {
887
+ "natural": true
888
+ }
889
+ },
890
+ "MarkCardUnread": {
891
+ "retry": {
892
+ "maxAttempts": 3,
893
+ "baseDelayMs": 1000,
894
+ "backoff": "exponential",
895
+ "retryOn": [
896
+ 429,
897
+ 500,
898
+ 503
899
+ ]
900
+ },
901
+ "idempotent": {
902
+ "natural": true
903
+ }
904
+ },
905
+ "SelfAssignCard": {
906
+ "retry": {
907
+ "maxAttempts": 1,
908
+ "baseDelayMs": null,
909
+ "backoff": null,
910
+ "retryOn": null
911
+ }
912
+ },
913
+ "ListSteps": {
914
+ "retry": {
915
+ "maxAttempts": 3,
916
+ "baseDelayMs": 1000,
917
+ "backoff": "exponential",
918
+ "retryOn": [
919
+ 429,
920
+ 500,
921
+ 503
922
+ ]
923
+ }
924
+ },
925
+ "CreateStep": {
926
+ "retry": {
927
+ "maxAttempts": 1,
928
+ "baseDelayMs": null,
929
+ "backoff": null,
930
+ "retryOn": null
931
+ }
932
+ },
933
+ "GetStep": {
934
+ "retry": {
935
+ "maxAttempts": 3,
936
+ "baseDelayMs": 1000,
937
+ "backoff": "exponential",
938
+ "retryOn": [
939
+ 429,
940
+ 500,
941
+ 503
942
+ ]
943
+ }
944
+ },
945
+ "UpdateStep": {
946
+ "retry": {
947
+ "maxAttempts": 3,
948
+ "baseDelayMs": 1000,
949
+ "backoff": "exponential",
950
+ "retryOn": [
951
+ 429,
952
+ 500,
953
+ 503
954
+ ]
955
+ },
956
+ "idempotent": {
957
+ "natural": true
958
+ }
959
+ },
960
+ "DeleteStep": {
961
+ "retry": {
962
+ "maxAttempts": 3,
963
+ "baseDelayMs": 1000,
964
+ "backoff": "exponential",
965
+ "retryOn": [
966
+ 429,
967
+ 500,
968
+ 503
969
+ ]
970
+ },
971
+ "idempotent": {
972
+ "natural": true
973
+ }
974
+ },
975
+ "TagCard": {
976
+ "retry": {
977
+ "maxAttempts": 1,
978
+ "baseDelayMs": null,
979
+ "backoff": null,
980
+ "retryOn": null
981
+ }
982
+ },
983
+ "TriageCard": {
984
+ "retry": {
985
+ "maxAttempts": 3,
986
+ "baseDelayMs": 1000,
987
+ "backoff": "exponential",
988
+ "retryOn": [
989
+ 429,
990
+ 500,
991
+ 503
992
+ ]
993
+ },
994
+ "idempotent": {
995
+ "natural": true
996
+ }
997
+ },
998
+ "UnTriageCard": {
999
+ "retry": {
1000
+ "maxAttempts": 3,
1001
+ "baseDelayMs": 1000,
1002
+ "backoff": "exponential",
1003
+ "retryOn": [
1004
+ 429,
1005
+ 500,
1006
+ 503
1007
+ ]
1008
+ },
1009
+ "idempotent": {
1010
+ "natural": true
1011
+ }
1012
+ },
1013
+ "WatchCard": {
1014
+ "retry": {
1015
+ "maxAttempts": 3,
1016
+ "baseDelayMs": 1000,
1017
+ "backoff": "exponential",
1018
+ "retryOn": [
1019
+ 429,
1020
+ 500,
1021
+ 503
1022
+ ]
1023
+ },
1024
+ "idempotent": {
1025
+ "natural": true
1026
+ }
1027
+ },
1028
+ "UnwatchCard": {
1029
+ "retry": {
1030
+ "maxAttempts": 3,
1031
+ "baseDelayMs": 1000,
1032
+ "backoff": "exponential",
1033
+ "retryOn": [
1034
+ 429,
1035
+ 500,
1036
+ 503
1037
+ ]
1038
+ },
1039
+ "idempotent": {
1040
+ "natural": true
1041
+ }
1042
+ },
1043
+ "MoveColumnLeft": {
1044
+ "retry": {
1045
+ "maxAttempts": 3,
1046
+ "baseDelayMs": 1000,
1047
+ "backoff": "exponential",
1048
+ "retryOn": [
1049
+ 429,
1050
+ 500,
1051
+ 503
1052
+ ]
1053
+ },
1054
+ "idempotent": {
1055
+ "natural": true
1056
+ }
1057
+ },
1058
+ "MoveColumnRight": {
1059
+ "retry": {
1060
+ "maxAttempts": 3,
1061
+ "baseDelayMs": 1000,
1062
+ "backoff": "exponential",
1063
+ "retryOn": [
1064
+ 429,
1065
+ 500,
1066
+ 503
1067
+ ]
1068
+ },
1069
+ "idempotent": {
1070
+ "natural": true
1071
+ }
1072
+ },
1073
+ "RegisterDevice": {
1074
+ "retry": {
1075
+ "maxAttempts": 1,
1076
+ "baseDelayMs": null,
1077
+ "backoff": null,
1078
+ "retryOn": null
1079
+ }
1080
+ },
1081
+ "UnregisterDevice": {
1082
+ "retry": {
1083
+ "maxAttempts": 3,
1084
+ "baseDelayMs": 1000,
1085
+ "backoff": "exponential",
1086
+ "retryOn": [
1087
+ 429,
1088
+ 500,
1089
+ 503
1090
+ ]
1091
+ },
1092
+ "idempotent": {
1093
+ "natural": true
1094
+ }
1095
+ },
1096
+ "ListNotifications": {
1097
+ "retry": {
1098
+ "maxAttempts": 3,
1099
+ "baseDelayMs": 1000,
1100
+ "backoff": "exponential",
1101
+ "retryOn": [
1102
+ 429,
1103
+ 500,
1104
+ 503
1105
+ ]
1106
+ },
1107
+ "pagination": {
1108
+ "style": "link",
1109
+ "pageParam": "page"
1110
+ }
1111
+ },
1112
+ "BulkReadNotifications": {
1113
+ "retry": {
1114
+ "maxAttempts": 1,
1115
+ "baseDelayMs": null,
1116
+ "backoff": null,
1117
+ "retryOn": null
1118
+ }
1119
+ },
1120
+ "GetNotificationSettings": {
1121
+ "retry": {
1122
+ "maxAttempts": 3,
1123
+ "baseDelayMs": 1000,
1124
+ "backoff": "exponential",
1125
+ "retryOn": [
1126
+ 429,
1127
+ 500,
1128
+ 503
1129
+ ]
1130
+ }
1131
+ },
1132
+ "UpdateNotificationSettings": {
1133
+ "retry": {
1134
+ "maxAttempts": 3,
1135
+ "baseDelayMs": 1000,
1136
+ "backoff": "exponential",
1137
+ "retryOn": [
1138
+ 429,
1139
+ 500,
1140
+ 503
1141
+ ]
1142
+ },
1143
+ "idempotent": {
1144
+ "natural": true
1145
+ }
1146
+ },
1147
+ "GetNotificationTray": {
1148
+ "retry": {
1149
+ "maxAttempts": 3,
1150
+ "baseDelayMs": 1000,
1151
+ "backoff": "exponential",
1152
+ "retryOn": [
1153
+ 429,
1154
+ 500,
1155
+ 503
1156
+ ]
1157
+ }
1158
+ },
1159
+ "ReadNotification": {
1160
+ "retry": {
1161
+ "maxAttempts": 3,
1162
+ "baseDelayMs": 1000,
1163
+ "backoff": "exponential",
1164
+ "retryOn": [
1165
+ 429,
1166
+ 500,
1167
+ 503
1168
+ ]
1169
+ },
1170
+ "idempotent": {
1171
+ "natural": true
1172
+ }
1173
+ },
1174
+ "UnreadNotification": {
1175
+ "retry": {
1176
+ "maxAttempts": 3,
1177
+ "baseDelayMs": 1000,
1178
+ "backoff": "exponential",
1179
+ "retryOn": [
1180
+ 429,
1181
+ 500,
1182
+ 503
1183
+ ]
1184
+ },
1185
+ "idempotent": {
1186
+ "natural": true
1187
+ }
1188
+ },
1189
+ "CreateDirectUpload": {
1190
+ "retry": {
1191
+ "maxAttempts": 1,
1192
+ "baseDelayMs": null,
1193
+ "backoff": null,
1194
+ "retryOn": null
1195
+ }
1196
+ },
1197
+ "SearchCards": {
1198
+ "retry": {
1199
+ "maxAttempts": 3,
1200
+ "baseDelayMs": 1000,
1201
+ "backoff": "exponential",
1202
+ "retryOn": [
1203
+ 429,
1204
+ 500,
1205
+ 503
1206
+ ]
1207
+ },
1208
+ "pagination": {
1209
+ "style": "link",
1210
+ "pageParam": "page"
1211
+ }
1212
+ },
1213
+ "ListTags": {
1214
+ "retry": {
1215
+ "maxAttempts": 3,
1216
+ "baseDelayMs": 1000,
1217
+ "backoff": "exponential",
1218
+ "retryOn": [
1219
+ 429,
1220
+ 500,
1221
+ 503
1222
+ ]
1223
+ },
1224
+ "pagination": {
1225
+ "style": "link",
1226
+ "pageParam": "page"
1227
+ }
1228
+ },
1229
+ "ListUsers": {
1230
+ "retry": {
1231
+ "maxAttempts": 3,
1232
+ "baseDelayMs": 1000,
1233
+ "backoff": "exponential",
1234
+ "retryOn": [
1235
+ 429,
1236
+ 500,
1237
+ 503
1238
+ ]
1239
+ },
1240
+ "pagination": {
1241
+ "style": "link",
1242
+ "pageParam": "page"
1243
+ }
1244
+ },
1245
+ "GetUser": {
1246
+ "retry": {
1247
+ "maxAttempts": 3,
1248
+ "baseDelayMs": 1000,
1249
+ "backoff": "exponential",
1250
+ "retryOn": [
1251
+ 429,
1252
+ 500,
1253
+ 503
1254
+ ]
1255
+ }
1256
+ },
1257
+ "UpdateUser": {
1258
+ "retry": {
1259
+ "maxAttempts": 3,
1260
+ "baseDelayMs": 1000,
1261
+ "backoff": "exponential",
1262
+ "retryOn": [
1263
+ 429,
1264
+ 500,
1265
+ 503
1266
+ ]
1267
+ },
1268
+ "idempotent": {
1269
+ "natural": true
1270
+ }
1271
+ },
1272
+ "DeactivateUser": {
1273
+ "retry": {
1274
+ "maxAttempts": 3,
1275
+ "baseDelayMs": 1000,
1276
+ "backoff": "exponential",
1277
+ "retryOn": [
1278
+ 429,
1279
+ 500,
1280
+ 503
1281
+ ]
1282
+ },
1283
+ "idempotent": {
1284
+ "natural": true
1285
+ }
1286
+ },
1287
+ "DeleteUserAvatar": {
1288
+ "retry": {
1289
+ "maxAttempts": 3,
1290
+ "baseDelayMs": 1000,
1291
+ "backoff": "exponential",
1292
+ "retryOn": [
1293
+ 429,
1294
+ 500,
1295
+ 503
1296
+ ]
1297
+ },
1298
+ "idempotent": {
1299
+ "natural": true
1300
+ }
1301
+ },
1302
+ "CreatePushSubscription": {
1303
+ "retry": {
1304
+ "maxAttempts": 1,
1305
+ "baseDelayMs": null,
1306
+ "backoff": null,
1307
+ "retryOn": null
1308
+ }
1309
+ },
1310
+ "DeletePushSubscription": {
1311
+ "retry": {
1312
+ "maxAttempts": 3,
1313
+ "baseDelayMs": 1000,
1314
+ "backoff": "exponential",
1315
+ "retryOn": [
1316
+ 429,
1317
+ 500,
1318
+ 503
1319
+ ]
1320
+ },
1321
+ "idempotent": {
1322
+ "natural": true
1323
+ }
1324
+ },
1325
+ "UpdateUserRole": {
1326
+ "retry": {
1327
+ "maxAttempts": 3,
1328
+ "baseDelayMs": 1000,
1329
+ "backoff": "exponential",
1330
+ "retryOn": [
1331
+ 429,
1332
+ 500,
1333
+ 503
1334
+ ]
1335
+ },
1336
+ "idempotent": {
1337
+ "natural": true
1338
+ }
1339
+ }
1340
+ }
1341
+ }