Skip to content

Commit 269a12e

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

39 files changed

+70
-133
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
}

.fernignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ src/version.ts
1717
src/webhooks.ts
1818
src/wrapper.ts
1919
tests/unit/webhooks.test.ts
20+
changelog.md

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-06
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",

reference.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,6 @@ await client.billing.upsertBillingCoupon({
10001000
await client.billing.upsertBillingCustomer({
10011001
email: "email",
10021002
externalId: "external_id",
1003-
failedToImport: true,
10041003
meta: {
10051004
"key": "value"
10061005
},
@@ -1055,7 +1054,6 @@ await client.billing.upsertBillingCustomer({
10551054

10561055
```typescript
10571056
await client.billing.listCustomersWithSubscriptions({
1058-
failedToImport: true,
10591057
name: "name",
10601058
providerType: "schematic",
10611059
q: "q",
@@ -1111,7 +1109,6 @@ await client.billing.listCustomersWithSubscriptions({
11111109

11121110
```typescript
11131111
await client.billing.countCustomers({
1114-
failedToImport: true,
11151112
name: "name",
11161113
providerType: "schematic",
11171114
q: "q",

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/Client.ts

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ export class BillingClient {
328328
* await client.billing.upsertBillingCustomer({
329329
* email: "email",
330330
* externalId: "external_id",
331-
* failedToImport: true,
332331
* meta: {
333332
* "key": "value"
334333
* },
@@ -467,7 +466,6 @@ export class BillingClient {
467466
*
468467
* @example
469468
* await client.billing.listCustomersWithSubscriptions({
470-
* failedToImport: true,
471469
* name: "name",
472470
* providerType: "schematic",
473471
* q: "q",
@@ -486,7 +484,7 @@ export class BillingClient {
486484
request: Schematic.ListCustomersWithSubscriptionsRequest = {},
487485
requestOptions?: BillingClient.RequestOptions,
488486
): Promise<core.WithRawResponse<Schematic.ListCustomersWithSubscriptionsResponse>> {
489-
const { companyIds, failedToImport, name, providerType, q, limit, offset } = request;
487+
const { companyIds, name, providerType, q, limit, offset } = request;
490488
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
491489
if (companyIds != null) {
492490
if (Array.isArray(companyIds)) {
@@ -496,10 +494,6 @@ export class BillingClient {
496494
}
497495
}
498496

499-
if (failedToImport != null) {
500-
_queryParams.failed_to_import = failedToImport.toString();
501-
}
502-
503497
if (name != null) {
504498
_queryParams.name = name;
505499
}
@@ -638,7 +632,6 @@ export class BillingClient {
638632
*
639633
* @example
640634
* await client.billing.countCustomers({
641-
* failedToImport: true,
642635
* name: "name",
643636
* providerType: "schematic",
644637
* q: "q",
@@ -657,7 +650,7 @@ export class BillingClient {
657650
request: Schematic.CountCustomersRequest = {},
658651
requestOptions?: BillingClient.RequestOptions,
659652
): Promise<core.WithRawResponse<Schematic.CountCustomersResponse>> {
660-
const { companyIds, failedToImport, name, providerType, q, limit, offset } = request;
653+
const { companyIds, name, providerType, q, limit, offset } = request;
661654
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
662655
if (companyIds != null) {
663656
if (Array.isArray(companyIds)) {
@@ -667,10 +660,6 @@ export class BillingClient {
667660
}
668661
}
669662

670-
if (failedToImport != null) {
671-
_queryParams.failed_to_import = failedToImport.toString();
672-
}
673-
674663
if (name != null) {
675664
_queryParams.name = name;
676665
}

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/CountCustomersRequest.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import type * as Schematic from "../../../../index";
55
/**
66
* @example
77
* {
8-
* failedToImport: true,
98
* name: "name",
109
* providerType: "schematic",
1110
* q: "q",
@@ -15,7 +14,6 @@ import type * as Schematic from "../../../../index";
1514
*/
1615
export interface CountCustomersRequest {
1716
companyIds?: string | string[];
18-
failedToImport?: boolean;
1917
name?: string;
2018
providerType?: Schematic.BillingProviderType;
2119
q?: string;

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import type * as Schematic from "../../../../index";
77
* {
88
* email: "email",
99
* externalId: "external_id",
10-
* failedToImport: true,
1110
* meta: {
1211
* "key": "value"
1312
* },
@@ -19,7 +18,6 @@ export interface CreateBillingCustomerRequestBody {
1918
defaultPaymentMethodId?: string;
2019
email: string;
2120
externalId: string;
22-
failedToImport: boolean;
2321
meta: Record<string, string>;
2422
name: string;
2523
providerType?: Schematic.BillingProviderType;

0 commit comments

Comments
 (0)