@drttix/drt-sdk 0.2.6 → 0.2.7

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: '20260212.1',
6
+ VERSION: '20260213.1',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -4,4 +4,5 @@ export type NotificationSettingsResponseDto = {
4
4
  description: string;
5
5
  email: string;
6
6
  toggleField: string;
7
+ isEnabled: number;
7
8
  };
@@ -22,4 +22,6 @@ export type ShowsList = {
22
22
  typeName: string;
23
23
  theatreId: number;
24
24
  hash: string;
25
+ receiptMessage: string;
26
+ dateMaxOrderSeatsEnd: string;
25
27
  };
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '',
3
- VERSION: '20260212.1',
3
+ VERSION: '20260213.1',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -4,4 +4,5 @@ export type NotificationSettingsResponseDto = {
4
4
  description: string;
5
5
  email: string;
6
6
  toggleField: string;
7
+ isEnabled: number;
7
8
  };
@@ -22,4 +22,6 @@ export type ShowsList = {
22
22
  typeName: string;
23
23
  theatreId: number;
24
24
  hash: string;
25
+ receiptMessage: string;
26
+ dateMaxOrderSeatsEnd: string;
25
27
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
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: '20260212.1',
24
+ VERSION: '20260213.1',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -8,5 +8,6 @@ export type NotificationSettingsResponseDto = {
8
8
  description: string;
9
9
  email: string;
10
10
  toggleField: string;
11
+ isEnabled: number;
11
12
  };
12
13
 
@@ -26,5 +26,7 @@ export type ShowsList = {
26
26
  typeName: string;
27
27
  theatreId: number;
28
28
  hash: string;
29
+ receiptMessage: string;
30
+ dateMaxOrderSeatsEnd: string;
29
31
  };
30
32