rebilly-js-sdk 62.116.2 → 62.117.0
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 +3 -3
- package/dist/rebilly-js-sdk.d.ts +6 -0
- package/dist/rebilly-js-sdk.es.mjs +606 -575
- package/dist/rebilly-js-sdk.umd.js +4 -4
- package/package.json +5 -4
- package/vite.config.js +0 -7
- package/vitest.config.mts +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [62.
|
|
1
|
+
## [62.117.0](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.116.2...rebilly-js-sdk-v62.117.0) (2026-06-10)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#22491](https://github.com/Rebilly/rebilly/issues/22491)) ([baf3d77](https://github.com/Rebilly/rebilly/commit/baf3d778f0c08aededfae8342751674823c1b3ab))
|
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -19990,6 +19990,8 @@ export interface coreComponents {
|
|
|
19990
19990
|
apiKey: string;
|
|
19991
19991
|
/** NuaPay API key for reconciliation. */
|
|
19992
19992
|
nuaPayApiKey?: string;
|
|
19993
|
+
/** Secret for checksum verification for SEPA Instant Instant Notification (SIIN). */
|
|
19994
|
+
isxSiinSecret?: string;
|
|
19993
19995
|
/** NuaPay account ID for reconciliation. */
|
|
19994
19996
|
nuaPayAccountId?: string;
|
|
19995
19997
|
};
|
|
@@ -58127,6 +58129,8 @@ export interface storefrontComponents {
|
|
|
58127
58129
|
apiKey: string;
|
|
58128
58130
|
/** NuaPay API key for reconciliation. */
|
|
58129
58131
|
nuaPayApiKey?: string;
|
|
58132
|
+
/** Secret for checksum verification for SEPA Instant Instant Notification (SIIN). */
|
|
58133
|
+
isxSiinSecret?: string;
|
|
58130
58134
|
/** NuaPay account ID for reconciliation. */
|
|
58131
58135
|
nuaPayAccountId?: string;
|
|
58132
58136
|
};
|
|
@@ -83742,6 +83746,8 @@ export interface reportsComponents {
|
|
|
83742
83746
|
apiKey: string;
|
|
83743
83747
|
/** NuaPay API key for reconciliation. */
|
|
83744
83748
|
nuaPayApiKey?: string;
|
|
83749
|
+
/** Secret for checksum verification for SEPA Instant Instant Notification (SIIN). */
|
|
83750
|
+
isxSiinSecret?: string;
|
|
83745
83751
|
/** NuaPay account ID for reconciliation. */
|
|
83746
83752
|
nuaPayAccountId?: string;
|
|
83747
83753
|
};
|