ouisys-engine 3.0.1 → 3.0.2

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.
@@ -33,6 +33,7 @@ export declare type IMsisdnSumbitNextData = {
33
33
  nextAction: "submitPinAction";
34
34
  msisdn: string;
35
35
  pinMaxLength?: number | null;
36
+ operator?: string;
36
37
  };
37
38
  export declare type IMsisnSubmitActionPayload = {
38
39
  type: "MSISDNEntry";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ouisys-engine",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "directories": "dist dev-tools",
@@ -29,7 +29,7 @@ export type PINEntryFailure = {
29
29
  errorType: PINEntryErrorTypes;
30
30
  error?: Error;
31
31
  };
32
- export type PINEntrySuccess = { finalUrl: string, msisdn?:string, isAlreadySubscribed?:boolean, };
32
+ export type PINEntrySuccess = { finalUrl: string; msisdn?:string; isAlreadySubscribed?:boolean; };
33
33
  export type PINEntryErrorTypes = "UnknownError" | "TooEarly" | "InvalidPIN" | "UnexpectedState" | "SessionBlocked";
34
34
 
35
35
  export type IMsisdnSumbitNextData = {
@@ -37,6 +37,7 @@ export type IMsisdnSumbitNextData = {
37
37
  nextAction:"submitPinAction";
38
38
  msisdn:string;
39
39
  pinMaxLength?:number | null;
40
+ operator?: string;
40
41
  }
41
42
  export type IMsisnSubmitActionPayload = {
42
43
  type:"MSISDNEntry";