@bzbs/react-api-client 1.0.6 → 1.0.8
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -486,6 +486,9 @@ interface CouponResponseData {
|
|
|
486
486
|
}
|
|
487
487
|
|
|
488
488
|
interface Dashboard {
|
|
489
|
+
name?: string;
|
|
490
|
+
config?: string;
|
|
491
|
+
icon_url?: string;
|
|
489
492
|
type?: string;
|
|
490
493
|
size?: string;
|
|
491
494
|
imgtype?: string;
|
|
@@ -1938,6 +1941,8 @@ declare class NotificationApi extends BaseService {
|
|
|
1938
1941
|
notifications(params: {
|
|
1939
1942
|
mode: string | 'new' | 'all';
|
|
1940
1943
|
sortBy: string | 'createdate_desc' | 'createdate_asc';
|
|
1944
|
+
top?: number;
|
|
1945
|
+
skip?: number;
|
|
1941
1946
|
options?: {
|
|
1942
1947
|
[key: string]: unknown;
|
|
1943
1948
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -486,6 +486,9 @@ interface CouponResponseData {
|
|
|
486
486
|
}
|
|
487
487
|
|
|
488
488
|
interface Dashboard {
|
|
489
|
+
name?: string;
|
|
490
|
+
config?: string;
|
|
491
|
+
icon_url?: string;
|
|
489
492
|
type?: string;
|
|
490
493
|
size?: string;
|
|
491
494
|
imgtype?: string;
|
|
@@ -1938,6 +1941,8 @@ declare class NotificationApi extends BaseService {
|
|
|
1938
1941
|
notifications(params: {
|
|
1939
1942
|
mode: string | 'new' | 'all';
|
|
1940
1943
|
sortBy: string | 'createdate_desc' | 'createdate_asc';
|
|
1944
|
+
top?: number;
|
|
1945
|
+
skip?: number;
|
|
1941
1946
|
options?: {
|
|
1942
1947
|
[key: string]: unknown;
|
|
1943
1948
|
};
|
package/dist/index.js
CHANGED
|
@@ -1300,7 +1300,9 @@ var NotificationApi = class extends BaseService {
|
|
|
1300
1300
|
"noti",
|
|
1301
1301
|
__spreadValues({
|
|
1302
1302
|
mode: params.mode,
|
|
1303
|
-
sortBy: params.sortBy
|
|
1303
|
+
sortBy: params.sortBy,
|
|
1304
|
+
top: params.top,
|
|
1305
|
+
skip: params.skip
|
|
1304
1306
|
}, params.options),
|
|
1305
1307
|
requestOptions
|
|
1306
1308
|
);
|