api.fluff4.me 1.0.1139 → 1.0.1140
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.
- package/index.d.ts +6 -0
- package/openapi.json +86 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1851,6 +1851,12 @@ export interface Paths {
|
|
|
1851
1851
|
search: PaginationSearch
|
|
1852
1852
|
response: PaginatedResponse<Notifications> | ErrorResponse
|
|
1853
1853
|
},
|
|
1854
|
+
"/v2/notifications/get/all": {
|
|
1855
|
+
method: "get"
|
|
1856
|
+
body?: undefined
|
|
1857
|
+
search: PaginationSearch
|
|
1858
|
+
response: PaginatedResponse<Notifications> | ErrorResponse
|
|
1859
|
+
},
|
|
1854
1860
|
"/v2/notifications/get/count": {
|
|
1855
1861
|
method: "get"
|
|
1856
1862
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -12132,6 +12132,92 @@
|
|
|
12132
12132
|
}
|
|
12133
12133
|
}
|
|
12134
12134
|
},
|
|
12135
|
+
"/v2/notifications/get/all": {
|
|
12136
|
+
"get": {
|
|
12137
|
+
"parameters": [
|
|
12138
|
+
{
|
|
12139
|
+
"name": "page",
|
|
12140
|
+
"in": "query",
|
|
12141
|
+
"description": "The page of data to query from. This endpoint uses a page size of 25 by default.",
|
|
12142
|
+
"schema": {
|
|
12143
|
+
"type": "integer",
|
|
12144
|
+
"minimum": 0
|
|
12145
|
+
}
|
|
12146
|
+
},
|
|
12147
|
+
{
|
|
12148
|
+
"name": "page_size",
|
|
12149
|
+
"in": "query",
|
|
12150
|
+
"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.",
|
|
12151
|
+
"schema": {
|
|
12152
|
+
"type": "integer",
|
|
12153
|
+
"minimum": 1,
|
|
12154
|
+
"maximum": 25
|
|
12155
|
+
}
|
|
12156
|
+
}
|
|
12157
|
+
],
|
|
12158
|
+
"responses": {
|
|
12159
|
+
"200": {
|
|
12160
|
+
"description": "200 response",
|
|
12161
|
+
"content": {
|
|
12162
|
+
"application/json": {
|
|
12163
|
+
"schema": {
|
|
12164
|
+
"type": "object",
|
|
12165
|
+
"properties": {
|
|
12166
|
+
"data": {
|
|
12167
|
+
"$ref": "#/components/schemas/Notifications"
|
|
12168
|
+
},
|
|
12169
|
+
"has_more": {
|
|
12170
|
+
"type": "boolean"
|
|
12171
|
+
},
|
|
12172
|
+
"page": {
|
|
12173
|
+
"type": "number",
|
|
12174
|
+
"minimum": 0
|
|
12175
|
+
},
|
|
12176
|
+
"page_count": {
|
|
12177
|
+
"type": [
|
|
12178
|
+
"boolean",
|
|
12179
|
+
"number"
|
|
12180
|
+
],
|
|
12181
|
+
"anyOf": [
|
|
12182
|
+
{
|
|
12183
|
+
"type": "boolean",
|
|
12184
|
+
"enum": [
|
|
12185
|
+
true
|
|
12186
|
+
]
|
|
12187
|
+
},
|
|
12188
|
+
{
|
|
12189
|
+
"type": "number",
|
|
12190
|
+
"minimum": 0
|
|
12191
|
+
}
|
|
12192
|
+
]
|
|
12193
|
+
}
|
|
12194
|
+
},
|
|
12195
|
+
"required": [
|
|
12196
|
+
"data",
|
|
12197
|
+
"has_more",
|
|
12198
|
+
"page",
|
|
12199
|
+
"page_count"
|
|
12200
|
+
]
|
|
12201
|
+
}
|
|
12202
|
+
}
|
|
12203
|
+
}
|
|
12204
|
+
},
|
|
12205
|
+
"304": {
|
|
12206
|
+
"description": "304 response"
|
|
12207
|
+
},
|
|
12208
|
+
"default": {
|
|
12209
|
+
"description": "Error",
|
|
12210
|
+
"content": {
|
|
12211
|
+
"application/json": {
|
|
12212
|
+
"schema": {
|
|
12213
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
12214
|
+
}
|
|
12215
|
+
}
|
|
12216
|
+
}
|
|
12217
|
+
}
|
|
12218
|
+
}
|
|
12219
|
+
}
|
|
12220
|
+
},
|
|
12135
12221
|
"/v2/notifications/get/count": {
|
|
12136
12222
|
"get": {
|
|
12137
12223
|
"responses": {
|
package/package.json
CHANGED