@37signals/fizzy 0.1.2 → 0.2.2

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 (50) hide show
  1. package/dist/client.d.ts +33 -1
  2. package/dist/client.d.ts.map +1 -1
  3. package/dist/client.js +1 -1
  4. package/dist/client.js.map +1 -1
  5. package/dist/generated/metadata.json +115 -13
  6. package/dist/generated/openapi-stripped.json +1803 -241
  7. package/dist/generated/path-mapping.d.ts.map +1 -1
  8. package/dist/generated/path-mapping.js +11 -2
  9. package/dist/generated/path-mapping.js.map +1 -1
  10. package/dist/generated/path-mapping.ts +12 -3
  11. package/dist/generated/schema.d.ts +1568 -511
  12. package/dist/generated/services/boards.d.ts +7 -0
  13. package/dist/generated/services/boards.d.ts.map +1 -1
  14. package/dist/generated/services/boards.js +13 -0
  15. package/dist/generated/services/boards.js.map +1 -1
  16. package/dist/generated/services/boards.ts +21 -0
  17. package/dist/generated/services/cards.d.ts +25 -6
  18. package/dist/generated/services/cards.d.ts.map +1 -1
  19. package/dist/generated/services/cards.js +28 -2
  20. package/dist/generated/services/cards.js.map +1 -1
  21. package/dist/generated/services/cards.ts +56 -8
  22. package/dist/generated/services/identity.d.ts +7 -0
  23. package/dist/generated/services/identity.d.ts.map +1 -1
  24. package/dist/generated/services/identity.js +13 -0
  25. package/dist/generated/services/identity.js.map +1 -1
  26. package/dist/generated/services/identity.ts +21 -0
  27. package/dist/generated/services/notifications.js +2 -2
  28. package/dist/generated/services/notifications.js.map +1 -1
  29. package/dist/generated/services/notifications.ts +2 -2
  30. package/dist/generated/services/users.d.ts +19 -0
  31. package/dist/generated/services/users.d.ts.map +1 -1
  32. package/dist/generated/services/users.js +53 -0
  33. package/dist/generated/services/users.js.map +1 -1
  34. package/dist/generated/services/users.ts +73 -0
  35. package/dist/generated/services/webhooks.d.ts +5 -1
  36. package/dist/generated/services/webhooks.d.ts.map +1 -1
  37. package/dist/generated/services/webhooks.js +13 -0
  38. package/dist/generated/services/webhooks.js.map +1 -1
  39. package/dist/generated/services/webhooks.ts +18 -0
  40. package/package.json +3 -3
  41. package/src/generated/metadata.json +115 -13
  42. package/src/generated/openapi-stripped.json +1803 -241
  43. package/src/generated/path-mapping.ts +12 -3
  44. package/src/generated/schema.d.ts +1568 -511
  45. package/src/generated/services/boards.ts +21 -0
  46. package/src/generated/services/cards.ts +56 -8
  47. package/src/generated/services/identity.ts +21 -0
  48. package/src/generated/services/notifications.ts +2 -2
  49. package/src/generated/services/users.ts +73 -0
  50. package/src/generated/services/webhooks.ts +18 -0
@@ -409,103 +409,6 @@
409
409
  }
410
410
  }
411
411
  },
412
- "/my/pins.json": {
413
- "get": {
414
- "operationId": "ListPins",
415
- "responses": {
416
- "200": {
417
- "description": "ListPins 200 response",
418
- "content": {
419
- "application/json": {
420
- "schema": {
421
- "$ref": "#/components/schemas/ListPinsResponseContent"
422
- }
423
- }
424
- }
425
- },
426
- "400": {
427
- "description": "BadRequestError 400 response",
428
- "content": {
429
- "application/json": {
430
- "schema": {
431
- "$ref": "#/components/schemas/BadRequestErrorResponseContent"
432
- }
433
- }
434
- }
435
- },
436
- "401": {
437
- "description": "UnauthorizedError 401 response",
438
- "content": {
439
- "application/json": {
440
- "schema": {
441
- "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
442
- }
443
- }
444
- }
445
- },
446
- "403": {
447
- "description": "ForbiddenError 403 response",
448
- "content": {
449
- "application/json": {
450
- "schema": {
451
- "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
452
- }
453
- }
454
- }
455
- },
456
- "404": {
457
- "description": "NotFoundError 404 response",
458
- "content": {
459
- "application/json": {
460
- "schema": {
461
- "$ref": "#/components/schemas/NotFoundErrorResponseContent"
462
- }
463
- }
464
- }
465
- },
466
- "422": {
467
- "description": "ValidationError 422 response",
468
- "content": {
469
- "application/json": {
470
- "schema": {
471
- "$ref": "#/components/schemas/ValidationErrorResponseContent"
472
- }
473
- }
474
- }
475
- },
476
- "429": {
477
- "description": "RateLimitError 429 response",
478
- "content": {
479
- "application/json": {
480
- "schema": {
481
- "$ref": "#/components/schemas/RateLimitErrorResponseContent"
482
- }
483
- }
484
- }
485
- },
486
- "500": {
487
- "description": "InternalServerError 500 response",
488
- "content": {
489
- "application/json": {
490
- "schema": {
491
- "$ref": "#/components/schemas/InternalServerErrorResponseContent"
492
- }
493
- }
494
- }
495
- }
496
- },
497
- "x-fizzy-retry": {
498
- "maxAttempts": 3,
499
- "baseDelayMs": 1000,
500
- "backoff": "exponential",
501
- "retryOn": [
502
- 429,
503
- 500,
504
- 503
505
- ]
506
- }
507
- }
508
- },
509
412
  "/session.json": {
510
413
  "delete": {
511
414
  "operationId": "DestroySession",
@@ -1771,6 +1674,133 @@
1771
1674
  }
1772
1675
  }
1773
1676
  },
1677
+ "/activities.json": {
1678
+ "get": {
1679
+ "operationId": "ListActivities",
1680
+ "parameters": [
1681
+ {
1682
+ "name": "creator_ids[]",
1683
+ "in": "query",
1684
+ "style": "form",
1685
+ "schema": {
1686
+ "type": "array",
1687
+ "items": {
1688
+ "type": "string"
1689
+ }
1690
+ },
1691
+ "explode": true
1692
+ },
1693
+ {
1694
+ "name": "board_ids[]",
1695
+ "in": "query",
1696
+ "style": "form",
1697
+ "schema": {
1698
+ "type": "array",
1699
+ "items": {
1700
+ "type": "string"
1701
+ }
1702
+ },
1703
+ "explode": true
1704
+ }
1705
+ ],
1706
+ "responses": {
1707
+ "200": {
1708
+ "description": "ListActivities 200 response",
1709
+ "content": {
1710
+ "application/json": {
1711
+ "schema": {
1712
+ "$ref": "#/components/schemas/ListActivitiesResponseContent"
1713
+ }
1714
+ }
1715
+ }
1716
+ },
1717
+ "400": {
1718
+ "description": "BadRequestError 400 response",
1719
+ "content": {
1720
+ "application/json": {
1721
+ "schema": {
1722
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
1723
+ }
1724
+ }
1725
+ }
1726
+ },
1727
+ "401": {
1728
+ "description": "UnauthorizedError 401 response",
1729
+ "content": {
1730
+ "application/json": {
1731
+ "schema": {
1732
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
1733
+ }
1734
+ }
1735
+ }
1736
+ },
1737
+ "403": {
1738
+ "description": "ForbiddenError 403 response",
1739
+ "content": {
1740
+ "application/json": {
1741
+ "schema": {
1742
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
1743
+ }
1744
+ }
1745
+ }
1746
+ },
1747
+ "404": {
1748
+ "description": "NotFoundError 404 response",
1749
+ "content": {
1750
+ "application/json": {
1751
+ "schema": {
1752
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
1753
+ }
1754
+ }
1755
+ }
1756
+ },
1757
+ "422": {
1758
+ "description": "ValidationError 422 response",
1759
+ "content": {
1760
+ "application/json": {
1761
+ "schema": {
1762
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
1763
+ }
1764
+ }
1765
+ }
1766
+ },
1767
+ "429": {
1768
+ "description": "RateLimitError 429 response",
1769
+ "content": {
1770
+ "application/json": {
1771
+ "schema": {
1772
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
1773
+ }
1774
+ }
1775
+ }
1776
+ },
1777
+ "500": {
1778
+ "description": "InternalServerError 500 response",
1779
+ "content": {
1780
+ "application/json": {
1781
+ "schema": {
1782
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
1783
+ }
1784
+ }
1785
+ }
1786
+ }
1787
+ },
1788
+ "x-fizzy-pagination": {
1789
+ "style": "link",
1790
+ "pageParam": "page"
1791
+ },
1792
+ "x-fizzy-retry": {
1793
+ "maxAttempts": 3,
1794
+ "baseDelayMs": 1000,
1795
+ "backoff": "exponential",
1796
+ "retryOn": [
1797
+ 429,
1798
+ 500,
1799
+ 503
1800
+ ]
1801
+ }
1802
+ }
1803
+ },
1774
1804
  "/boards.json": {
1775
1805
  "get": {
1776
1806
  "operationId": "ListBoards",
@@ -2297,9 +2327,9 @@
2297
2327
  }
2298
2328
  }
