api.fluff4.me 1.0.573 → 1.0.574
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 +12 -0
- package/openapi.json +56 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1387,6 +1387,18 @@ export interface Paths {
|
|
|
1387
1387
|
search?: undefined
|
|
1388
1388
|
response: void | ErrorResponse
|
|
1389
1389
|
},
|
|
1390
|
+
"/danger-token/request/totp-enable/{service}/begin": {
|
|
1391
|
+
method: "get"
|
|
1392
|
+
body?: undefined
|
|
1393
|
+
search?: undefined
|
|
1394
|
+
response: void | ErrorResponse
|
|
1395
|
+
},
|
|
1396
|
+
"/danger-token/request/totp-delete/{service}/begin": {
|
|
1397
|
+
method: "get"
|
|
1398
|
+
body?: undefined
|
|
1399
|
+
search?: undefined
|
|
1400
|
+
response: void | ErrorResponse
|
|
1401
|
+
},
|
|
1390
1402
|
"/feed/get": {
|
|
1391
1403
|
method: "get"
|
|
1392
1404
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -8366,6 +8366,62 @@
|
|
|
8366
8366
|
}
|
|
8367
8367
|
}
|
|
8368
8368
|
},
|
|
8369
|
+
"/danger-token/request/totp-enable/{service}/begin": {
|
|
8370
|
+
"parameters": [
|
|
8371
|
+
{
|
|
8372
|
+
"name": "service",
|
|
8373
|
+
"in": "path"
|
|
8374
|
+
}
|
|
8375
|
+
],
|
|
8376
|
+
"get": {
|
|
8377
|
+
"responses": {
|
|
8378
|
+
"200": {
|
|
8379
|
+
"description": "200 response"
|
|
8380
|
+
},
|
|
8381
|
+
"302": {
|
|
8382
|
+
"description": "302 response"
|
|
8383
|
+
},
|
|
8384
|
+
"default": {
|
|
8385
|
+
"description": "Error",
|
|
8386
|
+
"content": {
|
|
8387
|
+
"application/json": {
|
|
8388
|
+
"schema": {
|
|
8389
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
8390
|
+
}
|
|
8391
|
+
}
|
|
8392
|
+
}
|
|
8393
|
+
}
|
|
8394
|
+
}
|
|
8395
|
+
}
|
|
8396
|
+
},
|
|
8397
|
+
"/danger-token/request/totp-delete/{service}/begin": {
|
|
8398
|
+
"parameters": [
|
|
8399
|
+
{
|
|
8400
|
+
"name": "service",
|
|
8401
|
+
"in": "path"
|
|
8402
|
+
}
|
|
8403
|
+
],
|
|
8404
|
+
"get": {
|
|
8405
|
+
"responses": {
|
|
8406
|
+
"200": {
|
|
8407
|
+
"description": "200 response"
|
|
8408
|
+
},
|
|
8409
|
+
"302": {
|
|
8410
|
+
"description": "302 response"
|
|
8411
|
+
},
|
|
8412
|
+
"default": {
|
|
8413
|
+
"description": "Error",
|
|
8414
|
+
"content": {
|
|
8415
|
+
"application/json": {
|
|
8416
|
+
"schema": {
|
|
8417
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
8418
|
+
}
|
|
8419
|
+
}
|
|
8420
|
+
}
|
|
8421
|
+
}
|
|
8422
|
+
}
|
|
8423
|
+
}
|
|
8424
|
+
},
|
|
8369
8425
|
"/feed/get": {
|
|
8370
8426
|
"get": {
|
|
8371
8427
|
"parameters": [
|
package/package.json
CHANGED