@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.
@@ -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`
@@ -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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opexa/portal-sdk",
3
3
  "type": "module",
4
- "version": "0.0.66",
4
+ "version": "0.0.68",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "typings": "dist/index.d.ts",