2299
2329
  },
2300
- "/boards/{boardId}/columns.json": {
2330
+ "/boards/{boardId}/accesses.json": {
2301
2331
  "get": {
2302
- "operationId": "ListColumns",
2332
+ "operationId": "ListBoardAccesses",
2303
2333
  "parameters": [
2304
2334
  {
2305
2335
  "name": "boardId",
@@ -2308,15 +2338,23 @@
2308
2338
  "type": "string"
2309
2339
  },
2310
2340
  "required": true
2341
+ },
2342
+ {
2343
+ "name": "page",
2344
+ "in": "query",
2345
+ "schema": {
2346
+ "type": "integer",
2347
+ "format": "int32"
2348
+ }
2311
2349
  }
2312
2350
  ],
2313
2351
  "responses": {
2314
2352
  "200": {
2315
- "description": "ListColumns 200 response",
2353
+ "description": "ListBoardAccesses 200 response",
2316
2354
  "content": {
2317
2355
  "application/json": {
2318
2356
  "schema": {
2319
- "$ref": "#/components/schemas/ListColumnsResponseContent"
2357
+ "$ref": "#/components/schemas/ListBoardAccessesResponseContent"
2320
2358
  }
2321
2359
  }
2322
2360
  }
@@ -2402,19 +2440,11 @@
2402
2440
  503
2403
2441
  ]
2404
2442
  }
2405
- },
2406
- "post": {
2407
- "operationId": "CreateColumn",
2408
- "requestBody": {
2409
- "content": {
2410
- "application/json": {
2411
- "schema": {
2412
- "$ref": "#/components/schemas/CreateColumnRequestContent"
2413
- }
2414
- }
2415
- },
2416
- "required": true
2417
- },
2443
+ }
2444
+ },
2445
+ "/boards/{boardId}/columns.json": {
2446
+ "get": {
2447
+ "operationId": "ListColumns",
2418
2448
  "parameters": [
2419
2449
  {
2420
2450
  "name": "boardId",
@@ -2427,11 +2457,11 @@
2427
2457
  ],
2428
2458
  "responses": {
2429
2459
  "200": {
2430
- "description": "CreateColumn 200 response",
2460
+ "description": "ListColumns 200 response",
2431
2461
  "content": {
2432
2462
  "application/json": {
2433
2463
  "schema": {
2434
- "$ref": "#/components/schemas/CreateColumnResponseContent"
2464
+ "$ref": "#/components/schemas/ListColumnsResponseContent"
2435
2465
  }
2436
2466
  }
2437
2467
  }
@@ -2508,14 +2538,129 @@
2508
2538
  }
2509
2539
  },
2510
2540
  "x-fizzy-retry": {
2511
- "maxAttempts": 1
2541
+ "maxAttempts": 3,
2542
+ "baseDelayMs": 1000,
2543
+ "backoff": "exponential",
2544
+ "retryOn": [
2545
+ 429,
2546
+ 500,
2547
+ 503
2548
+ ]
2512
2549
  }
2513
- }
2514
- },
2515
- "/boards/{boardId}/columns/closed.json": {
2516
- "get": {
2517
- "operationId": "ListClosedCards",
2518
- "parameters": [
2550
+ },
2551
+ "post": {
2552
+ "operationId": "CreateColumn",
2553
+ "requestBody": {
2554
+ "content": {
2555
+ "application/json": {
2556
+ "schema": {
2557
+ "$ref": "#/components/schemas/CreateColumnRequestContent"
2558
+ }
2559
+ }
2560
+ },
2561
+ "required": true
2562
+ },
2563
+ "parameters": [
2564
+ {
2565
+ "name": "boardId",
2566
+ "in": "path",
2567
+ "schema": {
2568
+ "type": "string"
2569
+ },
2570
+ "required": true
2571
+ }
2572
+ ],
2573
+ "responses": {
2574
+ "200": {
2575
+ "description": "CreateColumn 200 response",
2576
+ "content": {
2577
+ "application/json": {
2578
+ "schema": {
2579
+ "$ref": "#/components/schemas/CreateColumnResponseContent"
2580
+ }
2581
+ }
2582
+ }
2583
+ },
2584
+ "400": {
2585
+ "description": "BadRequestError 400 response",
2586
+ "content": {
2587
+ "application/json": {
2588
+ "schema": {
2589
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
2590
+ }
2591
+ }
2592
+ }
2593
+ },
2594
+ "401": {
2595
+ "description": "UnauthorizedError 401 response",
2596
+ "content": {
2597
+ "application/json": {
2598
+ "schema": {
2599
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
2600
+ }
2601
+ }
2602
+ }
2603
+ },
2604
+ "403": {
2605
+ "description": "ForbiddenError 403 response",
2606
+ "content": {
2607
+ "application/json": {
2608
+ "schema": {
2609
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
2610
+ }
2611
+ }
2612
+ }
2613
+ },
2614
+ "404": {
2615
+ "description": "NotFoundError 404 response",
2616
+ "content": {
2617
+ "application/json": {
2618
+ "schema": {
2619
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
2620
+ }
2621
+ }
2622
+ }
2623
+ },
2624
+ "422": {
2625
+ "description": "ValidationError 422 response",
2626
+ "content": {
2627
+ "application/json": {
2628
+ "schema": {
2629
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
2630
+ }
2631
+ }
2632
+ }
2633
+ },
2634
+ "429": {
2635
+ "description": "RateLimitError 429 response",
2636
+ "content": {
2637
+ "application/json": {
2638
+ "schema": {
2639
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
2640
+ }
2641
+ }
2642
+ }
2643
+ },
2644
+ "500": {
2645
+ "description": "InternalServerError 500 response",
2646
+ "content": {
2647
+ "application/json": {
2648
+ "schema": {
2649
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
2650
+ }
2651
+ }
2652
+ }
2653
+ }
2654
+ },
2655
+ "x-fizzy-retry": {
2656
+ "maxAttempts": 1
2657
+ }
2658
+ }
2659
+ },
2660
+ "/boards/{boardId}/columns/closed.json": {
2661
+ "get": {
2662
+ "operationId": "ListClosedCards",
2663
+ "parameters": [
2519
2664
  {
2520
2665
  "name": "boardId",
2521
2666
  "in": "path",
@@ -3194,6 +3339,125 @@
3194
3339
  }
3195
3340
  }
3196
3341
  },
3342
+ "/boards/{boardId}/columns/{columnId}/cards.json": {
3343
+ "get": {
3344
+ "operationId": "ListColumnCards",
3345
+ "parameters": [
3346
+ {
3347
+ "name": "boardId",
3348
+ "in": "path",
3349
+ "schema": {
3350
+ "type": "string"
3351
+ },
3352
+ "required": true
3353
+ },
3354
+ {
3355
+ "name": "columnId",
3356
+ "in": "path",
3357
+ "schema": {
3358
+ "type": "string"
3359
+ },
3360
+ "required": true
3361
+ }
3362
+ ],
3363
+ "responses": {
3364
+ "200": {
3365
+ "description": "ListColumnCards 200 response",
3366
+ "content": {
3367
+ "application/json": {
3368
+ "schema": {
3369
+ "$ref": "#/components/schemas/ListColumnCardsResponseContent"
3370
+ }
3371
+ }
3372
+ }
3373
+ },
3374
+ "400": {
3375
+ "description": "BadRequestError 400 response",
3376
+ "content": {
3377
+ "application/json": {
3378
+ "schema": {
3379
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
3380
+ }
3381
+ }
3382
+ }
3383
+ },
3384
+ "401": {
3385
+ "description": "UnauthorizedError 401 response",
3386
+ "content": {
3387
+ "application/json": {
3388
+ "schema": {
3389
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
3390
+ }
3391
+ }
3392
+ }
3393
+ },
3394
+ "403": {
3395
+ "description": "ForbiddenError 403 response",
3396
+ "content": {
3397
+ "application/json": {
3398
+ "schema": {
3399
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
3400
+ }
3401
+ }
3402
+ }
3403
+ },
3404
+ "404": {
3405
+ "description": "NotFoundError 404 response",
3406
+ "content": {
3407
+ "application/json": {
3408
+ "schema": {
3409
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
3410
+ }
3411
+ }
3412
+ }
3413
+ },
3414
+ "422": {
3415
+ "description": "ValidationError 422 response",
3416
+ "content": {
3417
+ "application/json": {
3418
+ "schema": {
3419
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
3420
+ }
3421
+ }
3422
+ }
3423
+ },
3424
+ "429": {
3425
+ "description": "RateLimitError 429 response",
3426
+ "content": {
3427
+ "application/json": {
3428
+ "schema": {
3429
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
3430
+ }
3431
+ }
3432
+ }
3433
+ },
3434
+ "500": {
3435
+ "description": "InternalServerError 500 response",
3436
+ "content": {
3437
+ "application/json": {
3438
+ "schema": {
3439
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
3440
+ }
3441
+ }
3442
+ }
3443
+ }
3444
+ },
3445
+ "x-fizzy-pagination": {
3446
+ "style": "link",
3447
+ "pageParam": "page"
3448
+ },
3449
+ "x-fizzy-retry": {
3450
+ "maxAttempts": 3,
3451
+ "baseDelayMs": 1000,
3452
+ "backoff": "exponential",
3453
+ "retryOn": [
3454
+ 429,
3455
+ 500,
3456
+ 503
3457
+ ]
3458
+ }
3459
+ }
3460
+ },
3197
3461
  "/boards/{boardId}/entropy.json": {
3198
3462
  "put": {
3199
3463
  "operationId": "UpdateBoardEntropy",
@@ -4304,51 +4568,259 @@
4304
4568
  }
4305
4569
  }
4306
4570
  },
4307
- "/cards.json": {
4571
+ "/boards/{boardId}/webhooks/{webhookId}/deliveries.json": {
4308
4572
  "get": {
4309
- "operationId": "ListCards",
4573
+ "operationId": "ListWebhookDeliveries",
4310
4574
  "parameters": [
4311
4575
  {
4312
- "name": "board_id",
4313
- "in": "query",
4576
+ "name": "boardId",
4577
+ "in": "path",
4314
4578
  "schema": {
4315
4579
  "type": "string"
4316
- }
4580
+ },
4581
+ "required": true
4317
4582
  },
4318
4583
  {
4319
- "name": "column_id",
4320
- "in": "query",
4584
+ "name": "webhookId",
4585
+ "in": "path",
4321
4586
  "schema": {
4322
4587
  "type": "string"
4588
+ },
4589
+ "required": true
4590
+ }
4591
+ ],
4592
+ "responses": {
4593
+ "200": {
4594
+ "description": "ListWebhookDeliveries 200 response",
4595
+ "content": {
4596
+ "application/json": {
4597
+ "schema": {
4598
+ "$ref": "#/components/schemas/ListWebhookDeliveriesResponseContent"
4599
+ }
4600
+ }
4323
4601
  }
4324
4602
  },
4325
- {
4326
- "name": "assignee_id",
4327
- "in": "query",
4328
- "schema": {
4329
- "type": "string"
4330
- }
4603
+ "400": {
4604
+ "description": "BadRequestError 400 response",
4605
+ "content": {
4606
+ "application/json": {
4607
+ "schema": {
4608
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
4609
+ }
4610
+ }
4611
+ }
4612
+ },
4613
+ "401": {
4614
+ "description": "UnauthorizedError 401 response",
4615
+ "content": {
4616
+ "application/json": {
4617
+ "schema": {
4618
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
4619
+ }
4620
+ }
4621
+ }
4622
+ },
4623
+ "403": {
4624
+ "description": "ForbiddenError 403 response",
4625
+ "content": {
4626
+ "application/json": {
4627
+ "schema": {
4628
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
4629
+ }
4630
+ }
4631
+ }
4632
+ },
4633
+ "404": {
4634
+ "description": "NotFoundError 404 response",
4635
+ "content": {
4636
+ "application/json": {
4637
+ "schema": {
4638
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
4639
+ }
4640
+ }
4641
+ }
4642
+ },
4643
+ "422": {
4644
+ "description": "ValidationError 422 response",
4645
+ "content": {
4646
+ "application/json": {
4647
+ "schema": {
4648
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
4649
+ }
4650
+ }
4651
+ }
4652
+ },
4653
+ "429": {
4654
+ "description": "RateLimitError 429 response",
4655
+ "content": {
4656
+ "application/json": {
4657
+ "schema": {
4658
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
4659
+ }
4660
+ }
4661
+ }
4662
+ },
4663
+ "500": {
4664
+ "description": "InternalServerError 500 response",
4665
+ "content": {
4666
+ "application/json": {
4667
+ "schema": {
4668
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
4669
+ }
4670
+ }
4671
+ }
4672
+ }
4673
+ },
4674
+ "x-fizzy-pagination": {
4675
+ "style": "link",
4676
+ "pageParam": "page"
4677
+ },
4678
+ "x-fizzy-retry": {
4679
+ "maxAttempts": 3,
4680
+ "baseDelayMs": 1000,
4681
+ "backoff": "exponential",
4682
+ "retryOn": [
4683
+ 429,
4684
+ 500,
4685
+ 503
4686
+ ]
4687
+ }
4688
+ }
4689
+ },
4690
+ "/cards.json": {
4691
+ "get": {
4692
+ "operationId": "ListCards",
4693
+ "parameters": [
4694
+ {
4695
+ "name": "board_ids[]",
4696
+ "in": "query",
4697
+ "style": "form",
4698
+ "schema": {
4699
+ "type": "array",
4700
+ "items": {
4701
+ "type": "string"
4702
+ }
4703
+ },
4704
+ "explode": true
4705
+ },
4706
+ {
4707
+ "name": "tag_ids[]",
4708
+ "in": "query",
4709
+ "style": "form",
4710
+ "schema": {
4711
+ "type": "array",
4712
+ "items": {
4713
+ "type": "string"
4714
+ }
4715
+ },
4716
+ "explode": true
4717
+ },
4718
+ {
4719
+ "name": "assignee_ids[]",
4720
+ "in": "query",
4721
+ "style": "form",
4722
+ "schema": {
4723
+ "type": "array",
4724
+ "items": {
4725
+ "type": "string"
4726
+ }
4727
+ },
4728
+ "explode": true
4729
+ },
4730
+ {
4731
+ "name": "creator_ids[]",
4732
+ "in": "query",
4733
+ "style": "form",
4734
+ "schema": {
4735
+ "type": "array",
4736
+ "items": {
4737
+ "type": "string"
4738
+ }
4739
+ },
4740
+ "explode": true
4741
+ },
4742
+ {
4743
+ "name": "closer_ids[]",
4744
+ "in": "query",
4745
+ "style": "form",
4746
+ "schema": {
4747
+ "type": "array",
4748
+ "items": {
4749
+ "type": "string"
4750
+ }
4751
+ },
4752
+ "explode": true
4753
+ },
4754
+ {
4755
+ "name": "card_ids[]",
4756
+ "in": "query",
4757
+ "style": "form",
4758
+ "schema": {
4759
+ "type": "array",
4760
+ "items": {
4761
+ "type": "string"
4762
+ }
4763
+ },
4764
+ "explode": true
4765
+ },
4766
+ {
4767
+ "name": "column_ids[]",
4768
+ "in": "query",
4769
+ "style": "form",
4770
+ "schema": {
4771
+ "type": "array",
4772
+ "items": {
4773
+ "type": "string"
4774
+ }
4775
+ },
4776
+ "explode": true
4331
4777
  },
4332
4778
  {
4333
- "name": "tag",
4779
+ "name": "indexed_by",
4334
4780
  "in": "query",
4335
4781
  "schema": {
4336
4782
  "type": "string"
4337
4783
  }
4338
4784
  },
4339
4785
  {
4340
- "name": "status",
4786
+ "name": "sorted_by",
4341
4787
  "in": "query",
4342
4788
  "schema": {
4343
4789
  "type": "string"
4344
4790
  }
4345
4791
  },
4346
4792
  {
4347
- "name": "q",
4793
+ "name": "assignment_status",
4794
+ "in": "query",
4795
+ "schema": {
4796
+ "type": "string"
4797
+ }
4798
+ },
4799
+ {
4800
+ "name": "creation",
4801
+ "in": "query",
4802
+ "schema": {
4803
+ "type": "string"
4804
+ }
4805
+ },
4806
+ {
4807
+ "name": "closure",
4348
4808
  "in": "query",
4349
4809
  "schema": {
4350
4810
  "type": "string"
4351
4811
  }
4812
+ },
4813
+ {
4814
+ "name": "terms[]",
4815
+ "in": "query",
4816
+ "style": "form",
4817
+ "schema": {
4818
+ "type": "array",
4819
+ "items": {
4820
+ "type": "string"
4821
+ }
4822
+ },
4823
+ "explode": true
4352
4824
  }
4353
4825
  ],
4354
4826
  "responses": {
@@ -9074,25 +9546,17 @@
9074
9546
  }
9075
9547
  }
9076
9548
  },
9077
- "/notifications.json": {
9549
+ "/my/pins.json": {
9078
9550
  "get": {
9079
- "operationId": "ListNotifications",
9080
- "parameters": [
9081
- {
9082
- "name": "read",
9083
- "in": "query",
9084
- "schema": {
9085
- "type": "boolean"
9086
- }
9087
- }
9088
- ],
9551
+ "operationId": "ListPins",
9552
+ "parameters": [],
9089
9553
  "responses": {
9090
9554
  "200": {
9091
- "description": "ListNotifications 200 response",
9555
+ "description": "ListPins 200 response",
9092
9556
  "content": {
9093
9557
  "application/json": {
9094
9558
  "schema": {
9095
- "$ref": "#/components/schemas/ListNotificationsResponseContent"
9559
+ "$ref": "#/components/schemas/ListPinsResponseContent"
9096
9560
  }
9097
9561
  }
9098
9562
  }
@@ -9168,10 +9632,6 @@
9168
9632
  }
9169
9633
  }
9170
9634
  },
9171
- "x-fizzy-pagination": {
9172
- "style": "link",
9173
- "pageParam": "page"
9174
- },
9175
9635
  "x-fizzy-retry": {
9176
9636
  "maxAttempts": 3,
9177
9637
  "baseDelayMs": 1000,
@@ -9184,22 +9644,23 @@
9184
9644
  }
9185
9645
  }
9186
9646
  },
9187
- "/notifications/bulk_reading.json": {
9188
- "post": {
9189
- "operationId": "BulkReadNotifications",
9647
+ "/my/timezone.json": {
9648
+ "patch": {
9649
+ "operationId": "UpdateMyTimezone",
9190
9650
  "requestBody": {
9191
9651
  "content": {
9192
9652
  "application/json": {
9193
9653
  "schema": {
9194
- "$ref": "#/components/schemas/BulkReadNotificationsRequestContent"
9654
+ "$ref": "#/components/schemas/UpdateMyTimezoneRequestContent"
9195
9655
  }
9196
9656
  }
9197
- }
9657
+ },
9658
+ "required": true
9198
9659
  },
9199
9660
  "parameters": [],
9200
9661
  "responses": {
9201
- "200": {
9202
- "description": "BulkReadNotifications 200 response"
9662
+ "204": {
9663
+ "description": "UpdateMyTimezone 204 response"
9203
9664
  },
9204
9665
  "400": {
9205
9666
  "description": "BadRequestError 400 response",
@@ -9272,22 +9733,40 @@
9272
9733
  }
9273
9734
  }
9274
9735
  },
9736
+ "x-fizzy-idempotent": {
9737
+ "natural": true
9738
+ },
9275
9739
  "x-fizzy-retry": {
9276
- "maxAttempts": 1
9740
+ "maxAttempts": 3,
9741
+ "baseDelayMs": 1000,
9742
+ "backoff": "exponential",
9743
+ "retryOn": [
9744
+ 429,
9745
+ 500,
9746
+ 503
9747
+ ]
9277
9748
  }
9278
9749
  }
9279
9750
  },
9280
- "/notifications/settings.json": {
9751
+ "/notifications.json": {
9281
9752
  "get": {
9282
- "operationId": "GetNotificationSettings",
9283
- "parameters": [],
9753
+ "operationId": "ListNotifications",
9754
+ "parameters": [
9755
+ {
9756
+ "name": "read",
9757
+ "in": "query",
9758
+ "schema": {
9759
+ "type": "boolean"
9760
+ }
9761
+ }
9762
+ ],
9284
9763
  "responses": {
9285
9764
  "200": {
9286
- "description": "GetNotificationSettings 200 response",
9765
+ "description": "ListNotifications 200 response",
9287
9766
  "content": {
9288
9767
  "application/json": {
9289
9768
  "schema": {
9290
- "$ref": "#/components/schemas/GetNotificationSettingsResponseContent"
9769
+ "$ref": "#/components/schemas/ListNotificationsResponseContent"
9291
9770
  }
9292
9771
  }
9293
9772
  }
@@ -9363,6 +9842,10 @@
9363
9842
  }
9364
9843
  }
9365
9844
  },
9845
+ "x-fizzy-pagination": {
9846
+ "style": "link",
9847
+ "pageParam": "page"
9848
+ },
9366
9849
  "x-fizzy-retry": {
9367
9850
  "maxAttempts": 3,
9368
9851
  "baseDelayMs": 1000,
@@ -9373,14 +9856,16 @@
9373
9856
  503
9374
9857
  ]
9375
9858
  }
9376
- },
9377
- "patch": {
9378
- "operationId": "UpdateNotificationSettings",
9859
+ }
9860
+ },
9861
+ "/notifications/bulk_reading.json": {
9862
+ "post": {
9863
+ "operationId": "BulkReadNotifications",
9379
9864
  "requestBody": {
9380
9865
  "content": {
9381
9866
  "application/json": {
9382
9867
  "schema": {
9383
- "$ref": "#/components/schemas/UpdateNotificationSettingsRequestContent"
9868
+ "$ref": "#/components/schemas/BulkReadNotificationsRequestContent"
9384
9869
  }
9385
9870
  }
9386
9871
  }
@@ -9388,7 +9873,7 @@
9388
9873
  "parameters": [],
9389
9874
  "responses": {
9390
9875
  "200": {
9391
- "description": "UpdateNotificationSettings 200 response"
9876
+ "description": "BulkReadNotifications 200 response"
9392
9877
  },
9393
9878
  "400": {
9394
9879
  "description": "BadRequestError 400 response",
@@ -9461,33 +9946,222 @@
9461
9946
  }
9462
9947
  }
9463
9948
  },
9464
- "x-fizzy-idempotent": {
9465
- "natural": true
9466
- },
9467
9949
  "x-fizzy-retry": {
9468
- "maxAttempts": 3,
9469
- "baseDelayMs": 1000,
9470
- "backoff": "exponential",
9471
- "retryOn": [
9472
- 429,
9473
- 500,
9474
- 503
9475
- ]
9950
+ "maxAttempts": 1
9476
9951
  }
9477
9952
  }
9478
9953
  },
9479
- "/notifications/tray.json": {
9954
+ "/notifications/settings.json": {
9480
9955
  "get": {
9481
- "operationId": "GetNotificationTray",
9482
- "parameters": [
9483
- {
9484
- "name": "include_read",
9485
- "in": "query",
9486
- "schema": {
9487
- "type": "boolean"
9488
- }
9489
- }
9490
- ],
9956
+ "operationId": "GetNotificationSettings",
9957
+ "parameters": [],
9958
+ "responses": {
9959
+ "200": {
9960
+ "description": "GetNotificationSettings 200 response",
9961
+ "content": {
9962
+ "application/json": {
9963
+ "schema": {
9964
+ "$ref": "#/components/schemas/GetNotificationSettingsResponseContent"
9965
+ }
9966
+ }
9967
+ }
9968
+ },
9969
+ "400": {
9970
+ "description": "BadRequestError 400 response",
9971
+ "content": {
9972
+ "application/json": {
9973
+ "schema": {
9974
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
9975
+ }
9976
+ }
9977
+ }
9978
+ },
9979
+ "401": {
9980
+ "description": "UnauthorizedError 401 response",
9981
+ "content": {
9982
+ "application/json": {
9983
+ "schema": {
9984
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
9985
+ }
9986
+ }
9987
+ }
9988
+ },
9989
+ "403": {
9990
+ "description": "ForbiddenError 403 response",
9991
+ "content": {
9992
+ "application/json": {
9993
+ "schema": {
9994
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
9995
+ }
9996
+ }
9997
+ }
9998
+ },
9999
+ "404": {
10000
+ "description": "NotFoundError 404 response",
10001
+ "content": {
10002
+ "application/json": {
10003
+ "schema": {
10004
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
10005
+ }
10006
+ }
10007
+ }
10008
+ },
10009
+ "422": {
10010
+ "description": "ValidationError 422 response",
10011
+ "content": {
10012
+ "application/json": {
10013
+ "schema": {
10014
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
10015
+ }
10016
+ }
10017
+ }
10018
+ },
10019
+ "429": {
10020
+ "description": "RateLimitError 429 response",
10021
+ "content": {
10022
+ "application/json": {
10023
+ "schema": {
10024
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
10025
+ }
10026
+ }
10027
+ }
10028
+ },
10029
+ "500": {
10030
+ "description": "InternalServerError 500 response",
10031
+ "content": {
10032
+ "application/json": {
10033
+ "schema": {
10034
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
10035
+ }
10036
+ }
10037
+ }
10038
+ }
10039
+ },
10040
+ "x-fizzy-retry": {
10041
+ "maxAttempts": 3,
10042
+ "baseDelayMs": 1000,
10043
+ "backoff": "exponential",
10044
+ "retryOn": [
10045
+ 429,
10046
+ 500,
10047
+ 503
10048
+ ]
10049
+ }
10050
+ },
10051
+ "patch": {
10052
+ "operationId": "UpdateNotificationSettings",
10053
+ "requestBody": {
10054
+ "content": {
10055
+ "application/json": {
10056
+ "schema": {
10057
+ "$ref": "#/components/schemas/UpdateNotificationSettingsRequestContent"
10058
+ }
10059
+ }
10060
+ }
10061
+ },
10062
+ "parameters": [],
10063
+ "responses": {
10064
+ "200": {
10065
+ "description": "UpdateNotificationSettings 200 response"
10066
+ },
10067
+ "400": {
10068
+ "description": "BadRequestError 400 response",
10069
+ "content": {
10070
+ "application/json": {
10071
+ "schema": {
10072
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
10073
+ }
10074
+ }
10075
+ }
10076
+ },
10077
+ "401": {
10078
+ "description": "UnauthorizedError 401 response",
10079
+ "content": {
10080
+ "application/json": {
10081
+ "schema": {
10082
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
10083
+ }
10084
+ }
10085
+ }
10086
+ },
10087
+ "403": {
10088
+ "description": "ForbiddenError 403 response",
10089
+ "content": {
10090
+ "application/json": {
10091
+ "schema": {
10092
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
10093
+ }
10094
+ }
10095
+ }
10096
+ },
10097
+ "404": {
10098
+ "description": "NotFoundError 404 response",
10099
+ "content": {
10100
+ "application/json": {
10101
+ "schema": {
10102
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
10103
+ }
10104
+ }
10105
+ }
10106
+ },
10107
+ "422": {
10108
+ "description": "ValidationError 422 response",
10109
+ "content": {
10110
+ "application/json": {
10111
+ "schema": {
10112
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
10113
+ }
10114
+ }
10115
+ }
10116
+ },
10117
+ "429": {
10118
+ "description": "RateLimitError 429 response",
10119
+ "content": {
10120
+ "application/json": {
10121
+ "schema": {
10122
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
10123
+ }
10124
+ }
10125
+ }
10126
+ },
10127
+ "500": {
10128
+ "description": "InternalServerError 500 response",
10129
+ "content": {
10130
+ "application/json": {
10131
+ "schema": {
10132
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
10133
+ }
10134
+ }
10135
+ }
10136
+ }
10137
+ },
10138
+ "x-fizzy-idempotent": {
10139
+ "natural": true
10140
+ },
10141
+ "x-fizzy-retry": {
10142
+ "maxAttempts": 3,
10143
+ "baseDelayMs": 1000,
10144
+ "backoff": "exponential",
10145
+ "retryOn": [
10146
+ 429,
10147
+ 500,
10148
+ 503
10149
+ ]
10150
+ }
10151
+ }
10152
+ },
10153
+ "/notifications/tray.json": {
10154
+ "get": {
10155
+ "operationId": "GetNotificationTray",
10156
+ "parameters": [
10157
+ {
10158
+ "name": "include_read",
10159
+ "in": "query",
10160
+ "schema": {
10161
+ "type": "boolean"
10162
+ }
10163
+ }
10164
+ ],
9491
10165
  "responses": {
9492
10166
  "200": {
9493
10167
  "description": "GetNotificationTray 200 response",
@@ -10630,19 +11304,9 @@
10630
11304
  }
10631
11305
  }
10632
11306
  },
10633
- "/users/{userId}/push_subscriptions.json": {
11307
+ "/users/{userId}/data_exports.json": {
10634
11308
  "post": {
10635
- "operationId": "CreatePushSubscription",
10636
- "requestBody": {
10637
- "content": {
10638
- "application/json": {
10639
- "schema": {
10640
- "$ref": "#/components/schemas/CreatePushSubscriptionRequestContent"
10641
- }
10642
- }
10643
- },
10644
- "required": true
10645
- },
11309
+ "operationId": "CreateUserDataExport",
10646
11310
  "parameters": [
10647
11311
  {
10648
11312
  "name": "userId",
@@ -10655,7 +11319,14 @@
10655
11319
  ],
10656
11320
  "responses": {
10657
11321
  "200": {
10658
- "description": "CreatePushSubscription 200 response"
11322
+ "description": "CreateUserDataExport 200 response",
11323
+ "content": {
11324
+ "application/json": {
11325
+ "schema": {
11326
+ "$ref": "#/components/schemas/CreateUserDataExportResponseContent"
11327
+ }
11328
+ }
11329
+ }
10659
11330
  },
10660
11331
  "400": {
10661
11332
  "description": "BadRequestError 400 response",
@@ -10733,9 +11404,9 @@
10733
11404
  }
10734
11405
  }
10735
11406
  },
10736
- "/users/{userId}/push_subscriptions/{pushSubscriptionId}": {
10737
- "delete": {
10738
- "operationId": "DeletePushSubscription",
11407
+ "/users/{userId}/data_exports/{exportId}": {
11408
+ "get": {
11409
+ "operationId": "GetUserDataExport",
10739
11410
  "parameters": [
10740
11411
  {
10741
11412
  "name": "userId",
@@ -10746,7 +11417,7 @@
10746
11417
  "required": true
10747
11418
  },
10748
11419
  {
10749
- "name": "pushSubscriptionId",
11420
+ "name": "exportId",
10750
11421
  "in": "path",
10751
11422
  "schema": {
10752
11423
  "type": "string"
@@ -10756,7 +11427,14 @@
10756
11427
  ],
10757
11428
  "responses": {
10758
11429
  "200": {
10759
- "description": "DeletePushSubscription 200 response"
11430
+ "description": "GetUserDataExport 200 response",
11431
+ "content": {
11432
+ "application/json": {
11433
+ "schema": {
11434
+ "$ref": "#/components/schemas/GetUserDataExportResponseContent"
11435
+ }
11436
+ }
11437
+ }
10760
11438
  },
10761
11439
  "400": {
10762
11440
  "description": "BadRequestError 400 response",
@@ -10829,9 +11507,6 @@
10829
11507
  }
10830
11508
  }
10831
11509
  },
10832
- "x-fizzy-idempotent": {
10833
- "natural": true
10834
- },
10835
11510
  "x-fizzy-retry": {
10836
11511
  "maxAttempts": 3,
10837
11512
  "baseDelayMs": 1000,
@@ -10844,14 +11519,14 @@
10844
11519
  }
10845
11520
  }
10846
11521
  },
10847
- "/users/{userId}/role.json": {
10848
- "patch": {
10849
- "operationId": "UpdateUserRole",
11522
+ "/users/{userId}/email_addresses.json": {
11523
+ "post": {
11524
+ "operationId": "RequestEmailAddressChange",
10850
11525
  "requestBody": {
10851
11526
  "content": {
10852
11527
  "application/json": {
10853
11528
  "schema": {
10854
- "$ref": "#/components/schemas/UpdateUserRoleRequestContent"
11529
+ "$ref": "#/components/schemas/RequestEmailAddressChangeRequestContent"
10855
11530
  }
10856
11531
  }
10857
11532
  },
@@ -10869,7 +11544,7 @@
10869
11544
  ],
10870
11545
  "responses": {
10871
11546
  "200": {
10872
- "description": "UpdateUserRole 200 response"
11547
+ "description": "RequestEmailAddressChange 200 response"
10873
11548
  },
10874
11549
  "400": {
10875
11550
  "description": "BadRequestError 400 response",
@@ -10942,15 +11617,433 @@
10942
11617
  }
10943
11618
  }
10944
11619
  },
10945
- "x-fizzy-idempotent": {
10946
- "natural": true
10947
- },
10948
11620
  "x-fizzy-retry": {
10949
- "maxAttempts": 3,
10950
- "baseDelayMs": 1000,
10951
- "backoff": "exponential",
10952
- "retryOn": [
10953
- 429,
11621
+ "maxAttempts": 1
11622
+ }
11623
+ }
11624
+ },
11625
+ "/users/{userId}/email_addresses/{emailAddressToken}/confirmation.json": {
11626
+ "post": {
11627
+ "operationId": "ConfirmEmailAddressChange",
11628
+ "parameters": [
11629
+ {
11630
+ "name": "userId",
11631
+ "in": "path",
11632
+ "schema": {
11633
+ "type": "string"
11634
+ },
11635
+ "required": true
11636
+ },
11637
+ {
11638
+ "name": "emailAddressToken",
11639
+ "in": "path",
11640
+ "schema": {
11641
+ "type": "string"
11642
+ },
11643
+ "required": true
11644
+ }
11645
+ ],
11646
+ "responses": {
11647
+ "200": {
11648
+ "description": "ConfirmEmailAddressChange 200 response"
11649
+ },
11650
+ "400": {
11651
+ "description": "BadRequestError 400 response",
11652
+ "content": {
11653
+ "application/json": {
11654
+ "schema": {
11655
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11656
+ }
11657
+ }
11658
+ }
11659
+ },
11660
+ "401": {
11661
+ "description": "UnauthorizedError 401 response",
11662
+ "content": {
11663
+ "application/json": {
11664
+ "schema": {
11665
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11666
+ }
11667
+ }
11668
+ }
11669
+ },
11670
+ "403": {
11671
+ "description": "ForbiddenError 403 response",
11672
+ "content": {
11673
+ "application/json": {
11674
+ "schema": {
11675
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11676
+ }
11677
+ }
11678
+ }
11679
+ },
11680
+ "404": {
11681
+ "description": "NotFoundError 404 response",
11682
+ "content": {
11683
+ "application/json": {
11684
+ "schema": {
11685
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11686
+ }
11687
+ }
11688
+ }
11689
+ },
11690
+ "422": {
11691
+ "description": "ValidationError 422 response",
11692
+ "content": {
11693
+ "application/json": {
11694
+ "schema": {
11695
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11696
+ }
11697
+ }
11698
+ }
11699
+ },
11700
+ "429": {
11701
+ "description": "RateLimitError 429 response",
11702
+ "content": {
11703
+ "application/json": {
11704
+ "schema": {
11705
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11706
+ }
11707
+ }
11708
+ }
11709
+ },
11710
+ "500": {
11711
+ "description": "InternalServerError 500 response",
11712
+ "content": {
11713
+ "application/json": {
11714
+ "schema": {
11715
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11716
+ }
11717
+ }
11718
+ }
11719
+ }
11720
+ },
11721
+ "x-fizzy-retry": {
11722
+ "maxAttempts": 1
11723
+ }
11724
+ }
11725
+ },
11726
+ "/users/{userId}/push_subscriptions.json": {
11727
+ "post": {
11728
+ "operationId": "CreatePushSubscription",
11729
+ "requestBody": {
11730
+ "content": {
11731
+ "application/json": {
11732
+ "schema": {
11733
+ "$ref": "#/components/schemas/CreatePushSubscriptionRequestContent"
11734
+ }
11735
+ }
11736
+ },
11737
+ "required": true
11738
+ },
11739
+ "parameters": [
11740
+ {
11741
+ "name": "userId",
11742
+ "in": "path",
11743
+ "schema": {
11744
+ "type": "string"
11745
+ },
11746
+ "required": true
11747
+ }
11748
+ ],
11749
+ "responses": {
11750
+ "200": {
11751
+ "description": "CreatePushSubscription 200 response"
11752
+ },
11753
+ "400": {
11754
+ "description": "BadRequestError 400 response",
11755
+ "content": {
11756
+ "application/json": {
11757
+ "schema": {
11758
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11759
+ }
11760
+ }
11761
+ }
11762
+ },
11763
+ "401": {
11764
+ "description": "UnauthorizedError 401 response",
11765
+ "content": {
11766
+ "application/json": {
11767
+ "schema": {
11768
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11769
+ }
11770
+ }
11771
+ }
11772
+ },
11773
+ "403": {
11774
+ "description": "ForbiddenError 403 response",
11775
+ "content": {
11776
+ "application/json": {
11777
+ "schema": {
11778
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11779
+ }
11780
+ }
11781
+ }
11782
+ },
11783
+ "404": {
11784
+ "description": "NotFoundError 404 response",
11785
+ "content": {
11786
+ "application/json": {
11787
+ "schema": {
11788
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11789
+ }
11790
+ }
11791
+ }
11792
+ },
11793
+ "422": {
11794
+ "description": "ValidationError 422 response",
11795
+ "content": {
11796
+ "application/json": {
11797
+ "schema": {
11798
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11799
+ }
11800
+ }
11801
+ }
11802
+ },
11803
+ "429": {
11804
+ "description": "RateLimitError 429 response",
11805
+ "content": {
11806
+ "application/json": {
11807
+ "schema": {
11808
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11809
+ }
11810
+ }
11811
+ }
11812
+ },
11813
+ "500": {
11814
+ "description": "InternalServerError 500 response",
11815
+ "content": {
11816
+ "application/json": {
11817
+ "schema": {
11818
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11819
+ }
11820
+ }
11821
+ }
11822
+ }
11823
+ },
11824
+ "x-fizzy-retry": {
11825
+ "maxAttempts": 1
11826
+ }
11827
+ }
11828
+ },
11829
+ "/users/{userId}/push_subscriptions/{pushSubscriptionId}": {
11830
+ "delete": {
11831
+ "operationId": "DeletePushSubscription",
11832
+ "parameters": [
11833
+ {
11834
+ "name": "userId",
11835
+ "in": "path",
11836
+ "schema": {
11837
+ "type": "string"
11838
+ },
11839
+ "required": true
11840
+ },
11841
+ {
11842
+ "name": "pushSubscriptionId",
11843
+ "in": "path",
11844
+ "schema": {
11845
+ "type": "string"
11846
+ },
11847
+ "required": true
11848
+ }
11849
+ ],
11850
+ "responses": {
11851
+ "200": {
11852
+ "description": "DeletePushSubscription 200 response"
11853
+ },
11854
+ "400": {
11855
+ "description": "BadRequestError 400 response",
11856
+ "content": {
11857
+ "application/json": {
11858
+ "schema": {
11859
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11860
+ }
11861
+ }
11862
+ }
11863
+ },
11864
+ "401": {
11865
+ "description": "UnauthorizedError 401 response",
11866
+ "content": {
11867
+ "application/json": {
11868
+ "schema": {
11869
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11870
+ }
11871
+ }
11872
+ }
11873
+ },
11874
+ "403": {
11875
+ "description": "ForbiddenError 403 response",
11876
+ "content": {
11877
+ "application/json": {
11878
+ "schema": {
11879
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11880
+ }
11881
+ }
11882
+ }
11883
+ },
11884
+ "404": {
11885
+ "description": "NotFoundError 404 response",
11886
+ "content": {
11887
+ "application/json": {
11888
+ "schema": {
11889
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11890
+ }
11891
+ }
11892
+ }
11893
+ },
11894
+ "422": {
11895
+ "description": "ValidationError 422 response",
11896
+ "content": {
11897
+ "application/json": {
11898
+ "schema": {
11899
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11900
+ }
11901
+ }
11902
+ }
11903
+ },
11904
+ "429": {
11905
+ "description": "RateLimitError 429 response",
11906
+ "content": {
11907
+ "application/json": {
11908
+ "schema": {
11909
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11910
+ }
11911
+ }
11912
+ }
11913
+ },
11914
+ "500": {
11915
+ "description": "InternalServerError 500 response",
11916
+ "content": {
11917
+ "application/json": {
11918
+ "schema": {
11919
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11920
+ }
11921
+ }
11922
+ }
11923
+ }
11924
+ },
11925
+ "x-fizzy-idempotent": {
11926
+ "natural": true
11927
+ },
11928
+ "x-fizzy-retry": {
11929
+ "maxAttempts": 3,
11930
+ "baseDelayMs": 1000,
11931
+ "backoff": "exponential",
11932
+ "retryOn": [
11933
+ 429,
11934
+ 500,
11935
+ 503
11936
+ ]
11937
+ }
11938
+ }
11939
+ },
11940
+ "/users/{userId}/role.json": {
11941
+ "patch": {
11942
+ "operationId": "UpdateUserRole",
11943
+ "requestBody": {
11944
+ "content": {
11945
+ "application/json": {
11946
+ "schema": {
11947
+ "$ref": "#/components/schemas/UpdateUserRoleRequestContent"
11948
+ }
11949
+ }
11950
+ },
11951
+ "required": true
11952
+ },
11953
+ "parameters": [
11954
+ {
11955
+ "name": "userId",
11956
+ "in": "path",
11957
+ "schema": {
11958
+ "type": "string"
11959
+ },
11960
+ "required": true
11961
+ }
11962
+ ],
11963
+ "responses": {
11964
+ "200": {
11965
+ "description": "UpdateUserRole 200 response"
11966
+ },
11967
+ "400": {
11968
+ "description": "BadRequestError 400 response",
11969
+ "content": {
11970
+ "application/json": {
11971
+ "schema": {
11972
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11973
+ }
11974
+ }
11975
+ }
11976
+ },
11977
+ "401": {
11978
+ "description": "UnauthorizedError 401 response",
11979
+ "content": {
11980
+ "application/json": {
11981
+ "schema": {
11982
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11983
+ }
11984
+ }
11985
+ }
11986
+ },
11987
+ "403": {
11988
+ "description": "ForbiddenError 403 response",
11989
+ "content": {
11990
+ "application/json": {
11991
+ "schema": {
11992
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11993
+ }
11994
+ }
11995
+ }
11996
+ },
11997
+ "404": {
11998
+ "description": "NotFoundError 404 response",
11999
+ "content": {
12000
+ "application/json": {
12001
+ "schema": {
12002
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
12003
+ }
12004
+ }
12005
+ }
12006
+ },
12007
+ "422": {
12008
+ "description": "ValidationError 422 response",
12009
+ "content": {
12010
+ "application/json": {
12011
+ "schema": {
12012
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
12013
+ }
12014
+ }
12015
+ }
12016
+ },
12017
+ "429": {
12018
+ "description": "RateLimitError 429 response",
12019
+ "content": {
12020
+ "application/json": {
12021
+ "schema": {
12022
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
12023
+ }
12024
+ }
12025
+ }
12026
+ },
12027
+ "500": {
12028
+ "description": "InternalServerError 500 response",
12029
+ "content": {
12030
+ "application/json": {
12031
+ "schema": {
12032
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
12033
+ }
12034
+ }
12035
+ }
12036
+ }
12037
+ },
12038
+ "x-fizzy-idempotent": {
12039
+ "natural": true
12040
+ },
12041
+ "x-fizzy-retry": {
12042
+ "maxAttempts": 3,
12043
+ "baseDelayMs": 1000,
12044
+ "backoff": "exponential",
12045
+ "retryOn": [
12046
+ 429,
10954
12047
  500,
10955
12048
  503
10956
12049
  ]
@@ -11058,13 +12151,183 @@
11058
12151
  "type": "integer",
11059
12152
  "format": "int32"
11060
12153
  }
11061
- },
11062
- "required": [
11063
- "cards_count",
11064
- "created_at",
11065
- "id",
11066
- "name"
11067
- ]
12154
+ },
12155
+ "required": [
12156
+ "cards_count",
12157
+ "created_at",
12158
+ "id",
12159
+ "name"
12160
+ ]
12161
+ },
12162
+ "Activity": {
12163
+ "type": "object",
12164
+ "properties": {
12165
+ "id": {
12166
+ "type": "string"
12167
+ },
12168
+ "action": {
12169
+ "type": "string"
12170
+ },
12171
+ "created_at": {
12172
+ "type": "string"
12173
+ },
12174
+ "description": {
12175
+ "type": "string"
12176
+ },
12177
+ "particulars": {
12178
+ "$ref": "#/components/schemas/ActivityParticulars"
12179
+ },
12180
+ "url": {
12181
+ "type": "string"
12182
+ },
12183
+ "eventable_type": {
12184
+ "type": "string"
12185
+ },
12186
+ "eventable": {
12187
+ "$ref": "#/components/schemas/ActivityEventable"
12188
+ },
12189
+ "board": {
12190
+ "$ref": "#/components/schemas/Board"
12191
+ },
12192
+ "creator": {
12193
+ "$ref": "#/components/schemas/User"
12194
+ }
12195
+ },
12196
+ "required": [
12197
+ "action",
12198
+ "board",
12199
+ "created_at",
12200
+ "creator",
12201
+ "description",
12202
+ "eventable",
12203
+ "eventable_type",
12204
+ "id",
12205
+ "particulars",
12206
+ "url"
12207
+ ]
12208
+ },
12209
+ "ActivityEventable": {
12210
+ "type": "object",
12211
+ "properties": {
12212
+ "id": {
12213
+ "type": "string"
12214
+ },
12215
+ "number": {
12216
+ "type": "integer",
12217
+ "format": "int32"
12218
+ },
12219
+ "title": {
12220
+ "type": "string"
12221
+ },
12222
+ "status": {
12223
+ "type": "string"
12224
+ },
12225
+ "description": {
12226
+ "type": "string"
12227
+ },
12228
+ "description_html": {
12229
+ "type": "string"
12230
+ },
12231
+ "image_url": {
12232
+ "type": "string"
12233
+ },
12234
+ "has_attachments": {
12235
+ "type": "boolean"
12236
+ },
12237
+ "tags": {
12238
+ "type": "array",
12239
+ "items": {
12240
+ "type": "string"
12241
+ }
12242
+ },
12243
+ "closed": {
12244
+ "type": "boolean"
12245
+ },
12246
+ "postponed": {
12247
+ "type": "boolean"
12248
+ },
12249
+ "golden": {
12250
+ "type": "boolean"
12251
+ },
12252
+ "last_active_at": {
12253
+ "type": "string"
12254
+ },
12255
+ "created_at": {
12256
+ "type": "string"
12257
+ },
12258
+ "updated_at": {
12259
+ "type": "string"
12260
+ },
12261
+ "body": {
12262
+ "$ref": "#/components/schemas/RichTextBody"
12263
+ },
12264
+ "creator": {
12265
+ "$ref": "#/components/schemas/User"
12266
+ },
12267
+ "card": {
12268
+ "$ref": "#/components/schemas/CardRef"
12269
+ },
12270
+ "board": {
12271
+ "$ref": "#/components/schemas/Board"
12272
+ },
12273
+ "column": {
12274
+ "$ref": "#/components/schemas/Column"
12275
+ },
12276
+ "assignees": {
12277
+ "type": "array",
12278
+ "items": {
12279
+ "$ref": "#/components/schemas/User"
12280
+ }
12281
+ },
12282
+ "has_more_assignees": {
12283
+ "type": "boolean"
12284
+ },
12285
+ "comments_url": {
12286
+ "type": "string"
12287
+ },
12288
+ "reactions_url": {
12289
+ "type": "string"
12290
+ },
12291
+ "steps": {
12292
+ "type": "array",
12293
+ "items": {
12294
+ "$ref": "#/components/schemas/Step"
12295
+ }
12296
+ },
12297
+ "url": {
12298
+ "type": "string"
12299
+ }
12300
+ },
12301
+ "required": [
12302
+ "id",
12303
+ "url"
12304
+ ]
12305
+ },
12306
+ "ActivityParticulars": {
12307
+ "type": "object",
12308
+ "properties": {
12309
+ "assignee_ids": {
12310
+ "type": "array",
12311
+ "items": {
12312
+ "type": "string"
12313
+ }
12314
+ },
12315
+ "old_board": {
12316
+ "type": "string"
12317
+ },
12318
+ "new_board": {
12319
+ "type": "string"
12320
+ },
12321
+ "old_title": {
12322
+ "type": "string"
12323
+ },
12324
+ "new_title": {
12325
+ "type": "string"
12326
+ },
12327
+ "column": {
12328
+ "type": "string"
12329
+ }
12330
+ }
11068
12331
  },
11069
12332
  "AssignCardRequestContent": {
11070
12333
  "type": "object",
@@ -11107,6 +12370,21 @@
11107
12370
  "type": "integer",
11108
12371
  "format": "int32"
11109
12372
  },
12373
+ "public_description": {
12374
+ "type": "string"
12375
+ },
12376
+ "public_description_html": {
12377
+ "type": "string"
12378
+ },
12379
+ "public_url": {
12380
+ "type": "string"
12381
+ },
12382
+ "user_ids": {
12383
+ "type": "array",
12384
+ "items": {
12385
+ "type": "string"
12386
+ }
12387
+ },
11110
12388
  "url": {
11111
12389
  "type": "string"
11112
12390
  },
@@ -11122,6 +12400,79 @@
11122
12400
  "url"
11123
12401
  ]
11124
12402
  },
12403
+ "BoardAccessUser": {
12404
+ "type": "object",
12405
+ "properties": {
12406
+ "id": {
12407
+ "type": "string"
12408
+ },
12409
+ "name": {
12410
+ "type": "string",
12411
+ "format": "password"
12412
+ },
12413
+ "role": {
12414
+ "type": "string"
12415
+ },
12416
+ "active": {
12417
+ "type": "boolean"
12418
+ },
12419
+ "email_address": {
12420
+ "type": "string",
12421
+ "format": "password",
12422
+ "x-fizzy-sensitive": {
12423
+ "category": "pii",
12424
+ "redact": true
12425
+ }
12426
+ },
12427
+ "created_at": {
12428
+ "type": "string"
12429
+ },
12430
+ "url": {
12431
+ "type": "string"
12432
+ },
12433
+ "avatar_url": {
12434
+ "type": "string"
12435
+ },
12436
+ "has_access": {
12437
+ "type": "boolean"
12438
+ },
12439
+ "involvement": {
12440
+ "type": "string"
12441
+ }
12442
+ },
12443
+ "required": [
12444
+ "active",
12445
+ "created_at",
12446
+ "email_address",
12447
+ "has_access",
12448
+ "id",
12449
+ "name",
12450
+ "role",
12451
+ "url"
12452
+ ]
12453
+ },
12454
+ "BoardAccesses": {
12455
+ "type": "object",
12456
+ "properties": {
12457
+ "board_id": {
12458
+ "type": "string"
12459
+ },
12460
+ "all_access": {
12461
+ "type": "boolean"
12462
+ },
12463
+ "users": {
12464
+ "type": "array",
12465
+ "items": {
12466
+ "$ref": "#/components/schemas/BoardAccessUser"
12467
+ }
12468
+ }
12469
+ },
12470
+ "required": [
12471
+ "all_access",
12472
+ "board_id",
12473
+ "users"
12474
+ ]
12475
+ },
11125
12476
  "BulkReadNotificationsRequestContent": {
11126
12477
  "type": "object",
11127
12478
  "properties": {
@@ -11273,6 +12624,9 @@
11273
12624
  },
11274
12625
  "created_at": {
11275
12626
  "type": "string"
12627
+ },
12628
+ "cards_url": {
12629
+ "type": "string"
11276
12630
  }
11277
12631
  },
11278
12632
  "required": [
@@ -11575,6 +12929,9 @@
11575
12929
  "CreateStepResponseContent": {
11576
12930
  "$ref": "#/components/schemas/Step"
11577
12931
  },
12932
+ "CreateUserDataExportResponseContent": {
12933
+ "$ref": "#/components/schemas/DataExport"
12934
+ },
11578
12935
  "CreateWebhookRequestContent": {
11579
12936
  "type": "object",
11580
12937
  "properties": {
@@ -11599,6 +12956,28 @@
11599
12956
  "CreateWebhookResponseContent": {
11600
12957
  "$ref": "#/components/schemas/Webhook"
11601
12958
  },
12959
+ "DataExport": {
12960
+ "type": "object",
12961
+ "properties": {
12962
+ "id": {
12963
+ "type": "string"
12964
+ },
12965
+ "status": {
12966
+ "type": "string"
12967
+ },
12968
+ "created_at": {
12969
+ "type": "string"
12970
+ },
12971
+ "download_url": {
12972
+ "type": "string"
12973
+ }
12974
+ },
12975
+ "required": [
12976
+ "created_at",
12977
+ "id",
12978
+ "status"
12979
+ ]
12980
+ },
11602
12981
  "DirectUpload": {
11603
12982
  "type": "object",
11604
12983
  "properties": {
@@ -11711,6 +13090,9 @@
11711
13090
  "GetStepResponseContent": {
11712
13091
  "$ref": "#/components/schemas/Step"
11713
13092
  },
13093
+ "GetUserDataExportResponseContent": {
13094
+ "$ref": "#/components/schemas/DataExport"
13095
+ },
11714
13096
  "GetUserResponseContent": {
11715
13097
  "$ref": "#/components/schemas/User"
11716
13098
  },
@@ -11744,9 +13126,7 @@
11744
13126
  },
11745
13127
  "required": [
11746
13128
  "accounts",
11747
- "email_address",
11748
- "id",
11749
- "name"
13129
+ "id"
11750
13130
  ]
11751
13131
  },
11752
13132
  "InternalServerErrorResponseContent": {
@@ -11769,9 +13149,16 @@
11769
13149
  "url": {
11770
13150
  "type": "string"
11771
13151
  },
13152
+ "usage_count": {
13153
+ "type": "integer",
13154
+ "format": "int32"
13155
+ },
11772
13156
  "usage_limit": {
11773
13157
  "type": "integer",
11774
13158
  "format": "int32"
13159
+ },
13160
+ "active": {
13161
+ "type": "boolean"
11775
13162
  }
11776
13163
  },
11777
13164
  "required": [
@@ -11785,6 +13172,15 @@
11785
13172
  "$ref": "#/components/schemas/AccessToken"
11786
13173
  }
11787
13174
  },
13175
+ "ListActivitiesResponseContent": {
13176
+ "type": "array",
13177
+ "items": {
13178
+ "$ref": "#/components/schemas/Activity"
13179
+ }
13180
+ },
13181
+ "ListBoardAccessesResponseContent": {
13182
+ "$ref": "#/components/schemas/BoardAccesses"
13183
+ },
11788
13184
  "ListBoardsResponseContent": {
11789
13185
  "type": "array",
11790
13186
  "items": {
@@ -11809,6 +13205,12 @@
11809
13205
  "$ref": "#/components/schemas/Card"
11810
13206
  }
11811
13207
  },
13208
+ "ListColumnCardsResponseContent": {
13209
+ "type": "array",
13210
+ "items": {
13211
+ "$ref": "#/components/schemas/Card"
13212
+ }
13213
+ },
11812
13214
  "ListColumnsResponseContent": {
11813
13215
  "type": "array",
11814
13216
  "items": {
@@ -11869,6 +13271,12 @@
11869
13271
  "$ref": "#/components/schemas/User"
11870
13272
  }
11871
13273
  },
13274
+ "ListWebhookDeliveriesResponseContent": {
13275
+ "type": "array",
13276
+ "items": {
13277
+ "$ref": "#/components/schemas/WebhookDelivery"
13278
+ }
13279
+ },
11872
13280
  "ListWebhooksResponseContent": {
11873
13281
  "type": "array",
11874
13282
  "items": {
@@ -12081,6 +13489,22 @@
12081
13489
  "token"
12082
13490
  ]
12083
13491
  },
13492
+ "RequestEmailAddressChangeRequestContent": {
13493
+ "type": "object",
13494
+ "properties": {
13495
+ "email_address": {
13496
+ "type": "string",
13497
+ "format": "password",
13498
+ "x-fizzy-sensitive": {
13499
+ "category": "pii",
13500
+ "redact": true
13501
+ }
13502
+ }
13503
+ },
13504
+ "required": [
13505
+ "email_address"
13506
+ ]
13507
+ },
12084
13508
  "RichTextBody": {
12085
13509
  "type": "object",
12086
13510
  "properties": {
@@ -12136,6 +13560,15 @@
12136
13560
  "id"
12137
13561
  ]
12138
13562
  },
13563
+ "StringMap": {
13564
+ "type": "object",
13565
+ "additionalProperties": {
13566
+ "type": "string"
13567
+ },
13568
+ "propertyNames": {
13569
+ "type": "string"
13570
+ }
13571
+ },
12139
13572
  "Tag": {
12140
13573
  "type": "object",
12141
13574
  "properties": {
@@ -12315,6 +13748,17 @@
12315
13748
  }
12316
13749
  }
12317
13750
  },
13751
+ "UpdateMyTimezoneRequestContent": {
13752
+ "type": "object",
13753
+ "properties": {
13754
+ "timezone_name": {
13755
+ "type": "string"
13756
+ }
13757
+ },
13758
+ "required": [
13759
+ "timezone_name"
13760
+ ]
13761
+ },
12318
13762
  "UpdateNotificationSettingsRequestContent": {
12319
13763
  "type": "object",
12320
13764
  "properties": {
@@ -12449,6 +13893,9 @@
12449
13893
  "name": {
12450
13894
  "type": "string"
12451
13895
  },
13896
+ "payload_url": {
13897
+ "type": "string"
13898
+ },
12452
13899
  "url": {
12453
13900
  "type": "string"
12454
13901
  },
@@ -12469,6 +13916,9 @@
12469
13916
  },
12470
13917
  "updated_at": {
12471
13918
  "type": "string"
13919
+ },
13920
+ "board": {
13921
+ "$ref": "#/components/schemas/Board"
12472
13922
  }
12473
13923
  },
12474
13924
  "required": [
@@ -12476,11 +13926,123 @@
12476
13926
  "created_at",
12477
13927
  "id",
12478
13928
  "name",
13929
+ "payload_url",
12479
13930
  "signing_secret",
12480
13931
  "subscribed_actions",
12481
- "updated_at",
12482
13932
  "url"
12483
13933
  ]
13934
+ },
13935
+ "WebhookDelivery": {
13936
+ "type": "object",
13937
+ "properties": {
13938
+ "id": {
13939
+ "type": "string"
13940
+ },
13941
+ "state": {
13942
+ "type": "string"
13943
+ },
13944
+ "created_at": {
13945
+ "type": "string"
13946
+ },
13947
+ "updated_at": {
13948
+ "type": "string"
13949
+ },
13950
+ "request": {
13951
+ "$ref": "#/components/schemas/WebhookDeliveryRequest"
13952
+ },
13953
+ "response": {
13954
+ "$ref": "#/components/schemas/WebhookDeliveryResponse"
13955
+ },
13956
+ "event": {
13957
+ "$ref": "#/components/schemas/WebhookDeliveryEvent"
13958
+ }
13959
+ },
13960
+ "required": [
13961
+ "created_at",
13962
+ "id",
13963
+ "state",
13964
+ "updated_at"
13965
+ ]
13966
+ },
13967
+ "WebhookDeliveryEvent": {
13968
+ "type": "object",
13969
+ "properties": {
13970
+ "id": {
13971
+ "type": "string"
13972
+ },
13973
+ "action": {
13974
+ "type": "string"
13975
+ },
13976
+ "created_at": {
13977
+ "type": "string"
13978
+ },
13979
+ "creator": {
13980
+ "$ref": "#/components/schemas/WebhookDeliveryEventCreator"
13981
+ },
13982
+ "eventable": {
13983
+ "$ref": "#/components/schemas/WebhookDeliveryEventEventable"
13984
+ }
13985
+ },
13986
+ "required": [
13987
+ "action",
13988
+ "created_at",
13989
+ "id"
13990
+ ]
13991
+ },
13992
+ "WebhookDeliveryEventCreator": {
13993
+ "type": "object",
13994
+ "properties": {
13995
+ "id": {
13996
+ "type": "string"
13997
+ },
13998
+ "name": {
13999
+ "type": "string",
14000
+ "format": "password"
14001
+ }
14002
+ },
14003
+ "required": [
14004
+ "id",
14005
+ "name"
14006
+ ]
14007
+ },
14008
+ "WebhookDeliveryEventEventable": {
14009
+ "type": "object",
14010
+ "properties": {
14011
+ "type": {
14012
+ "type": "string"
14013
+ },
14014
+ "id": {
14015
+ "type": "string"
14016
+ },
14017
+ "url": {
14018
+ "type": "string"
14019
+ }
14020
+ },
14021
+ "required": [
14022
+ "id",
14023
+ "type",
14024
+ "url"
14025
+ ]
14026
+ },
14027
+ "WebhookDeliveryRequest": {
14028
+ "type": "object",
14029
+ "properties": {
14030
+ "headers": {
14031
+ "$ref": "#/components/schemas/StringMap"
14032
+ }
14033
+ }
14034
+ },
14035
+ "WebhookDeliveryResponse": {
14036
+ "type": "object",
14037
+ "properties": {
14038
+ "code": {
14039
+ "type": "integer",
14040
+ "format": "int32"
14041
+ },
14042
+ "error": {
14043
+ "type": "string"
14044
+ }
14045
+ }
12484
14046
  }
12485
14047
  }
12486
14048
  }