@bzbs/react-api-client 1.0.6 → 1.0.7
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 +2 -0
- package/dist/index.d.ts +2 -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
|
@@ -1938,6 +1938,8 @@ declare class NotificationApi extends BaseService {
|
|
|
1938
1938
|
notifications(params: {
|
|
1939
1939
|
mode: string | 'new' | 'all';
|
|
1940
1940
|
sortBy: string | 'createdate_desc' | 'createdate_asc';
|
|
1941
|
+
top?: number;
|
|
1942
|
+
skip?: number;
|
|
1941
1943
|
options?: {
|
|
1942
1944
|
[key: string]: unknown;
|
|
1943
1945
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1938,6 +1938,8 @@ declare class NotificationApi extends BaseService {
|
|
|
1938
1938
|
notifications(params: {
|
|
1939
1939
|
mode: string | 'new' | 'all';
|
|
1940
1940
|
sortBy: string | 'createdate_desc' | 'createdate_asc';
|
|
1941
|
+
top?: number;
|
|
1942
|
+
skip?: number;
|
|
1941
1943
|
options?: {
|
|
1942
1944
|
[key: string]: unknown;
|
|
1943
1945
|
};
|
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
|
);
|