@stackbe/sdk 0.6.1 → 0.6.2

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/dist/index.js CHANGED
@@ -624,6 +624,7 @@ var CheckoutClient = class {
624
624
  */
625
625
  async createSession(options) {
626
626
  const body = {
627
+ appId: this.appId,
627
628
  planId: options.planId,
628
629
  successUrl: options.successUrl,
629
630
  cancelUrl: options.cancelUrl,
package/dist/index.mjs CHANGED
@@ -591,6 +591,7 @@ var CheckoutClient = class {
591
591
  */
592
592
  async createSession(options) {
593
593
  const body = {
594
+ appId: this.appId,
594
595
  planId: options.planId,
595
596
  successUrl: options.successUrl,
596
597
  cancelUrl: options.cancelUrl,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackbe/sdk",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Official JavaScript/TypeScript SDK for StackBE - the billing backend for your side project",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",