@drttix/drt-sdk 1.3.3 → 1.3.4

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: '20260622.2',
6
+ VERSION: '20260622.4',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -121,13 +121,12 @@ export declare class ShowsService {
121
121
  /**
122
122
  * Fetch the show virtual stream details
123
123
  * To fetch the virtual stream details of the show
124
- * @param guid
125
- * @param shopperGuid Unique identifier for an shopper.
124
+ * @param guid The GUID of the resource
126
125
  * @param showId The ID of the show
127
126
  * @returns VirtualStreamResponseDto Virtual stream details fetched successfully
128
127
  * @throws ApiError
129
128
  */
130
- static getShowVirtualStream(guid: string, shopperGuid: any, showId: string): CancelablePromise<VirtualStreamResponseDto>;
129
+ static getShowVirtualStream(guid: string, showId: string): CancelablePromise<VirtualStreamResponseDto>;
131
130
  /**
132
131
  * Fetch the migrate ticket details
133
132
  * To fetch the migrate ticket details of the show
@@ -202,13 +202,12 @@ class ShowsService {
202
202
  /**
203
203
  * Fetch the show virtual stream details
204
204
  * To fetch the virtual stream details of the show
205
- * @param guid
206
- * @param shopperGuid Unique identifier for an shopper.
205
+ * @param guid The GUID of the resource
207
206
  * @param showId The ID of the show
208
207
  * @returns VirtualStreamResponseDto Virtual stream details fetched successfully
209
208
  * @throws ApiError
210
209
  */
211
- static getShowVirtualStream(guid, shopperGuid, showId) {
210
+ static getShowVirtualStream(guid, showId) {
212
211
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
213
212
  method: 'GET',
214
213
  url: '/shows/{showId}/virtual-stream',
@@ -217,7 +216,6 @@ class ShowsService {
217
216
  },
218
217
  query: {
219
218
  'guid': guid,
220
- 'shopperGuid': shopperGuid,
221
219
  },
222
220
  });
223
221
  }
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '',
3
- VERSION: '20260622.2',
3
+ VERSION: '20260622.4',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -121,13 +121,12 @@ export declare class ShowsService {
121
121
  /**
122
122
  * Fetch the show virtual stream details
123
123
  * To fetch the virtual stream details of the show
124
- * @param guid
125
- * @param shopperGuid Unique identifier for an shopper.
124
+ * @param guid The GUID of the resource
126
125
  * @param showId The ID of the show
127
126
  * @returns VirtualStreamResponseDto Virtual stream details fetched successfully
128
127
  * @throws ApiError
129
128
  */
130
- static getShowVirtualStream(guid: string, shopperGuid: any, showId: string): CancelablePromise<VirtualStreamResponseDto>;
129
+ static getShowVirtualStream(guid: string, showId: string): CancelablePromise<VirtualStreamResponseDto>;
131
130
  /**
132
131
  * Fetch the migrate ticket details
133
132
  * To fetch the migrate ticket details of the show
@@ -199,13 +199,12 @@ export class ShowsService {
199
199
  /**
200
200
  * Fetch the show virtual stream details
201
201
  * To fetch the virtual stream details of the show
202
- * @param guid
203
- * @param shopperGuid Unique identifier for an shopper.
202
+ * @param guid The GUID of the resource
204
203
  * @param showId The ID of the show
205
204
  * @returns VirtualStreamResponseDto Virtual stream details fetched successfully
206
205
  * @throws ApiError
207
206
  */
208
- static getShowVirtualStream(guid, shopperGuid, showId) {
207
+ static getShowVirtualStream(guid, showId) {
209
208
  return __request(OpenAPI, {
210
209
  method: 'GET',
211
210
  url: '/shows/{showId}/virtual-stream',
@@ -214,7 +213,6 @@ export class ShowsService {
214
213
  },
215
214
  query: {
216
215
  'guid': guid,
217
- 'shopperGuid': shopperGuid,
218
216
  },
219
217
  });
220
218
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "1.3.3",
4
+ "version": "1.3.4",
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: '20260622.2',
24
+ VERSION: '20260622.4',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -262,15 +262,13 @@ export class ShowsService {
262
262
  /**
263
263
  * Fetch the show virtual stream details
264
264
  * To fetch the virtual stream details of the show
265
- * @param guid
266
- * @param shopperGuid Unique identifier for an shopper.
265
+ * @param guid The GUID of the resource
267
266
  * @param showId The ID of the show
268
267
  * @returns VirtualStreamResponseDto Virtual stream details fetched successfully
269
268
  * @throws ApiError
270
269
  */
271
270
  public static getShowVirtualStream(
272
271
  guid: string,
273
- shopperGuid: any,
274
272
  showId: string,
275
273
  ): CancelablePromise<VirtualStreamResponseDto> {
276
274
  return __request(OpenAPI, {
@@ -281,7 +279,6 @@ export class ShowsService {
281
279
  },
282
280
  query: {
283
281
  'guid': guid,
284
- 'shopperGuid': shopperGuid,
285
282
  },
286
283
  });
287
284
  }