@drawbridge/drawbridge-stripe 0.1.15 → 0.1.16

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
@@ -622,9 +622,7 @@ var require_subscription = __commonJS({
622
622
  }
623
623
  ],
624
624
  metadata,
625
- ...billingCycleAnchor && {
626
- billing_cycle_anchor: billingCycleAnchor
627
- }
625
+ billing_cycle_anchor: billingCycleAnchor || "now"
628
626
  },
629
627
  idem(idempotencyKey, "subscription.create")
630
628
  );
package/dist/index.mjs CHANGED
@@ -628,9 +628,7 @@ var require_subscription = __commonJS({
628
628
  }
629
629
  ],
630
630
  metadata,
631
- ...billingCycleAnchor && {
632
- billing_cycle_anchor: billingCycleAnchor
633
- }
631
+ billing_cycle_anchor: billingCycleAnchor || "now"
634
632
  },
635
633
  idem(idempotencyKey, "subscription.create")
636
634
  );
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.16"
28
28
  }