@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.
@@ -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, PaginationLinks, PaginationMetadata } from './utilities/PaginatedResult.js';
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
- metadata: PaginationMetadata;
3
+ pagination: Pagination;
4
4
  }
5
- interface PaginationMetadata {
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, PaginationLinks, PaginationMetadata };
21
+ export type { PaginatedResult, Pagination, PaginationLinks };
22
22
  //# sourceMappingURL=PaginatedResult.d.ts.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.2-alpha.25";
3
+ var version = "0.0.2-alpha.27";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.map
@@ -1,4 +1,4 @@
1
- var version = "0.0.2-alpha.25";
1
+ var version = "0.0.2-alpha.27";
2
2
 
3
3
  export { version };
4
4
  //# sourceMappingURL=package.json.mjs.map
package/dist/umd/index.js CHANGED
@@ -96,7 +96,7 @@
96
96
  }
97
97
  }
98
98
 
99
- var version$1 = "0.0.2-alpha.25";
99
+ var version$1 = "0.0.2-alpha.27";
100
100
 
101
101
  const isBrowser = typeof window !== "undefined";
102
102
  class SBInstance {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartbills/sdk",
3
- "version": "0.0.2-alpha.26",
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": "3de4b03f9337bd8c1f7d04e37ed48ee59e09e9f0"
94
+ "gitHead": "14eacd7dd886218fa4680ce6557e0efe58834093"
95
95
  }