api.fluff4.me 1.0.568 → 1.0.569
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 +28 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -698,6 +698,12 @@ export interface Paths {
|
|
|
698
698
|
search?: undefined
|
|
699
699
|
response: void | ErrorResponse
|
|
700
700
|
},
|
|
701
|
+
"/auth/totp/verify": {
|
|
702
|
+
method: "post"
|
|
703
|
+
body: TOTPTokenBody
|
|
704
|
+
search?: undefined
|
|
705
|
+
response: void | ErrorResponse
|
|
706
|
+
},
|
|
701
707
|
"/auth/patreon/campaign/begin": {
|
|
702
708
|
method: "get"
|
|
703
709
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -3730,6 +3730,34 @@
|
|
|
3730
3730
|
}
|
|
3731
3731
|
}
|
|
3732
3732
|
},
|
|
3733
|
+
"/auth/totp/verify": {
|
|
3734
|
+
"post": {
|
|
3735
|
+
"requestBody": {
|
|
3736
|
+
"content": {
|
|
3737
|
+
"application/json": {
|
|
3738
|
+
"schema": {
|
|
3739
|
+
"$ref": "#/components/schemas/TOTPTokenBody"
|
|
3740
|
+
}
|
|
3741
|
+
}
|
|
3742
|
+
}
|
|
3743
|
+
},
|
|
3744
|
+
"responses": {
|
|
3745
|
+
"200": {
|
|
3746
|
+
"description": "200 response"
|
|
3747
|
+
},
|
|
3748
|
+
"default": {
|
|
3749
|
+
"description": "Error",
|
|
3750
|
+
"content": {
|
|
3751
|
+
"application/json": {
|
|
3752
|
+
"schema": {
|
|
3753
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
3754
|
+
}
|
|
3755
|
+
}
|
|
3756
|
+
}
|
|
3757
|
+
}
|
|
3758
|
+
}
|
|
3759
|
+
}
|
|
3760
|
+
},
|
|
3733
3761
|
"/auth/patreon/campaign/begin": {
|
|
3734
3762
|
"get": {
|
|
3735
3763
|
"responses": {
|
package/package.json
CHANGED