rebilly-js-sdk 56.34.2 → 56.34.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 +1 -6
- package/dist/rebilly-js-sdk.d.ts +2 -2
- package/dist/rebilly-js-sdk.es.js +562 -561
- package/dist/rebilly-js-sdk.umd.js +1 -1
- package/package.json +2 -2
- package/src/cancellation.js +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1 @@
|
|
|
1
|
-
## [56.34.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* **api-metadata, rebilly-js-sdk:** Remove experimental billing portal resource ([#5769](https://github.com/Rebilly/rebilly/issues/5769)) ([9f2687d](https://github.com/Rebilly/rebilly/commit/9f2687d8d81177aa1e9ab75d3863fbd1601a071d))
|
|
1
|
+
## [56.34.4](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v56.34.3...rebilly-js-sdk-v56.34.4) (2024-06-11)
|
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -83603,10 +83603,10 @@ declare module "requests-cache" {
|
|
|
83603
83603
|
declare module "cancellation" {
|
|
83604
83604
|
export class Cancellation {
|
|
83605
83605
|
static cancelById: (id: string, reason?: string) => void;
|
|
83606
|
-
static cancelAll: (reason?: string) => any
|
|
83606
|
+
static cancelAll: (reason?: string) => Promise<any>;
|
|
83607
83607
|
}
|
|
83608
83608
|
namespace _default {
|
|
83609
|
-
let cancelAll: (reason?: string) => any
|
|
83609
|
+
let cancelAll: (reason?: string) => Promise<any>;
|
|
83610
83610
|
}
|
|
83611
83611
|
export default _default;
|
|
83612
83612
|
}
|