api.fluff4.me 1.0.391 → 1.0.392

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 +6 -0
  2. package/openapi.json +132 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1228,6 +1228,12 @@ export interface Paths {
1228
1228
  search: {
1229
1229
  page?: number
1230
1230
  page_size?: number
1231
+ whitelistTags?: string[] | null
1232
+ blacklistTags?: string[] | null
1233
+ whitelistTagCategories?: string[] | null
1234
+ blacklistTagCategories?: string[] | null
1235
+ whitelistAuthors?: string[] | null
1236
+ blacklistAuthors?: string[] | null
1231
1237
  }
1232
1238
  response: PaginatedResponse<Feed> | ErrorResponse
1233
1239
  },
package/openapi.json CHANGED
@@ -7480,6 +7480,138 @@
7480
7480
  "minimum": 1,
7481
7481
  "maximum": 25
7482
7482
  }
7483
+ },
7484
+ {
7485
+ "name": "whitelistTags",
7486
+ "in": "query",
7487
+ "required": false,
7488
+ "content": {
7489
+ "application/json": {
7490
+ "schema": {
7491
+ "anyOf": [
7492
+ {
7493
+ "type": "array",
7494
+ "items": {
7495
+ "type": "string"
7496
+ }
7497
+ },
7498
+ {
7499
+ "type": "null"
7500
+ }
7501
+ ]
7502
+ }
7503
+ }
7504
+ }
7505
+ },
7506
+ {
7507
+ "name": "blacklistTags",
7508
+ "in": "query",
7509
+ "required": false,
7510
+ "content": {
7511
+ "application/json": {
7512
+ "schema": {
7513
+ "anyOf": [
7514
+ {
7515
+ "type": "array",
7516
+ "items": {
7517
+ "type": "string"
7518
+ }
7519
+ },
7520
+ {
7521
+ "type": "null"
7522
+ }
7523
+ ]
7524
+ }
7525
+ }
7526
+ }
7527
+ },
7528
+ {
7529
+ "name": "whitelistTagCategories",
7530
+ "in": "query",
7531
+ "required": false,
7532
+ "content": {
7533
+ "application/json": {
7534
+ "schema": {
7535
+ "anyOf": [
7536
+ {
7537
+ "type": "array",
7538
+ "items": {
7539
+ "type": "string"
7540
+ }
7541
+ },
7542
+ {
7543
+ "type": "null"
7544
+ }
7545
+ ]
7546
+ }
7547
+ }
7548
+ }
7549
+ },
7550
+ {
7551
+ "name": "blacklistTagCategories",
7552
+ "in": "query",
7553
+ "required": false,
7554
+ "content": {
7555
+ "application/json": {
7556
+ "schema": {
7557
+ "anyOf": [
7558
+ {
7559
+ "type": "array",
7560
+ "items": {
7561
+ "type": "string"
7562
+ }
7563
+ },
7564
+ {
7565
+ "type": "null"
7566
+ }
7567
+ ]
7568
+ }
7569
+ }
7570
+ }
7571
+ },
7572
+ {
7573
+ "name": "whitelistAuthors",
7574
+ "in": "query",
7575
+ "required": false,
7576
+ "content": {
7577
+ "application/json": {
7578
+ "schema": {
7579
+ "anyOf": [
7580
+ {
7581
+ "type": "array",
7582
+ "items": {
7583
+ "type": "string"
7584
+ }
7585
+ },
7586
+ {
7587
+ "type": "null"
7588
+ }
7589
+ ]
7590
+ }
7591
+ }
7592
+ }
7593
+ },
7594
+ {
7595
+ "name": "blacklistAuthors",
7596
+ "in": "query",
7597
+ "required": false,
7598
+ "content": {
7599
+ "application/json": {
7600
+ "schema": {
7601
+ "anyOf": [
7602
+ {
7603
+ "type": "array",
7604
+ "items": {
7605
+ "type": "string"
7606
+ }
7607
+ },
7608
+ {
7609
+ "type": "null"
7610
+ }
7611
+ ]
7612
+ }
7613
+ }
7614
+ }
7483
7615
  }
7484
7616
  ],
7485
7617
  "responses": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.391",
3
+ "version": "1.0.392",
4
4
  "types": "index.d.ts"
5
5
  }