@opexa/portal-sdk 0.0.66 → 0.0.68
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/README.md +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/dist/sdk/types.d.ts +7 -0
- package/dist/services/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/sdk/types.d.ts
CHANGED
|
@@ -140,6 +140,7 @@ export interface VerificationDetails {
|
|
|
140
140
|
id: string;
|
|
141
141
|
status: VerificationDetailsStatus;
|
|
142
142
|
address: string;
|
|
143
|
+
permanentAddress: string;
|
|
143
144
|
sourceOfIncome: string;
|
|
144
145
|
natureOfWork: string;
|
|
145
146
|
nationality: string;
|
|
@@ -378,6 +379,12 @@ export interface SubmitVerificationDetailsInput {
|
|
|
378
379
|
* - _max_: `120`
|
|
379
380
|
*/
|
|
380
381
|
address: string;
|
|
382
|
+
/**
|
|
383
|
+
* @validation
|
|
384
|
+
* - _min_: `2`
|
|
385
|
+
* - _max_: `120`
|
|
386
|
+
*/
|
|
387
|
+
permanentAddress: string;
|
|
381
388
|
/**
|
|
382
389
|
* @validation
|
|
383
390
|
* - _min_: `2`
|
package/dist/services/types.d.ts
CHANGED
|
@@ -657,6 +657,7 @@ export interface MemberVerification {
|
|
|
657
657
|
id: string;
|
|
658
658
|
status: MemberVerificationStatus;
|
|
659
659
|
address: string;
|
|
660
|
+
permanentAddress: string;
|
|
660
661
|
sourceOfIncome: string;
|
|
661
662
|
natureOfWork: string;
|
|
662
663
|
nationality: string;
|
|
@@ -786,6 +787,7 @@ export interface CreateMemberVerificationMutationVariables {
|
|
|
786
787
|
idFrontImage: string;
|
|
787
788
|
selfieImage: string;
|
|
788
789
|
address: string;
|
|
790
|
+
permanentAddress: string;
|
|
789
791
|
sourceOfIncome: string;
|
|
790
792
|
natureOfWork: string;
|
|
791
793
|
nationality: string;
|
|
@@ -805,6 +807,7 @@ export interface UpdateMemberVerificationMutationVariables {
|
|
|
805
807
|
idFrontImage?: string;
|
|
806
808
|
selfieImage?: string;
|
|
807
809
|
address?: string;
|
|
810
|
+
permanentAddress?: string;
|
|
808
811
|
sourceOfIncome?: string;
|
|
809
812
|
natureOfWork?: string;
|
|
810
813
|
nationality?: string;
|