api.fluff4.me 1.0.240 → 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 +10 -0
  2. package/openapi.json +154 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -870,4 +870,14 @@ export interface Paths {
870
870
  body?: undefined
871
871
  response: PaginatedResponse<Feed> | ErrorResponse
872
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
+ },
873
883
  }
package/openapi.json CHANGED
@@ -5851,6 +5851,160 @@
5851
5851
  }
5852
5852
  }
5853
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
+ }
5854
6008
  }
5855
6009
  }
5856
6010
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.240",
3
+ "version": "1.0.241",
4
4
  "types": "index.d.ts"
5
5
  }