new lib version [CI SKIP]

This commit is contained in:
2021-01-10 17:19:49 +00:00
parent 21e8396e8e
commit bdb046f969
45 changed files with 302 additions and 38 deletions

6
dist/models/ResponseAuth.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
export declare type ResponseAuth = {
access_token: string;
refresh_token: string;
access_token_expires_at: number;
refresh_token_expires_at: number;
};