@verdocs/js-sdk 4.2.3 → 4.2.4

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/index.d.mts CHANGED
@@ -1414,7 +1414,7 @@ interface IRecipientKbaStepChallenge {
1414
1414
  questions: {
1415
1415
  type: string;
1416
1416
  message: string;
1417
- options: string[];
1417
+ options: (string | number)[];
1418
1418
  }[];
1419
1419
  }
1420
1420
  /**
@@ -1457,7 +1457,7 @@ declare const submitKbaIdentity: (endpoint: VerdocsEndpoint, envelopeId: string,
1457
1457
  interface IKbaChallengeResponse {
1458
1458
  responses: {
1459
1459
  type: string;
1460
- answer: string;
1460
+ answer: string | number;
1461
1461
  }[];
1462
1462
  }
1463
1463
  /**
package/dist/index.d.ts CHANGED
@@ -1414,7 +1414,7 @@ interface IRecipientKbaStepChallenge {
1414
1414
  questions: {
1415
1415
  type: string;
1416
1416
  message: string;
1417
- options: string[];
1417
+ options: (string | number)[];
1418
1418
  }[];
1419
1419
  }
1420
1420
  /**
@@ -1457,7 +1457,7 @@ declare const submitKbaIdentity: (endpoint: VerdocsEndpoint, envelopeId: string,
1457
1457
  interface IKbaChallengeResponse {
1458
1458
  responses: {
1459
1459
  type: string;
1460
- answer: string;
1460
+ answer: string | number;
1461
1461
  }[];
1462
1462
  }
1463
1463
  /**