@drttix/drt-sdk 0.8.0 → 0.8.1

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: '20260406.2',
6
+ VERSION: '20260406.4',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -3,4 +3,8 @@ export type HashTicketingLinkResponseDto = {
3
3
  * the access code to log into the ticketing site as an admin user.
4
4
  */
5
5
  accessCode: string;
6
+ /**
7
+ * the domain of the ticketing site.
8
+ */
9
+ domain: string;
6
10
  };
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '',
3
- VERSION: '20260406.2',
3
+ VERSION: '20260406.4',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -3,4 +3,8 @@ export type HashTicketingLinkResponseDto = {
3
3
  * the access code to log into the ticketing site as an admin user.
4
4
  */
5
5
  accessCode: string;
6
+ /**
7
+ * the domain of the ticketing site.
8
+ */
9
+ domain: string;
6
10
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "0.8.0",
4
+ "version": "0.8.01",
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: '20260406.2',
24
+ VERSION: '20260406.4',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -7,5 +7,9 @@ export type HashTicketingLinkResponseDto = {
7
7
  * the access code to log into the ticketing site as an admin user.
8
8
  */
9
9
  accessCode: string;
10
+ /**
11
+ * the domain of the ticketing site.
12
+ */
13
+ domain: string;
10
14
  };
11
15