@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 +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -622,9 +622,7 @@ var require_subscription = __commonJS({
|
|
|
622
622
|
}
|
|
623
623
|
],
|
|
624
624
|
metadata,
|
|
625
|
-
|
|
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
|
-
|
|
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