api.fluff4.me 1.0.239 → 1.0.241

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 +12 -0
  2. package/openapi.json +178 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -313,6 +313,7 @@ export interface Tag {
313
313
  name: string
314
314
  description: TextBody
315
315
  category: string
316
+ aliases?: string[] | null
316
317
  }
317
318
 
318
319
  export interface TagCreateGlobal {
@@ -356,6 +357,7 @@ export interface ManifestGlobalTags {
356
357
  updated_at: number
357
358
  tags: Record<string, Tag>
358
359
  categories: Record<string, TagCategory>
360
+ relationships: Record<string, string[]>
359
361
  }
360
362
 
361
363
  export interface ManifestFormInputLengths {
@@ -868,4 +870,14 @@ export interface Paths {
868
870
  body?: undefined
869
871
  response: PaginatedResponse<Feed> | ErrorResponse
870
872
  },
873
+ "/feed/get/authed": {
874
+ method: "get"
875
+ body?: undefined
876
+ response: PaginatedResponse<Feed> | ErrorResponse
877
+ },
878
+ "/feed/get/followed": {
879
+ method: "get"
880
+ body?: undefined
881
+ response: PaginatedResponse<Feed> | ErrorResponse
882
+ },
871
883
  }
package/openapi.json CHANGED
@@ -1672,6 +1672,19 @@
1672
1672
  },
1673
1673
  "category": {
1674
1674
  "type": "string"
1675
+ },
1676
+ "aliases": {
1677
+ "anyOf": [
1678
+ {
1679
+ "type": "array",
1680
+ "items": {
1681
+ "type": "string"
1682
+ }
1683
+ },
1684
+ {
1685
+ "type": "null"
1686
+ }
1687
+ ]
1675
1688
  }
1676
1689
  },
1677
1690
  "required": [
@@ -1847,12 +1860,22 @@
1847
1860
  "additionalProperties": {
1848
1861
  "$ref": "#/components/schema/TagCategory"
1849
1862
  }
1863
+ },
1864
+ "relationships": {
1865
+ "type": "object",
1866
+ "additionalProperties": {
1867
+ "type": "array",
1868
+ "items": {
1869
+ "type": "string"
1870
+ }
1871
+ }
1850
1872
  }
1851
1873
  },
1852
1874
  "required": [
1853
1875
  "updated_at",
1854
1876
  "tags",
1855
- "categories"
1877
+ "categories",
1878
+ "relationships"
1856
1879
  ]
1857
1880
  },
1858
1881
  "ManifestFormInputLengths": {
@@ -5828,6 +5851,160 @@
5828
5851
  }
5829
5852
  }
5830
5853
  }
5854
+ },
5855
+ "/feed/get/authed": {
5856
+ "parameters": [
5857
+ {
5858
+ "name": "page",
5859
+ "in": "query",
5860
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default."
5861
+ },
5862
+ {
5863
+ "name": "page_size",
5864
+ "in": "query",
5865
+ "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."
5866
+ }
5867
+ ],
5868
+ "get": {
5869
+ "responses": {
5870
+ "200": {
5871
+ "description": "200 response",
5872
+ "content": {
5873
+ "application/json": {
5874
+ "schema": {
5875
+ "type": "object",
5876
+ "properties": {
5877
+ "data": {
5878
+ "$ref": "#/components/schemas/Feed"
5879
+ },
5880
+ "has_more": {
5881
+ "type": "boolean"
5882
+ },
5883
+ "page": {
5884
+ "type": "number",
5885
+ "minimum": 0
5886
+ },
5887
+ "page_count": {
5888
+ "type": [
5889
+ "boolean",
5890
+ "number"
5891
+ ],
5892
+ "anyOf": [
5893
+ {
5894
+ "type": "boolean",
5895
+ "enum": [
5896
+ true
5897
+ ]
5898
+ },
5899
+ {
5900
+ "type": "number",
5901
+ "minimum": 0
5902
+ }
5903
+ ]
5904
+ }
5905
+ },
5906
+ "required": [
5907
+ "data",
5908
+ "has_more",
5909
+ "page",
5910
+ "page_count"
5911
+ ]
5912
+ }
5913
+ }
5914
+ }
5915
+ },
5916
+ "304": {
5917
+ "description": "304 response"
5918
+ },
5919
+ "default": {
5920
+ "description": "Error",
5921
+ "content": {
5922
+ "application/json": {
5923
+ "schema": {
5924
+ "$ref": "#/components/schemas/ErrorResponse"
5925
+ }
5926
+ }
5927
+ }
5928
+ }
5929
+ }
5930
+ }
5931
+ },
5932
+ "/feed/get/followed": {
5933
+ "parameters": [
5934
+ {
5935
+ "name": "page",
5936
+ "in": "query",
5937
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default."
5938
+ },
5939
+ {
5940
+ "name": "page_size",
5941
+ "in": "query",
5942
+ "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."
5943
+ }
5944
+ ],
5945
+ "get": {
5946
+ "responses": {
5947
+ "200": {
5948
+ "description": "200 response",
5949
+ "content": {
5950
+ "application/json": {
5951
+ "schema": {
5952
+ "type": "object",
5953
+ "properties": {
5954
+ "data": {
5955
+ "$ref": "#/components/schemas/Feed"
5956
+ },
5957
+ "has_more": {
5958
+ "type": "boolean"
5959
+ },
5960
+ "page": {
5961
+ "type": "number",
5962
+ "minimum": 0
5963
+ },
5964
+ "page_count": {
5965
+ "type": [
5966
+ "boolean",
5967
+ "number"
5968
+ ],
5969
+ "anyOf": [
5970
+ {
5971
+ "type": "boolean",
5972
+ "enum": [
5973
+ true
5974
+ ]
5975
+ },
5976
+ {
5977
+ "type": "number",
5978
+ "minimum": 0
5979
+ }
5980
+ ]
5981
+ }
5982
+ },
5983
+ "required": [
5984
+ "data",
5985
+ "has_more",
5986
+ "page",
5987
+ "page_count"
5988
+ ]
5989
+ }
5990
+ }
5991
+ }
5992
+ },
5993
+ "304": {
5994
+ "description": "304 response"
5995
+ },
5996
+ "default": {
5997
+ "description": "Error",
5998
+ "content": {
5999
+ "application/json": {
6000
+ "schema": {
6001
+ "$ref": "#/components/schemas/ErrorResponse"
6002
+ }
6003
+ }
6004
+ }
6005
+ }
6006
+ }
6007
+ }
5831
6008
  }
5832
6009
  }
5833
6010
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.239",
3
+ "version": "1.0.241",
4
4
  "types": "index.d.ts"
5
5
  }