orb-billing 1.25.0 → 1.27.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 +31 -0
- package/README.md +40 -2
- package/core.d.ts +1 -0
- package/core.d.ts.map +1 -1
- package/core.js +5 -1
- package/core.js.map +1 -1
- package/core.mjs +5 -1
- package/core.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/customers/credits/ledger.d.ts +2 -2
- package/resources/customers/customers.d.ts +1 -13
- package/resources/customers/customers.d.ts.map +1 -1
- package/resources/customers/customers.js.map +1 -1
- package/resources/customers/customers.mjs.map +1 -1
- package/resources/events/events.d.ts +7 -49
- package/resources/events/events.d.ts.map +1 -1
- package/resources/events/events.js +23 -20
- package/resources/events/events.js.map +1 -1
- package/resources/events/events.mjs +23 -20
- package/resources/events/events.mjs.map +1 -1
- package/resources/prices/prices.d.ts +135 -135
- package/resources/prices/prices.d.ts.map +1 -1
- package/resources/subscriptions.d.ts +1 -1
- package/src/core.ts +11 -2
- package/src/resources/customers/credits/ledger.ts +2 -2
- package/src/resources/customers/customers.ts +1 -15
- package/src/resources/events/events.ts +8 -88
- package/src/resources/prices/prices.ts +217 -217
- package/src/resources/subscriptions.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -399,7 +399,7 @@ export class Subscriptions extends APIResource {
|
|
|
399
399
|
* Orb supports invoicing for a subscription when a preconfigured usage threshold
|
|
400
400
|
* is hit. To enable threshold billing, pass in an `invoicing_threshold`, which is
|
|
401
401
|
* specified in the subscription's invoicing currency, when creating a
|
|
402
|
-
* subscription.
|
|
402
|
+
* subscription. E.g. pass in `10.00` to issue an invoice when usage amounts hit
|
|
403
403
|
* $10.00 for a subscription that invoices in USD.
|
|
404
404
|
*/
|
|
405
405
|
create(body?: SubscriptionCreateParams, options?: Core.RequestOptions): Core.APIPromise<Subscription>;
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.27.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.27.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.27.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|