@drttix/drt-sdk 1.2.3 → 1.2.5
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.
- package/dist/cjs/src/generated/portal/core/OpenAPI.js +1 -1
- package/dist/cjs/src/generated/portal/services/ClientToolsPatronDatabaseService.d.ts +2 -1
- package/dist/cjs/src/generated/portal/services/ClientToolsPatronDatabaseService.js +3 -1
- package/dist/cjs/src/generated/portal/services/ClientToolsTicketingLinkService.d.ts +2 -3
- package/dist/cjs/src/generated/portal/services/ClientToolsTicketingLinkService.js +1 -1
- package/dist/cjs/src/generated/shopper/core/OpenAPI.js +1 -1
- package/dist/esm/src/generated/portal/core/OpenAPI.js +1 -1
- package/dist/esm/src/generated/portal/services/ClientToolsPatronDatabaseService.d.ts +2 -1
- package/dist/esm/src/generated/portal/services/ClientToolsPatronDatabaseService.js +3 -1
- package/dist/esm/src/generated/portal/services/ClientToolsTicketingLinkService.d.ts +2 -3
- package/dist/esm/src/generated/portal/services/ClientToolsTicketingLinkService.js +1 -1
- package/dist/esm/src/generated/shopper/core/OpenAPI.js +1 -1
- package/package.json +1 -1
- package/src/generated/portal/core/OpenAPI.ts +1 -1
- package/src/generated/portal/services/ClientToolsPatronDatabaseService.ts +3 -0
- package/src/generated/portal/services/ClientToolsTicketingLinkService.ts +2 -3
- package/src/generated/shopper/core/OpenAPI.ts +1 -1
|
@@ -57,10 +57,11 @@ export declare class ClientToolsPatronDatabaseService {
|
|
|
57
57
|
* @param xStudioId The ID of the studio
|
|
58
58
|
* @param status The status criteria
|
|
59
59
|
* @param searchQuery The search query criteria
|
|
60
|
+
* @param codes The code criteria
|
|
60
61
|
* @returns PatronCodesResponseDto Patron codes fetched successfully
|
|
61
62
|
* @throws ApiError
|
|
62
63
|
*/
|
|
63
|
-
static getPatronCodes(xStudioId: string, status: string, searchQuery: string): CancelablePromise<Array<PatronCodesResponseDto>>;
|
|
64
|
+
static getPatronCodes(xStudioId: string, status: string, searchQuery: string, codes: string): CancelablePromise<Array<PatronCodesResponseDto>>;
|
|
64
65
|
/**
|
|
65
66
|
* Fetch the patron tags
|
|
66
67
|
* Fetch the patron tags for the client tools
|
|
@@ -77,10 +77,11 @@ class ClientToolsPatronDatabaseService {
|
|
|
77
77
|
* @param xStudioId The ID of the studio
|
|
78
78
|
* @param status The status criteria
|
|
79
79
|
* @param searchQuery The search query criteria
|
|
80
|
+
* @param codes The code criteria
|
|
80
81
|
* @returns PatronCodesResponseDto Patron codes fetched successfully
|
|
81
82
|
* @throws ApiError
|
|
82
83
|
*/
|
|
83
|
-
static getPatronCodes(xStudioId, status, searchQuery) {
|
|
84
|
+
static getPatronCodes(xStudioId, status, searchQuery, codes) {
|
|
84
85
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
85
86
|
method: 'GET',
|
|
86
87
|
url: '/client-tools/patron-database/codes',
|
|
@@ -90,6 +91,7 @@ class ClientToolsPatronDatabaseService {
|
|
|
90
91
|
query: {
|
|
91
92
|
'status': status,
|
|
92
93
|
'searchQuery': searchQuery,
|
|
94
|
+
'codes': codes,
|
|
93
95
|
},
|
|
94
96
|
});
|
|
95
97
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { SuccessResponse } from '../models/SuccessResponse';
|
|
2
1
|
import type { TicketingShowResponseDto } from '../models/TicketingShowResponseDto';
|
|
3
2
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
4
3
|
export declare class ClientToolsTicketingLinkService {
|
|
@@ -17,8 +16,8 @@ export declare class ClientToolsTicketingLinkService {
|
|
|
17
16
|
* @param show
|
|
18
17
|
* @param start
|
|
19
18
|
* @param end
|
|
20
|
-
* @returns
|
|
19
|
+
* @returns binary Returns the generated PDF Flyer as a blob
|
|
21
20
|
* @throws ApiError
|
|
22
21
|
*/
|
|
23
|
-
static generateFlyer(xStudioId: string, show?: string, start?: string, end?: string): CancelablePromise<
|
|
22
|
+
static generateFlyer(xStudioId: string, show?: string, start?: string, end?: string): CancelablePromise<Blob>;
|
|
24
23
|
}
|
|
@@ -27,7 +27,7 @@ class ClientToolsTicketingLinkService {
|
|
|
27
27
|
* @param show
|
|
28
28
|
* @param start
|
|
29
29
|
* @param end
|
|
30
|
-
* @returns
|
|
30
|
+
* @returns binary Returns the generated PDF Flyer as a blob
|
|
31
31
|
* @throws ApiError
|
|
32
32
|
*/
|
|
33
33
|
static generateFlyer(xStudioId, show, start, end) {
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.OpenAPI = void 0;
|
|
4
4
|
exports.OpenAPI = {
|
|
5
5
|
BASE: 'https://api.drttix.com/shopper',
|
|
6
|
-
VERSION: '
|
|
6
|
+
VERSION: '20260615.1',
|
|
7
7
|
WITH_CREDENTIALS: false,
|
|
8
8
|
CREDENTIALS: 'include',
|
|
9
9
|
TOKEN: undefined,
|
|
@@ -57,10 +57,11 @@ export declare class ClientToolsPatronDatabaseService {
|
|
|
57
57
|
* @param xStudioId The ID of the studio
|
|
58
58
|
* @param status The status criteria
|
|
59
59
|
* @param searchQuery The search query criteria
|
|
60
|
+
* @param codes The code criteria
|
|
60
61
|
* @returns PatronCodesResponseDto Patron codes fetched successfully
|
|
61
62
|
* @throws ApiError
|
|
62
63
|
*/
|
|
63
|
-
static getPatronCodes(xStudioId: string, status: string, searchQuery: string): CancelablePromise<Array<PatronCodesResponseDto>>;
|
|
64
|
+
static getPatronCodes(xStudioId: string, status: string, searchQuery: string, codes: string): CancelablePromise<Array<PatronCodesResponseDto>>;
|
|
64
65
|
/**
|
|
65
66
|
* Fetch the patron tags
|
|
66
67
|
* Fetch the patron tags for the client tools
|
|
@@ -74,10 +74,11 @@ export class ClientToolsPatronDatabaseService {
|
|
|
74
74
|
* @param xStudioId The ID of the studio
|
|
75
75
|
* @param status The status criteria
|
|
76
76
|
* @param searchQuery The search query criteria
|
|
77
|
+
* @param codes The code criteria
|
|
77
78
|
* @returns PatronCodesResponseDto Patron codes fetched successfully
|
|
78
79
|
* @throws ApiError
|
|
79
80
|
*/
|
|
80
|
-
static getPatronCodes(xStudioId, status, searchQuery) {
|
|
81
|
+
static getPatronCodes(xStudioId, status, searchQuery, codes) {
|
|
81
82
|
return __request(OpenAPI, {
|
|
82
83
|
method: 'GET',
|
|
83
84
|
url: '/client-tools/patron-database/codes',
|
|
@@ -87,6 +88,7 @@ export class ClientToolsPatronDatabaseService {
|
|
|
87
88
|
query: {
|
|
88
89
|
'status': status,
|
|
89
90
|
'searchQuery': searchQuery,
|
|
91
|
+
'codes': codes,
|
|
90
92
|
},
|
|
91
93
|
});
|
|
92
94
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { SuccessResponse } from '../models/SuccessResponse';
|
|
2
1
|
import type { TicketingShowResponseDto } from '../models/TicketingShowResponseDto';
|
|
3
2
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
4
3
|
export declare class ClientToolsTicketingLinkService {
|
|
@@ -17,8 +16,8 @@ export declare class ClientToolsTicketingLinkService {
|
|
|
17
16
|
* @param show
|
|
18
17
|
* @param start
|
|
19
18
|
* @param end
|
|
20
|
-
* @returns
|
|
19
|
+
* @returns binary Returns the generated PDF Flyer as a blob
|
|
21
20
|
* @throws ApiError
|
|
22
21
|
*/
|
|
23
|
-
static generateFlyer(xStudioId: string, show?: string, start?: string, end?: string): CancelablePromise<
|
|
22
|
+
static generateFlyer(xStudioId: string, show?: string, start?: string, end?: string): CancelablePromise<Blob>;
|
|
24
23
|
}
|
|
@@ -24,7 +24,7 @@ export class ClientToolsTicketingLinkService {
|
|
|
24
24
|
* @param show
|
|
25
25
|
* @param start
|
|
26
26
|
* @param end
|
|
27
|
-
* @returns
|
|
27
|
+
* @returns binary Returns the generated PDF Flyer as a blob
|
|
28
28
|
* @throws ApiError
|
|
29
29
|
*/
|
|
30
30
|
static generateFlyer(xStudioId, show, start, end) {
|
package/package.json
CHANGED
|
@@ -106,6 +106,7 @@ export class ClientToolsPatronDatabaseService {
|
|
|
106
106
|
* @param xStudioId The ID of the studio
|
|
107
107
|
* @param status The status criteria
|
|
108
108
|
* @param searchQuery The search query criteria
|
|
109
|
+
* @param codes The code criteria
|
|
109
110
|
* @returns PatronCodesResponseDto Patron codes fetched successfully
|
|
110
111
|
* @throws ApiError
|
|
111
112
|
*/
|
|
@@ -113,6 +114,7 @@ export class ClientToolsPatronDatabaseService {
|
|
|
113
114
|
xStudioId: string,
|
|
114
115
|
status: string,
|
|
115
116
|
searchQuery: string,
|
|
117
|
+
codes: string,
|
|
116
118
|
): CancelablePromise<Array<PatronCodesResponseDto>> {
|
|
117
119
|
return __request(OpenAPI, {
|
|
118
120
|
method: 'GET',
|
|
@@ -123,6 +125,7 @@ export class ClientToolsPatronDatabaseService {
|
|
|
123
125
|
query: {
|
|
124
126
|
'status': status,
|
|
125
127
|
'searchQuery': searchQuery,
|
|
128
|
+
'codes': codes,
|
|
126
129
|
},
|
|
127
130
|
});
|
|
128
131
|
}
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
import type { SuccessResponse } from '../models/SuccessResponse';
|
|
6
5
|
import type { TicketingShowResponseDto } from '../models/TicketingShowResponseDto';
|
|
7
6
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
8
7
|
import { OpenAPI } from '../core/OpenAPI';
|
|
@@ -33,7 +32,7 @@ export class ClientToolsTicketingLinkService {
|
|
|
33
32
|
* @param show
|
|
34
33
|
* @param start
|
|
35
34
|
* @param end
|
|
36
|
-
* @returns
|
|
35
|
+
* @returns binary Returns the generated PDF Flyer as a blob
|
|
37
36
|
* @throws ApiError
|
|
38
37
|
*/
|
|
39
38
|
public static generateFlyer(
|
|
@@ -41,7 +40,7 @@ export class ClientToolsTicketingLinkService {
|
|
|
41
40
|
show?: string,
|
|
42
41
|
start?: string,
|
|
43
42
|
end?: string,
|
|
44
|
-
): CancelablePromise<
|
|
43
|
+
): CancelablePromise<Blob> {
|
|
45
44
|
return __request(OpenAPI, {
|
|
46
45
|
method: 'GET',
|
|
47
46
|
url: '/client-tools/ticketing-link/flyer',
|