@engineering-tf/shared 1.0.2 → 1.0.3

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.
@@ -312,6 +312,10 @@ export declare const FORMATTED_ERROR: {
312
312
  CODE: string;
313
313
  MESSAGE: string;
314
314
  };
315
+ USER_NOT_PROVISIONED: {
316
+ CODE: string;
317
+ MESSAGE: string;
318
+ };
315
319
  };
316
320
  export declare enum STRIPE_SUBSCRIPTION_STATUS {
317
321
  ACTIVE = "active",
@@ -150,6 +150,10 @@ exports.FORMATTED_ERROR = {
150
150
  CODE: "UNKNOWN_ERROR",
151
151
  MESSAGE: "Try again",
152
152
  },
153
+ USER_NOT_PROVISIONED: {
154
+ CODE: "USER_NOT_PROVISIONED",
155
+ MESSAGE: "Your account setup is incomplete. Please sign in again to complete setup.",
156
+ },
153
157
  };
154
158
  var STRIPE_SUBSCRIPTION_STATUS;
155
159
  (function (STRIPE_SUBSCRIPTION_STATUS) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engineering-tf/shared",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },