@finverse/sdk-typescript 0.0.258 → 0.0.259
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +47 -4
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -6748,6 +6748,49 @@ export interface RefreshRequest {
|
|
|
6748
6748
|
*/
|
|
6749
6749
|
refresh_token: string;
|
|
6750
6750
|
}
|
|
6751
|
+
/**
|
|
6752
|
+
*
|
|
6753
|
+
* @export
|
|
6754
|
+
* @interface RefreshTokenResponse
|
|
6755
|
+
*/
|
|
6756
|
+
export interface RefreshTokenResponse {
|
|
6757
|
+
/**
|
|
6758
|
+
*
|
|
6759
|
+
* @type {string}
|
|
6760
|
+
* @memberof RefreshTokenResponse
|
|
6761
|
+
*/
|
|
6762
|
+
access_token: string;
|
|
6763
|
+
/**
|
|
6764
|
+
*
|
|
6765
|
+
* @type {string}
|
|
6766
|
+
* @memberof RefreshTokenResponse
|
|
6767
|
+
*/
|
|
6768
|
+
token_type: string;
|
|
6769
|
+
/**
|
|
6770
|
+
* seconds
|
|
6771
|
+
* @type {number}
|
|
6772
|
+
* @memberof RefreshTokenResponse
|
|
6773
|
+
*/
|
|
6774
|
+
expires_in: number;
|
|
6775
|
+
/**
|
|
6776
|
+
*
|
|
6777
|
+
* @type {string}
|
|
6778
|
+
* @memberof RefreshTokenResponse
|
|
6779
|
+
*/
|
|
6780
|
+
issued_at: string;
|
|
6781
|
+
/**
|
|
6782
|
+
*
|
|
6783
|
+
* @type {string}
|
|
6784
|
+
* @memberof RefreshTokenResponse
|
|
6785
|
+
*/
|
|
6786
|
+
link_url: string;
|
|
6787
|
+
/**
|
|
6788
|
+
*
|
|
6789
|
+
* @type {string}
|
|
6790
|
+
* @memberof RefreshTokenResponse
|
|
6791
|
+
*/
|
|
6792
|
+
login_identity_id: string;
|
|
6793
|
+
}
|
|
6751
6794
|
/**
|
|
6752
6795
|
*
|
|
6753
6796
|
* @export
|
|
@@ -10023,7 +10066,7 @@ export declare const LoginIdentityApiFp: (configuration?: Configuration) => {
|
|
|
10023
10066
|
* @param {*} [options] Override http request option.
|
|
10024
10067
|
* @throws {RequiredError}
|
|
10025
10068
|
*/
|
|
10026
|
-
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10069
|
+
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RefreshTokenResponse>>;
|
|
10027
10070
|
};
|
|
10028
10071
|
/**
|
|
10029
10072
|
* LoginIdentityApi - factory interface
|
|
@@ -10141,7 +10184,7 @@ export declare const LoginIdentityApiFactory: (configuration?: Configuration, ba
|
|
|
10141
10184
|
* @param {*} [options] Override http request option.
|
|
10142
10185
|
* @throws {RequiredError}
|
|
10143
10186
|
*/
|
|
10144
|
-
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: any): AxiosPromise<
|
|
10187
|
+
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: any): AxiosPromise<RefreshTokenResponse>;
|
|
10145
10188
|
};
|
|
10146
10189
|
/**
|
|
10147
10190
|
* LoginIdentityApi - interface
|
|
@@ -10276,7 +10319,7 @@ export interface LoginIdentityApiInterface {
|
|
|
10276
10319
|
* @throws {RequiredError}
|
|
10277
10320
|
* @memberof LoginIdentityApiInterface
|
|
10278
10321
|
*/
|
|
10279
|
-
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
10322
|
+
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: AxiosRequestConfig): AxiosPromise<RefreshTokenResponse>;
|
|
10280
10323
|
}
|
|
10281
10324
|
/**
|
|
10282
10325
|
* LoginIdentityApi - object-oriented interface
|
|
@@ -10412,7 +10455,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
|
|
|
10412
10455
|
* @throws {RequiredError}
|
|
10413
10456
|
* @memberof LoginIdentityApi
|
|
10414
10457
|
*/
|
|
10415
|
-
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
10458
|
+
refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RefreshTokenResponse>>;
|
|
10416
10459
|
}
|
|
10417
10460
|
/**
|
|
10418
10461
|
* PublicApi - axios parameter creator
|