api.fluff4.me 1.0.1142 → 1.0.1144
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 +30 -0
- package/openapi.json +125 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1144,12 +1144,30 @@ export interface Paths {
|
|
|
1144
1144
|
search?: undefined
|
|
1145
1145
|
response: void | ErrorResponse
|
|
1146
1146
|
},
|
|
1147
|
+
"/test/redirect": {
|
|
1148
|
+
method: "get"
|
|
1149
|
+
body?: undefined
|
|
1150
|
+
search?: undefined
|
|
1151
|
+
response: void | ErrorResponse
|
|
1152
|
+
},
|
|
1147
1153
|
"/test/error": {
|
|
1148
1154
|
method: "get"
|
|
1149
1155
|
body?: undefined
|
|
1150
1156
|
search?: undefined
|
|
1151
1157
|
response: void | ErrorResponse
|
|
1152
1158
|
},
|
|
1159
|
+
"/test/error/pg": {
|
|
1160
|
+
method: "get"
|
|
1161
|
+
body?: undefined
|
|
1162
|
+
search?: undefined
|
|
1163
|
+
response: void | ErrorResponse
|
|
1164
|
+
},
|
|
1165
|
+
"/test/error/pg/redirect": {
|
|
1166
|
+
method: "get"
|
|
1167
|
+
body?: undefined
|
|
1168
|
+
search?: undefined
|
|
1169
|
+
response: void | ErrorResponse
|
|
1170
|
+
},
|
|
1153
1171
|
"/session": {
|
|
1154
1172
|
method: "get"
|
|
1155
1173
|
body?: undefined
|
|
@@ -1228,12 +1246,24 @@ export interface Paths {
|
|
|
1228
1246
|
search?: undefined
|
|
1229
1247
|
response: void | ErrorResponse
|
|
1230
1248
|
},
|
|
1249
|
+
"/v2/auth/patreon/campaign/begin": {
|
|
1250
|
+
method: "get"
|
|
1251
|
+
body?: undefined
|
|
1252
|
+
search?: undefined
|
|
1253
|
+
response: void | ErrorResponse
|
|
1254
|
+
},
|
|
1231
1255
|
"/v2/auth/patreon/campaign/callback": {
|
|
1232
1256
|
method: "get"
|
|
1233
1257
|
body?: undefined
|
|
1234
1258
|
search?: undefined
|
|
1235
1259
|
response: void | ErrorResponse
|
|
1236
1260
|
},
|
|
1261
|
+
"/v2/auth/patreon/patron/begin": {
|
|
1262
|
+
method: "get"
|
|
1263
|
+
body?: undefined
|
|
1264
|
+
search?: undefined
|
|
1265
|
+
response: void | ErrorResponse
|
|
1266
|
+
},
|
|
1237
1267
|
"/v2/auth/patreon/patron/callback": {
|
|
1238
1268
|
method: "get"
|
|
1239
1269
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -6732,6 +6732,28 @@
|
|
|
6732
6732
|
}
|
|
6733
6733
|
}
|
|
6734
6734
|
},
|
|
6735
|
+
"/test/redirect": {
|
|
6736
|
+
"get": {
|
|
6737
|
+
"responses": {
|
|
6738
|
+
"200": {
|
|
6739
|
+
"description": "200 response"
|
|
6740
|
+
},
|
|
6741
|
+
"302": {
|
|
6742
|
+
"description": "302 response"
|
|
6743
|
+
},
|
|
6744
|
+
"default": {
|
|
6745
|
+
"description": "Error",
|
|
6746
|
+
"content": {
|
|
6747
|
+
"application/json": {
|
|
6748
|
+
"schema": {
|
|
6749
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
6750
|
+
}
|
|
6751
|
+
}
|
|
6752
|
+
}
|
|
6753
|
+
}
|
|
6754
|
+
}
|
|
6755
|
+
}
|
|
6756
|
+
},
|
|
6735
6757
|
"/test/error": {
|
|
6736
6758
|
"get": {
|
|
6737
6759
|
"responses": {
|
|
@@ -6751,6 +6773,47 @@
|
|
|
6751
6773
|
}
|
|
6752
6774
|
}
|
|
6753
6775
|
},
|
|
6776
|
+
"/test/error/pg": {
|
|
6777
|
+
"get": {
|
|
6778
|
+
"responses": {
|
|
6779
|
+
"200": {
|
|
6780
|
+
"description": "200 response"
|
|
6781
|
+
},
|
|
6782
|
+
"default": {
|
|
6783
|
+
"description": "Error",
|
|
6784
|
+
"content": {
|
|
6785
|
+
"application/json": {
|
|
6786
|
+
"schema": {
|
|
6787
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
6788
|
+
}
|
|
6789
|
+
}
|
|
6790
|
+
}
|
|
6791
|
+
}
|
|
6792
|
+
}
|
|
6793
|
+
}
|
|
6794
|
+
},
|
|
6795
|
+
"/test/error/pg/redirect": {
|
|
6796
|
+
"get": {
|
|
6797
|
+
"responses": {
|
|
6798
|
+
"200": {
|
|
6799
|
+
"description": "200 response"
|
|
6800
|
+
},
|
|
6801
|
+
"302": {
|
|
6802
|
+
"description": "302 response"
|
|
6803
|
+
},
|
|
6804
|
+
"default": {
|
|
6805
|
+
"description": "Error",
|
|
6806
|
+
"content": {
|
|
6807
|
+
"application/json": {
|
|
6808
|
+
"schema": {
|
|
6809
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
6810
|
+
}
|
|
6811
|
+
}
|
|
6812
|
+
}
|
|
6813
|
+
}
|
|
6814
|
+
}
|
|
6815
|
+
}
|
|
6816
|
+
},
|
|
6754
6817
|
"/session": {
|
|
6755
6818
|
"get": {
|
|
6756
6819
|
"responses": {
|
|
@@ -7112,12 +7175,59 @@
|
|
|
7112
7175
|
}
|
|
7113
7176
|
}
|
|
7114
7177
|
},
|
|
7178
|
+
"/v2/auth/patreon/campaign/begin": {
|
|
7179
|
+
"get": {
|
|
7180
|
+
"responses": {
|
|
7181
|
+
"200": {
|
|
7182
|
+
"description": "200 response"
|
|
7183
|
+
},
|
|
7184
|
+
"302": {
|
|
7185
|
+
"description": "302 response"
|
|
7186
|
+
},
|
|
7187
|
+
"default": {
|
|
7188
|
+
"description": "Error",
|
|
7189
|
+
"content": {
|
|
7190
|
+
"application/json": {
|
|
7191
|
+
"schema": {
|
|
7192
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7193
|
+
}
|
|
7194
|
+
}
|
|
7195
|
+
}
|
|
7196
|
+
}
|
|
7197
|
+
}
|
|
7198
|
+
}
|
|
7199
|
+
},
|
|
7115
7200
|
"/v2/auth/patreon/campaign/callback": {
|
|
7116
7201
|
"get": {
|
|
7117
7202
|
"responses": {
|
|
7118
7203
|
"200": {
|
|
7119
7204
|
"description": "200 response"
|
|
7120
7205
|
},
|
|
7206
|
+
"302": {
|
|
7207
|
+
"description": "302 response"
|
|
7208
|
+
},
|
|
7209
|
+
"default": {
|
|
7210
|
+
"description": "Error",
|
|
7211
|
+
"content": {
|
|
7212
|
+
"application/json": {
|
|
7213
|
+
"schema": {
|
|
7214
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
7215
|
+
}
|
|
7216
|
+
}
|
|
7217
|
+
}
|
|
7218
|
+
}
|
|
7219
|
+
}
|
|
7220
|
+
}
|
|
7221
|
+
},
|
|
7222
|
+
"/v2/auth/patreon/patron/begin": {
|
|
7223
|
+
"get": {
|
|
7224
|
+
"responses": {
|
|
7225
|
+
"200": {
|
|
7226
|
+
"description": "200 response"
|
|
7227
|
+
},
|
|
7228
|
+
"302": {
|
|
7229
|
+
"description": "302 response"
|
|
7230
|
+
},
|
|
7121
7231
|
"default": {
|
|
7122
7232
|
"description": "Error",
|
|
7123
7233
|
"content": {
|
|
@@ -7137,6 +7247,9 @@
|
|
|
7137
7247
|
"200": {
|
|
7138
7248
|
"description": "200 response"
|
|
7139
7249
|
},
|
|
7250
|
+
"302": {
|
|
7251
|
+
"description": "302 response"
|
|
7252
|
+
},
|
|
7140
7253
|
"default": {
|
|
7141
7254
|
"description": "Error",
|
|
7142
7255
|
"content": {
|
|
@@ -15527,6 +15640,9 @@
|
|
|
15527
15640
|
"200": {
|
|
15528
15641
|
"description": "200 response"
|
|
15529
15642
|
},
|
|
15643
|
+
"302": {
|
|
15644
|
+
"description": "302 response"
|
|
15645
|
+
},
|
|
15530
15646
|
"default": {
|
|
15531
15647
|
"description": "Error",
|
|
15532
15648
|
"content": {
|
|
@@ -15546,6 +15662,9 @@
|
|
|
15546
15662
|
"200": {
|
|
15547
15663
|
"description": "200 response"
|
|
15548
15664
|
},
|
|
15665
|
+
"302": {
|
|
15666
|
+
"description": "302 response"
|
|
15667
|
+
},
|
|
15549
15668
|
"default": {
|
|
15550
15669
|
"description": "Error",
|
|
15551
15670
|
"content": {
|
|
@@ -15565,6 +15684,9 @@
|
|
|
15565
15684
|
"200": {
|
|
15566
15685
|
"description": "200 response"
|
|
15567
15686
|
},
|
|
15687
|
+
"302": {
|
|
15688
|
+
"description": "302 response"
|
|
15689
|
+
},
|
|
15568
15690
|
"default": {
|
|
15569
15691
|
"description": "Error",
|
|
15570
15692
|
"content": {
|
|
@@ -15584,6 +15706,9 @@
|
|
|
15584
15706
|
"200": {
|
|
15585
15707
|
"description": "200 response"
|
|
15586
15708
|
},
|
|
15709
|
+
"302": {
|
|
15710
|
+
"description": "302 response"
|
|
15711
|
+
},
|
|
15587
15712
|
"default": {
|
|
15588
15713
|
"description": "Error",
|
|
15589
15714
|
"content": {
|
package/package.json
CHANGED