@suprsend/web-sdk 3.1.0 → 4.0.0
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/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/es/index.js +165 -164
- package/dist/es/index.js.map +1 -1
- package/dist/types/interface.d.ts +2 -5
- package/package.json +1 -1
|
@@ -162,19 +162,16 @@ export interface INotificationStore {
|
|
|
162
162
|
store: IStore;
|
|
163
163
|
pageInfo: {
|
|
164
164
|
total: number;
|
|
165
|
-
|
|
166
|
-
totalPages: number;
|
|
165
|
+
hasMore: boolean;
|
|
167
166
|
pageSize: number;
|
|
168
167
|
};
|
|
169
168
|
meta: Record<string, number>;
|
|
170
169
|
apiStatus: ApiResponseStatus;
|
|
171
|
-
|
|
170
|
+
isFirstFetch: boolean;
|
|
172
171
|
}
|
|
173
172
|
export interface IFeedData extends Omit<INotificationStore, '_firstFetchedTimeStamp'> {
|
|
174
173
|
}
|
|
175
174
|
export interface IInboxFetchOptions {
|
|
176
|
-
page?: number;
|
|
177
175
|
pageSize?: number;
|
|
178
|
-
storeId?: IStore;
|
|
179
176
|
}
|
|
180
177
|
export {};
|