@drttix/drt-sdk 0.7.7 → 0.7.9

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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '',
6
- VERSION: '20260401.3',
6
+ VERSION: '20260403.1',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -8,4 +8,8 @@ export type HashLoginResponseDto = {
8
8
  * Optional report to redirect to
9
9
  */
10
10
  report?: string;
11
+ /**
12
+ * Session identifier - frontend must use this for subsequent requests
13
+ */
14
+ shopperGuid: string;
11
15
  };
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '',
3
- VERSION: '20260401.3',
3
+ VERSION: '20260403.1',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -8,4 +8,8 @@ export type HashLoginResponseDto = {
8
8
  * Optional report to redirect to
9
9
  */
10
10
  report?: string;
11
+ /**
12
+ * Session identifier - frontend must use this for subsequent requests
13
+ */
14
+ shopperGuid: string;
11
15
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "0.7.7",
4
+ "version": "0.7.9",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/esm/index.d.ts",
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: '',
24
- VERSION: '20260401.3',
24
+ VERSION: '20260403.1',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -12,5 +12,9 @@ export type HashLoginResponseDto = {
12
12
  * Optional report to redirect to
13
13
  */
14
14
  report?: string;
15
+ /**
16
+ * Session identifier - frontend must use this for subsequent requests
17
+ */
18
+ shopperGuid: string;
15
19
  };
16
20