@ordentco/addons-auth-provider 0.9.134-mfe → 0.9.135-mfe

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.
@@ -4,6 +4,8 @@
4
4
  export declare const OnboardingTourStatus: {
5
5
  readonly Pending: 1;
6
6
  readonly Draft: 2;
7
- readonly Done: 4;
7
+ readonly Approved: 4;
8
+ readonly Rejected: 5;
9
+ readonly Done: 0;
8
10
  };
9
11
  export type OnboardingTourStatus = (typeof OnboardingTourStatus)[keyof typeof OnboardingTourStatus];
@@ -7,6 +7,8 @@ exports.OnboardingTourStatus = void 0;
7
7
  exports.OnboardingTourStatus = {
8
8
  Pending: 1,
9
9
  Draft: 2,
10
- Done: 4,
10
+ Approved: 4,
11
+ Rejected: 5,
12
+ Done: 0,
11
13
  };
12
14
  //# sourceMappingURL=onboarding.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"onboarding.js","sourceRoot":"","sources":["../../../src/types/onboarding.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACU,QAAA,oBAAoB,GAAG;IAClC,OAAO,EAAE,CAAC;IACV,KAAK,EAAE,CAAC;IACR,IAAI,EAAE,CAAC;CACC,CAAC"}
1
+ {"version":3,"file":"onboarding.js","sourceRoot":"","sources":["../../../src/types/onboarding.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACU,QAAA,oBAAoB,GAAG;IAClC,OAAO,EAAE,CAAC;IACV,KAAK,EAAE,CAAC;IACR,QAAQ,EAAE,CAAC;IACX,QAAQ,EAAE,CAAC;IACX,IAAI,EAAE,CAAC;CACC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ordentco/addons-auth-provider",
3
- "version": "0.9.134-mfe",
3
+ "version": "0.9.135-mfe",
4
4
  "description": "-",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "",
@@ -4,7 +4,9 @@
4
4
  export const OnboardingTourStatus = {
5
5
  Pending: 1,
6
6
  Draft: 2,
7
- Done: 4,
7
+ Approved: 4,
8
+ Rejected: 5,
9
+ Done: 0,
8
10
  } as const;
9
11
 
10
12