api.fluff4.me 1.0.341 → 1.0.345

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 (3) hide show
  1. package/index.d.ts +108 -15
  2. package/openapi.json +931 -210
  3. package/package.json +1 -1
package/openapi.json CHANGED
@@ -1655,39 +1655,83 @@
1655
1655
  "vanity"
1656
1656
  ]
1657
1657
  },
1658
- "FollowsMerged": {
1658
+ "FollowsManifest": {
1659
1659
  "type": "object",
1660
1660
  "properties": {
1661
- "author": {
1662
- "type": "array",
1663
- "items": {
1664
- "$ref": "#/components/schema/Follow"
1665
- }
1666
- },
1667
- "work": {
1668
- "type": "array",
1669
- "items": {
1670
- "$ref": "#/components/schema/Follow"
1671
- }
1672
- },
1673
- "tag": {
1674
- "type": "array",
1675
- "items": {
1676
- "$ref": "#/components/schema/Follow"
1677
- }
1661
+ "following": {
1662
+ "type": "object",
1663
+ "properties": {
1664
+ "author": {
1665
+ "type": "array",
1666
+ "items": {
1667
+ "$ref": "#/components/schema/Follow"
1668
+ }
1669
+ },
1670
+ "work": {
1671
+ "type": "array",
1672
+ "items": {
1673
+ "$ref": "#/components/schema/Follow"
1674
+ }
1675
+ },
1676
+ "tag": {
1677
+ "type": "array",
1678
+ "items": {
1679
+ "$ref": "#/components/schema/Follow"
1680
+ }
1681
+ },
1682
+ "category": {
1683
+ "type": "array",
1684
+ "items": {
1685
+ "$ref": "#/components/schema/Follow"
1686
+ }
1687
+ }
1688
+ },
1689
+ "required": [
1690
+ "author",
1691
+ "work",
1692
+ "tag",
1693
+ "category"
1694
+ ]
1678
1695
  },
1679
- "category": {
1680
- "type": "array",
1681
- "items": {
1682
- "$ref": "#/components/schema/Follow"
1683
- }
1696
+ "ignoring": {
1697
+ "type": "object",
1698
+ "properties": {
1699
+ "author": {
1700
+ "type": "array",
1701
+ "items": {
1702
+ "$ref": "#/components/schema/Follow"
1703
+ }
1704
+ },
1705
+ "work": {
1706
+ "type": "array",
1707
+ "items": {
1708
+ "$ref": "#/components/schema/Follow"
1709
+ }
1710
+ },
1711
+ "tag": {
1712
+ "type": "array",
1713
+ "items": {
1714
+ "$ref": "#/components/schema/Follow"
1715
+ }
1716
+ },
1717
+ "category": {
1718
+ "type": "array",
1719
+ "items": {
1720
+ "$ref": "#/components/schema/Follow"
1721
+ }
1722
+ }
1723
+ },
1724
+ "required": [
1725
+ "author",
1726
+ "work",
1727
+ "tag",
1728
+ "category"
1729
+ ]
1684
1730
  }
1685
1731
  },
1686
1732
  "required": [
1687
- "author",
1688
- "work",
1689
- "tag",
1690
- "category"
1733
+ "following",
1734
+ "ignoring"
1691
1735
  ]
1692
1736
  },
1693
1737
  "Privileges": {
@@ -3964,12 +4008,8 @@
3964
4008
  }
3965
4009
  }
3966
4010
  },
3967
- "/follow/{type}/{vanity}": {
4011
+ "/follow/author/{vanity}": {
3968
4012
  "parameters": [
3969
- {
3970
- "name": "type",
3971
- "in": "path"
3972
- },
3973
4013
  {
3974
4014
  "name": "vanity",
3975
4015
  "in": "path"
@@ -4008,12 +4048,8 @@
4008
4048
  }
4009
4049
  }
4010
4050
  },
4011
- "/follow/work/{author}/{vanity}": {
4051
+ "/follow/work/{vanity}": {
4012
4052
  "parameters": [
4013
- {
4014
- "name": "author",
4015
- "in": "path"
4016
- },
4017
4053
  {
4018
4054
  "name": "vanity",
4019
4055
  "in": "path"
@@ -4052,10 +4088,10 @@
4052
4088
  }
4053
4089
  }
4054
4090
  },
4055
- "/unfollow/{type}/{vanity}": {
4091
+ "/follow/work/{author}/{vanity}": {
4056
4092
  "parameters": [
4057
4093
  {
4058
- "name": "type",
4094
+ "name": "author",
4059
4095
  "in": "path"
4060
4096
  },
4061
4097
  {
@@ -4096,12 +4132,8 @@
4096
4132
  }
4097
4133
  }
4098
4134
  },
4099
- "/unfollow/work/{author}/{vanity}": {
4135
+ "/follow/tag/{vanity}": {
4100
4136
  "parameters": [
4101
- {
4102
- "name": "author",
4103
- "in": "path"
4104
- },
4105
4137
  {
4106
4138
  "name": "vanity",
4107
4139
  "in": "path"
@@ -4140,139 +4172,14 @@
4140
4172
  }
4141
4173
  }
4142
4174
  },
4143
- "/following": {
4144
- "get": {
4145
- "responses": {
4146
- "200": {
4147
- "description": "200 response",
4148
- "content": {
4149
- "application/json": {
4150
- "schema": {
4151
- "type": "object",
4152
- "properties": {
4153
- "data": {
4154
- "$ref": "#/components/schemas/FollowsMerged"
4155
- }
4156
- },
4157
- "required": [
4158
- "data"
4159
- ]
4160
- }
4161
- }
4162
- }
4163
- },
4164
- "304": {
4165
- "description": "304 response"
4166
- },
4167
- "default": {
4168
- "description": "Error",
4169
- "content": {
4170
- "application/json": {
4171
- "schema": {
4172
- "$ref": "#/components/schemas/ErrorResponse"
4173
- }
4174
- }
4175
- }
4176
- }
4177
- }
4178
- }
4179
- },
4180
- "/following/{type}": {
4181
- "parameters": [
4182
- {
4183
- "name": "type",
4184
- "in": "path"
4185
- },
4186
- {
4187
- "name": "page",
4188
- "in": "query",
4189
- "description": "The page of data to query from. This endpoint uses a page size of 25 by default."
4190
- },
4191
- {
4192
- "name": "page_size",
4193
- "in": "query",
4194
- "description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
4195
- }
4196
- ],
4197
- "get": {
4198
- "responses": {
4199
- "200": {
4200
- "description": "200 response",
4201
- "content": {
4202
- "application/json": {
4203
- "schema": {
4204
- "type": "object",
4205
- "properties": {
4206
- "data": {
4207
- "type": "array",
4208
- "items": {
4209
- "$ref": "#/components/schema/Follow"
4210
- }
4211
- },
4212
- "has_more": {
4213
- "type": "boolean"
4214
- },
4215
- "page": {
4216
- "type": "number",
4217
- "minimum": 0
4218
- },
4219
- "page_count": {
4220
- "type": [
4221
- "boolean",
4222
- "number"
4223
- ],
4224
- "anyOf": [
4225
- {
4226
- "type": "boolean",
4227
- "enum": [
4228
- true
4229
- ]
4230
- },
4231
- {
4232
- "type": "number",
4233
- "minimum": 0
4234
- }
4235
- ]
4236
- }
4237
- },
4238
- "required": [
4239
- "data",
4240
- "has_more",
4241
- "page",
4242
- "page_count"
4243
- ]
4244
- }
4245
- }
4246
- }
4247
- },
4248
- "304": {
4249
- "description": "304 response"
4250
- },
4251
- "default": {
4252
- "description": "Error",
4253
- "content": {
4254
- "application/json": {
4255
- "schema": {
4256
- "$ref": "#/components/schemas/ErrorResponse"
4257
- }
4258
- }
4259
- }
4260
- }
4261
- }
4262
- }
4263
- },
4264
- "/follows/{type}/{vanity}": {
4175
+ "/follow/category/{vanity}": {
4265
4176
  "parameters": [
4266
- {
4267
- "name": "type",
4268
- "in": "path"
4269
- },
4270
4177
  {
4271
4178
  "name": "vanity",
4272
4179
  "in": "path"
4273
4180
  }
4274
4181
  ],
4275
- "get": {
4182
+ "post": {
4276
4183
  "responses": {
4277
4184
  "200": {
4278
4185
  "description": "200 response",
@@ -4292,9 +4199,6 @@
4292
4199
  }
4293
4200
  }
4294
4201
  },
4295
- "304": {
4296
- "description": "304 response"
4297
- },
4298
4202
  "default": {
4299
4203
  "description": "Error",
4300
4204
  "content": {
@@ -4308,18 +4212,14 @@
4308
4212
  }
4309
4213
  }
4310
4214
  },
4311
- "/follows/work/{author}/{vanity}": {
4215
+ "/unfollow/author/{vanity}": {
4312
4216
  "parameters": [
4313
- {
4314
- "name": "author",
4315
- "in": "path"
4316
- },
4317
4217
  {
4318
4218
  "name": "vanity",
4319
4219
  "in": "path"
4320
4220
  }
4321
4221
  ],
4322
- "get": {
4222
+ "post": {
4323
4223
  "responses": {
4324
4224
  "200": {
4325
4225
  "description": "200 response",
@@ -4339,9 +4239,6 @@
4339
4239
  }
4340
4240
  }
4341
4241
  },
4342
- "304": {
4343
- "description": "304 response"
4344
- },
4345
4242
  "default": {
4346
4243
  "description": "Error",
4347
4244
  "content": {
@@ -4355,12 +4252,8 @@
4355
4252
  }
4356
4253
  }
4357
4254
  },
4358
- "/ignore/{type}/{vanity}": {
4255
+ "/unfollow/work/{vanity}": {
4359
4256
  "parameters": [
4360
- {
4361
- "name": "type",
4362
- "in": "path"
4363
- },
4364
4257
  {
4365
4258
  "name": "vanity",
4366
4259
  "in": "path"
@@ -4399,7 +4292,7 @@
4399
4292
  }
4400
4293
  }
4401
4294
  },
4402
- "/ignore/work/{author}/{vanity}": {
4295
+ "/unfollow/work/{author}/{vanity}": {
4403
4296
  "parameters": [
4404
4297
  {
4405
4298
  "name": "author",
@@ -4443,12 +4336,8 @@
4443
4336
  }
4444
4337
  }
4445
4338
  },
4446
- "/unignore/{type}/{vanity}": {
4339
+ "/unfollow/tag/{vanity}": {
4447
4340
  "parameters": [
4448
- {
4449
- "name": "type",
4450
- "in": "path"
4451
- },
4452
4341
  {
4453
4342
  "name": "vanity",
4454
4343
  "in": "path"
@@ -4487,12 +4376,8 @@
4487
4376
  }
4488
4377
  }
4489
4378
  },
4490
- "/unignore/work/{author}/{vanity}": {
4379
+ "/unfollow/category/{vanity}": {
4491
4380
  "parameters": [
4492
- {
4493
- "name": "author",
4494
- "in": "path"
4495
- },
4496
4381
  {
4497
4382
  "name": "vanity",
4498
4383
  "in": "path"
@@ -4531,7 +4416,7 @@
4531
4416
  }
4532
4417
  }
4533
4418
  },
4534
- "/ignoring": {
4419
+ "/following": {
4535
4420
  "get": {
4536
4421
  "responses": {
4537
4422
  "200": {
@@ -4542,7 +4427,7 @@
4542
4427
  "type": "object",
4543
4428
  "properties": {
4544
4429
  "data": {
4545
- "$ref": "#/components/schemas/FollowsMerged"
4430
+ "$ref": "#/components/schemas/FollowsManifest"
4546
4431
  }
4547
4432
  },
4548
4433
  "required": [
@@ -4568,7 +4453,7 @@
4568
4453
  }
4569
4454
  }
4570
4455
  },
4571
- "/ignoring/{type}": {
4456
+ "/following/{type}": {
4572
4457
  "parameters": [
4573
4458
  {
4574
4459
  "name": "type",
@@ -4652,12 +4537,8 @@
4652
4537
  }
4653
4538
  }
4654
4539
  },
4655
- "/ignores/{type}/{vanity}": {
4540
+ "/follows/author/{vanity}": {
4656
4541
  "parameters": [
4657
- {
4658
- "name": "type",
4659
- "in": "path"
4660
- },
4661
4542
  {
4662
4543
  "name": "vanity",
4663
4544
  "in": "path"
@@ -4699,12 +4580,852 @@
4699
4580
  }
4700
4581
  }
4701
4582
  },
4702
- "/ignores/work/{author}/{vanity}": {
4583
+ "/follows/work/{vanity}": {
4703
4584
  "parameters": [
4704
4585
  {
4705
- "name": "author",
4586
+ "name": "vanity",
4706
4587
  "in": "path"
4707
- },
4588
+ }
4589
+ ],
4590
+ "get": {
4591
+ "responses": {
4592
+ "200": {
4593
+ "description": "200 response",
4594
+ "content": {
4595
+ "application/json": {
4596
+ "schema": {
4597
+ "type": "object",
4598
+ "properties": {
4599
+ "data": {
4600
+ "$ref": "#/components/schemas/Follow"
4601
+ }
4602
+ },
4603
+ "required": [
4604
+ "data"
4605
+ ]
4606
+ }
4607
+ }
4608
+ }
4609
+ },
4610
+ "304": {
4611
+ "description": "304 response"
4612
+ },
4613
+ "default": {
4614
+ "description": "Error",
4615
+ "content": {
4616
+ "application/json": {
4617
+ "schema": {
4618
+ "$ref": "#/components/schemas/ErrorResponse"
4619
+ }
4620
+ }
4621
+ }
4622
+ }
4623
+ }
4624
+ }
4625
+ },
4626
+ "/follows/work/{author}/{vanity}": {
4627
+ "parameters": [
4628
+ {
4629
+ "name": "author",
4630
+ "in": "path"
4631
+ },
4632
+ {
4633
+ "name": "vanity",
4634
+ "in": "path"
4635
+ }
4636
+ ],
4637
+ "get": {
4638
+ "responses": {
4639
+ "200": {
4640
+ "description": "200 response",
4641
+ "content": {
4642
+ "application/json": {
4643
+ "schema": {
4644
+ "type": "object",
4645
+ "properties": {
4646
+ "data": {
4647
+ "$ref": "#/components/schemas/Follow"
4648
+ }
4649
+ },
4650
+ "required": [
4651
+ "data"
4652
+ ]
4653
+ }
4654
+ }
4655
+ }
4656
+ },
4657
+ "304": {
4658
+ "description": "304 response"
4659
+ },
4660
+ "default": {
4661
+ "description": "Error",
4662
+ "content": {
4663
+ "application/json": {
4664
+ "schema": {
4665
+ "$ref": "#/components/schemas/ErrorResponse"
4666
+ }
4667
+ }
4668
+ }
4669
+ }
4670
+ }
4671
+ }
4672
+ },
4673
+ "/follows/tag/{vanity}": {
4674
+ "parameters": [
4675
+ {
4676
+ "name": "vanity",
4677
+ "in": "path"
4678
+ }
4679
+ ],
4680
+ "get": {
4681
+ "responses": {
4682
+ "200": {
4683
+ "description": "200 response",
4684
+ "content": {
4685
+ "application/json": {
4686
+ "schema": {
4687
+ "type": "object",
4688
+ "properties": {
4689
+ "data": {
4690
+ "$ref": "#/components/schemas/Follow"
4691
+ }
4692
+ },
4693
+ "required": [
4694
+ "data"
4695
+ ]
4696
+ }
4697
+ }
4698
+ }
4699
+ },
4700
+ "304": {
4701
+ "description": "304 response"
4702
+ },
4703
+ "default": {
4704
+ "description": "Error",
4705
+ "content": {
4706
+ "application/json": {
4707
+ "schema": {
4708
+ "$ref": "#/components/schemas/ErrorResponse"
4709
+ }
4710
+ }
4711
+ }
4712
+ }
4713
+ }
4714
+ }
4715
+ },
4716
+ "/follows/category/{vanity}": {
4717
+ "parameters": [
4718
+ {
4719
+ "name": "vanity",
4720
+ "in": "path"
4721
+ }
4722
+ ],
4723
+ "get": {
4724
+ "responses": {
4725
+ "200": {
4726
+ "description": "200 response",
4727
+ "content": {
4728
+ "application/json": {
4729
+ "schema": {
4730
+ "type": "object",
4731
+ "properties": {
4732
+ "data": {
4733
+ "$ref": "#/components/schemas/Follow"
4734
+ }
4735
+ },
4736
+ "required": [
4737
+ "data"
4738
+ ]
4739
+ }
4740
+ }
4741
+ }
4742
+ },
4743
+ "304": {
4744
+ "description": "304 response"
4745
+ },
4746
+ "default": {
4747
+ "description": "Error",
4748
+ "content": {
4749
+ "application/json": {
4750
+ "schema": {
4751
+ "$ref": "#/components/schemas/ErrorResponse"
4752
+ }
4753
+ }
4754
+ }
4755
+ }
4756
+ }
4757
+ }
4758
+ },
4759
+ "/ignore/author/{vanity}": {
4760
+ "parameters": [
4761
+ {
4762
+ "name": "vanity",
4763
+ "in": "path"
4764
+ }
4765
+ ],
4766
+ "post": {
4767
+ "responses": {
4768
+ "200": {
4769
+ "description": "200 response",
4770
+ "content": {
4771
+ "application/json": {
4772
+ "schema": {
4773
+ "type": "object",
4774
+ "properties": {
4775
+ "data": {
4776
+ "$ref": "#/components/schemas/Follow"
4777
+ }
4778
+ },
4779
+ "required": [
4780
+ "data"
4781
+ ]
4782
+ }
4783
+ }
4784
+ }
4785
+ },
4786
+ "default": {
4787
+ "description": "Error",
4788
+ "content": {
4789
+ "application/json": {
4790
+ "schema": {
4791
+ "$ref": "#/components/schemas/ErrorResponse"
4792
+ }
4793
+ }
4794
+ }
4795
+ }
4796
+ }
4797
+ }
4798
+ },
4799
+ "/ignore/work/{vanity}": {
4800
+ "parameters": [
4801
+ {
4802
+ "name": "vanity",
4803
+ "in": "path"
4804
+ }
4805
+ ],
4806
+ "post": {
4807
+ "responses": {
4808
+ "200": {
4809
+ "description": "200 response",
4810
+ "content": {
4811
+ "application/json": {
4812
+ "schema": {
4813
+ "type": "object",
4814
+ "properties": {
4815
+ "data": {
4816
+ "$ref": "#/components/schemas/Follow"
4817
+ }
4818
+ },
4819
+ "required": [
4820
+ "data"
4821
+ ]
4822
+ }
4823
+ }
4824
+ }
4825
+ },
4826
+ "default": {
4827
+ "description": "Error",
4828
+ "content": {
4829
+ "application/json": {
4830
+ "schema": {
4831
+ "$ref": "#/components/schemas/ErrorResponse"
4832
+ }
4833
+ }
4834
+ }
4835
+ }
4836
+ }
4837
+ }
4838
+ },
4839
+ "/ignore/work/{author}/{vanity}": {
4840
+ "parameters": [
4841
+ {
4842
+ "name": "author",
4843
+ "in": "path"
4844
+ },
4845
+ {
4846
+ "name": "vanity",
4847
+ "in": "path"
4848
+ }
4849
+ ],
4850
+ "post": {
4851
+ "responses": {
4852
+ "200": {
4853
+ "description": "200 response",
4854
+ "content": {
4855
+ "application/json": {
4856
+ "schema": {
4857
+ "type": "object",
4858
+ "properties": {
4859
+ "data": {
4860
+ "$ref": "#/components/schemas/Follow"
4861
+ }
4862
+ },
4863
+ "required": [
4864
+ "data"
4865
+ ]
4866
+ }
4867
+ }
4868
+ }
4869
+ },
4870
+ "default": {
4871
+ "description": "Error",
4872
+ "content": {
4873
+ "application/json": {
4874
+ "schema": {
4875
+ "$ref": "#/components/schemas/ErrorResponse"
4876
+ }
4877
+ }
4878
+ }
4879
+ }
4880
+ }
4881
+ }
4882
+ },
4883
+ "/ignore/tag/{vanity}": {
4884
+ "parameters": [
4885
+ {
4886
+ "name": "vanity",
4887
+ "in": "path"
4888
+ }
4889
+ ],
4890
+ "post": {
4891
+ "responses": {
4892
+ "200": {
4893
+ "description": "200 response",
4894
+ "content": {
4895
+ "application/json": {
4896
+ "schema": {
4897
+ "type": "object",
4898
+ "properties": {
4899
+ "data": {
4900
+ "$ref": "#/components/schemas/Follow"
4901
+ }
4902
+ },
4903
+ "required": [
4904
+ "data"
4905
+ ]
4906
+ }
4907
+ }
4908
+ }
4909
+ },
4910
+ "default": {
4911
+ "description": "Error",
4912
+ "content": {
4913
+ "application/json": {
4914
+ "schema": {
4915
+ "$ref": "#/components/schemas/ErrorResponse"
4916
+ }
4917
+ }
4918
+ }
4919
+ }
4920
+ }
4921
+ }
4922
+ },
4923
+ "/ignore/category/{vanity}": {
4924
+ "parameters": [
4925
+ {
4926
+ "name": "vanity",
4927
+ "in": "path"
4928
+ }
4929
+ ],
4930
+ "post": {
4931
+ "responses": {
4932
+ "200": {
4933
+ "description": "200 response",
4934
+ "content": {
4935
+ "application/json": {
4936
+ "schema": {
4937
+ "type": "object",
4938
+ "properties": {
4939
+ "data": {
4940
+ "$ref": "#/components/schemas/Follow"
4941
+ }
4942
+ },
4943
+ "required": [
4944
+ "data"
4945
+ ]
4946
+ }
4947
+ }
4948
+ }
4949
+ },
4950
+ "default": {
4951
+ "description": "Error",
4952
+ "content": {
4953
+ "application/json": {
4954
+ "schema": {
4955
+ "$ref": "#/components/schemas/ErrorResponse"
4956
+ }
4957
+ }
4958
+ }
4959
+ }
4960
+ }
4961
+ }
4962
+ },
4963
+ "/unignore/author/{vanity}": {
4964
+ "parameters": [
4965
+ {
4966
+ "name": "vanity",
4967
+ "in": "path"
4968
+ }
4969
+ ],
4970
+ "post": {
4971
+ "responses": {
4972
+ "200": {
4973
+ "description": "200 response",
4974
+ "content": {
4975
+ "application/json": {
4976
+ "schema": {
4977
+ "type": "object",
4978
+ "properties": {
4979
+ "data": {
4980
+ "$ref": "#/components/schemas/Follow"
4981
+ }
4982
+ },
4983
+ "required": [
4984
+ "data"
4985
+ ]
4986
+ }
4987
+ }
4988
+ }
4989
+ },
4990
+ "default": {
4991
+ "description": "Error",
4992
+ "content": {
4993
+ "application/json": {
4994
+ "schema": {
4995
+ "$ref": "#/components/schemas/ErrorResponse"
4996
+ }
4997
+ }
4998
+ }
4999
+ }
5000
+ }
5001
+ }
5002
+ },
5003
+ "/unignore/work/{vanity}": {
5004
+ "parameters": [
5005
+ {
5006
+ "name": "vanity",
5007
+ "in": "path"
5008
+ }
5009
+ ],
5010
+ "post": {
5011
+ "responses": {
5012
+ "200": {
5013
+ "description": "200 response",
5014
+ "content": {
5015
+ "application/json": {
5016
+ "schema": {
5017
+ "type": "object",
5018
+ "properties": {
5019
+ "data": {
5020
+ "$ref": "#/components/schemas/Follow"
5021
+ }
5022
+ },
5023
+ "required": [
5024
+ "data"
5025
+ ]
5026
+ }
5027
+ }
5028
+ }
5029
+ },
5030
+ "default": {
5031
+ "description": "Error",
5032
+ "content": {
5033
+ "application/json": {
5034
+ "schema": {
5035
+ "$ref": "#/components/schemas/ErrorResponse"
5036
+ }
5037
+ }
5038
+ }
5039
+ }
5040
+ }
5041
+ }
5042
+ },
5043
+ "/unignore/work/{author}/{vanity}": {
5044
+ "parameters": [
5045
+ {
5046
+ "name": "author",
5047
+ "in": "path"
5048
+ },
5049
+ {
5050
+ "name": "vanity",
5051
+ "in": "path"
5052
+ }
5053
+ ],
5054
+ "post": {
5055
+ "responses": {
5056
+ "200": {
5057
+ "description": "200 response",
5058
+ "content": {
5059
+ "application/json": {
5060
+ "schema": {
5061
+ "type": "object",
5062
+ "properties": {
5063
+ "data": {
5064
+ "$ref": "#/components/schemas/Follow"
5065
+ }
5066
+ },
5067
+ "required": [
5068
+ "data"
5069
+ ]
5070
+ }
5071
+ }
5072
+ }
5073
+ },
5074
+ "default": {
5075
+ "description": "Error",
5076
+ "content": {
5077
+ "application/json": {
5078
+ "schema": {
5079
+ "$ref": "#/components/schemas/ErrorResponse"
5080
+ }
5081
+ }
5082
+ }
5083
+ }
5084
+ }
5085
+ }
5086
+ },
5087
+ "/unignore/tag/{vanity}": {
5088
+ "parameters": [
5089
+ {
5090
+ "name": "vanity",
5091
+ "in": "path"
5092
+ }
5093
+ ],
5094
+ "post": {
5095
+ "responses": {
5096
+ "200": {
5097
+ "description": "200 response",
5098
+ "content": {
5099
+ "application/json": {
5100
+ "schema": {
5101
+ "type": "object",
5102
+ "properties": {
5103
+ "data": {
5104
+ "$ref": "#/components/schemas/Follow"
5105
+ }
5106
+ },
5107
+ "required": [
5108
+ "data"
5109
+ ]
5110
+ }
5111
+ }
5112
+ }
5113
+ },
5114
+ "default": {
5115
+ "description": "Error",
5116
+ "content": {
5117
+ "application/json": {
5118
+ "schema": {
5119
+ "$ref": "#/components/schemas/ErrorResponse"
5120
+ }
5121
+ }
5122
+ }
5123
+ }
5124
+ }
5125
+ }
5126
+ },
5127
+ "/unignore/category/{vanity}": {
5128
+ "parameters": [
5129
+ {
5130
+ "name": "vanity",
5131
+ "in": "path"
5132
+ }
5133
+ ],
5134
+ "post": {
5135
+ "responses": {
5136
+ "200": {
5137
+ "description": "200 response",
5138
+ "content": {
5139
+ "application/json": {
5140
+ "schema": {
5141
+ "type": "object",
5142
+ "properties": {
5143
+ "data": {
5144
+ "$ref": "#/components/schemas/Follow"
5145
+ }
5146
+ },
5147
+ "required": [
5148
+ "data"
5149
+ ]
5150
+ }
5151
+ }
5152
+ }
5153
+ },
5154
+ "default": {
5155
+ "description": "Error",
5156
+ "content": {
5157
+ "application/json": {
5158
+ "schema": {
5159
+ "$ref": "#/components/schemas/ErrorResponse"
5160
+ }
5161
+ }
5162
+ }
5163
+ }
5164
+ }
5165
+ }
5166
+ },
5167
+ "/ignoring/{type}": {
5168
+ "parameters": [
5169
+ {
5170
+ "name": "type",
5171
+ "in": "path"
5172
+ },
5173
+ {
5174
+ "name": "page",
5175
+ "in": "query",
5176
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default."
5177
+ },
5178
+ {
5179
+ "name": "page_size",
5180
+ "in": "query",
5181
+ "description": "The custom page size to return. This endpoint uses a page size of 25 by default. The custom page size cannot be raised above the default."
5182
+ }
5183
+ ],
5184
+ "get": {
5185
+ "responses": {
5186
+ "200": {
5187
+ "description": "200 response",
5188
+ "content": {
5189
+ "application/json": {
5190
+ "schema": {
5191
+ "type": "object",
5192
+ "properties": {
5193
+ "data": {
5194
+ "type": "array",
5195
+ "items": {
5196
+ "$ref": "#/components/schema/Follow"
5197
+ }
5198
+ },
5199
+ "has_more": {
5200
+ "type": "boolean"
5201
+ },
5202
+ "page": {
5203
+ "type": "number",
5204
+ "minimum": 0
5205
+ },
5206
+ "page_count": {
5207
+ "type": [
5208
+ "boolean",
5209
+ "number"
5210
+ ],
5211
+ "anyOf": [
5212
+ {
5213
+ "type": "boolean",
5214
+ "enum": [
5215
+ true
5216
+ ]
5217
+ },
5218
+ {
5219
+ "type": "number",
5220
+ "minimum": 0
5221
+ }
5222
+ ]
5223
+ }
5224
+ },
5225
+ "required": [
5226
+ "data",
5227
+ "has_more",
5228
+ "page",
5229
+ "page_count"
5230
+ ]
5231
+ }
5232
+ }
5233
+ }
5234
+ },
5235
+ "304": {
5236
+ "description": "304 response"
5237
+ },
5238
+ "default": {
5239
+ "description": "Error",
5240
+ "content": {
5241
+ "application/json": {
5242
+ "schema": {
5243
+ "$ref": "#/components/schemas/ErrorResponse"
5244
+ }
5245
+ }
5246
+ }
5247
+ }
5248
+ }
5249
+ }
5250
+ },
5251
+ "/ignores/author/{vanity}": {
5252
+ "parameters": [
5253
+ {
5254
+ "name": "vanity",
5255
+ "in": "path"
5256
+ }
5257
+ ],
5258
+ "get": {
5259
+ "responses": {
5260
+ "200": {
5261
+ "description": "200 response",
5262
+ "content": {
5263
+ "application/json": {
5264
+ "schema": {
5265
+ "type": "object",
5266
+ "properties": {
5267
+ "data": {
5268
+ "$ref": "#/components/schemas/Follow"
5269
+ }
5270
+ },
5271
+ "required": [
5272
+ "data"
5273
+ ]
5274
+ }
5275
+ }
5276
+ }
5277
+ },
5278
+ "304": {
5279
+ "description": "304 response"
5280
+ },
5281
+ "default": {
5282
+ "description": "Error",
5283
+ "content": {
5284
+ "application/json": {
5285
+ "schema": {
5286
+ "$ref": "#/components/schemas/ErrorResponse"
5287
+ }
5288
+ }
5289
+ }
5290
+ }
5291
+ }
5292
+ }
5293
+ },
5294
+ "/ignores/work/{vanity}": {
5295
+ "parameters": [
5296
+ {
5297
+ "name": "vanity",
5298
+ "in": "path"
5299
+ }
5300
+ ],
5301
+ "get": {
5302
+ "responses": {
5303
+ "200": {
5304
+ "description": "200 response",
5305
+ "content": {
5306
+ "application/json": {
5307
+ "schema": {
5308
+ "type": "object",
5309
+ "properties": {
5310
+ "data": {
5311
+ "$ref": "#/components/schemas/Follow"
5312
+ }
5313
+ },
5314
+ "required": [
5315
+ "data"
5316
+ ]
5317
+ }
5318
+ }
5319
+ }
5320
+ },
5321
+ "304": {
5322
+ "description": "304 response"
5323
+ },
5324
+ "default": {
5325
+ "description": "Error",
5326
+ "content": {
5327
+ "application/json": {
5328
+ "schema": {
5329
+ "$ref": "#/components/schemas/ErrorResponse"
5330
+ }
5331
+ }
5332
+ }
5333
+ }
5334
+ }
5335
+ }
5336
+ },
5337
+ "/ignores/work/{author}/{vanity}": {
5338
+ "parameters": [
5339
+ {
5340
+ "name": "author",
5341
+ "in": "path"
5342
+ },
5343
+ {
5344
+ "name": "vanity",
5345
+ "in": "path"
5346
+ }
5347
+ ],
5348
+ "get": {
5349
+ "responses": {
5350
+ "200": {
5351
+ "description": "200 response",
5352
+ "content": {
5353
+ "application/json": {
5354
+ "schema": {
5355
+ "type": "object",
5356
+ "properties": {
5357
+ "data": {
5358
+ "$ref": "#/components/schemas/Follow"
5359
+ }
5360
+ },
5361
+ "required": [
5362
+ "data"
5363
+ ]
5364
+ }
5365
+ }
5366
+ }
5367
+ },
5368
+ "304": {
5369
+ "description": "304 response"
5370
+ },
5371
+ "default": {
5372
+ "description": "Error",
5373
+ "content": {
5374
+ "application/json": {
5375
+ "schema": {
5376
+ "$ref": "#/components/schemas/ErrorResponse"
5377
+ }
5378
+ }
5379
+ }
5380
+ }
5381
+ }
5382
+ }
5383
+ },
5384
+ "/ignores/tag/{vanity}": {
5385
+ "parameters": [
5386
+ {
5387
+ "name": "vanity",
5388
+ "in": "path"
5389
+ }
5390
+ ],
5391
+ "get": {
5392
+ "responses": {
5393
+ "200": {
5394
+ "description": "200 response",
5395
+ "content": {
5396
+ "application/json": {
5397
+ "schema": {
5398
+ "type": "object",
5399
+ "properties": {
5400
+ "data": {
5401
+ "$ref": "#/components/schemas/Follow"
5402
+ }
5403
+ },
5404
+ "required": [
5405
+ "data"
5406
+ ]
5407
+ }
5408
+ }
5409
+ }
5410
+ },
5411
+ "304": {
5412
+ "description": "304 response"
5413
+ },
5414
+ "default": {
5415
+ "description": "Error",
5416
+ "content": {
5417
+ "application/json": {
5418
+ "schema": {
5419
+ "$ref": "#/components/schemas/ErrorResponse"
5420
+ }
5421
+ }
5422
+ }
5423
+ }
5424
+ }
5425
+ }
5426
+ },
5427
+ "/ignores/category/{vanity}": {
5428
+ "parameters": [
4708
5429
  {
4709
5430
  "name": "vanity",
4710
5431
  "in": "path"