Skip to content

Commit 2d95700

Browse files
SDK regeneration
Unable to analyze changes with AI, incrementing PATCH version.
1 parent 9b0b98c commit 2d95700

23 files changed

+61
-39
lines changed

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
"files": ["dist/**/*.js", "dist/**/*.d.ts", "!dist/**/*.js.map", "!dist/**/*.test.*", "README.md"]
4242
}
4343
},
44-
"sdkVersion": "1.3.0"
44+
"sdkVersion": "1.3.1"
4545
}

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 1.3.1 - 2026-01-05
2+
* SDK regeneration
3+
* Unable to analyze changes with AI, incrementing PATCH version.
4+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@schematichq/schematic-typescript-node",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"private": false,
55
"repository": {
66
"type": "git",

src/BaseClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export function normalizeClientOptions<T extends BaseClientOptions = BaseClientO
5252
{
5353
"X-Fern-Language": "JavaScript",
5454
"X-Fern-SDK-Name": "@schematichq/schematic-typescript-node",
55-
"X-Fern-SDK-Version": "1.3.0",
56-
"User-Agent": "@schematichq/schematic-typescript-node/1.3.0",
55+
"X-Fern-SDK-Version": "1.3.1",
56+
"User-Agent": "@schematichq/schematic-typescript-node/AUTO",
5757
"X-Fern-Runtime": core.RUNTIME.type,
5858
"X-Fern-Runtime-Version": core.RUNTIME.version,
5959
},

src/api/resources/billing/client/requests/CountBillingProductsRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type * as Schematic from "../../../../index";
2020
*/
2121
export interface CountBillingProductsRequest {
2222
ids?: string | string[];
23-
/** Filter products that are active */
23+
/** Filter products that are active. Defaults to true if not specified */
2424
isActive?: boolean;
2525
name?: string;
2626
priceUsageType?: Schematic.BillingPriceUsageType;

src/api/resources/billing/client/requests/ListBillingProductsRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type * as Schematic from "../../../../index";
2020
*/
2121
export interface ListBillingProductsRequest {
2222
ids?: string | string[];
23-
/** Filter products that are active */
23+
/** Filter products that are active. Defaults to true if not specified */
2424
isActive?: boolean;
2525
name?: string;
2626
priceUsageType?: Schematic.BillingPriceUsageType;

src/api/resources/billing/types/CountBillingProductsParams.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type * as Schematic from "../../../index";
77
*/
88
export interface CountBillingProductsParams {
99
ids?: string[];
10-
/** Filter products that are active */
10+
/** Filter products that are active. Defaults to true if not specified */
1111
isActive?: boolean;
1212
/** Page limit (default 100) */
1313
limit?: number;

src/api/resources/billing/types/ListBillingProductsParams.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type * as Schematic from "../../../index";
77
*/
88
export interface ListBillingProductsParams {
99
ids?: string[];
10-
/** Filter products that are active */
10+
/** Filter products that are active. Defaults to true if not specified */
1111
isActive?: boolean;
1212
/** Page limit (default 100) */
1313
limit?: number;

src/api/types/BillingCreditGrantResponseData.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ export interface BillingCreditGrantResponseData {
1818
quantity: number;
1919
quantityRemaining: number;
2020
quantityUsed: number;
21+
renewalEnabled: boolean;
22+
renewalPeriod?: Schematic.BillingPlanCreditGrantResetCadence;
2123
sourceLabel: string;
2224
transfers?: Schematic.CreditTransferResponseData[];
2325
updatedAt: Date;

src/api/types/CreditCompanyGrantView.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export interface CreditCompanyGrantView {
2525
quantity: number;
2626
quantityRemaining: number;
2727
quantityUsed: number;
28+
renewalEnabled: boolean;
29+
renewalPeriod?: Schematic.BillingPlanCreditGrantResetCadence;
2830
singularName?: string;
2931
sourceLabel: string;
3032
transfers?: Schematic.CreditTransferView[];

0 commit comments

Comments
 (0)