Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lob/lob-typescript-sdk

Package Overview
Dependencies
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lob/lob-typescript-sdk - npm Package Compare versions

Comparing version 1.3.3 to 1.3.5

16

dist/api/addresses-api.d.ts

@@ -23,3 +23,3 @@ /**

*/
export declare const AddressesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const AddressesApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -61,3 +61,3 @@ * Creates a new address given information

*/
addressesList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
addressesList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;

@@ -72,3 +72,3 @@ } | undefined, metadata?: {

*/
export declare const AddressesApiFp: (configuration?: Configuration | undefined) => {
export declare const AddressesApiFp: (configuration?: Configuration) => {
/**

@@ -81,3 +81,3 @@ * Creates a new address given information

*/
addressCreate(addressEditable: AddressEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Address>>;
addressCreate(addressEditable: AddressEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Address>>;
/**

@@ -90,3 +90,3 @@ * Deletes the details of an existing address.

*/
addressDelete(adrId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AddressDeletion>>;
addressDelete(adrId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDeletion>>;
/**

@@ -99,3 +99,3 @@ * Retrieves the details of an existing address.

*/
addressRetrieve(adrId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Address>>;
addressRetrieve(adrId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Address>>;
/**

@@ -113,7 +113,7 @@ * Returns a list of your addresses.

*/
addressesList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
addressesList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AddressList>>;
} | undefined, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressList>>;
};

@@ -120,0 +120,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -71,3 +71,3 @@ * Creates a new bank account with the provided properties. Bank accounts created in live mode will need to be verified via micro deposits before being able to send live checks. The deposits will appear in the bank account in 2-3 business days and have the description \"VERIFICATION\".

*/
bankAccountsList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
bankAccountsList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;

@@ -82,3 +82,3 @@ } | undefined, metadata?: {

*/
export declare const BankAccountsApiFp: (configuration?: Configuration | undefined) => {
export declare const BankAccountsApiFp: (configuration?: Configuration) => {
/**

@@ -91,3 +91,3 @@ * Creates a new bank account with the provided properties. Bank accounts created in live mode will need to be verified via micro deposits before being able to send live checks. The deposits will appear in the bank account in 2-3 business days and have the description \"VERIFICATION\".

*/
bankAccountCreate(bankAccountWritable: BankAccountWritable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BankAccount>>;
bankAccountCreate(bankAccountWritable: BankAccountWritable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccount>>;
/**

@@ -100,3 +100,3 @@ * Permanently deletes a bank account. It cannot be undone.

*/
bankAccountDelete(bankId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BankAccountDeletion>>;
bankAccountDelete(bankId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountDeletion>>;
/**

@@ -109,3 +109,3 @@ * Retrieves the details of an existing bank account. You need only supply the unique bank account identifier that was returned upon bank account creation.

*/
bankAccountRetrieve(bankId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BankAccount>>;
bankAccountRetrieve(bankId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccount>>;
/**

@@ -119,3 +119,3 @@ * Verify a bank account in order to create a check.

*/
bankAccountVerify(bankId: string, bankAccountVerify: BankAccountVerify, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BankAccount>>;
bankAccountVerify(bankId: string, bankAccountVerify: BankAccountVerify, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccount>>;
/**

@@ -133,7 +133,7 @@ * Returns a list of your bank accounts. The bank accounts are returned sorted by creation date, with the most recently created bank accounts appearing first.

*/
bankAccountsList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
bankAccountsList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BankAccountList>>;
} | undefined, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountList>>;
};

@@ -140,0 +140,0 @@ /**

@@ -22,3 +22,3 @@ /**

*/
export declare const BillingGroupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const BillingGroupsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -61,7 +61,7 @@ * Creates a new billing_group with the provided properties.

*/
billingGroupsList: (limit?: number | undefined, offset?: number | undefined, include?: string[] | undefined, dateCreated?: {
billingGroupsList: (limit?: number, offset?: number, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, dateModified?: {
[key: string]: string;
} | undefined, sortByDateModified?: object | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
} | undefined, sortByDateModified?: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -72,3 +72,3 @@ /**

*/
export declare const BillingGroupsApiFp: (configuration?: Configuration | undefined) => {
export declare const BillingGroupsApiFp: (configuration?: Configuration) => {
/**

@@ -81,3 +81,3 @@ * Creates a new billing_group with the provided properties.

*/
billingGroupCreate(billingGroupEditable: BillingGroupEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BillingGroup>>;
billingGroupCreate(billingGroupEditable: BillingGroupEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BillingGroup>>;
/**

@@ -90,3 +90,3 @@ * Retrieves the details of an existing billing_group. You need only supply the unique billing_group identifier that was returned upon billing_group creation.

*/
billingGroupRetrieve(bgId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BillingGroup>>;
billingGroupRetrieve(bgId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BillingGroup>>;
/**

@@ -100,3 +100,3 @@ * Updates all editable attributes of the billing_group with the given id.

*/
billingGroupUpdate(bgId: string, billingGroupEditable: BillingGroupEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BillingGroup>>;
billingGroupUpdate(bgId: string, billingGroupEditable: BillingGroupEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BillingGroup>>;
/**

@@ -114,7 +114,7 @@ * Returns a list of your billing_groups. The billing_groups are returned sorted by creation date, with the most recently created billing_groups appearing first.

*/
billingGroupsList(limit?: number | undefined, offset?: number | undefined, include?: string[] | undefined, dateCreated?: {
billingGroupsList(limit?: number, offset?: number, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, dateModified?: {
[key: string]: string;
} | undefined, sortByDateModified?: object | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BillingGroupList>>;
} | undefined, sortByDateModified?: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BillingGroupList>>;
};

@@ -121,0 +121,0 @@ /**

@@ -22,3 +22,3 @@ /**

*/
export declare const BuckslipOrdersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const BuckslipOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -42,3 +42,3 @@ * Creates a new buckslip order given information

*/
buckslipOrdersRetrieve: (buckslipId: string, limit?: number | undefined, offset?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
buckslipOrdersRetrieve: (buckslipId: string, limit?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -49,3 +49,3 @@ /**

*/
export declare const BuckslipOrdersApiFp: (configuration?: Configuration | undefined) => {
export declare const BuckslipOrdersApiFp: (configuration?: Configuration) => {
/**

@@ -59,3 +59,3 @@ * Creates a new buckslip order given information

*/
buckslipOrderCreate(buckslipId: string, buckslipOrderEditable: BuckslipOrderEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BuckslipOrder>>;
buckslipOrderCreate(buckslipId: string, buckslipOrderEditable: BuckslipOrderEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuckslipOrder>>;
/**

@@ -70,3 +70,3 @@ * Retrieves the buckslip orders associated with the given buckslip id.

*/
buckslipOrdersRetrieve(buckslipId: string, limit?: number | undefined, offset?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BuckslipOrdersList>>;
buckslipOrdersRetrieve(buckslipId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuckslipOrdersList>>;
};

@@ -73,0 +73,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const BuckslipsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const BuckslipsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -69,3 +69,3 @@ * Creates a new buckslip given information

*/
buckslipsList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
buckslipsList: (limit?: number, before?: string, after?: string, include?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -76,3 +76,3 @@ /**

*/
export declare const BuckslipsApiFp: (configuration?: Configuration | undefined) => {
export declare const BuckslipsApiFp: (configuration?: Configuration) => {
/**

@@ -85,3 +85,3 @@ * Creates a new buckslip given information

*/
buckslipCreate(buckslipEditable: BuckslipEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Buckslip>>;
buckslipCreate(buckslipEditable: BuckslipEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Buckslip>>;
/**

@@ -94,3 +94,3 @@ * Delete an existing buckslip. You need only supply the unique identifier that was returned upon buckslip creation.

*/
buckslipDelete(buckslipId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BuckslipDeletion>>;
buckslipDelete(buckslipId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuckslipDeletion>>;
/**

@@ -103,3 +103,3 @@ * Retrieves the details of an existing buckslip. You need only supply the unique customer identifier that was returned upon buckslip creation.

*/
buckslipRetrieve(buckslipId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Buckslip>>;
buckslipRetrieve(buckslipId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Buckslip>>;
/**

@@ -113,3 +113,3 @@ * Update the details of an existing buckslip. You need only supply the unique identifier that was returned upon buckslip creation.

*/
buckslipUpdate(buckslipId: string, buckslipUpdatable: BuckslipUpdatable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Buckslip>>;
buckslipUpdate(buckslipId: string, buckslipUpdatable: BuckslipUpdatable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Buckslip>>;
/**

@@ -125,3 +125,3 @@ * Returns a list of your buckslips. The buckslips are returned sorted by creation date, with the most recently created buckslips appearing first.

*/
buckslipsList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BuckslipsList>>;
buckslipsList(limit?: number, before?: string, after?: string, include?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BuckslipsList>>;
};

@@ -128,0 +128,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const CampaignsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const CampaignsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -34,3 +34,3 @@ * Creates a new campaign with the provided properties. See how to launch your first campaign [here](https://help.lob.com/best-practices/launching-your-first-campaign).

*/
campaignCreate: (campaignWritable: CampaignWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
campaignCreate: (campaignWritable: CampaignWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -71,3 +71,3 @@ * Delete an existing campaign. You need only supply the unique identifier that was returned upon campaign creation. Deleting a campaign also deletes any associated mail pieces that have been created but not sent. A campaign\'s `send_date` matches its associated mail pieces\' `send_date`s.

*/
campaignsList: (limit?: number | undefined, include?: string[] | undefined, before?: string | undefined, after?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
campaignsList: (limit?: number, include?: Array<string>, before?: string, after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -78,3 +78,3 @@ /**

*/
export declare const CampaignsApiFp: (configuration?: Configuration | undefined) => {
export declare const CampaignsApiFp: (configuration?: Configuration) => {
/**

@@ -88,3 +88,3 @@ * Creates a new campaign with the provided properties. See how to launch your first campaign [here](https://help.lob.com/best-practices/launching-your-first-campaign).

*/
campaignCreate(campaignWritable: CampaignWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Campaign>>;
campaignCreate(campaignWritable: CampaignWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Campaign>>;
/**

@@ -97,3 +97,3 @@ * Delete an existing campaign. You need only supply the unique identifier that was returned upon campaign creation. Deleting a campaign also deletes any associated mail pieces that have been created but not sent. A campaign\'s `send_date` matches its associated mail pieces\' `send_date`s.

*/
campaignDelete(cmpId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CampaignDeletion>>;
campaignDelete(cmpId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CampaignDeletion>>;
/**

@@ -106,3 +106,3 @@ * Retrieves the details of an existing campaign. You need only supply the unique campaign identifier that was returned upon campaign creation.

*/
campaignRetrieve(cmpId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Campaign>>;
campaignRetrieve(cmpId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Campaign>>;
/**

@@ -116,3 +116,3 @@ * Update the details of an existing campaign. You need only supply the unique identifier that was returned upon campaign creation.

*/
campaignUpdate(cmpId: string, campaignUpdatable: CampaignUpdatable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Campaign>>;
campaignUpdate(cmpId: string, campaignUpdatable: CampaignUpdatable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Campaign>>;
/**

@@ -128,3 +128,3 @@ * Returns a list of your campaigns. The campaigns are returned sorted by creation date, with the most recently created campaigns appearing first.

*/
campaignsList(limit?: number | undefined, include?: string[] | undefined, before?: string | undefined, after?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CampaignsList>>;
campaignsList(limit?: number, include?: Array<string>, before?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CampaignsList>>;
};

@@ -131,0 +131,0 @@ /**

@@ -22,3 +22,3 @@ /**

*/
export declare const CardOrdersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const CardOrdersApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -42,3 +42,3 @@ * Creates a new card order given information

*/
cardOrdersRetrieve: (cardId: string, limit?: number | undefined, offset?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
cardOrdersRetrieve: (cardId: string, limit?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -49,3 +49,3 @@ /**

*/
export declare const CardOrdersApiFp: (configuration?: Configuration | undefined) => {
export declare const CardOrdersApiFp: (configuration?: Configuration) => {
/**

@@ -59,3 +59,3 @@ * Creates a new card order given information

*/
cardOrderCreate(cardId: string, cardOrderEditable: CardOrderEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CardOrder>>;
cardOrderCreate(cardId: string, cardOrderEditable: CardOrderEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CardOrder>>;
/**

@@ -70,3 +70,3 @@ * Retrieves the card orders associated with the given card id.

*/
cardOrdersRetrieve(cardId: string, limit?: number | undefined, offset?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CardOrderList>>;
cardOrdersRetrieve(cardId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CardOrderList>>;
};

@@ -73,0 +73,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const CardsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const CardsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -69,3 +69,3 @@ * Creates a new card given information

*/
cardsList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
cardsList: (limit?: number, before?: string, after?: string, include?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -76,3 +76,3 @@ /**

*/
export declare const CardsApiFp: (configuration?: Configuration | undefined) => {
export declare const CardsApiFp: (configuration?: Configuration) => {
/**

@@ -85,3 +85,3 @@ * Creates a new card given information

*/
cardCreate(cardEditable: CardEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Card>>;
cardCreate(cardEditable: CardEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Card>>;
/**

@@ -94,3 +94,3 @@ * Delete an existing card. You need only supply the unique identifier that was returned upon card creation.

*/
cardDelete(cardId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CardDeletion>>;
cardDelete(cardId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CardDeletion>>;
/**

@@ -103,3 +103,3 @@ * Retrieves the details of an existing card. You need only supply the unique customer identifier that was returned upon card creation.

*/
cardRetrieve(cardId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Card>>;
cardRetrieve(cardId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Card>>;
/**

@@ -113,3 +113,3 @@ * Update the details of an existing card. You need only supply the unique identifier that was returned upon card creation.

*/
cardUpdate(cardId: string, cardUpdatable: CardUpdatable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Card>>;
cardUpdate(cardId: string, cardUpdatable: CardUpdatable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Card>>;
/**

@@ -125,3 +125,3 @@ * Returns a list of your cards. The cards are returned sorted by creation date, with the most recently created addresses appearing first.

*/
cardsList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CardList>>;
cardsList(limit?: number, before?: string, after?: string, include?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CardList>>;
};

@@ -128,0 +128,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const ChecksApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const ChecksApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -42,3 +42,3 @@ * Completely removes a check from production. This can only be done if the check has a `send_date` and the `send_date` has not yet passed. If the check is successfully canceled, you will not be charged for it. Read more on [cancellation windows](#section/Cancellation-Windows) and [scheduling](#section/Scheduled-Mailings). Scheduling and cancellation is a premium feature. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.

*/
checkCreate: (checkEditable: CheckEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
checkCreate: (checkEditable: CheckEditable, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -68,9 +68,9 @@ * Retrieves the details of an existing check. You need only supply the unique check identifier that was returned upon check creation.

*/
checksList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
checksList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -81,3 +81,3 @@ /**

*/
export declare const ChecksApiFp: (configuration?: Configuration | undefined) => {
export declare const ChecksApiFp: (configuration?: Configuration) => {
/**

@@ -90,3 +90,3 @@ * Completely removes a check from production. This can only be done if the check has a `send_date` and the `send_date` has not yet passed. If the check is successfully canceled, you will not be charged for it. Read more on [cancellation windows](#section/Cancellation-Windows) and [scheduling](#section/Scheduled-Mailings). Scheduling and cancellation is a premium feature. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.

*/
checkCancel(chkId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CheckDeletion>>;
checkCancel(chkId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckDeletion>>;
/**

@@ -100,3 +100,3 @@ * Creates a new check with the provided properties.

*/
checkCreate(checkEditable: CheckEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Check>>;
checkCreate(checkEditable: CheckEditable, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Check>>;
/**

@@ -109,3 +109,3 @@ * Retrieves the details of an existing check. You need only supply the unique check identifier that was returned upon check creation.

*/
checkRetrieve(chkId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Check>>;
checkRetrieve(chkId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Check>>;
/**

@@ -127,9 +127,9 @@ * Returns a list of your checks. The checks are returned sorted by creation date, with the most recently created checks appearing first.

*/
checksList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
checksList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CheckList>>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckList>>;
};

@@ -136,0 +136,0 @@ /**

@@ -22,3 +22,3 @@ /**

*/
export declare const CreativesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const CreativesApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -32,3 +32,3 @@ * Creates a new creative with the provided properties

*/
creativeCreate: (creativeWritable: CreativeWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
creativeCreate: (creativeWritable: CreativeWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -56,3 +56,3 @@ * Retrieves the details of an existing creative. You need only supply the unique creative identifier that was returned upon creative creation.

*/
export declare const CreativesApiFp: (configuration?: Configuration | undefined) => {
export declare const CreativesApiFp: (configuration?: Configuration) => {
/**

@@ -66,3 +66,3 @@ * Creates a new creative with the provided properties

*/
creativeCreate(creativeWritable: CreativeWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreativeResponse>>;
creativeCreate(creativeWritable: CreativeWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreativeResponse>>;
/**

@@ -75,3 +75,3 @@ * Retrieves the details of an existing creative. You need only supply the unique creative identifier that was returned upon creative creation.

*/
creativeRetrieve(crvId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreativeResponse>>;
creativeRetrieve(crvId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreativeResponse>>;
/**

@@ -85,3 +85,3 @@ * Update the details of an existing creative. You need only supply the unique identifier that was returned upon creative creation.

*/
creativeUpdate(crvId: string, creativePatch: CreativePatch, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreativeResponse>>;
creativeUpdate(crvId: string, creativePatch: CreativePatch, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreativeResponse>>;
};

@@ -88,0 +88,0 @@ /**

@@ -20,3 +20,3 @@ /**

*/
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -34,3 +34,3 @@ * Don\'t call this. It\'s so that the right models can be generated.

*/
export declare const DefaultApiFp: (configuration?: Configuration | undefined) => {
export declare const DefaultApiFp: (configuration?: Configuration) => {
/**

@@ -42,3 +42,3 @@ * Don\'t call this. It\'s so that the right models can be generated.

*/
placeholder(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlaceholderModel>>;
placeholder(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlaceholderModel>>;
};

@@ -45,0 +45,0 @@ /**

@@ -21,3 +21,3 @@ /**

*/
export declare const IdentityValidationApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const IdentityValidationApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -36,3 +36,3 @@ * Validates whether a given name is associated with an address.

*/
export declare const IdentityValidationApiFp: (configuration?: Configuration | undefined) => {
export declare const IdentityValidationApiFp: (configuration?: Configuration) => {
/**

@@ -45,3 +45,3 @@ * Validates whether a given name is associated with an address.

*/
identityValidation(multiLineAddress: MultiLineAddress, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<IdentityValidation>>;
identityValidation(multiLineAddress: MultiLineAddress, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityValidation>>;
};

@@ -48,0 +48,0 @@ /**

@@ -21,3 +21,3 @@ /**

*/
export declare const IntlAutocompletionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const IntlAutocompletionsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -31,3 +31,3 @@ * Given an address prefix consisting of a partial primary line and country, as well as optional input of city, state, and zip code, this functionality returns up to 10 full International address suggestions. Not all of them will turn out to be valid addresses; they\'ll need to be [verified](#operation/intl_verification).

*/
intlAutocompletion: (intlAutocompletionsWritable: IntlAutocompletionsWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
intlAutocompletion: (intlAutocompletionsWritable: IntlAutocompletionsWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -38,3 +38,3 @@ /**

*/
export declare const IntlAutocompletionsApiFp: (configuration?: Configuration | undefined) => {
export declare const IntlAutocompletionsApiFp: (configuration?: Configuration) => {
/**

@@ -48,3 +48,3 @@ * Given an address prefix consisting of a partial primary line and country, as well as optional input of city, state, and zip code, this functionality returns up to 10 full International address suggestions. Not all of them will turn out to be valid addresses; they\'ll need to be [verified](#operation/intl_verification).

*/
intlAutocompletion(intlAutocompletionsWritable: IntlAutocompletionsWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<IntlAutocompletions>>;
intlAutocompletion(intlAutocompletionsWritable: IntlAutocompletionsWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntlAutocompletions>>;
};

@@ -51,0 +51,0 @@ /**

@@ -23,3 +23,3 @@ /**

*/
export declare const IntlVerificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const IntlVerificationsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -41,3 +41,3 @@ * Verify a list of international (except US or US territories) address with a live API key.

*/
intlVerification: (intlVerificationWritable: IntlVerificationWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
intlVerification: (intlVerificationWritable: IntlVerificationWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -48,3 +48,3 @@ /**

*/
export declare const IntlVerificationsApiFp: (configuration?: Configuration | undefined) => {
export declare const IntlVerificationsApiFp: (configuration?: Configuration) => {
/**

@@ -57,3 +57,3 @@ * Verify a list of international (except US or US territories) address with a live API key.

*/
bulkIntlVerifications(intlVerificationsPayload: IntlVerificationsPayload, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<IntlVerifications>>;
bulkIntlVerifications(intlVerificationsPayload: IntlVerificationsPayload, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntlVerifications>>;
/**

@@ -67,3 +67,3 @@ * Verify an international (except US or US territories) address with a live API key.

*/
intlVerification(intlVerificationWritable: IntlVerificationWritable, xLangOutput?: "match" | "native" | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<IntlVerification>>;
intlVerification(intlVerificationWritable: IntlVerificationWritable, xLangOutput?: "native" | "match", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntlVerification>>;
};

@@ -70,0 +70,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const LettersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const LettersApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -42,3 +42,3 @@ * Completely removes a letter from production. This can only be done if the letter has a `send_date` and the `send_date` has not yet passed. If the letter is successfully canceled, you will not be charged for it. Read more on [cancellation windows](#section/Cancellation-Windows) and [scheduling](#section/Scheduled-Mailings). Scheduling and cancellation is a premium feature. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.

*/
letterCreate: (letterEditable: LetterEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
letterCreate: (letterEditable: LetterEditable, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -69,9 +69,9 @@ * Retrieves the details of an existing letter. You need only supply the unique letter identifier that was returned upon letter creation.

*/
lettersList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
lettersList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, color?: boolean | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, color?: boolean, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -82,3 +82,3 @@ /**

*/
export declare const LettersApiFp: (configuration?: Configuration | undefined) => {
export declare const LettersApiFp: (configuration?: Configuration) => {
/**

@@ -91,3 +91,3 @@ * Completely removes a letter from production. This can only be done if the letter has a `send_date` and the `send_date` has not yet passed. If the letter is successfully canceled, you will not be charged for it. Read more on [cancellation windows](#section/Cancellation-Windows) and [scheduling](#section/Scheduled-Mailings). Scheduling and cancellation is a premium feature. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.

*/
letterCancel(ltrId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LetterDeletion>>;
letterCancel(ltrId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LetterDeletion>>;
/**

@@ -101,3 +101,3 @@ * Creates a new letter given information

*/
letterCreate(letterEditable: LetterEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Letter>>;
letterCreate(letterEditable: LetterEditable, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Letter>>;
/**

@@ -110,3 +110,3 @@ * Retrieves the details of an existing letter. You need only supply the unique letter identifier that was returned upon letter creation.

*/
letterRetrieve(ltrId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Letter>>;
letterRetrieve(ltrId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Letter>>;
/**

@@ -129,9 +129,9 @@ * Returns a list of your letters. The letters are returned sorted by creation date, with the most recently created letters appearing first.

*/
lettersList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
lettersList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, color?: boolean | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, color?: boolean, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LetterList>>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LetterList>>;
};

@@ -138,0 +138,0 @@ /**

@@ -25,3 +25,3 @@ /**

*/
export declare const PostcardsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const PostcardsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -35,3 +35,3 @@ * Creates a new postcard given information

*/
postcardCreate: (postcardEditable: PostcardEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
postcardCreate: (postcardEditable: PostcardEditable, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -70,9 +70,9 @@ * Completely removes a postcard from production. This can only be done if the postcard has a `send_date` and the `send_date` has not yet passed. If the postcard is successfully canceled, you will not be charged for it. Read more on [cancellation windows](#section/Cancellation-Windows) and [scheduling](#section/Scheduled-Mailings). Scheduling and cancellation is a premium feature. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.

*/
postcardsList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
postcardsList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, size?: PostcardSize[] | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, size?: Array<PostcardSize>, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -83,3 +83,3 @@ /**

*/
export declare const PostcardsApiFp: (configuration?: Configuration | undefined) => {
export declare const PostcardsApiFp: (configuration?: Configuration) => {
/**

@@ -93,3 +93,3 @@ * Creates a new postcard given information

*/
postcardCreate(postcardEditable: PostcardEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Postcard>>;
postcardCreate(postcardEditable: PostcardEditable, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Postcard>>;
/**

@@ -102,3 +102,3 @@ * Completely removes a postcard from production. This can only be done if the postcard has a `send_date` and the `send_date` has not yet passed. If the postcard is successfully canceled, you will not be charged for it. Read more on [cancellation windows](#section/Cancellation-Windows) and [scheduling](#section/Scheduled-Mailings). Scheduling and cancellation is a premium feature. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.

*/
postcardDelete(pscId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PostcardDeletion>>;
postcardDelete(pscId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostcardDeletion>>;
/**

@@ -111,3 +111,3 @@ * Retrieves the details of an existing postcard. You need only supply the unique customer identifier that was returned upon postcard creation.

*/
postcardRetrieve(pscId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Postcard>>;
postcardRetrieve(pscId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Postcard>>;
/**

@@ -130,9 +130,9 @@ * Returns a list of your postcards. The addresses are returned sorted by creation date, with the most recently created addresses appearing first.

*/
postcardsList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
postcardsList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, size?: PostcardSize[] | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, size?: Array<PostcardSize>, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PostcardList>>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostcardList>>;
};

@@ -139,0 +139,0 @@ /**

@@ -21,3 +21,3 @@ /**

*/
export declare const ReverseGeocodeLookupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const ReverseGeocodeLookupsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -31,3 +31,3 @@ * Reverse geocode a valid US location with a live API key.

*/
reverseGeocodeLookup: (location: Location, size?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
reverseGeocodeLookup: (location: Location, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -38,3 +38,3 @@ /**

*/
export declare const ReverseGeocodeLookupsApiFp: (configuration?: Configuration | undefined) => {
export declare const ReverseGeocodeLookupsApiFp: (configuration?: Configuration) => {
/**

@@ -48,3 +48,3 @@ * Reverse geocode a valid US location with a live API key.

*/
reverseGeocodeLookup(location: Location, size?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ReverseGeocode>>;
reverseGeocodeLookup(location: Location, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReverseGeocode>>;
};

@@ -51,0 +51,0 @@ /**

@@ -25,3 +25,3 @@ /**

*/
export declare const SelfMailersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const SelfMailersApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -35,3 +35,3 @@ * Creates a new self_mailer given information

*/
selfMailerCreate: (selfMailerEditable: SelfMailerEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
selfMailerCreate: (selfMailerEditable: SelfMailerEditable, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -70,9 +70,9 @@ * Completely removes a self mailer from production. This can only be done if the self mailer\'s `send_date` has not yet passed.

*/
selfMailersList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
selfMailersList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, size?: SelfMailerSize[] | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, size?: Array<SelfMailerSize>, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -83,3 +83,3 @@ /**

*/
export declare const SelfMailersApiFp: (configuration?: Configuration | undefined) => {
export declare const SelfMailersApiFp: (configuration?: Configuration) => {
/**

@@ -93,3 +93,3 @@ * Creates a new self_mailer given information

*/
selfMailerCreate(selfMailerEditable: SelfMailerEditable, idempotencyKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SelfMailer>>;
selfMailerCreate(selfMailerEditable: SelfMailerEditable, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfMailer>>;
/**

@@ -102,3 +102,3 @@ * Completely removes a self mailer from production. This can only be done if the self mailer\'s `send_date` has not yet passed.

*/
selfMailerDelete(sfmId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SelfMailerDeletion>>;
selfMailerDelete(sfmId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfMailerDeletion>>;
/**

@@ -111,3 +111,3 @@ * Retrieves the details of an existing self_mailer. You need only supply the unique self_mailer identifier that was returned upon self_mailer creation.

*/
selfMailerRetrieve(sfmId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SelfMailer>>;
selfMailerRetrieve(sfmId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfMailer>>;
/**

@@ -130,9 +130,9 @@ * Returns a list of your self_mailers. The self_mailers are returned sorted by creation date, with the most recently created self_mailers appearing first.

*/
selfMailersList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
selfMailersList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, size?: SelfMailerSize[] | undefined, scheduled?: boolean | undefined, sendDate?: {
} | undefined, size?: Array<SelfMailerSize>, scheduled?: boolean, sendDate?: {
[key: string]: string;
} | undefined, mailType?: MailType | undefined, sortBy?: object | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SelfMailerList>>;
} | undefined, mailType?: MailType, sortBy?: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfMailerList>>;
};

@@ -139,0 +139,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const TemplateVersionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const TemplateVersionsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -75,3 +75,3 @@ * Creates a new template version attached to the specified template.

*/
templateVersionsList: (tmplId: string, limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
templateVersionsList: (tmplId: string, limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;

@@ -84,3 +84,3 @@ } | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;

*/
export declare const TemplateVersionsApiFp: (configuration?: Configuration | undefined) => {
export declare const TemplateVersionsApiFp: (configuration?: Configuration) => {
/**

@@ -94,3 +94,3 @@ * Creates a new template version attached to the specified template.

*/
createTemplateVersion(tmplId: string, templateVersionWritable: TemplateVersionWritable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersion>>;
createTemplateVersion(tmplId: string, templateVersionWritable: TemplateVersionWritable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateVersion>>;
/**

@@ -104,3 +104,3 @@ * Permanently deletes a template version. A template\'s `published_version` can not be deleted.

*/
templateVersionDelete(tmplId: string, vrsnId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionDeletion>>;
templateVersionDelete(tmplId: string, vrsnId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateVersionDeletion>>;
/**

@@ -114,3 +114,3 @@ * Retrieves the template version with the given template and version ids.

*/
templateVersionRetrieve(tmplId: string, vrsnId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersion>>;
templateVersionRetrieve(tmplId: string, vrsnId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateVersion>>;
/**

@@ -125,3 +125,3 @@ * Updates the template version with the given template and version ids.

*/
templateVersionUpdate(tmplId: string, vrsnId: string, templateVersionUpdatable: TemplateVersionUpdatable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersion>>;
templateVersionUpdate(tmplId: string, vrsnId: string, templateVersionUpdatable: TemplateVersionUpdatable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateVersion>>;
/**

@@ -139,5 +139,5 @@ * Returns a list of template versions for the given template ID. The template versions are sorted by creation date, with the most recently created appearing first.

*/
templateVersionsList(tmplId: string, limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
templateVersionsList(tmplId: string, limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateVersionList>>;
} | undefined, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateVersionList>>;
};

@@ -144,0 +144,0 @@ /**

@@ -24,3 +24,3 @@ /**

*/
export declare const TemplatesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const TemplatesApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -71,3 +71,3 @@ * Creates a new template for use with the Print & Mail API. In Live mode, you can only have as many non-deleted templates as allotted in your current [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions). If you attempt to create a template past your limit, you will receive a `403` error. There is no limit in Test mode.

*/
templatesList: (limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
templatesList: (limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;

@@ -82,3 +82,3 @@ } | undefined, metadata?: {

*/
export declare const TemplatesApiFp: (configuration?: Configuration | undefined) => {
export declare const TemplatesApiFp: (configuration?: Configuration) => {
/**

@@ -91,3 +91,3 @@ * Creates a new template for use with the Print & Mail API. In Live mode, you can only have as many non-deleted templates as allotted in your current [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions). If you attempt to create a template past your limit, you will receive a `403` error. There is no limit in Test mode.

*/
createTemplate(templateWritable: TemplateWritable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Template>>;
createTemplate(templateWritable: TemplateWritable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Template>>;
/**

@@ -100,3 +100,3 @@ * Permanently deletes a template.

*/
templateDelete(tmplId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateDeletion>>;
templateDelete(tmplId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateDeletion>>;
/**

@@ -109,3 +109,3 @@ * Retrieves the details of an existing template.

*/
templateRetrieve(tmplId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Template>>;
templateRetrieve(tmplId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Template>>;
/**

@@ -119,3 +119,3 @@ * Updates the description and/or published version of the template with the given id.

*/
templateUpdate(tmplId: string, templateUpdate: TemplateUpdate, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Template>>;
templateUpdate(tmplId: string, templateUpdate: TemplateUpdate, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Template>>;
/**

@@ -133,7 +133,7 @@ * Returns a list of your templates. The templates are returned sorted by creation date, with the most recently created templates appearing first.

*/
templatesList(limit?: number | undefined, before?: string | undefined, after?: string | undefined, include?: string[] | undefined, dateCreated?: {
templatesList(limit?: number, before?: string, after?: string, include?: Array<string>, dateCreated?: {
[key: string]: string;
} | undefined, metadata?: {
[key: string]: string;
} | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TemplateList>>;
} | undefined, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TemplateList>>;
};

@@ -140,0 +140,0 @@ /**

@@ -26,3 +26,3 @@ /**

*/
export declare const UploadsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const UploadsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -95,3 +95,3 @@ * Retrieves the details of an existing export. You need only supply the unique export identifier that was returned upon export creation. If you try retrieving an export immediately after creating one (i.e., before we\'re done processing the export), you will get back an export object with `state = in_progress`.

*/
uploadsList: (campaignId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
uploadsList: (campaignId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -102,3 +102,3 @@ /**

*/
export declare const UploadsApiFp: (configuration?: Configuration | undefined) => {
export declare const UploadsApiFp: (configuration?: Configuration) => {
/**

@@ -112,3 +112,3 @@ * Retrieves the details of an existing export. You need only supply the unique export identifier that was returned upon export creation. If you try retrieving an export immediately after creating one (i.e., before we\'re done processing the export), you will get back an export object with `state = in_progress`.

*/
exportRetrieve(uplId: string, exId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Export>>;
exportRetrieve(uplId: string, exId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Export>>;
/**

@@ -121,3 +121,3 @@ * Creates a new upload with the provided properties.

*/
uploadCreate(uploadWritable: UploadWritable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Upload>>;
uploadCreate(uploadWritable: UploadWritable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Upload>>;
/**

@@ -130,3 +130,3 @@ * Delete an existing upload. You need only supply the unique identifier that was returned upon upload creation.

*/
uploadDelete(uplId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
uploadDelete(uplId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
/**

@@ -140,3 +140,3 @@ * Campaign Exports can help you understand exactly which records in a campaign could not be created. By initiating and retrieving an export, you will get row-by-row errors for your campaign. For a step-by-step walkthrough of creating a campaign and exporting failures, see our [Campaigns Guide](https://help.lob.com/best-practices/launching-your-first-campaign). Create an export file associated with an upload.

*/
uploadExportCreate(uplId: string, exportModel: ExportModel, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UploadCreateExport>>;
uploadExportCreate(uplId: string, exportModel: ExportModel, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadCreateExport>>;
/**

@@ -150,3 +150,3 @@ * Upload an [audience file](https://help.lob.com/best-practices/campaign-audience-guide) and associate it with an upload.

*/
uploadFileCreate(uplId: string, file: any, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UploadFile>>;
uploadFileCreate(uplId: string, file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadFile>>;
/**

@@ -159,3 +159,3 @@ * Retrieves the details of an existing upload. You need only supply the unique upload identifier that was returned upon upload creation.

*/
uploadRetrieve(uplId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Upload>>;
uploadRetrieve(uplId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Upload>>;
/**

@@ -169,3 +169,3 @@ * Update the details of an existing upload. You need only supply the unique identifier that was returned upon upload creation.

*/
uploadUpdate(uplId: string, uploadUpdatable: UploadUpdatable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Upload>>;
uploadUpdate(uplId: string, uploadUpdatable: UploadUpdatable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Upload>>;
/**

@@ -178,3 +178,3 @@ * Returns a list of your uploads. Optionally, filter uploads by campaign.

*/
uploadsList(campaignId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<Upload>>>;
uploadsList(campaignId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Upload>>>;
};

@@ -181,0 +181,0 @@ /**

@@ -21,3 +21,3 @@ /**

*/
export declare const UsAutocompletionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const UsAutocompletionsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -36,3 +36,3 @@ * Given an address prefix consisting of a partial primary line, as well as optional input of city, state, and zip code, this functionality returns up to 10 full US address suggestions. Not all of them will turn out to be valid addresses; they\'ll need to be [verified](#operation/verification_us).

*/
export declare const UsAutocompletionsApiFp: (configuration?: Configuration | undefined) => {
export declare const UsAutocompletionsApiFp: (configuration?: Configuration) => {
/**

@@ -45,3 +45,3 @@ * Given an address prefix consisting of a partial primary line, as well as optional input of city, state, and zip code, this functionality returns up to 10 full US address suggestions. Not all of them will turn out to be valid addresses; they\'ll need to be [verified](#operation/verification_us).

*/
usAutocompletion(usAutocompletionsWritable: UsAutocompletionsWritable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UsAutocompletions>>;
usAutocompletion(usAutocompletionsWritable: UsAutocompletionsWritable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsAutocompletions>>;
};

@@ -48,0 +48,0 @@ /**

@@ -23,3 +23,3 @@ /**

*/
export declare const UsVerificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const UsVerificationsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -33,3 +33,3 @@ * Verify a list of US or US territory addresses with a live API key.

*/
bulkUsVerifications: (multipleComponentsList: MultipleComponentsList, _case?: "upper" | "proper" | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
bulkUsVerifications: (multipleComponentsList: MultipleComponentsList, _case?: "upper" | "proper", options?: AxiosRequestConfig) => Promise<RequestArgs>;
/**

@@ -43,3 +43,3 @@ * Verify a US or US territory address with a live API key.

*/
usVerification: (usVerificationsWritable: UsVerificationsWritable, _case?: "upper" | "proper" | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
usVerification: (usVerificationsWritable: UsVerificationsWritable, _case?: "upper" | "proper", options?: AxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -50,3 +50,3 @@ /**

*/
export declare const UsVerificationsApiFp: (configuration?: Configuration | undefined) => {
export declare const UsVerificationsApiFp: (configuration?: Configuration) => {
/**

@@ -60,3 +60,3 @@ * Verify a list of US or US territory addresses with a live API key.

*/
bulkUsVerifications(multipleComponentsList: MultipleComponentsList, _case?: "upper" | "proper" | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UsVerifications>>;
bulkUsVerifications(multipleComponentsList: MultipleComponentsList, _case?: "upper" | "proper", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsVerifications>>;
/**

@@ -70,3 +70,3 @@ * Verify a US or US territory address with a live API key.

*/
usVerification(usVerificationsWritable: UsVerificationsWritable, _case?: "upper" | "proper" | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UsVerification>>;
usVerification(usVerificationsWritable: UsVerificationsWritable, _case?: "upper" | "proper", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsVerification>>;
};

@@ -73,0 +73,0 @@ /**

@@ -21,3 +21,3 @@ /**

*/
export declare const ZipLookupsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
export declare const ZipLookupsApiAxiosParamCreator: (configuration?: Configuration) => {
/**

@@ -36,3 +36,3 @@ * Returns information about a ZIP code

*/
export declare const ZipLookupsApiFp: (configuration?: Configuration | undefined) => {
export declare const ZipLookupsApiFp: (configuration?: Configuration) => {
/**

@@ -45,3 +45,3 @@ * Returns information about a ZIP code

*/
zipLookup(zipEditable: ZipEditable, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Zip>>;
zipLookup(zipEditable: ZipEditable, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Zip>>;
};

@@ -48,0 +48,0 @@ /**

@@ -30,3 +30,3 @@ /**

*/
export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration | undefined) => Promise<void>;
export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>;
/**

@@ -36,3 +36,3 @@ *

*/
export declare const setBasicAuthToObject: (object: any, configuration?: Configuration | undefined) => void;
export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void;
/**

@@ -42,3 +42,3 @@ *

*/
export declare const setBearerAuthToObject: (object: any, configuration?: Configuration | undefined) => Promise<void>;
export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>;
/**

@@ -48,3 +48,3 @@ *

*/
export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration | undefined) => Promise<void>;
export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>;
/**

@@ -59,3 +59,3 @@ *

*/
export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration | undefined) => any;
export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any;
/**

@@ -70,3 +70,3 @@ *

*/
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration | undefined) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
/**

@@ -73,0 +73,0 @@ * Converts an input value to a string. When the input value is an object, it is converted to a JSON string.

@@ -17,3 +17,3 @@ {

],
"version": "1.3.3",
"version": "1.3.5",
"homepage": "https://github.com/lob/lob-typescript-sdk",

@@ -27,3 +27,3 @@ "author": "Lob <support@lob.com> (https://lob.com/)",

"engines": {
"node": ">= 12.0.0"
"node": ">= 20"
},

@@ -40,3 +40,3 @@ "license": "MIT",

"test": "jest",
"test:integration": "jest -c jest.integrationConfig.js",
"test:integration": "jest -c jest.integrationConfig.js --detectOpenHandles",
"test:all": "npm run test && npm run test:integration",

@@ -59,3 +59,3 @@ "prepare": "npm run clean && tsc && rollup -c",

"dependencies": {
"axios": "0.24.0",
"axios": "^1.6.0",
"tslib": "^2.4.0"

@@ -74,6 +74,6 @@ },

"@slack/web-api": "^6.6.0",
"@types/jest": "^27.0.2",
"@types/jest": "^29.0.0",
"@types/node": "^16.11.6",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest": "^29.0.0",
"prettier": "^2.7.1",

@@ -83,3 +83,3 @@ "pretty-quick": "^3.1.3",

"semantic-release": "^19.0.2",
"ts-jest": "^27.0.7",
"ts-jest": "^29.0.0",
"ts-node": "^10.4.0",

@@ -86,0 +86,0 @@ "typescript": "^4.4.4"

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc