api.fluff4.me 1.0.1109 → 1.0.1111

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 +19 -0
  2. package/openapi.json +254 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -756,6 +756,7 @@ export interface ManifestFormInputLengths {
756
756
  name: number
757
757
  index: number
758
758
  notes: number
759
+ url: number
759
760
  }
760
761
  role: {
761
762
  name: number
@@ -1856,6 +1857,24 @@ export interface Paths {
1856
1857
  search: PaginationSearch
1857
1858
  response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
1858
1859
  },
1860
+ "/comments": {
1861
+ method: "get"
1862
+ body?: undefined
1863
+ search: PaginationSearch
1864
+ response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
1865
+ },
1866
+ "/comments/chapter": {
1867
+ method: "get"
1868
+ body?: undefined
1869
+ search: PaginationSearch
1870
+ response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
1871
+ },
1872
+ "/comments/work": {
1873
+ method: "get"
1874
+ body?: undefined
1875
+ search: PaginationSearch
1876
+ response: PaginatedResponse<ContextualCommentsResponse> | ErrorResponse
1877
+ },
1859
1878
  "/patreon/campaign/tiers/get": {
1860
1879
  method: "get"
1861
1880
  body?: undefined
package/openapi.json CHANGED
@@ -4562,12 +4562,16 @@
4562
4562
  },
4563
4563
  "notes": {
4564
4564
  "type": "number"
4565
+ },
4566
+ "url": {
4567
+ "type": "number"
4565
4568
  }
4566
4569
  },
4567
4570
  "required": [
4568
4571
  "name",
4569
4572
  "index",
4570
- "notes"
4573
+ "notes",
4574
+ "url"
4571
4575
  ]
4572
4576
  },
4573
4577
  "role": {
@@ -11986,6 +11990,255 @@
11986
11990
  }
11987
11991
  }
11988
11992
  },
