@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.
- package/dist/cjs/src/generated/portal/core/OpenAPI.js +1 -1
- package/dist/cjs/src/generated/portal/services/ShowsService.d.ts +2 -3
- package/dist/cjs/src/generated/portal/services/ShowsService.js +2 -4
- package/dist/esm/src/generated/portal/core/OpenAPI.js +1 -1
- package/dist/esm/src/generated/portal/services/ShowsService.d.ts +2 -3
- package/dist/esm/src/generated/portal/services/ShowsService.js +2 -4
- package/package.json +1 -1
- package/src/generated/portal/core/OpenAPI.ts +1 -1
- package/src/generated/portal/services/ShowsService.ts +1 -4
|
@@ -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,
|
|
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,
|
|
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
|
}
|
|
@@ -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,
|
|
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,
|
|
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
|
@@ -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
|
}
|