Skip to content

Commit 2f6f853

Browse files
committed
import changes
1 parent 3864908 commit 2f6f853

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+244
-202
lines changed

api/accountApi.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// <reference types="node" />
2-
import http = require('http');
2+
import http from 'http';
33
import { GetAccount } from '../model/getAccount';
44
import { Authentication, Interceptor } from '../model/models';
55
import { ApiKeyAuth } from '../model/models';

api/accountApi.js

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/accountApi.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/accountApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export enum AccountApiApiKeys {
3535

3636
export class AccountApi {
3737
protected _basePath = defaultBasePath;
38-
protected _defaultHeaders : any = { 'user-agent': 'sendinblue_clientAPI/v2.2.2/ts-node' };
38+
protected _defaultHeaders : any = { 'user-agent': 'sendinblue_clientAPI/v2.2.3-beta.1/ts-node' };
3939
protected _useQuerystring = false;
4040

4141
protected authentications = {

api/apis.d.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,12 @@ export * from './transactionalSMSApi';
2525
import { TransactionalSMSApi } from './transactionalSMSApi';
2626
export * from './webhooksApi';
2727
import { WebhooksApi } from './webhooksApi';
28-
import * as fs from 'fs';
2928
import * as http from 'http';
3029
export declare class HttpError extends Error {
3130
response: http.IncomingMessage;
3231
body: any;
3332
statusCode?: number | undefined;
3433
constructor(response: http.IncomingMessage, body: any, statusCode?: number | undefined);
3534
}
36-
export interface RequestDetailedFile {
37-
value: Buffer;
38-
options?: {
39-
filename?: string;
40-
contentType?: string;
41-
};
42-
}
43-
export declare type RequestFile = string | Buffer | fs.ReadStream | RequestDetailedFile;
35+
export { RequestFile } from '../model/models';
4436
export declare const APIS: (typeof AccountApi | typeof AttributesApi | typeof ContactsApi | typeof EmailCampaignsApi | typeof FoldersApi | typeof ListsApi | typeof ProcessApi | typeof ResellerApi | typeof SMSCampaignsApi | typeof SendersApi | typeof TransactionalEmailsApi | typeof TransactionalSMSApi | typeof WebhooksApi)[];

api/apis.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/attributesApi.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// <reference types="node" />
2-
import http = require('http');
2+
import http from 'http';
33
import { CreateAttribute } from '../model/createAttribute';
44
import { GetAttributes } from '../model/getAttributes';
55
import { UpdateAttribute } from '../model/updateAttribute';

api/attributesApi.js

Lines changed: 9 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)