@37signals/fizzy 0.1.2 → 0.2.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 (44) 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 +88 -1
  6. package/dist/generated/openapi-stripped.json +1613 -167
  7. package/dist/generated/path-mapping.d.ts.map +1 -1
  8. package/dist/generated/path-mapping.js +8 -0
  9. package/dist/generated/path-mapping.js.map +1 -1
  10. package/dist/generated/path-mapping.ts +8 -0
  11. package/dist/generated/schema.d.ts +1395 -442
  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/notifications.js +2 -2
  23. package/dist/generated/services/notifications.js.map +1 -1
  24. package/dist/generated/services/notifications.ts +2 -2
  25. package/dist/generated/services/users.d.ts +19 -0
  26. package/dist/generated/services/users.d.ts.map +1 -1
  27. package/dist/generated/services/users.js +53 -0
  28. package/dist/generated/services/users.js.map +1 -1
  29. package/dist/generated/services/users.ts +73 -0
  30. package/dist/generated/services/webhooks.d.ts +5 -1
  31. package/dist/generated/services/webhooks.d.ts.map +1 -1
  32. package/dist/generated/services/webhooks.js +13 -0
  33. package/dist/generated/services/webhooks.js.map +1 -1
  34. package/dist/generated/services/webhooks.ts +18 -0
  35. package/package.json +3 -3
  36. package/src/generated/metadata.json +88 -1
  37. package/src/generated/openapi-stripped.json +1613 -167
  38. package/src/generated/path-mapping.ts +8 -0
  39. package/src/generated/schema.d.ts +1395 -442
  40. package/src/generated/services/boards.ts +21 -0
  41. package/src/generated/services/cards.ts +56 -8
  42. package/src/generated/services/notifications.ts +2 -2
  43. package/src/generated/services/users.ts +73 -0
  44. package/src/generated/services/webhooks.ts +18 -0
@@ -1771,6 +1771,133 @@
1771
1771
  }
1772
1772
  }
1773
1773
  },
1774
+ "/activities.json": {
1775
+ "get": {
1776
+ "operationId": "ListActivities",
1777
+ "parameters": [
1778
+ {
1779
+ "name": "creator_ids[]",
1780
+ "in": "query",
1781
+ "style": "form",
1782
+ "schema": {
1783
+ "type": "array",
1784
+ "items": {
1785
+ "type": "string"
1786
+ }
1787
+ },
1788
+ "explode": true
1789
+ },
1790
+ {
1791
+ "name": "board_ids[]",
1792
+ "in": "query",
1793
+ "style": "form",
1794
+ "schema": {
1795
+ "type": "array",
1796
+ "items": {
1797
+ "type": "string"
1798
+ }
1799
+ },
1800
+ "explode": true
1801
+ }
1802
+ ],
1803
+ "responses": {
1804
+ "200": {
1805
+ "description": "ListActivities 200 response",
1806
+ "content": {
1807
+ "application/json": {
1808
+ "schema": {
1809
+ "$ref": "#/components/schemas/ListActivitiesResponseContent"
1810
+ }
1811
+ }
1812
+ }
1813
+ },
1814
+ "400": {
1815
+ "description": "BadRequestError 400 response",
1816
+ "content": {
1817
+ "application/json": {
1818
+ "schema": {
1819
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
1820
+ }
1821
+ }
1822
+ }
1823
+ },
1824
+ "401": {
1825
+ "description": "UnauthorizedError 401 response",
1826
+ "content": {
1827
+ "application/json": {
1828
+ "schema": {
1829
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
1830
+ }
1831
+ }
1832
+ }
1833
+ },
1834
+ "403": {
1835
+ "description": "ForbiddenError 403 response",
1836
+ "content": {
1837
+ "application/json": {
1838
+ "schema": {
1839
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
1840
+ }
1841
+ }
1842
+ }
1843
+ },
1844
+ "404": {
1845
+ "description": "NotFoundError 404 response",
1846
+ "content": {
1847
+ "application/json": {
1848
+ "schema": {
1849
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
1850
+ }
1851
+ }
1852
+ }
1853
+ },
1854
+ "422": {
1855
+ "description": "ValidationError 422 response",
1856
+ "content": {
1857
+ "application/json": {
1858
+ "schema": {
1859
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
1860
+ }
1861
+ }
1862
+ }
1863
+ },
1864
+ "429": {
1865
+ "description": "RateLimitError 429 response",
1866
+ "content": {
1867
+ "application/json": {
1868
+ "schema": {
1869
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
1870
+ }
1871
+ }
1872
+ }
1873
+ },
1874
+ "500": {
1875
+ "description": "InternalServerError 500 response",
1876
+ "content": {
1877
+ "application/json": {
1878
+ "schema": {
1879
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
1880
+ }
1881
+ }
1882
+ }
1883
+ }
1884
+ },
1885
+ "x-fizzy-pagination": {
1886
+ "style": "link",
1887
+ "pageParam": "page"
1888
+ },
1889
+ "x-fizzy-retry": {
1890
+ "maxAttempts": 3,
1891
+ "baseDelayMs": 1000,
1892
+ "backoff": "exponential",
1893
+ "retryOn": [
1894
+ 429,
1895
+ 500,
1896
+ 503
1897
+ ]
1898
+ }
1899
+ }
1900
+ },
1774
1901
  "/boards.json": {
1775
1902
  "get": {
1776
1903
  "operationId": "ListBoards",
@@ -2297,6 +2424,121 @@
2297
2424
  }
2298
2425
  }
2299
2426
  },
2427
+ "/boards/{boardId}/accesses.json": {
2428
+ "get": {
2429
+ "operationId": "ListBoardAccesses",
2430
+ "parameters": [
2431
+ {
2432
+ "name": "boardId",
2433
+ "in": "path",
2434
+ "schema": {
2435
+ "type": "string"
2436
+ },
2437
+ "required": true
2438
+ },
2439
+ {
2440
+ "name": "page",
2441
+ "in": "query",
2442
+ "schema": {
2443
+ "type": "integer",
2444
+ "format": "int32"
2445
+ }
2446
+ }
2447
+ ],
2448
+ "responses": {
2449
+ "200": {
2450
+ "description": "ListBoardAccesses 200 response",
2451
+ "content": {
2452
+ "application/json": {
2453
+ "schema": {
2454
+ "$ref": "#/components/schemas/ListBoardAccessesResponseContent"
2455
+ }
2456
+ }
2457
+ }
2458
+ },
2459
+ "400": {
2460
+ "description": "BadRequestError 400 response",
2461
+ "content": {
2462
+ "application/json": {
2463
+ "schema": {
2464
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
2465
+ }
2466
+ }
2467
+ }
2468
+ },
2469
+ "401": {
2470
+ "description": "UnauthorizedError 401 response",
2471
+ "content": {
2472
+ "application/json": {
2473
+ "schema": {
2474
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
2475
+ }
2476
+ }
2477
+ }
2478
+ },
2479
+ "403": {
2480
+ "description": "ForbiddenError 403 response",
2481
+ "content": {
2482
+ "application/json": {
2483
+ "schema": {
2484
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
2485
+ }
2486
+ }
2487
+ }
2488
+ },
2489
+ "404": {
2490
+ "description": "NotFoundError 404 response",
2491
+ "content": {
2492
+ "application/json": {
2493
+ "schema": {
2494
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
2495
+ }
2496
+ }
2497
+ }
2498
+ },
2499
+ "422": {
2500
+ "description": "ValidationError 422 response",
2501
+ "content": {
2502
+ "application/json": {
2503
+ "schema": {
2504
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
2505
+ }
2506
+ }
2507
+ }
2508
+ },
2509
+ "429": {
2510
+ "description": "RateLimitError 429 response",
2511
+ "content": {
2512
+ "application/json": {
2513
+ "schema": {
2514
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
2515
+ }
2516
+ }
2517
+ }
2518
+ },
2519
+ "500": {
2520
+ "description": "InternalServerError 500 response",
2521
+ "content": {
2522
+ "application/json": {
2523
+ "schema": {
2524
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
2525
+ }
2526
+ }
2527
+ }
2528
+ }
2529
+ },
2530
+ "x-fizzy-retry": {
2531
+ "maxAttempts": 3,
2532
+ "baseDelayMs": 1000,
2533
+ "backoff": "exponential",
2534
+ "retryOn": [
2535
+ 429,
2536
+ 500,
2537
+ 503
2538
+ ]
2539
+ }
2540
+ }
2541
+ },
2300
2542
  "/boards/{boardId}/columns.json": {
2301
2543
  "get": {
2302
2544
  "operationId": "ListColumns",
@@ -3194,18 +3436,9 @@
3194
3436
  }
3195
3437
  }
