@smartbills/sdk 0.0.2-alpha.26 → 0.0.2-alpha.28
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/@types/index.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ export { CurrentUserService } from './services/user/UserService.js';
|
|
|
279
279
|
export { SearchUsersRequest } from './services/users/SearchUsersRequest.js';
|
|
280
280
|
export { UserService } from './services/users/UserService.js';
|
|
281
281
|
export { ExploreService } from './services/explore/ExploreService.js';
|
|
282
|
-
export { PaginatedResult,
|
|
282
|
+
export { PaginatedResult, Pagination, PaginationLinks } from './utilities/PaginatedResult.js';
|
|
283
283
|
export { FileFormData } from './utilities/FileFormData.js';
|
|
284
284
|
export { SBAbortSignal } from './utilities/SBAbortSignal.js';
|
|
285
285
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
interface PaginatedResult<T> {
|
|
2
2
|
data: Array<T>;
|
|
3
|
-
|
|
3
|
+
pagination: Pagination;
|
|
4
4
|
}
|
|
5
|
-
interface
|
|
5
|
+
interface Pagination {
|
|
6
6
|
count: number;
|
|
7
7
|
limit: number;
|
|
8
8
|
currentPage: number;
|
|
@@ -18,5 +18,5 @@ interface PaginationLinks {
|
|
|
18
18
|
self?: string;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
export type { PaginatedResult,
|
|
21
|
+
export type { PaginatedResult, Pagination, PaginationLinks };
|
|
22
22
|
//# sourceMappingURL=PaginatedResult.d.ts.map
|
package/dist/umd/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartbills/sdk",
|
|
3
|
-
"version": "0.0.2-alpha.
|
|
3
|
+
"version": "0.0.2-alpha.28",
|
|
4
4
|
"description": "Smartbills SDK for JS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cjs/index.cjs",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"access": "public",
|
|
92
92
|
"registry": "http://registry.npmjs.org/"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "14eacd7dd886218fa4680ce6557e0efe58834093"
|
|
95
95
|
}
|