chargebee 3.6.0 → 3.6.1
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 +7 -0
- package/cjs/environment.js +1 -1
- package/esm/environment.js +1 -1
- package/package.json +1 -1
- package/types/resources/Item.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
### v3.6.1 (2025-04-25)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
### Bug fixes:
|
|
5
|
+
* Fixed an issue where the optional boolean field is_percentage_pricing at Item Model was incorrectly marked as required.
|
|
6
|
+
* Fixed an issue where the optional enum field item_applicability at Item Model was incorrectly marked as required.
|
|
7
|
+
|
|
1
8
|
### v3.6.0 (2025-04-23)
|
|
2
9
|
* * *
|
|
3
10
|
|
package/cjs/environment.js
CHANGED
|
@@ -11,7 +11,7 @@ exports.Environment = {
|
|
|
11
11
|
hostSuffix: '.chargebee.com',
|
|
12
12
|
apiPath: '/api/v2',
|
|
13
13
|
timeout: DEFAULT_TIME_OUT,
|
|
14
|
-
clientVersion: 'v3.6.
|
|
14
|
+
clientVersion: 'v3.6.1',
|
|
15
15
|
port: DEFAULT_PORT,
|
|
16
16
|
timemachineWaitInMillis: DEFAULT_TIME_MACHINE_WAIT,
|
|
17
17
|
exportWaitInMillis: DEFAULT_EXPORT_WAIT,
|
package/esm/environment.js
CHANGED
|
@@ -8,7 +8,7 @@ export const Environment = {
|
|
|
8
8
|
hostSuffix: '.chargebee.com',
|
|
9
9
|
apiPath: '/api/v2',
|
|
10
10
|
timeout: DEFAULT_TIME_OUT,
|
|
11
|
-
clientVersion: 'v3.6.
|
|
11
|
+
clientVersion: 'v3.6.1',
|
|
12
12
|
port: DEFAULT_PORT,
|
|
13
13
|
timemachineWaitInMillis: DEFAULT_TIME_MACHINE_WAIT,
|
|
14
14
|
exportWaitInMillis: DEFAULT_EXPORT_WAIT,
|
package/package.json
CHANGED
|
@@ -19,12 +19,12 @@ declare module 'chargebee' {
|
|
|
19
19
|
enabled_for_checkout: boolean;
|
|
20
20
|
enabled_in_portal: boolean;
|
|
21
21
|
included_in_mrr?: boolean;
|
|
22
|
-
item_applicability
|
|
22
|
+
item_applicability?: 'all' | 'restricted';
|
|
23
23
|
gift_claim_redirect_url?: string;
|
|
24
24
|
unit?: string;
|
|
25
25
|
metered: boolean;
|
|
26
26
|
usage_calculation?: 'sum_of_usages' | 'last_usage' | 'max_usage';
|
|
27
|
-
is_percentage_pricing
|
|
27
|
+
is_percentage_pricing?: boolean;
|
|
28
28
|
archived_at?: number;
|
|
29
29
|
channel?: ChannelEnum;
|
|
30
30
|
applicable_items?: Item.ApplicableItem[];
|