idosell 0.4.1 → 0.4.4

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/changelog.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.3] - 2025-08-28
9
+ ### Changed
10
+ - Added type RequestParams for typescript support
11
+ - Added new explanatory and examples page
12
+ - Improved typings
13
+
8
14
  ## [0.3.20] - 2025-08-23
9
15
  ### Changed
10
16
  - Updated default version to v6.3
package/dist/app.d.ts CHANGED
@@ -59,7 +59,7 @@ export interface Gateway<R = JSObject, P = JSObject> {
59
59
  setParams: (params: P) => this
60
60
  }
61
61
 
62
- export interface PagableGateway<T,R = JSObject> extends Gateway<R> {
62
+ export interface PagableGateway<T,R = JSObject, P = JSObject> extends Gateway<R, P> {
63
63
  /**
64
64
  * @returns number of items i.e. products, orders, documents, etc.
65
65
  */