orb-billing
Advanced tools
Comparing version 1.32.0 to 1.33.0
# Changelog | ||
## 1.33.0 (2023-12-11) | ||
Full Changelog: [v1.32.0...v1.33.0](https://github.com/orbcorp/orb-node/compare/v1.32.0...v1.33.0) | ||
### Features | ||
* **api:** updates ([#55](https://github.com/orbcorp/orb-node/issues/55)) ([1a22a28](https://github.com/orbcorp/orb-node/commit/1a22a28cf0b2800ecfbd8204f2e8dc502e73abd2)) | ||
### Build System | ||
* specify `packageManager: yarn` ([#53](https://github.com/orbcorp/orb-node/issues/53)) ([78de30f](https://github.com/orbcorp/orb-node/commit/78de30fb75637d6848d1793f6c5ff6315446668f)) | ||
## 1.32.0 (2023-12-08) | ||
@@ -4,0 +17,0 @@ |
{ | ||
"name": "orb-billing", | ||
"version": "1.32.0", | ||
"version": "1.33.0", | ||
"description": "The official TypeScript library for the Orb API", | ||
@@ -11,2 +11,3 @@ "author": "Orb <team@withorb.com>", | ||
"license": "Apache-2.0", | ||
"packageManager": "yarn@1.22.21", | ||
"private": false, | ||
@@ -13,0 +14,0 @@ "scripts": { |
@@ -380,3 +380,3 @@ import * as Core from 'orb-billing/core'; | ||
*/ | ||
customer_id: string; | ||
customer_id: string | null; | ||
/** | ||
@@ -483,6 +483,17 @@ * A name to meaningfully identify the action or event type. | ||
* This is an explicit array of IDs to filter by. Note that an event's ID is the | ||
* idempotency_key that was originally used for ingestion. Values in this array | ||
* will be treated case sensitively. | ||
* idempotency_key that was originally used for ingestion, and this only supports | ||
* events that have not been amended. Values in this array will be treated case | ||
* sensitively. | ||
*/ | ||
event_ids: Array<string>; | ||
/** | ||
* The end of the timeframe, exclusive, in which to search events. If not | ||
* specified, the current time is used. | ||
*/ | ||
timeframe_end?: string | null; | ||
/** | ||
* The start of the timeframe, inclusive, in which to search events. If not | ||
* specified, the one week ago is used. | ||
*/ | ||
timeframe_start?: string | null; | ||
} | ||
@@ -489,0 +500,0 @@ export declare namespace Events { |
@@ -411,3 +411,3 @@ // File generated from our OpenAPI spec by Stainless. | ||
*/ | ||
customer_id: string; | ||
customer_id: string | null; | ||
@@ -533,6 +533,19 @@ /** | ||
* This is an explicit array of IDs to filter by. Note that an event's ID is the | ||
* idempotency_key that was originally used for ingestion. Values in this array | ||
* will be treated case sensitively. | ||
* idempotency_key that was originally used for ingestion, and this only supports | ||
* events that have not been amended. Values in this array will be treated case | ||
* sensitively. | ||
*/ | ||
event_ids: Array<string>; | ||
/** | ||
* The end of the timeframe, exclusive, in which to search events. If not | ||
* specified, the current time is used. | ||
*/ | ||
timeframe_end?: string | null; | ||
/** | ||
* The start of the timeframe, inclusive, in which to search events. If not | ||
* specified, the one week ago is used. | ||
*/ | ||
timeframe_start?: string | null; | ||
} | ||
@@ -539,0 +552,0 @@ |
@@ -1,1 +0,1 @@ | ||
export const VERSION = '1.32.0'; // x-release-please-version | ||
export const VERSION = '1.33.0'; // x-release-please-version |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "1.32.0"; | ||
export declare const VERSION = "1.33.0"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.VERSION = void 0; | ||
exports.VERSION = '1.32.0'; // x-release-please-version | ||
exports.VERSION = '1.33.0'; // x-release-please-version | ||
//# sourceMappingURL=version.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2333510
43772