@drawbridge/drawbridge-stripe 0.1.15 → 0.1.17

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
@@ -587,7 +587,6 @@ var require_subscription = __commonJS({
587
587
  }
588
588
  },
589
589
  create: async ({
590
- billingCycleAnchor,
591
590
  customer,
592
591
  discounts = [],
593
592
  idempotencyKey,
@@ -621,10 +620,7 @@ var require_subscription = __commonJS({
621
620
  price: actions.price
622
621
  }
623
622
  ],
624
- metadata,
625
- ...billingCycleAnchor && {
626
- billing_cycle_anchor: billingCycleAnchor
627
- }
623
+ metadata
628
624
  },
629
625
  idem(idempotencyKey, "subscription.create")
630
626
  );
package/dist/index.mjs CHANGED
@@ -593,7 +593,6 @@ var require_subscription = __commonJS({
593
593
  }
594
594
  },
595
595
  create: async ({
596
- billingCycleAnchor,
597
596
  customer,
598
597
  discounts = [],
599
598
  idempotencyKey,
@@ -627,10 +626,7 @@ var require_subscription = __commonJS({
627
626
  price: actions.price
628
627
  }
629
628
  ],
630
- metadata,
631
- ...billingCycleAnchor && {
632
- billing_cycle_anchor: billingCycleAnchor
633
- }
629
+ metadata
634
630
  },
635
631
  idem(idempotencyKey, "subscription.create")
636
632
  );
package/package.json CHANGED
@@ -24,5 +24,5 @@
24
24
  "build": "tsup ./index.js && npm publish"
25
25
  },
26
26
  "types": "dist/index.d.ts",
27
- "version": "0.1.15"
27
+ "version": "0.1.17"
28
28
  }