@bzbs/react-api-client 0.1.11 → 0.1.12
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/dist/index.d.mts +37 -1
- package/dist/index.d.ts +37 -1
- package/dist/index.js +37 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -137,7 +137,12 @@ var AuthenticateApi = class extends BaseService {
|
|
|
137
137
|
__spreadValues({
|
|
138
138
|
app_id: params.appId,
|
|
139
139
|
uuid: params.uuid,
|
|
140
|
-
|
|
140
|
+
device_locale: params.deviceLocale,
|
|
141
|
+
os: params.os,
|
|
142
|
+
platform: params.platform,
|
|
143
|
+
device_noti_enable: true,
|
|
144
|
+
client_version: params.clientVersion,
|
|
145
|
+
device_token: params.deviceToken
|
|
141
146
|
}, params.options),
|
|
142
147
|
{
|
|
143
148
|
headers: __spreadValues({
|
|
@@ -168,7 +173,12 @@ var AuthenticateApi = class extends BaseService {
|
|
|
168
173
|
access_token: params.accessToken,
|
|
169
174
|
app_id: params.appId,
|
|
170
175
|
uuid: params.uuid,
|
|
171
|
-
|
|
176
|
+
device_locale: params.deviceLocale,
|
|
177
|
+
os: params.os,
|
|
178
|
+
platform: params.platform,
|
|
179
|
+
device_noti_enable: true,
|
|
180
|
+
client_version: params.clientVersion,
|
|
181
|
+
device_token: params.deviceToken
|
|
172
182
|
}, params.options),
|
|
173
183
|
{
|
|
174
184
|
headers: __spreadValues({
|
|
@@ -199,7 +209,12 @@ var AuthenticateApi = class extends BaseService {
|
|
|
199
209
|
id_token: params.idToken,
|
|
200
210
|
app_id: params.appId,
|
|
201
211
|
uuid: params.uuid,
|
|
202
|
-
|
|
212
|
+
device_locale: params.deviceLocale,
|
|
213
|
+
os: params.os,
|
|
214
|
+
platform: params.platform,
|
|
215
|
+
device_noti_enable: true,
|
|
216
|
+
client_version: params.clientVersion,
|
|
217
|
+
device_token: params.deviceToken
|
|
203
218
|
}, params.options),
|
|
204
219
|
{
|
|
205
220
|
headers: __spreadValues({
|
|
@@ -233,7 +248,12 @@ var AuthenticateApi = class extends BaseService {
|
|
|
233
248
|
authorization_code: params.authorizationCode,
|
|
234
249
|
app_id: params.appId,
|
|
235
250
|
uuid: params.uuid,
|
|
236
|
-
|
|
251
|
+
device_locale: params.deviceLocale,
|
|
252
|
+
os: params.os,
|
|
253
|
+
platform: params.platform,
|
|
254
|
+
device_noti_enable: true,
|
|
255
|
+
client_version: params.clientVersion,
|
|
256
|
+
device_token: params.deviceToken
|
|
237
257
|
}, params.options),
|
|
238
258
|
{
|
|
239
259
|
headers: __spreadValues({
|
|
@@ -266,7 +286,12 @@ var AuthenticateApi = class extends BaseService {
|
|
|
266
286
|
refresh_token: params.refreshToken,
|
|
267
287
|
app_id: params.appId,
|
|
268
288
|
uuid: params.uuid,
|
|
269
|
-
|
|
289
|
+
device_locale: params.deviceLocale,
|
|
290
|
+
os: params.os,
|
|
291
|
+
platform: params.platform,
|
|
292
|
+
device_noti_enable: true,
|
|
293
|
+
client_version: params.clientVersion,
|
|
294
|
+
device_token: params.deviceToken
|
|
270
295
|
}, params.options),
|
|
271
296
|
{
|
|
272
297
|
headers: __spreadValues({
|
|
@@ -296,9 +321,14 @@ var AuthenticateApi = class extends BaseService {
|
|
|
296
321
|
__spreadValues({
|
|
297
322
|
username: params.username,
|
|
298
323
|
password: params.password,
|
|
299
|
-
uuid: params.uuid,
|
|
300
324
|
app_id: params.appId,
|
|
301
|
-
|
|
325
|
+
uuid: params.uuid,
|
|
326
|
+
device_locale: params.deviceLocale,
|
|
327
|
+
os: params.os,
|
|
328
|
+
platform: params.platform,
|
|
329
|
+
device_noti_enable: true,
|
|
330
|
+
client_version: params.clientVersion,
|
|
331
|
+
device_token: params.deviceToken
|
|
302
332
|
}, params.options),
|
|
303
333
|
{
|
|
304
334
|
headers: __spreadValues({
|