3196
3438
  },
3197
- "/boards/{boardId}/entropy.json": {
3198
- "put": {
3199
- "operationId": "UpdateBoardEntropy",
3200
- "requestBody": {
3201
- "content": {
3202
- "application/json": {
3203
- "schema": {
3204
- "$ref": "#/components/schemas/UpdateBoardEntropyRequestContent"
3205
- }
3206
- }
3207
- }
3208
- },
3439
+ "/boards/{boardId}/columns/{columnId}/cards.json": {
3440
+ "get": {
3441
+ "operationId": "ListColumnCards",
3209
3442
  "parameters": [
3210
3443
  {
3211
3444
  "name": "boardId",
@@ -3214,15 +3447,23 @@
3214
3447
  "type": "string"
3215
3448
  },
3216
3449
  "required": true
3450
+ },
3451
+ {
3452
+ "name": "columnId",
3453
+ "in": "path",
3454
+ "schema": {
3455
+ "type": "string"
3456
+ },
3457
+ "required": true
3217
3458
  }
3218
3459
  ],
3219
3460
  "responses": {
3220
3461
  "200": {
3221
- "description": "UpdateBoardEntropy 200 response",
3462
+ "description": "ListColumnCards 200 response",
3222
3463
  "content": {
3223
3464
  "application/json": {
3224
3465
  "schema": {
3225
- "$ref": "#/components/schemas/UpdateBoardEntropyResponseContent"
3466
+ "$ref": "#/components/schemas/ListColumnCardsResponseContent"
3226
3467
  }
3227
3468
  }
3228
3469
  }
@@ -3298,8 +3539,9 @@
3298
3539
  }
3299
3540
  }
3300
3541
  },
3301
- "x-fizzy-idempotent": {
3302
- "natural": true
3542
+ "x-fizzy-pagination": {
3543
+ "style": "link",
3544
+ "pageParam": "page"
3303
3545
  },
3304
3546
  "x-fizzy-retry": {
3305
3547
  "maxAttempts": 3,
@@ -3313,14 +3555,133 @@
3313
3555
  }
3314
3556
  }
3315
3557
  },
3316
- "/boards/{boardId}/involvement.json": {
3317
- "patch": {
3318
- "operationId": "UpdateBoardInvolvement",
3558
+ "/boards/{boardId}/entropy.json": {
3559
+ "put": {
3560
+ "operationId": "UpdateBoardEntropy",
3319
3561
  "requestBody": {
3320
3562
  "content": {
3321
3563
  "application/json": {
3322
3564
  "schema": {
3323
- "$ref": "#/components/schemas/UpdateBoardInvolvementRequestContent"
3565
+ "$ref": "#/components/schemas/UpdateBoardEntropyRequestContent"
3566
+ }
3567
+ }
3568
+ }
3569
+ },
3570
+ "parameters": [
3571
+ {
3572
+ "name": "boardId",
3573
+ "in": "path",
3574
+ "schema": {
3575
+ "type": "string"
3576
+ },
3577
+ "required": true
3578
+ }
3579
+ ],
3580
+ "responses": {
3581
+ "200": {
3582
+ "description": "UpdateBoardEntropy 200 response",
3583
+ "content": {
3584
+ "application/json": {
3585
+ "schema": {
3586
+ "$ref": "#/components/schemas/UpdateBoardEntropyResponseContent"
3587
+ }
3588
+ }
3589
+ }
3590
+ },
3591
+ "400": {
3592
+ "description": "BadRequestError 400 response",
3593
+ "content": {
3594
+ "application/json": {
3595
+ "schema": {
3596
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
3597
+ }
3598
+ }
3599
+ }
3600
+ },
3601
+ "401": {
3602
+ "description": "UnauthorizedError 401 response",
3603
+ "content": {
3604
+ "application/json": {
3605
+ "schema": {
3606
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
3607
+ }
3608
+ }
3609
+ }
3610
+ },
3611
+ "403": {
3612
+ "description": "ForbiddenError 403 response",
3613
+ "content": {
3614
+ "application/json": {
3615
+ "schema": {
3616
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
3617
+ }
3618
+ }
3619
+ }
3620
+ },
3621
+ "404": {
3622
+ "description": "NotFoundError 404 response",
3623
+ "content": {
3624
+ "application/json": {
3625
+ "schema": {
3626
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
3627
+ }
3628
+ }
3629
+ }
3630
+ },
3631
+ "422": {
3632
+ "description": "ValidationError 422 response",
3633
+ "content": {
3634
+ "application/json": {
3635
+ "schema": {
3636
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
3637
+ }
3638
+ }
3639
+ }
3640
+ },
3641
+ "429": {
3642
+ "description": "RateLimitError 429 response",
3643
+ "content": {
3644
+ "application/json": {
3645
+ "schema": {
3646
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
3647
+ }
3648
+ }
3649
+ }
3650
+ },
3651
+ "500": {
3652
+ "description": "InternalServerError 500 response",
3653
+ "content": {
3654
+ "application/json": {
3655
+ "schema": {
3656
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
3657
+ }
3658
+ }
3659
+ }
3660
+ }
3661
+ },
3662
+ "x-fizzy-idempotent": {
3663
+ "natural": true
3664
+ },
3665
+ "x-fizzy-retry": {
3666
+ "maxAttempts": 3,
3667
+ "baseDelayMs": 1000,
3668
+ "backoff": "exponential",
3669
+ "retryOn": [
3670
+ 429,
3671
+ 500,
3672
+ 503
3673
+ ]
3674
+ }
3675
+ }
3676
+ },
3677
+ "/boards/{boardId}/involvement.json": {
3678
+ "patch": {
3679
+ "operationId": "UpdateBoardInvolvement",
3680
+ "requestBody": {
3681
+ "content": {
3682
+ "application/json": {
3683
+ "schema": {
3684
+ "$ref": "#/components/schemas/UpdateBoardInvolvementRequestContent"
3324
3685
  }
3325
3686
  }
3326
3687
  }
@@ -4304,60 +4665,34 @@
4304
4665
  }
4305
4666
  }
4306
4667
  },
4307
- "/cards.json": {
4668
+ "/boards/{boardId}/webhooks/{webhookId}/deliveries.json": {
4308
4669
  "get": {
4309
- "operationId": "ListCards",
4670
+ "operationId": "ListWebhookDeliveries",
4310
4671
  "parameters": [
4311
4672
  {
4312
- "name": "board_id",
4313
- "in": "query",
4314
- "schema": {
4315
- "type": "string"
4316
- }
4317
- },
4318
- {
4319
- "name": "column_id",
4320
- "in": "query",
4321
- "schema": {
4322
- "type": "string"
4323
- }
4324
- },
4325
- {
4326
- "name": "assignee_id",
4327
- "in": "query",
4328
- "schema": {
4329
- "type": "string"
4330
- }
4331
- },
4332
- {
4333
- "name": "tag",
4334
- "in": "query",
4335
- "schema": {
4336
- "type": "string"
4337
- }
4338
- },
4339
- {
4340
- "name": "status",
4341
- "in": "query",
4673
+ "name": "boardId",
4674
+ "in": "path",
4342
4675
  "schema": {
4343
4676
  "type": "string"
4344
- }
4677
+ },
4678
+ "required": true
4345
4679
  },
4346
4680
  {
4347
- "name": "q",
4348
- "in": "query",
4681
+ "name": "webhookId",
4682
+ "in": "path",
4349
4683
  "schema": {
4350
4684
  "type": "string"
4351
- }
4685
+ },
4686
+ "required": true
4352
4687
  }
4353
4688
  ],
4354
4689
  "responses": {
4355
4690
  "200": {
4356
- "description": "ListCards 200 response",
4691
+ "description": "ListWebhookDeliveries 200 response",
4357
4692
  "content": {
4358
4693
  "application/json": {
4359
4694
  "schema": {
4360
- "$ref": "#/components/schemas/ListCardsResponseContent"
4695
+ "$ref": "#/components/schemas/ListWebhookDeliveriesResponseContent"
4361
4696
  }
4362
4697
  }
4363
4698
  }
@@ -4447,80 +4782,314 @@
4447
4782
  503
4448
4783
  ]
4449
4784
  }
4450
- },
4451
- "post": {
4452
- "operationId": "CreateCard",
4453
- "requestBody": {
4454
- "content": {
4455
- "application/json": {
4456
- "schema": {
4457
- "$ref": "#/components/schemas/CreateCardRequestContent"
4785
+ }
4786
+ },
4787
+ "/cards.json": {
4788
+ "get": {
4789
+ "operationId": "ListCards",
4790
+ "parameters": [
4791
+ {
4792
+ "name": "board_ids[]",
4793
+ "in": "query",
4794
+ "style": "form",
4795
+ "schema": {
4796
+ "type": "array",
4797
+ "items": {
4798
+ "type": "string"
4458
4799
  }
4459
- }
4800
+ },
4801
+ "explode": true
4460
4802
  },
4461
- "required": true
4462
- },
4463
- "parameters": [],
4464
- "responses": {
4465
- "200": {
4466
- "description": "CreateCard 200 response",
4467
- "content": {
4468
- "application/json": {
4469
- "schema": {
4470
- "$ref": "#/components/schemas/CreateCardResponseContent"
4471
- }
4803
+ {
4804
+ "name": "tag_ids[]",
4805
+ "in": "query",
4806
+ "style": "form",
4807
+ "schema": {
4808
+ "type": "array",
4809
+ "items": {
4810
+ "type": "string"
4472
4811
  }
4473
- }
4812
+ },
4813
+ "explode": true
4474
4814
  },
4475
- "400": {
4476
- "description": "BadRequestError 400 response",
4477
- "content": {
4478
- "application/json": {
4479
- "schema": {
4480
- "$ref": "#/components/schemas/BadRequestErrorResponseContent"
4481
- }
4815
+ {
4816
+ "name": "assignee_ids[]",
4817
+ "in": "query",
4818
+ "style": "form",
4819
+ "schema": {
4820
+ "type": "array",
4821
+ "items": {
4822
+ "type": "string"
4482
4823
  }
4483
- }
4824
+ },
4825
+ "explode": true
4484
4826
  },
4485
- "401": {
4486
- "description": "UnauthorizedError 401 response",
4487
- "content": {
4488
- "application/json": {
4489
- "schema": {
4490
- "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
4491
- }
4827
+ {
4828
+ "name": "creator_ids[]",
4829
+ "in": "query",
4830
+ "style": "form",
4831
+ "schema": {
4832
+ "type": "array",
4833
+ "items": {
4834
+ "type": "string"
4492
4835
  }
4493
- }
4836
+ },
4837
+ "explode": true
4494
4838
  },
4495
- "403": {
4496
- "description": "ForbiddenError 403 response",
4497
- "content": {
4498
- "application/json": {
4499
- "schema": {
4500
- "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
4501
- }
4839
+ {
4840
+ "name": "closer_ids[]",
4841
+ "in": "query",
4842
+ "style": "form",
4843
+ "schema": {
4844
+ "type": "array",
4845
+ "items": {
4846
+ "type": "string"
4502
4847
  }
4503
- }
4848
+ },
4849
+ "explode": true
4504
4850
  },
4505
- "404": {
4506
- "description": "NotFoundError 404 response",
4507
- "content": {
4508
- "application/json": {
4509
- "schema": {
4510
- "$ref": "#/components/schemas/NotFoundErrorResponseContent"
4511
- }
4851
+ {
4852
+ "name": "card_ids[]",
4853
+ "in": "query",
4854
+ "style": "form",
4855
+ "schema": {
4856
+ "type": "array",
4857
+ "items": {
4858
+ "type": "string"
4512
4859
  }
4513
- }
4860
+ },
4861
+ "explode": true
4514
4862
  },
4515
- "422": {
4516
- "description": "ValidationError 422 response",
4517
- "content": {
4518
- "application/json": {
4519
- "schema": {
4520
- "$ref": "#/components/schemas/ValidationErrorResponseContent"
4521
- }
4863
+ {
4864
+ "name": "column_ids[]",
4865
+ "in": "query",
4866
+ "style": "form",
4867
+ "schema": {
4868
+ "type": "array",
4869
+ "items": {
4870
+ "type": "string"
4522
4871
  }
4523
- }
4872
+ },
4873
+ "explode": true
4874
+ },
4875
+ {
4876
+ "name": "indexed_by",
4877
+ "in": "query",
4878
+ "schema": {
4879
+ "type": "string"
4880
+ }
4881
+ },
4882
+ {
4883
+ "name": "sorted_by",
4884
+ "in": "query",
4885
+ "schema": {
4886
+ "type": "string"
4887
+ }
4888
+ },
4889
+ {
4890
+ "name": "assignment_status",
4891
+ "in": "query",
4892
+ "schema": {
4893
+ "type": "string"
4894
+ }
4895
+ },
4896
+ {
4897
+ "name": "creation",
4898
+ "in": "query",
4899
+ "schema": {
4900
+ "type": "string"
4901
+ }
4902
+ },
4903
+ {
4904
+ "name": "closure",
4905
+ "in": "query",
4906
+ "schema": {
4907
+ "type": "string"
4908
+ }
4909
+ },
4910
+ {
4911
+ "name": "terms[]",
4912
+ "in": "query",
4913
+ "style": "form",
4914
+ "schema": {
4915
+ "type": "array",
4916
+ "items": {
4917
+ "type": "string"
4918
+ }
4919
+ },
4920
+ "explode": true
4921
+ }
4922
+ ],
4923
+ "responses": {
4924
+ "200": {
4925
+ "description": "ListCards 200 response",
4926
+ "content": {
4927
+ "application/json": {
4928
+ "schema": {
4929
+ "$ref": "#/components/schemas/ListCardsResponseContent"
4930
+ }
4931
+ }
4932
+ }
4933
+ },
4934
+ "400": {
4935
+ "description": "BadRequestError 400 response",
4936
+ "content": {
4937
+ "application/json": {
4938
+ "schema": {
4939
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
4940
+ }
4941
+ }
4942
+ }
4943
+ },
4944
+ "401": {
4945
+ "description": "UnauthorizedError 401 response",
4946
+ "content": {
4947
+ "application/json": {
4948
+ "schema": {
4949
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
4950
+ }
4951
+ }
4952
+ }
4953
+ },
4954
+ "403": {
4955
+ "description": "ForbiddenError 403 response",
4956
+ "content": {
4957
+ "application/json": {
4958
+ "schema": {
4959
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
4960
+ }
4961
+ }
4962
+ }
4963
+ },
4964
+ "404": {
4965
+ "description": "NotFoundError 404 response",
4966
+ "content": {
4967
+ "application/json": {
4968
+ "schema": {
4969
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
4970
+ }
4971
+ }
4972
+ }
4973
+ },
4974
+ "422": {
4975
+ "description": "ValidationError 422 response",
4976
+ "content": {
4977
+ "application/json": {
4978
+ "schema": {
4979
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
4980
+ }
4981
+ }
4982
+ }
4983
+ },
4984
+ "429": {
4985
+ "description": "RateLimitError 429 response",
4986
+ "content": {
4987
+ "application/json": {
4988
+ "schema": {
4989
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
4990
+ }
4991
+ }
4992
+ }
4993
+ },
4994
+ "500": {
4995
+ "description": "InternalServerError 500 response",
4996
+ "content": {
4997
+ "application/json": {
4998
+ "schema": {
4999
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
5000
+ }
5001
+ }
5002
+ }
5003
+ }
5004
+ },
5005
+ "x-fizzy-pagination": {
5006
+ "style": "link",
5007
+ "pageParam": "page"
5008
+ },
5009
+ "x-fizzy-retry": {
5010
+ "maxAttempts": 3,
5011
+ "baseDelayMs": 1000,
5012
+ "backoff": "exponential",
5013
+ "retryOn": [
5014
+ 429,
5015
+ 500,
5016
+ 503
5017
+ ]
5018
+ }
5019
+ },
5020
+ "post": {
5021
+ "operationId": "CreateCard",
5022
+ "requestBody": {
5023
+ "content": {
5024
+ "application/json": {
5025
+ "schema": {
5026
+ "$ref": "#/components/schemas/CreateCardRequestContent"
5027
+ }
5028
+ }
5029
+ },
5030
+ "required": true
5031
+ },
5032
+ "parameters": [],
5033
+ "responses": {
5034
+ "200": {
5035
+ "description": "CreateCard 200 response",
5036
+ "content": {
5037
+ "application/json": {
5038
+ "schema": {
5039
+ "$ref": "#/components/schemas/CreateCardResponseContent"
5040
+ }
5041
+ }
5042
+ }
5043
+ },
5044
+ "400": {
5045
+ "description": "BadRequestError 400 response",
5046
+ "content": {
5047
+ "application/json": {
5048
+ "schema": {
5049
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
5050
+ }
5051
+ }
5052
+ }
5053
+ },
5054
+ "401": {
5055
+ "description": "UnauthorizedError 401 response",
5056
+ "content": {
5057
+ "application/json": {
5058
+ "schema": {
5059
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
5060
+ }
5061
+ }
5062
+ }
5063
+ },
5064
+ "403": {
5065
+ "description": "ForbiddenError 403 response",
5066
+ "content": {
5067
+ "application/json": {
5068
+ "schema": {
5069
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
5070
+ }
5071
+ }
5072
+ }
5073
+ },
5074
+ "404": {
5075
+ "description": "NotFoundError 404 response",
5076
+ "content": {
5077
+ "application/json": {
5078
+ "schema": {
5079
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
5080
+ }
5081
+ }
5082
+ }
5083
+ },
5084
+ "422": {
5085
+ "description": "ValidationError 422 response",
5086
+ "content": {
5087
+ "application/json": {
5088
+ "schema": {
5089
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
5090
+ }
5091
+ }
5092
+ }
4524
5093
  },
4525
5094
  "429": {
4526
5095
  "description": "RateLimitError 429 response",
@@ -10630,19 +11199,9 @@
10630
11199
  }
10631
11200
  }
10632
11201
  },
10633
- "/users/{userId}/push_subscriptions.json": {
11202
+ "/users/{userId}/data_exports.json": {
10634
11203
  "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
- },
11204
+ "operationId": "CreateUserDataExport",
10646
11205
  "parameters": [
10647
11206
  {
10648
11207
  "name": "userId",
@@ -10655,7 +11214,14 @@
10655
11214
  ],
10656
11215
  "responses": {
10657
11216
  "200": {
10658
- "description": "CreatePushSubscription 200 response"
11217
+ "description": "CreateUserDataExport 200 response",
11218
+ "content": {
11219
+ "application/json": {
11220
+ "schema": {
11221
+ "$ref": "#/components/schemas/CreateUserDataExportResponseContent"
11222
+ }
11223
+ }
11224
+ }
10659
11225
  },
10660
11226
  "400": {
10661
11227
  "description": "BadRequestError 400 response",
@@ -10733,9 +11299,9 @@
10733
11299
  }
10734
11300
  }
10735
11301
  },
10736
- "/users/{userId}/push_subscriptions/{pushSubscriptionId}": {
10737
- "delete": {
10738
- "operationId": "DeletePushSubscription",
11302
+ "/users/{userId}/data_exports/{exportId}": {
11303
+ "get": {
11304
+ "operationId": "GetUserDataExport",
10739
11305
  "parameters": [
10740
11306
  {
10741
11307
  "name": "userId",
@@ -10746,7 +11312,7 @@
10746
11312
  "required": true
10747
11313
  },
10748
11314
  {
10749
- "name": "pushSubscriptionId",
11315
+ "name": "exportId",
10750
11316
  "in": "path",
10751
11317
  "schema": {
10752
11318
  "type": "string"
@@ -10756,7 +11322,14 @@
10756
11322
  ],
10757
11323
  "responses": {
10758
11324
  "200": {
10759
- "description": "DeletePushSubscription 200 response"
11325
+ "description": "GetUserDataExport 200 response",
11326
+ "content": {
11327
+ "application/json": {
11328
+ "schema": {
11329
+ "$ref": "#/components/schemas/GetUserDataExportResponseContent"
11330
+ }
11331
+ }
11332
+ }
10760
11333
  },
10761
11334
  "400": {
10762
11335
  "description": "BadRequestError 400 response",
@@ -10829,9 +11402,6 @@
10829
11402
  }
10830
11403
  }
10831
11404
  },
10832
- "x-fizzy-idempotent": {
10833
- "natural": true
10834
- },
10835
11405
  "x-fizzy-retry": {
10836
11406
  "maxAttempts": 3,
10837
11407
  "baseDelayMs": 1000,
@@ -10844,14 +11414,14 @@
10844
11414
  }
10845
11415
  }
10846
11416
  },
10847
- "/users/{userId}/role.json": {
10848
- "patch": {
10849
- "operationId": "UpdateUserRole",
11417
+ "/users/{userId}/email_addresses.json": {
11418
+ "post": {
11419
+ "operationId": "RequestEmailAddressChange",
10850
11420
  "requestBody": {
10851
11421
  "content": {
10852
11422
  "application/json": {
10853
11423
  "schema": {
10854
- "$ref": "#/components/schemas/UpdateUserRoleRequestContent"
11424
+ "$ref": "#/components/schemas/RequestEmailAddressChangeRequestContent"
10855
11425
  }
10856
11426
  }
10857
11427
  },
@@ -10869,7 +11439,7 @@
10869
11439
  ],
10870
11440
  "responses": {
10871
11441
  "200": {
10872
- "description": "UpdateUserRole 200 response"
11442
+ "description": "RequestEmailAddressChange 200 response"
10873
11443
  },
10874
11444
  "400": {
10875
11445
  "description": "BadRequestError 400 response",
@@ -10942,14 +11512,432 @@
10942
11512
  }
10943
11513
  }
10944
11514
  },
10945
- "x-fizzy-idempotent": {
10946
- "natural": true
10947
- },
10948
11515
  "x-fizzy-retry": {
10949
- "maxAttempts": 3,
10950
- "baseDelayMs": 1000,
10951
- "backoff": "exponential",
10952
- "retryOn": [
11516
+ "maxAttempts": 1
11517
+ }
11518
+ }
11519
+ },
11520
+ "/users/{userId}/email_addresses/{emailAddressToken}/confirmation.json": {
11521
+ "post": {
11522
+ "operationId": "ConfirmEmailAddressChange",
11523
+ "parameters": [
11524
+ {
11525
+ "name": "userId",
11526
+ "in": "path",
11527
+ "schema": {
11528
+ "type": "string"
11529
+ },
11530
+ "required": true
11531
+ },
11532
+ {
11533
+ "name": "emailAddressToken",
11534
+ "in": "path",
11535
+ "schema": {
11536
+ "type": "string"
11537
+ },
11538
+ "required": true
11539
+ }
11540
+ ],
11541
+ "responses": {
11542
+ "200": {
11543
+ "description": "ConfirmEmailAddressChange 200 response"
11544
+ },
11545
+ "400": {
11546
+ "description": "BadRequestError 400 response",
11547
+ "content": {
11548
+ "application/json": {
11549
+ "schema": {
11550
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11551
+ }
11552
+ }
11553
+ }
11554
+ },
11555
+ "401": {
11556
+ "description": "UnauthorizedError 401 response",
11557
+ "content": {
11558
+ "application/json": {
11559
+ "schema": {
11560
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11561
+ }
11562
+ }
11563
+ }
11564
+ },
11565
+ "403": {
11566
+ "description": "ForbiddenError 403 response",
11567
+ "content": {
11568
+ "application/json": {
11569
+ "schema": {
11570
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11571
+ }
11572
+ }
11573
+ }
11574
+ },
11575
+ "404": {
11576
+ "description": "NotFoundError 404 response",
11577
+ "content": {
11578
+ "application/json": {
11579
+ "schema": {
11580
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11581
+ }
11582
+ }
11583
+ }
11584
+ },
11585
+ "422": {
11586
+ "description": "ValidationError 422 response",
11587
+ "content": {
11588
+ "application/json": {
11589
+ "schema": {
11590
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11591
+ }
11592
+ }
11593
+ }
11594
+ },
11595
+ "429": {
11596
+ "description": "RateLimitError 429 response",
11597
+ "content": {
11598
+ "application/json": {
11599
+ "schema": {
11600
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11601
+ }
11602
+ }
11603
+ }
11604
+ },
11605
+ "500": {
11606
+ "description": "InternalServerError 500 response",
11607
+ "content": {
11608
+ "application/json": {
11609
+ "schema": {
11610
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11611
+ }
11612
+ }
11613
+ }
11614
+ }
11615
+ },
11616
+ "x-fizzy-retry": {
11617
+ "maxAttempts": 1
11618
+ }
11619
+ }
11620
+ },
11621
+ "/users/{userId}/push_subscriptions.json": {
11622
+ "post": {
11623
+ "operationId": "CreatePushSubscription",
11624
+ "requestBody": {
11625
+ "content": {
11626
+ "application/json": {
11627
+ "schema": {
11628
+ "$ref": "#/components/schemas/CreatePushSubscriptionRequestContent"
11629
+ }
11630
+ }
11631
+ },
11632
+ "required": true
11633
+ },
11634
+ "parameters": [
11635
+ {
11636
+ "name": "userId",
11637
+ "in": "path",
11638
+ "schema": {
11639
+ "type": "string"
11640
+ },
11641
+ "required": true
11642
+ }
11643
+ ],
11644
+ "responses": {
11645
+ "200": {
11646
+ "description": "CreatePushSubscription 200 response"
11647
+ },
11648
+ "400": {
11649
+ "description": "BadRequestError 400 response",
11650
+ "content": {
11651
+ "application/json": {
11652
+ "schema": {
11653
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11654
+ }
11655
+ }
11656
+ }
11657
+ },
11658
+ "401": {
11659
+ "description": "UnauthorizedError 401 response",
11660
+ "content": {
11661
+ "application/json": {
11662
+ "schema": {
11663
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11664
+ }
11665
+ }
11666
+ }
11667
+ },
11668
+ "403": {
11669
+ "description": "ForbiddenError 403 response",
11670
+ "content": {
11671
+ "application/json": {
11672
+ "schema": {
11673
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11674
+ }
11675
+ }
11676
+ }
11677
+ },
11678
+ "404": {
11679
+ "description": "NotFoundError 404 response",
11680
+ "content": {
11681
+ "application/json": {
11682
+ "schema": {
11683
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11684
+ }
11685
+ }
11686
+ }
11687
+ },
11688
+ "422": {
11689
+ "description": "ValidationError 422 response",
11690
+ "content": {
11691
+ "application/json": {
11692
+ "schema": {
11693
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11694
+ }
11695
+ }
11696
+ }
11697
+ },
11698
+ "429": {
11699
+ "description": "RateLimitError 429 response",
11700
+ "content": {
11701
+ "application/json": {
11702
+ "schema": {
11703
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11704
+ }
11705
+ }
11706
+ }
11707
+ },
11708
+ "500": {
11709
+ "description": "InternalServerError 500 response",
11710
+ "content": {
11711
+ "application/json": {
11712
+ "schema": {
11713
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11714
+ }
11715
+ }
11716
+ }
11717
+ }
11718
+ },
11719
+ "x-fizzy-retry": {
11720
+ "maxAttempts": 1
11721
+ }
11722
+ }
11723
+ },
11724
+ "/users/{userId}/push_subscriptions/{pushSubscriptionId}": {
11725
+ "delete": {
11726
+ "operationId": "DeletePushSubscription",
11727
+ "parameters": [
11728
+ {
11729
+ "name": "userId",
11730
+ "in": "path",
11731
+ "schema": {
11732
+ "type": "string"
11733
+ },
11734
+ "required": true
11735
+ },
11736
+ {
11737
+ "name": "pushSubscriptionId",
11738
+ "in": "path",
11739
+ "schema": {
11740
+ "type": "string"
11741
+ },
11742
+ "required": true
11743
+ }
11744
+ ],
11745
+ "responses": {
11746
+ "200": {
11747
+ "description": "DeletePushSubscription 200 response"
11748
+ },
11749
+ "400": {
11750
+ "description": "BadRequestError 400 response",
11751
+ "content": {
11752
+ "application/json": {
11753
+ "schema": {
11754
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11755
+ }
11756
+ }
11757
+ }
11758
+ },
11759
+ "401": {
11760
+ "description": "UnauthorizedError 401 response",
11761
+ "content": {
11762
+ "application/json": {
11763
+ "schema": {
11764
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11765
+ }
11766
+ }
11767
+ }
11768
+ },
11769
+ "403": {
11770
+ "description": "ForbiddenError 403 response",
11771
+ "content": {
11772
+ "application/json": {
11773
+ "schema": {
11774
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11775
+ }
11776
+ }
11777
+ }
11778
+ },
11779
+ "404": {
11780
+ "description": "NotFoundError 404 response",
11781
+ "content": {
11782
+ "application/json": {
11783
+ "schema": {
11784
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11785
+ }
11786
+ }
11787
+ }
11788
+ },
11789
+ "422": {
11790
+ "description": "ValidationError 422 response",
11791
+ "content": {
11792
+ "application/json": {
11793
+ "schema": {
11794
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11795
+ }
11796
+ }
11797
+ }
11798
+ },
11799
+ "429": {
11800
+ "description": "RateLimitError 429 response",
11801
+ "content": {
11802
+ "application/json": {
11803
+ "schema": {
11804
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11805
+ }
11806
+ }
11807
+ }
11808
+ },
11809
+ "500": {
11810
+ "description": "InternalServerError 500 response",
11811
+ "content": {
11812
+ "application/json": {
11813
+ "schema": {
11814
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11815
+ }
11816
+ }
11817
+ }
11818
+ }
11819
+ },
11820
+ "x-fizzy-idempotent": {
11821
+ "natural": true
11822
+ },
11823
+ "x-fizzy-retry": {
11824
+ "maxAttempts": 3,
11825
+ "baseDelayMs": 1000,
11826
+ "backoff": "exponential",
11827
+ "retryOn": [
11828
+ 429,
11829
+ 500,
11830
+ 503
11831
+ ]
11832
+ }
11833
+ }
11834
+ },
11835
+ "/users/{userId}/role.json": {
11836
+ "patch": {
11837
+ "operationId": "UpdateUserRole",
11838
+ "requestBody": {
11839
+ "content": {
11840
+ "application/json": {
11841
+ "schema": {
11842
+ "$ref": "#/components/schemas/UpdateUserRoleRequestContent"
11843
+ }
11844
+ }
11845
+ },
11846
+ "required": true
11847
+ },
11848
+ "parameters": [
11849
+ {
11850
+ "name": "userId",
11851
+ "in": "path",
11852
+ "schema": {
11853
+ "type": "string"
11854
+ },
11855
+ "required": true
11856
+ }
11857
+ ],
11858
+ "responses": {
11859
+ "200": {
11860
+ "description": "UpdateUserRole 200 response"
11861
+ },
11862
+ "400": {
11863
+ "description": "BadRequestError 400 response",
11864
+ "content": {
11865
+ "application/json": {
11866
+ "schema": {
11867
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
11868
+ }
11869
+ }
11870
+ }
11871
+ },
11872
+ "401": {
11873
+ "description": "UnauthorizedError 401 response",
11874
+ "content": {
11875
+ "application/json": {
11876
+ "schema": {
11877
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
11878
+ }
11879
+ }
11880
+ }
11881
+ },
11882
+ "403": {
11883
+ "description": "ForbiddenError 403 response",
11884
+ "content": {
11885
+ "application/json": {
11886
+ "schema": {
11887
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
11888
+ }
11889
+ }
11890
+ }
11891
+ },
11892
+ "404": {
11893
+ "description": "NotFoundError 404 response",
11894
+ "content": {
11895
+ "application/json": {
11896
+ "schema": {
11897
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
11898
+ }
11899
+ }
11900
+ }
11901
+ },
11902
+ "422": {
11903
+ "description": "ValidationError 422 response",
11904
+ "content": {
11905
+ "application/json": {
11906
+ "schema": {
11907
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
11908
+ }
11909
+ }
11910
+ }
11911
+ },
11912
+ "429": {
11913
+ "description": "RateLimitError 429 response",
11914
+ "content": {
11915
+ "application/json": {
11916
+ "schema": {
11917
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
11918
+ }
11919
+ }
11920
+ }
11921
+ },
11922
+ "500": {
11923
+ "description": "InternalServerError 500 response",
11924
+ "content": {
11925
+ "application/json": {
11926
+ "schema": {
11927
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
11928
+ }
11929
+ }
11930
+ }
11931
+ }
11932
+ },
11933
+ "x-fizzy-idempotent": {
11934
+ "natural": true
11935
+ },
11936
+ "x-fizzy-retry": {
11937
+ "maxAttempts": 3,
11938
+ "baseDelayMs": 1000,
11939
+ "backoff": "exponential",
11940
+ "retryOn": [
10953
11941
  429,
10954
11942
  500,
10955
11943
  503
@@ -11051,20 +12039,190 @@
11051
12039
  "type": "integer",
11052
12040
  "format": "int32"
11053
12041
  },
11054
- "created_at": {
12042
+ "created_at": {
12043
+ "type": "string"
12044
+ },
12045
+ "auto_postpone_period_in_days": {
12046
+ "type": "integer",
12047
+ "format": "int32"
12048
+ }
12049
+ },
12050
+ "required": [
12051
+ "cards_count",
12052
+ "created_at",
12053
+ "id",
12054
+ "name"
12055
+ ]
12056
+ },
12057
+ "Activity": {
12058
+ "type": "object",
12059
+ "properties": {
12060
+ "id": {
12061
+ "type": "string"
12062
+ },
12063
+ "action": {
12064
+ "type": "string"
12065
+ },
12066
+ "created_at": {
12067
+ "type": "string"
12068
+ },
12069
+ "description": {
12070
+ "type": "string"
12071
+ },
12072
+ "particulars": {
12073
+ "$ref": "#/components/schemas/ActivityParticulars"
12074
+ },
12075
+ "url": {
12076
+ "type": "string"
12077
+ },
12078
+ "eventable_type": {
12079
+ "type": "string"
12080
+ },
12081
+ "eventable": {
12082
+ "$ref": "#/components/schemas/ActivityEventable"
12083
+ },
12084
+ "board": {
12085
+ "$ref": "#/components/schemas/Board"
12086
+ },
12087
+ "creator": {
12088
+ "$ref": "#/components/schemas/User"
12089
+ }
12090
+ },
12091
+ "required": [
12092
+ "action",
12093
+ "board",
12094
+ "created_at",
12095
+ "creator",
12096
+ "description",
12097
+ "eventable",
12098
+ "eventable_type",
12099
+ "id",
12100
+ "particulars",
12101
+ "url"
12102
+ ]
12103
+ },
12104
+ "ActivityEventable": {
12105
+ "type": "object",
12106
+ "properties": {
12107
+ "id": {
12108
+ "type": "string"
12109
+ },
12110
+ "number": {
12111
+ "type": "integer",
12112
+ "format": "int32"
12113
+ },
12114
+ "title": {
12115
+ "type": "string"
12116
+ },
12117
+ "status": {
12118
+ "type": "string"
12119
+ },
12120
+ "description": {
12121
+ "type": "string"
12122
+ },
12123
+ "description_html": {
12124
+ "type": "string"
12125
+ },
12126
+ "image_url": {
12127
+ "type": "string"
12128
+ },
12129
+ "has_attachments": {
12130
+ "type": "boolean"
12131
+ },
12132
+ "tags": {
12133
+ "type": "array",
12134
+ "items": {
12135
+ "type": "string"
12136
+ }
12137
+ },
12138
+ "closed": {
12139
+ "type": "boolean"
12140
+ },
12141
+ "postponed": {
12142
+ "type": "boolean"
12143
+ },
12144
+ "golden": {
12145
+ "type": "boolean"
12146
+ },
12147
+ "last_active_at": {
12148
+ "type": "string"
12149
+ },
12150
+ "created_at": {
12151
+ "type": "string"
12152
+ },
12153
+ "updated_at": {
12154
+ "type": "string"
12155
+ },
12156
+ "body": {
12157
+ "$ref": "#/components/schemas/RichTextBody"
12158
+ },
12159
+ "creator": {
12160
+ "$ref": "#/components/schemas/User"
12161
+ },
12162
+ "card": {
12163
+ "$ref": "#/components/schemas/CardRef"
12164
+ },
12165
+ "board": {
12166
+ "$ref": "#/components/schemas/Board"
12167
+ },
12168
+ "column": {
12169
+ "$ref": "#/components/schemas/Column"
12170
+ },
12171
+ "assignees": {
12172
+ "type": "array",
12173
+ "items": {
12174
+ "$ref": "#/components/schemas/User"
12175
+ }
12176
+ },
12177
+ "has_more_assignees": {
12178
+ "type": "boolean"
12179
+ },
12180
+ "comments_url": {
12181
+ "type": "string"
12182
+ },
12183
+ "reactions_url": {
12184
+ "type": "string"
12185
+ },
12186
+ "steps": {
12187
+ "type": "array",
12188
+ "items": {
12189
+ "$ref": "#/components/schemas/Step"
12190
+ }
12191
+ },
12192
+ "url": {
12193
+ "type": "string"
12194
+ }
12195
+ },
12196
+ "required": [
12197
+ "id",
12198
+ "url"
12199
+ ]
12200
+ },
12201
+ "ActivityParticulars": {
12202
+ "type": "object",
12203
+ "properties": {
12204
+ "assignee_ids": {
12205
+ "type": "array",
12206
+ "items": {
12207
+ "type": "string"
12208
+ }
12209
+ },
12210
+ "old_board": {
12211
+ "type": "string"
12212
+ },
12213
+ "new_board": {
12214
+ "type": "string"
12215
+ },
12216
+ "old_title": {
11055
12217
  "type": "string"
11056
12218
  },
11057
- "auto_postpone_period_in_days": {
11058
- "type": "integer",
11059
- "format": "int32"
12219
+ "new_title": {
12220
+ "type": "string"
12221
+ },
12222
+ "column": {
12223
+ "type": "string"
11060
12224
  }
11061
- },
11062
- "required": [
11063
- "cards_count",
11064
- "created_at",
11065
- "id",
11066
- "name"
11067
- ]
12225
+ }
11068
12226
  },
11069
12227
  "AssignCardRequestContent": {
11070
12228
  "type": "object",
@@ -11107,6 +12265,21 @@
11107
12265
  "type": "integer",
11108
12266
  "format": "int32"
11109
12267
  },
12268
+ "public_description": {
12269
+ "type": "string"
12270
+ },
12271
+ "public_description_html": {
12272
+ "type": "string"
12273
+ },
12274
+ "public_url": {
12275
+ "type": "string"
12276
+ },
12277
+ "user_ids": {
12278
+ "type": "array",
12279
+ "items": {
12280
+ "type": "string"
12281
+ }
12282
+ },
11110
12283
  "url": {
11111
12284
  "type": "string"
11112
12285
  },
@@ -11122,6 +12295,79 @@
11122
12295
  "url"
11123
12296
  ]
11124
12297
  },
12298
+ "BoardAccessUser": {
12299
+ "type": "object",
12300
+ "properties": {
12301
+ "id": {
12302
+ "type": "string"
12303
+ },
12304
+ "name": {
12305
+ "type": "string",
12306
+ "format": "password"
12307
+ },
12308
+ "role": {
12309
+ "type": "string"
12310
+ },
12311
+ "active": {
12312
+ "type": "boolean"
12313
+ },
12314
+ "email_address": {
12315
+ "type": "string",
12316
+ "format": "password",
12317
+ "x-fizzy-sensitive": {
12318
+ "category": "pii",
12319
+ "redact": true
12320
+ }
12321
+ },
12322
+ "created_at": {
12323
+ "type": "string"
12324
+ },
12325
+ "url": {
12326
+ "type": "string"
12327
+ },
12328
+ "avatar_url": {
12329
+ "type": "string"
12330
+ },
12331
+ "has_access": {
12332
+ "type": "boolean"
12333
+ },
12334
+ "involvement": {
12335
+ "type": "string"
12336
+ }
12337
+ },
12338
+ "required": [
12339
+ "active",
12340
+ "created_at",
12341
+ "email_address",
12342
+ "has_access",
12343
+ "id",
12344
+ "name",
12345
+ "role",
12346
+ "url"
12347
+ ]
12348
+ },
12349
+ "BoardAccesses": {
12350
+ "type": "object",
12351
+ "properties": {
12352
+ "board_id": {
12353
+ "type": "string"
12354
+ },
12355
+ "all_access": {
12356
+ "type": "boolean"
12357
+ },
12358
+ "users": {
12359
+ "type": "array",
12360
+ "items": {
12361
+ "$ref": "#/components/schemas/BoardAccessUser"
12362
+ }
12363
+ }
12364
+ },
12365
+ "required": [
12366
+ "all_access",
12367
+ "board_id",
12368
+ "users"
12369
+ ]
12370
+ },
11125
12371
  "BulkReadNotificationsRequestContent": {
11126
12372
  "type": "object",
11127
12373
  "properties": {
@@ -11273,6 +12519,9 @@
11273
12519
  },
11274
12520
  "created_at": {
11275
12521
  "type": "string"
12522
+ },
12523
+ "cards_url": {
12524
+ "type": "string"
11276
12525
  }
11277
12526
  },
11278
12527
  "required": [
@@ -11575,6 +12824,9 @@
11575
12824
  "CreateStepResponseContent": {
11576
12825
  "$ref": "#/components/schemas/Step"
11577
12826
  },
12827
+ "CreateUserDataExportResponseContent": {
12828
+ "$ref": "#/components/schemas/DataExport"
12829
+ },
11578
12830
  "CreateWebhookRequestContent": {
11579
12831
  "type": "object",
11580
12832
  "properties": {
@@ -11599,6 +12851,28 @@
11599
12851
  "CreateWebhookResponseContent": {
11600
12852
  "$ref": "#/components/schemas/Webhook"
11601
12853
  },
12854
+ "DataExport": {
12855
+ "type": "object",
12856
+ "properties": {
12857
+ "id": {
12858
+ "type": "string"
12859
+ },
12860
+ "status": {
12861
+ "type": "string"
12862
+ },
12863
+ "created_at": {
12864
+ "type": "string"
12865
+ },
12866
+ "download_url": {
12867
+ "type": "string"
12868
+ }
12869
+ },
12870
+ "required": [
12871
+ "created_at",
12872
+ "id",
12873
+ "status"
12874
+ ]
12875
+ },
11602
12876
  "DirectUpload": {
11603
12877
  "type": "object",
11604
12878
  "properties": {
@@ -11711,6 +12985,9 @@
11711
12985
  "GetStepResponseContent": {
11712
12986
  "$ref": "#/components/schemas/Step"
11713
12987
  },
12988
+ "GetUserDataExportResponseContent": {
12989
+ "$ref": "#/components/schemas/DataExport"
12990
+ },
11714
12991
  "GetUserResponseContent": {
11715
12992
  "$ref": "#/components/schemas/User"
11716
12993
  },
@@ -11744,9 +13021,7 @@
11744
13021
  },
11745
13022
  "required": [
11746
13023
  "accounts",
11747
- "email_address",
11748
- "id",
11749
- "name"
13024
+ "id"
11750
13025
  ]
11751
13026
  },
11752
13027
  "InternalServerErrorResponseContent": {
@@ -11769,9 +13044,16 @@
11769
13044
  "url": {
11770
13045
  "type": "string"
11771
13046
  },
13047
+ "usage_count": {
13048
+ "type": "integer",
13049
+ "format": "int32"
13050
+ },
11772
13051
  "usage_limit": {
11773
13052
  "type": "integer",
11774
13053
  "format": "int32"
13054
+ },
13055
+ "active": {
13056
+ "type": "boolean"
11775
13057
  }
11776
13058
  },
11777
13059
  "required": [
@@ -11785,6 +13067,15 @@
11785
13067
  "$ref": "#/components/schemas/AccessToken"
11786
13068
  }
11787
13069
  },
13070
+ "ListActivitiesResponseContent": {
13071
+ "type": "array",
13072
+ "items": {
13073
+ "$ref": "#/components/schemas/Activity"
13074
+ }
13075
+ },
13076
+ "ListBoardAccessesResponseContent": {
13077
+ "$ref": "#/components/schemas/BoardAccesses"
13078
+ },
11788
13079
  "ListBoardsResponseContent": {
11789
13080
  "type": "array",
11790
13081
  "items": {
@@ -11809,6 +13100,12 @@
11809
13100
  "$ref": "#/components/schemas/Card"
11810
13101
  }
11811
13102
  },
13103
+ "ListColumnCardsResponseContent": {
13104
+ "type": "array",
13105
+ "items": {
13106
+ "$ref": "#/components/schemas/Card"
13107
+ }
13108
+ },
11812
13109
  "ListColumnsResponseContent": {
11813
13110
  "type": "array",
11814
13111
  "items": {
@@ -11869,6 +13166,12 @@
11869
13166
  "$ref": "#/components/schemas/User"
11870
13167
  }
11871
13168
  },
13169
+ "ListWebhookDeliveriesResponseContent": {
13170
+ "type": "array",
13171
+ "items": {
13172
+ "$ref": "#/components/schemas/WebhookDelivery"
13173
+ }
13174
+ },
11872
13175
  "ListWebhooksResponseContent": {
11873
13176
  "type": "array",
11874
13177
  "items": {
@@ -12081,6 +13384,22 @@
12081
13384
  "token"
12082
13385
  ]
12083
13386
  },
13387
+ "RequestEmailAddressChangeRequestContent": {
13388
+ "type": "object",
13389
+ "properties": {
13390
+ "email_address": {
13391
+ "type": "string",
13392
+ "format": "password",
13393
+ "x-fizzy-sensitive": {
13394
+ "category": "pii",
13395
+ "redact": true
13396
+ }
13397
+ }
13398
+ },
13399
+ "required": [
13400
+ "email_address"
13401
+ ]
13402
+ },
12084
13403
  "RichTextBody": {
12085
13404
  "type": "object",
12086
13405
  "properties": {
@@ -12136,6 +13455,15 @@
12136
13455
  "id"
12137
13456
  ]
12138
13457
  },
13458
+ "StringMap": {
13459
+ "type": "object",
13460
+ "additionalProperties": {
13461
+ "type": "string"
13462
+ },
13463
+ "propertyNames": {
13464
+ "type": "string"
13465
+ }
13466
+ },
12139
13467
  "Tag": {
12140
13468
  "type": "object",
12141
13469
  "properties": {
@@ -12449,6 +13777,9 @@
12449
13777
  "name": {
12450
13778
  "type": "string"
12451
13779
  },
13780
+ "payload_url": {
13781
+ "type": "string"
13782
+ },
12452
13783
  "url": {
12453
13784
  "type": "string"
12454
13785
  },
@@ -12469,6 +13800,9 @@
12469
13800
  },
12470
13801
  "updated_at": {
12471
13802
  "type": "string"
13803
+ },
13804
+ "board": {
13805
+ "$ref": "#/components/schemas/Board"
12472
13806
  }
12473
13807
  },
12474
13808
  "required": [
@@ -12476,11 +13810,123 @@
12476
13810
  "created_at",
12477
13811
  "id",
12478
13812
  "name",
13813
+ "payload_url",
12479
13814
  "signing_secret",
12480
13815
  "subscribed_actions",
12481
- "updated_at",
12482
13816
  "url"
12483
13817
  ]
13818
+ },
13819
+ "WebhookDelivery": {
13820
+ "type": "object",
13821
+ "properties": {
13822
+ "id": {
13823
+ "type": "string"
13824
+ },
13825
+ "state": {
13826
+ "type": "string"
13827
+ },
13828
+ "created_at": {
13829
+ "type": "string"
13830
+ },
13831
+ "updated_at": {
13832
+ "type": "string"
13833
+ },
13834
+ "request": {
13835
+ "$ref": "#/components/schemas/WebhookDeliveryRequest"
13836
+ },
13837
+ "response": {
13838
+ "$ref": "#/components/schemas/WebhookDeliveryResponse"
13839
+ },
13840
+ "event": {
13841
+ "$ref": "#/components/schemas/WebhookDeliveryEvent"
13842
+ }
13843
+ },
13844
+ "required": [
13845
+ "created_at",
13846
+ "id",
13847
+ "state",
13848
+ "updated_at"
13849
+ ]
13850
+ },
13851
+ "WebhookDeliveryEvent": {
13852
+ "type": "object",
13853
+ "properties": {
13854
+ "id": {
13855
+ "type": "string"
13856
+ },
13857
+ "action": {
13858
+ "type": "string"
13859
+ },
13860
+ "created_at": {
13861
+ "type": "string"
13862
+ },
13863
+ "creator": {
13864
+ "$ref": "#/components/schemas/WebhookDeliveryEventCreator"
13865
+ },
13866
+ "eventable": {
13867
+ "$ref": "#/components/schemas/WebhookDeliveryEventEventable"
13868
+ }
13869
+ },
13870
+ "required": [
13871
+ "action",
13872
+ "created_at",
13873
+ "id"
13874
+ ]
13875
+ },
13876
+ "WebhookDeliveryEventCreator": {
13877
+ "type": "object",
13878
+ "properties": {
13879
+ "id": {
13880
+ "type": "string"
13881
+ },
13882
+ "name": {
13883
+ "type": "string",
13884
+ "format": "password"
13885
+ }
13886
+ },
13887
+ "required": [
13888
+ "id",
13889
+ "name"
13890
+ ]
13891
+ },
13892
+ "WebhookDeliveryEventEventable": {
13893
+ "type": "object",
13894
+ "properties": {
13895
+ "type": {
13896
+ "type": "string"
13897
+ },
13898
+ "id": {
13899
+ "type": "string"
13900
+ },
13901
+ "url": {
13902
+ "type": "string"
13903
+ }
13904
+ },
13905
+ "required": [
13906
+ "id",
13907
+ "type",
13908
+ "url"
13909
+ ]
13910
+ },
13911
+ "WebhookDeliveryRequest": {
13912
+ "type": "object",
13913
+ "properties": {
13914
+ "headers": {
13915
+ "$ref": "#/components/schemas/StringMap"
13916
+ }
13917
+ }
13918
+ },
13919
+ "WebhookDeliveryResponse": {
13920
+ "type": "object",
13921
+ "properties": {
13922
+ "code": {
13923
+ "type": "integer",
13924
+ "format": "int32"
13925
+ },
13926
+ "error": {
13927
+ "type": "string"
13928
+ }
13929
+ }
12484
13930
  }
12485
13931
  }
12486
13932
  }