@@ -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 }
0 commit comments