@bzbs/react-api-client 1.0.5 → 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 +3 -0
- package/dist/index.d.ts +3 -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
|
@@ -265,6 +265,7 @@ interface CampaignDetail {
|
|
|
265
265
|
PointType?: string;
|
|
266
266
|
AgencyEmail?: string;
|
|
267
267
|
DefaultPrivilegeMessage?: string;
|
|
268
|
+
DefaultPrivilegeMessageEN?: string;
|
|
268
269
|
IsNotAutoUse?: boolean;
|
|
269
270
|
Pictures?: Picture[];
|
|
270
271
|
IsConditionPass?: boolean;
|
|
@@ -1937,6 +1938,8 @@ declare class NotificationApi extends BaseService {
|
|
|
1937
1938
|
notifications(params: {
|
|
1938
1939
|
mode: string | 'new' | 'all';
|
|
1939
1940
|
sortBy: string | 'createdate_desc' | 'createdate_asc';
|
|
1941
|
+
top?: number;
|
|
1942
|
+
skip?: number;
|
|
1940
1943
|
options?: {
|
|
1941
1944
|
[key: string]: unknown;
|
|
1942
1945
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -265,6 +265,7 @@ interface CampaignDetail {
|
|
|
265
265
|
PointType?: string;
|
|
266
266
|
AgencyEmail?: string;
|
|
267
267
|
DefaultPrivilegeMessage?: string;
|
|
268
|
+
DefaultPrivilegeMessageEN?: string;
|
|
268
269
|
IsNotAutoUse?: boolean;
|
|
269
270
|
Pictures?: Picture[];
|
|
270
271
|
IsConditionPass?: boolean;
|
|
@@ -1937,6 +1938,8 @@ declare class NotificationApi extends BaseService {
|
|
|
1937
1938
|
notifications(params: {
|
|
1938
1939
|
mode: string | 'new' | 'all';
|
|
1939
1940
|
sortBy: string | 'createdate_desc' | 'createdate_asc';
|
|
1941
|
+
top?: number;
|
|
1942
|
+
skip?: number;
|
|
1940
1943
|
options?: {
|
|
1941
1944
|
[key: string]: unknown;
|
|
1942
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
|
);
|