11993
+ "/comments": {
11994
+ "get": {
11995
+ "parameters": [
11996
+ {
11997
+ "name": "page",
11998
+ "in": "query",
11999
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
12000
+ "schema": {
12001
+ "type": "integer",
12002
+ "minimum": 0
12003
+ }
12004
+ },
12005
+ {
12006
+ "name": "page_size",
12007
+ "in": "query",
12008
+ "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.",
12009
+ "schema": {
12010
+ "type": "integer",
12011
+ "minimum": 1,
12012
+ "maximum": 25
12013
+ }
12014
+ }
12015
+ ],
12016
+ "responses": {
12017
+ "200": {
12018
+ "description": "200 response",
12019
+ "content": {
12020
+ "application/json": {
12021
+ "schema": {
12022
+ "type": "object",
12023
+ "properties": {
12024
+ "data": {
12025
+ "$ref": "#/components/schemas/ContextualCommentsResponse"
12026
+ },
12027
+ "has_more": {
12028
+ "type": "boolean"
12029
+ },
12030
+ "page": {
12031
+ "type": "number",
12032
+ "minimum": 0
12033
+ },
12034
+ "page_count": {
12035
+ "type": [
12036
+ "boolean",
12037
+ "number"
12038
+ ],
12039
+ "anyOf": [
12040
+ {
12041
+ "type": "boolean",
12042
+ "enum": [
12043
+ true
12044
+ ]
12045
+ },
12046
+ {
12047
+ "type": "number",
12048
+ "minimum": 0
12049
+ }
12050
+ ]
12051
+ }
12052
+ },
12053
+ "required": [
12054
+ "data",
12055
+ "has_more",
12056
+ "page",
12057
+ "page_count"
12058
+ ]
12059
+ }
12060
+ }
12061
+ }
12062
+ },
12063
+ "default": {
12064
+ "description": "Error",
12065
+ "content": {
12066
+ "application/json": {
12067
+ "schema": {
12068
+ "$ref": "#/components/schemas/ErrorResponse"
12069
+ }
12070
+ }
12071
+ }
12072
+ }
12073
+ }
12074
+ }
12075
+ },
12076
+ "/comments/chapter": {
12077
+ "get": {
12078
+ "parameters": [
12079
+ {
12080
+ "name": "page",
12081
+ "in": "query",
12082
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
12083
+ "schema": {
12084
+ "type": "integer",
12085
+ "minimum": 0
12086
+ }
12087
+ },
12088
+ {
12089
+ "name": "page_size",
12090
+ "in": "query",
12091
+ "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.",
12092
+ "schema": {
12093
+ "type": "integer",
12094
+ "minimum": 1,
12095
+ "maximum": 25
12096
+ }
12097
+ }
12098
+ ],
12099
+ "responses": {
12100
+ "200": {
12101
+ "description": "200 response",
12102
+ "content": {
12103
+ "application/json": {
12104
+ "schema": {
12105
+ "type": "object",
12106
+ "properties": {
12107
+ "data": {
12108
+ "$ref": "#/components/schemas/ContextualCommentsResponse"
12109
+ },
12110
+ "has_more": {
12111
+ "type": "boolean"
12112
+ },
12113
+ "page": {
12114
+ "type": "number",
12115
+ "minimum": 0
12116
+ },
12117
+ "page_count": {
12118
+ "type": [
12119
+ "boolean",
12120
+ "number"
12121
+ ],
12122
+ "anyOf": [
12123
+ {
12124
+ "type": "boolean",
12125
+ "enum": [
12126
+ true
12127
+ ]
12128
+ },
12129
+ {
12130
+ "type": "number",
12131
+ "minimum": 0
12132
+ }
12133
+ ]
12134
+ }
12135
+ },
12136
+ "required": [
12137
+ "data",
12138
+ "has_more",
12139
+ "page",
12140
+ "page_count"
12141
+ ]
12142
+ }
12143
+ }
12144
+ }
12145
+ },
12146
+ "default": {
12147
+ "description": "Error",
12148
+ "content": {
12149
+ "application/json": {
12150
+ "schema": {
12151
+ "$ref": "#/components/schemas/ErrorResponse"
12152
+ }
12153
+ }
12154
+ }
12155
+ }
12156
+ }
12157
+ }
12158
+ },
12159
+ "/comments/work": {
12160
+ "get": {
12161
+ "parameters": [
12162
+ {
12163
+ "name": "page",
12164
+ "in": "query",
12165
+ "description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
12166
+ "schema": {
12167
+ "type": "integer",
12168
+ "minimum": 0
12169
+ }
12170
+ },
12171
+ {
12172
+ "name": "page_size",
12173
+ "in": "query",
12174
+ "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.",
12175
+ "schema": {
12176
+ "type": "integer",
12177
+ "minimum": 1,
12178
+ "maximum": 25
12179
+ }
12180
+ }
12181
+ ],
12182
+ "responses": {
12183
+ "200": {
12184
+ "description": "200 response",
12185
+ "content": {
12186
+ "application/json": {
12187
+ "schema": {
12188
+ "type": "object",
12189
+ "properties": {
12190
+ "data": {
12191
+ "$ref": "#/components/schemas/ContextualCommentsResponse"
12192
+ },
12193
+ "has_more": {
12194
+ "type": "boolean"
12195
+ },
12196
+ "page": {
12197
+ "type": "number",
12198
+ "minimum": 0
12199
+ },
12200
+ "page_count": {
12201
+ "type": [
12202
+ "boolean",
12203
+ "number"
12204
+ ],
12205
+ "anyOf": [
12206
+ {
12207
+ "type": "boolean",
12208
+ "enum": [
12209
+ true
12210
+ ]
12211
+ },
12212
+ {
12213
+ "type": "number",
12214
+ "minimum": 0
12215
+ }
12216
+ ]
12217
+ }
12218
+ },
12219
+ "required": [
12220
+ "data",
12221
+ "has_more",
12222
+ "page",
12223
+ "page_count"
12224
+ ]
12225
+ }
12226
+ }
12227
+ }
12228
+ },
12229
+ "default": {
12230
+ "description": "Error",
12231
+ "content": {
12232
+ "application/json": {
12233
+ "schema": {
12234
+ "$ref": "#/components/schemas/ErrorResponse"
12235
+ }
12236
+ }
12237
+ }
12238
+ }
12239
+ }
12240
+ }
12241
+ },
11989
12242
  "/patreon/campaign/tiers/get": {
11990
12243
  "get": {
11991
12244
  "responses": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.1109",
3
+ "version": "1.0.1111",
4
4
  "types": "index.d.ts"
5
5
  }