@zyacreatives/shared 1.9.98 → 1.9.99

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/constants.js CHANGED
@@ -149,8 +149,8 @@ exports.JOB_LOCATIONS = {
149
149
  OTHER: "Other",
150
150
  };
151
151
  exports.GIG_TYPE = {
152
- ONE_TIME: "ONE_TIME",
153
- RECURRING: "RECURRING",
152
+ ONE_TIME: "One Time",
153
+ RECURRING: "Recurring",
154
154
  };
155
155
  exports.WAGES_CURRENCY = {
156
156
  USD: "USD",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "1.9.98",
3
+ "version": "1.9.99",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -167,8 +167,8 @@ export const JOB_LOCATIONS = {
167
167
  export type JobLocation = (typeof JOB_LOCATIONS)[keyof typeof JOB_LOCATIONS];
168
168
 
169
169
  export const GIG_TYPE = {
170
- ONE_TIME: "ONE_TIME",
171
- RECURRING: "RECURRING",
170
+ ONE_TIME: "One Time",
171
+ RECURRING: "Recurring",
172
172
  };
173
173
  export const WAGES_CURRENCY = {
174
174
  USD: "USD",