rerobe-js-orm 2.5.2 → 2.5.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.
@@ -555,17 +555,17 @@ class Product extends Base_1.default {
555
555
  facet: true,
556
556
  optional: true,
557
557
  name: '.*Timestamp',
558
- type: 'int32',
558
+ type: 'int64',
559
559
  },
560
560
  {
561
561
  facet: true,
562
562
  name: 'createdAtTimestamp',
563
- type: 'int32',
563
+ type: 'int64',
564
564
  },
565
565
  {
566
566
  facet: true,
567
567
  name: 'updatedAtTimestamp',
568
- type: 'int32',
568
+ type: 'int64',
569
569
  },
570
570
  {
571
571
  facet: true,
@@ -116,7 +116,7 @@ declare type ReRobeShippingDetails = {
116
116
  declare type ReRobeShippingAndDeliveryTypes = 'LOCAL_PICK_UP' | 'LOCAL_DELIVERY' | 'SHIPPING';
117
117
  declare type ReRobePaymentTypes = 'CREDIT_CARD' | 'KLARNA' | 'SWISH';
118
118
  declare type ReRobeOrderStates = 'DRAFT' | 'COMPLETED';
119
- declare type SalesChannels = 'MOBILE_APP' | 'WEB_APP' | 'STORE' | 'ONLINE_STORE' | 'THIRD_PARTY' | 'AHLENS';
119
+ declare type SalesChannels = 'MOBILE_APP' | 'WEB_APP' | 'STORE' | 'ONLINE_STORE' | 'THIRD_PARTY';
120
120
  declare type PaymentDetails = {
121
121
  name?: string;
122
122
  last4?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "build": "tsc",
11
11
  "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
12
12
  "lint": "tslint -p tsconfig.json",
13
- "prepare": "npm run clean && npm run build && npm run test",
13
+ "prepare": "npm run clean && npm run test && npm run build",
14
14
  "prepublishOnly": "npm test && npm run lint",
15
15
  "preversion": "npm run lint",
16
16
  "version": "npm run format && git add -A src",