@arrowsphere/api-client 3.13.1 → 3.13.2-rc.1
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 +12 -0
- package/build/abstractClient.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.13.2] - 2022-09-23
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- update Parameters Type
|
|
11
|
+
|
|
12
|
+
## [3.13.1] - 2022-09-01
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- update Axios package
|
|
17
|
+
|
|
6
18
|
## [3.13.0] - 2022-08-26
|
|
7
19
|
|
|
8
20
|
### Changed
|
|
@@ -10,7 +10,7 @@ export declare enum ParameterKeys {
|
|
|
10
10
|
ORDER_BY = "order_by",
|
|
11
11
|
PER_PAGE_CAMEL = "perPage"
|
|
12
12
|
}
|
|
13
|
-
export declare type Parameters = Record<string, string | string[] | undefined>;
|
|
13
|
+
export declare type Parameters = Record<string, string | string[] | number | number[] | boolean | null | undefined>;
|
|
14
14
|
export declare type Headers = Record<string, string>;
|
|
15
15
|
export declare type Payload = Record<string, unknown>;
|
|
16
16
|
export declare type Options = {
|
package/package.json
CHANGED