@compassdigital/sdk.typescript 4.750.0 → 4.751.0

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.
@@ -17,6 +17,8 @@ export interface FrictionlessOrderFailureEvent {
17
17
  brandID: string;
18
18
  failReason: string;
19
19
  unpaidAmount: number;
20
+ tripStartTime?: string;
21
+ tripEndTime?: string;
20
22
  };
21
23
  source: string;
22
24
  }
@@ -1 +1 @@
1
- {"version":3,"file":"FrictionlessOrderFailureEvent.d.ts","sourceRoot":"","sources":["../../../src/messages/events/FrictionlessOrderFailureEvent.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,6BAA6B;IAC7C,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,+BAA+B,CAAC;IACtC,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,OAAO,EAAE;QAER,SAAS,EAAE,MAAM,CAAC;QAElB,cAAc,EAAE,MAAM,CAAC;QAEvB,MAAM,EAAE,MAAM,CAAC;QAEf,SAAS,EAAE,MAAM,CAAC;QAElB,WAAW,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;QAExC,gBAAgB,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,WAAW,CAAC;QAE3E,MAAM,EAAE,MAAM,CAAC;QAEf,OAAO,EAAE,MAAM,CAAC;QAEhB,UAAU,EAAE,MAAM,CAAC;QAEnB,YAAY,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,MAAM,EAAE,MAAM,CAAC;CACf"}
1
+ {"version":3,"file":"FrictionlessOrderFailureEvent.d.ts","sourceRoot":"","sources":["../../../src/messages/events/FrictionlessOrderFailureEvent.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,6BAA6B;IAC7C,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,+BAA+B,CAAC;IACtC,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,OAAO,EAAE;QAER,SAAS,EAAE,MAAM,CAAC;QAElB,cAAc,EAAE,MAAM,CAAC;QAEvB,MAAM,EAAE,MAAM,CAAC;QAEf,SAAS,EAAE,MAAM,CAAC;QAElB,WAAW,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;QAExC,gBAAgB,CAAC,EAAE,YAAY,GAAG,QAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,WAAW,CAAC;QAE3E,MAAM,EAAE,MAAM,CAAC;QAEf,OAAO,EAAE,MAAM,CAAC;QAEhB,UAAU,EAAE,MAAM,CAAC;QAEnB,YAAY,EAAE,MAAM,CAAC;QAErB,aAAa,CAAC,EAAE,MAAM,CAAC;QAEvB,WAAW,CAAC,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,MAAM,EAAE,MAAM,CAAC;CACf"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.750.0",
3
+ "version": "4.751.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -29,6 +29,10 @@ export interface FrictionlessOrderFailureEvent {
29
29
  failReason: string;
30
30
  // Unpaid balance amount for insufficient balance failures
31
31
  unpaidAmount: number;
32
+ // When the shopper entered the store, as reported by the frictionless provider. Absent on check-ins recorded before shopping trip times were captured
33
+ tripStartTime?: string;
34
+ // When the shopper left the store, as reported by the frictionless provider. Absent on check-ins recorded before shopping trip times were captured
35
+ tripEndTime?: string;
32
36
  };
33
37
  source: string;
34
38
  }