rerobe-js-orm 4.8.5 → 4.8.6

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.
@@ -40,6 +40,7 @@ export namespace INDUSTRY_TYPES {
40
40
  let furniture: string;
41
41
  let handcrafts: string;
42
42
  let jewelry: string;
43
+ let services: string;
43
44
  let sports: string;
44
45
  let toys: string;
45
46
  let other: string;
@@ -33,6 +33,7 @@ exports.INDUSTRY_TYPES = {
33
33
  furniture: 'FURNITURE',
34
34
  handcrafts: 'HANDCRAFTS',
35
35
  jewelry: 'JEWELRY',
36
+ services: 'SERVICES',
36
37
  sports: 'SPORTS',
37
38
  toys: 'TOYS',
38
39
  other: 'OTHER',
@@ -44,6 +45,7 @@ exports.INDUSTRY_TYPE_OPTIONS = [
44
45
  { label: 'Furniture & Home', value: exports.INDUSTRY_TYPES.furniture },
45
46
  { label: 'Handcrafts & Artisan', value: exports.INDUSTRY_TYPES.handcrafts },
46
47
  { label: 'Jewelry & Watches', value: exports.INDUSTRY_TYPES.jewelry },
48
+ { label: 'Services & Repairs', value: exports.INDUSTRY_TYPES.services },
47
49
  { label: 'Sports & Outdoors', value: exports.INDUSTRY_TYPES.sports },
48
50
  { label: 'Toys & Games', value: exports.INDUSTRY_TYPES.toys },
49
51
  { label: 'Other', value: exports.INDUSTRY_TYPES.other },
@@ -32,6 +32,7 @@ export default class Merchant extends Base {
32
32
  furniture: string;
33
33
  handcrafts: string;
34
34
  jewelry: string;
35
+ services: string;
35
36
  sports: string;
36
37
  toys: string;
37
38
  other: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "4.8.5",
3
+ "version": "4.8.6",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",