@finverse/sdk-typescript 0.0.254 → 0.0.255
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 +37 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -4833,6 +4833,43 @@ export interface NonSensitiveLinkStatusResponse {
|
|
|
4833
4833
|
* @memberof NonSensitiveLinkStatusResponse
|
|
4834
4834
|
*/
|
|
4835
4835
|
redirect_uri?: string;
|
|
4836
|
+
/**
|
|
4837
|
+
*
|
|
4838
|
+
* @type {NonSensitiveLinkStatusSuccessModel}
|
|
4839
|
+
* @memberof NonSensitiveLinkStatusResponse
|
|
4840
|
+
*/
|
|
4841
|
+
success?: NonSensitiveLinkStatusSuccessModel;
|
|
4842
|
+
/**
|
|
4843
|
+
*
|
|
4844
|
+
* @type {ErrBodyModelV2}
|
|
4845
|
+
* @memberof NonSensitiveLinkStatusResponse
|
|
4846
|
+
*/
|
|
4847
|
+
error?: ErrBodyModelV2;
|
|
4848
|
+
}
|
|
4849
|
+
/**
|
|
4850
|
+
*
|
|
4851
|
+
* @export
|
|
4852
|
+
* @interface NonSensitiveLinkStatusSuccessModel
|
|
4853
|
+
*/
|
|
4854
|
+
export interface NonSensitiveLinkStatusSuccessModel {
|
|
4855
|
+
/**
|
|
4856
|
+
*
|
|
4857
|
+
* @type {string}
|
|
4858
|
+
* @memberof NonSensitiveLinkStatusSuccessModel
|
|
4859
|
+
*/
|
|
4860
|
+
code?: string;
|
|
4861
|
+
/**
|
|
4862
|
+
*
|
|
4863
|
+
* @type {string}
|
|
4864
|
+
* @memberof NonSensitiveLinkStatusSuccessModel
|
|
4865
|
+
*/
|
|
4866
|
+
state?: string;
|
|
4867
|
+
/**
|
|
4868
|
+
*
|
|
4869
|
+
* @type {string}
|
|
4870
|
+
* @memberof NonSensitiveLinkStatusSuccessModel
|
|
4871
|
+
*/
|
|
4872
|
+
login_identity_id?: string;
|
|
4836
4873
|
}
|
|
4837
4874
|
/**
|
|
4838
4875
|
*
|