reach-api-sdk 1.0.155 → 1.0.156
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/reach-sdk.d.ts +39 -15
- package/dist/reach-sdk.js +10 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +44 -10
- package/src/models/RegisterReport.ts +14 -10
- package/src/services/RegisterReportService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -34140,6 +34140,10 @@ type RegisterReport = {
|
|
|
34140
34140
|
* Gets or sets the activity.
|
|
34141
34141
|
*/
|
|
34142
34142
|
activity?: string | null;
|
|
34143
|
+
/**
|
|
34144
|
+
* Gets or sets the programme.
|
|
34145
|
+
*/
|
|
34146
|
+
programme?: string | null;
|
|
34143
34147
|
/**
|
|
34144
34148
|
* Gets or sets the start.
|
|
34145
34149
|
*/
|
|
@@ -34153,25 +34157,25 @@ type RegisterReport = {
|
|
|
34153
34157
|
*/
|
|
34154
34158
|
location?: string | null;
|
|
34155
34159
|
/**
|
|
34156
|
-
* Gets or sets the
|
|
34160
|
+
* Gets or sets the Street address.
|
|
34157
34161
|
*/
|
|
34158
|
-
|
|
34162
|
+
streetAddress?: string | null;
|
|
34159
34163
|
/**
|
|
34160
|
-
* Gets or sets the
|
|
34164
|
+
* Gets or sets the Locality.
|
|
34161
34165
|
*/
|
|
34162
|
-
|
|
34166
|
+
addressLocality?: string | null;
|
|
34163
34167
|
/**
|
|
34164
|
-
* Gets or sets the
|
|
34168
|
+
* Gets or sets the Region.
|
|
34165
34169
|
*/
|
|
34166
|
-
|
|
34170
|
+
addressRegion?: string | null;
|
|
34167
34171
|
/**
|
|
34168
|
-
* Gets or sets the
|
|
34172
|
+
* Gets or sets the Postcode.
|
|
34169
34173
|
*/
|
|
34170
|
-
|
|
34174
|
+
addressPostalcode?: string | null;
|
|
34171
34175
|
/**
|
|
34172
|
-
* Gets or sets the
|
|
34176
|
+
* Gets or sets the Checked in.
|
|
34173
34177
|
*/
|
|
34174
|
-
|
|
34178
|
+
checkedIn?: string | null;
|
|
34175
34179
|
/**
|
|
34176
34180
|
* Gets or sets the Customer name.
|
|
34177
34181
|
*/
|
|
@@ -34240,11 +34244,15 @@ declare class RegisterReportService {
|
|
|
34240
34244
|
* @returns any Success
|
|
34241
34245
|
* @throws ApiError
|
|
34242
34246
|
*/
|
|
34243
|
-
exportToCsv({ venueId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
34247
|
+
exportToCsv({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
34244
34248
|
/**
|
|
34245
34249
|
* Gets or sets the Venue Id.
|
|
34246
34250
|
*/
|
|
34247
34251
|
venueId?: string;
|
|
34252
|
+
/**
|
|
34253
|
+
* Gets or sets the Programme Id.
|
|
34254
|
+
*/
|
|
34255
|
+
programmeId?: string;
|
|
34248
34256
|
/**
|
|
34249
34257
|
* Gets or sets the queryable User Id.
|
|
34250
34258
|
*/
|
|
@@ -34360,11 +34368,15 @@ declare class RegisterReportService {
|
|
|
34360
34368
|
* @returns RegisterReportPage Success
|
|
34361
34369
|
* @throws ApiError
|
|
34362
34370
|
*/
|
|
34363
|
-
getPage({ venueId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34371
|
+
getPage({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34364
34372
|
/**
|
|
34365
34373
|
* Gets or sets the Venue Id.
|
|
34366
34374
|
*/
|
|
34367
34375
|
venueId?: string;
|
|
34376
|
+
/**
|
|
34377
|
+
* Gets or sets the Programme Id.
|
|
34378
|
+
*/
|
|
34379
|
+
programmeId?: string;
|
|
34368
34380
|
/**
|
|
34369
34381
|
* Gets or sets the queryable User Id.
|
|
34370
34382
|
*/
|
|
@@ -34452,11 +34464,15 @@ declare class RegisterReportService {
|
|
|
34452
34464
|
* @returns boolean Success
|
|
34453
34465
|
* @throws ApiError
|
|
34454
34466
|
*/
|
|
34455
|
-
exists({ venueId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34467
|
+
exists({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34456
34468
|
/**
|
|
34457
34469
|
* Gets or sets the Venue Id.
|
|
34458
34470
|
*/
|
|
34459
34471
|
venueId?: string;
|
|
34472
|
+
/**
|
|
34473
|
+
* Gets or sets the Programme Id.
|
|
34474
|
+
*/
|
|
34475
|
+
programmeId?: string;
|
|
34460
34476
|
/**
|
|
34461
34477
|
* Gets or sets the queryable User Id.
|
|
34462
34478
|
*/
|
|
@@ -34511,11 +34527,15 @@ declare class RegisterReportService {
|
|
|
34511
34527
|
* @returns RegisterReport Success
|
|
34512
34528
|
* @throws ApiError
|
|
34513
34529
|
*/
|
|
34514
|
-
getListWithoutReferences({ venueId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34530
|
+
getListWithoutReferences({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34515
34531
|
/**
|
|
34516
34532
|
* Gets or sets the Venue Id.
|
|
34517
34533
|
*/
|
|
34518
34534
|
venueId?: string;
|
|
34535
|
+
/**
|
|
34536
|
+
* Gets or sets the Programme Id.
|
|
34537
|
+
*/
|
|
34538
|
+
programmeId?: string;
|
|
34519
34539
|
/**
|
|
34520
34540
|
* Gets or sets the queryable User Id.
|
|
34521
34541
|
*/
|
|
@@ -34570,11 +34590,15 @@ declare class RegisterReportService {
|
|
|
34570
34590
|
* @returns RegisterReport Success
|
|
34571
34591
|
* @throws ApiError
|
|
34572
34592
|
*/
|
|
34573
|
-
getListIdName({ venueId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34593
|
+
getListIdName({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34574
34594
|
/**
|
|
34575
34595
|
* Gets or sets the Venue Id.
|
|
34576
34596
|
*/
|
|
34577
34597
|
venueId?: string;
|
|
34598
|
+
/**
|
|
34599
|
+
* Gets or sets the Programme Id.
|
|
34600
|
+
*/
|
|
34601
|
+
programmeId?: string;
|
|
34578
34602
|
/**
|
|
34579
34603
|
* Gets or sets the queryable User Id.
|
|
34580
34604
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -23951,6 +23951,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
23951
23951
|
*/
|
|
23952
23952
|
exportToCsv({
|
|
23953
23953
|
venueId,
|
|
23954
|
+
programmeId,
|
|
23954
23955
|
userId,
|
|
23955
23956
|
pageNumber,
|
|
23956
23957
|
take,
|
|
@@ -23970,6 +23971,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
23970
23971
|
url: "/api/register-report/export/csv",
|
|
23971
23972
|
query: {
|
|
23972
23973
|
VenueId: venueId,
|
|
23974
|
+
ProgrammeId: programmeId,
|
|
23973
23975
|
UserId: userId,
|
|
23974
23976
|
PageNumber: pageNumber,
|
|
23975
23977
|
Take: take,
|
|
@@ -24099,6 +24101,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24099
24101
|
*/
|
|
24100
24102
|
getPage({
|
|
24101
24103
|
venueId,
|
|
24104
|
+
programmeId,
|
|
24102
24105
|
userId,
|
|
24103
24106
|
pageNumber,
|
|
24104
24107
|
take,
|
|
@@ -24117,6 +24120,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24117
24120
|
url: "/api/register-report",
|
|
24118
24121
|
query: {
|
|
24119
24122
|
VenueId: venueId,
|
|
24123
|
+
ProgrammeId: programmeId,
|
|
24120
24124
|
UserId: userId,
|
|
24121
24125
|
PageNumber: pageNumber,
|
|
24122
24126
|
Take: take,
|
|
@@ -24207,6 +24211,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24207
24211
|
*/
|
|
24208
24212
|
exists({
|
|
24209
24213
|
venueId,
|
|
24214
|
+
programmeId,
|
|
24210
24215
|
userId,
|
|
24211
24216
|
pageNumber,
|
|
24212
24217
|
take,
|
|
@@ -24225,6 +24230,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24225
24230
|
url: "/api/register-report/exists",
|
|
24226
24231
|
query: {
|
|
24227
24232
|
VenueId: venueId,
|
|
24233
|
+
ProgrammeId: programmeId,
|
|
24228
24234
|
UserId: userId,
|
|
24229
24235
|
PageNumber: pageNumber,
|
|
24230
24236
|
Take: take,
|
|
@@ -24252,6 +24258,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24252
24258
|
*/
|
|
24253
24259
|
getListWithoutReferences({
|
|
24254
24260
|
venueId,
|
|
24261
|
+
programmeId,
|
|
24255
24262
|
userId,
|
|
24256
24263
|
pageNumber,
|
|
24257
24264
|
take,
|
|
@@ -24270,6 +24277,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24270
24277
|
url: "/api/register-report/without-references",
|
|
24271
24278
|
query: {
|
|
24272
24279
|
VenueId: venueId,
|
|
24280
|
+
ProgrammeId: programmeId,
|
|
24273
24281
|
UserId: userId,
|
|
24274
24282
|
PageNumber: pageNumber,
|
|
24275
24283
|
Take: take,
|
|
@@ -24297,6 +24305,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24297
24305
|
*/
|
|
24298
24306
|
getListIdName({
|
|
24299
24307
|
venueId,
|
|
24308
|
+
programmeId,
|
|
24300
24309
|
userId,
|
|
24301
24310
|
pageNumber,
|
|
24302
24311
|
take,
|
|
@@ -24315,6 +24324,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24315
24324
|
url: "/api/register-report/id-name",
|
|
24316
24325
|
query: {
|
|
24317
24326
|
VenueId: venueId,
|
|
24327
|
+
ProgrammeId: programmeId,
|
|
24318
24328
|
UserId: userId,
|
|
24319
24329
|
PageNumber: pageNumber,
|
|
24320
24330
|
Take: take,
|
package/package.json
CHANGED
|
@@ -69400,6 +69400,12 @@ paths:
|
|
|
69400
69400
|
schema:
|
|
69401
69401
|
type: string
|
|
69402
69402
|
format: uuid
|
|
69403
|
+
- name: ProgrammeId
|
|
69404
|
+
in: query
|
|
69405
|
+
description: Gets or sets the Programme Id.
|
|
69406
|
+
schema:
|
|
69407
|
+
type: string
|
|
69408
|
+
format: uuid
|
|
69403
69409
|
- name: UserId
|
|
69404
69410
|
in: query
|
|
69405
69411
|
description: Gets or sets the queryable User Id.
|
|
@@ -69870,6 +69876,12 @@ paths:
|
|
|
69870
69876
|
schema:
|
|
69871
69877
|
type: string
|
|
69872
69878
|
format: uuid
|
|
69879
|
+
- name: ProgrammeId
|
|
69880
|
+
in: query
|
|
69881
|
+
description: Gets or sets the Programme Id.
|
|
69882
|
+
schema:
|
|
69883
|
+
type: string
|
|
69884
|
+
format: uuid
|
|
69873
69885
|
- name: UserId
|
|
69874
69886
|
in: query
|
|
69875
69887
|
description: Gets or sets the queryable User Id.
|
|
@@ -70181,6 +70193,12 @@ paths:
|
|
|
70181
70193
|
schema:
|
|
70182
70194
|
type: string
|
|
70183
70195
|
format: uuid
|
|
70196
|
+
- name: ProgrammeId
|
|
70197
|
+
in: query
|
|
70198
|
+
description: Gets or sets the Programme Id.
|
|
70199
|
+
schema:
|
|
70200
|
+
type: string
|
|
70201
|
+
format: uuid
|
|
70184
70202
|
- name: UserId
|
|
70185
70203
|
in: query
|
|
70186
70204
|
description: Gets or sets the queryable User Id.
|
|
@@ -70314,6 +70332,12 @@ paths:
|
|
|
70314
70332
|
schema:
|
|
70315
70333
|
type: string
|
|
70316
70334
|
format: uuid
|
|
70335
|
+
- name: ProgrammeId
|
|
70336
|
+
in: query
|
|
70337
|
+
description: Gets or sets the Programme Id.
|
|
70338
|
+
schema:
|
|
70339
|
+
type: string
|
|
70340
|
+
format: uuid
|
|
70317
70341
|
- name: UserId
|
|
70318
70342
|
in: query
|
|
70319
70343
|
description: Gets or sets the queryable User Id.
|
|
@@ -70453,6 +70477,12 @@ paths:
|
|
|
70453
70477
|
schema:
|
|
70454
70478
|
type: string
|
|
70455
70479
|
format: uuid
|
|
70480
|
+
- name: ProgrammeId
|
|
70481
|
+
in: query
|
|
70482
|
+
description: Gets or sets the Programme Id.
|
|
70483
|
+
schema:
|
|
70484
|
+
type: string
|
|
70485
|
+
format: uuid
|
|
70456
70486
|
- name: UserId
|
|
70457
70487
|
in: query
|
|
70458
70488
|
description: Gets or sets the queryable User Id.
|
|
@@ -121521,6 +121551,10 @@ components:
|
|
|
121521
121551
|
type: string
|
|
121522
121552
|
description: Gets or sets the activity.
|
|
121523
121553
|
nullable: true
|
|
121554
|
+
programme:
|
|
121555
|
+
type: string
|
|
121556
|
+
description: Gets or sets the programme.
|
|
121557
|
+
nullable: true
|
|
121524
121558
|
start:
|
|
121525
121559
|
type: string
|
|
121526
121560
|
description: Gets or sets the start.
|
|
@@ -121535,25 +121569,25 @@ components:
|
|
|
121535
121569
|
type: string
|
|
121536
121570
|
description: Gets or sets the location.
|
|
121537
121571
|
nullable: true
|
|
121538
|
-
|
|
121572
|
+
streetAddress:
|
|
121539
121573
|
type: string
|
|
121540
|
-
description: Gets or sets the
|
|
121574
|
+
description: Gets or sets the Street address.
|
|
121541
121575
|
nullable: true
|
|
121542
|
-
|
|
121576
|
+
addressLocality:
|
|
121543
121577
|
type: string
|
|
121544
|
-
description: Gets or sets the
|
|
121578
|
+
description: Gets or sets the Locality.
|
|
121545
121579
|
nullable: true
|
|
121546
|
-
|
|
121580
|
+
addressRegion:
|
|
121547
121581
|
type: string
|
|
121548
|
-
description: Gets or sets the
|
|
121582
|
+
description: Gets or sets the Region.
|
|
121549
121583
|
nullable: true
|
|
121550
|
-
|
|
121584
|
+
addressPostalcode:
|
|
121551
121585
|
type: string
|
|
121552
|
-
description: Gets or sets the
|
|
121586
|
+
description: Gets or sets the Postcode.
|
|
121553
121587
|
nullable: true
|
|
121554
|
-
|
|
121588
|
+
checkedIn:
|
|
121555
121589
|
type: string
|
|
121556
|
-
description: Gets or sets the
|
|
121590
|
+
description: Gets or sets the Checked in.
|
|
121557
121591
|
nullable: true
|
|
121558
121592
|
customerName:
|
|
121559
121593
|
type: string
|
|
@@ -43,6 +43,10 @@ export type RegisterReport = {
|
|
|
43
43
|
* Gets or sets the activity.
|
|
44
44
|
*/
|
|
45
45
|
activity?: string | null;
|
|
46
|
+
/**
|
|
47
|
+
* Gets or sets the programme.
|
|
48
|
+
*/
|
|
49
|
+
programme?: string | null;
|
|
46
50
|
/**
|
|
47
51
|
* Gets or sets the start.
|
|
48
52
|
*/
|
|
@@ -56,25 +60,25 @@ export type RegisterReport = {
|
|
|
56
60
|
*/
|
|
57
61
|
location?: string | null;
|
|
58
62
|
/**
|
|
59
|
-
* Gets or sets the
|
|
63
|
+
* Gets or sets the Street address.
|
|
60
64
|
*/
|
|
61
|
-
|
|
65
|
+
streetAddress?: string | null;
|
|
62
66
|
/**
|
|
63
|
-
* Gets or sets the
|
|
67
|
+
* Gets or sets the Locality.
|
|
64
68
|
*/
|
|
65
|
-
|
|
69
|
+
addressLocality?: string | null;
|
|
66
70
|
/**
|
|
67
|
-
* Gets or sets the
|
|
71
|
+
* Gets or sets the Region.
|
|
68
72
|
*/
|
|
69
|
-
|
|
73
|
+
addressRegion?: string | null;
|
|
70
74
|
/**
|
|
71
|
-
* Gets or sets the
|
|
75
|
+
* Gets or sets the Postcode.
|
|
72
76
|
*/
|
|
73
|
-
|
|
77
|
+
addressPostalcode?: string | null;
|
|
74
78
|
/**
|
|
75
|
-
* Gets or sets the
|
|
79
|
+
* Gets or sets the Checked in.
|
|
76
80
|
*/
|
|
77
|
-
|
|
81
|
+
checkedIn?: string | null;
|
|
78
82
|
/**
|
|
79
83
|
* Gets or sets the Customer name.
|
|
80
84
|
*/
|
|
@@ -22,6 +22,7 @@ export class RegisterReportService {
|
|
|
22
22
|
*/
|
|
23
23
|
public exportToCsv({
|
|
24
24
|
venueId,
|
|
25
|
+
programmeId,
|
|
25
26
|
userId,
|
|
26
27
|
pageNumber,
|
|
27
28
|
take,
|
|
@@ -40,6 +41,10 @@ export class RegisterReportService {
|
|
|
40
41
|
* Gets or sets the Venue Id.
|
|
41
42
|
*/
|
|
42
43
|
venueId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Gets or sets the Programme Id.
|
|
46
|
+
*/
|
|
47
|
+
programmeId?: string;
|
|
43
48
|
/**
|
|
44
49
|
* Gets or sets the queryable User Id.
|
|
45
50
|
*/
|
|
@@ -100,6 +105,7 @@ export class RegisterReportService {
|
|
|
100
105
|
url: '/api/register-report/export/csv',
|
|
101
106
|
query: {
|
|
102
107
|
VenueId: venueId,
|
|
108
|
+
ProgrammeId: programmeId,
|
|
103
109
|
UserId: userId,
|
|
104
110
|
PageNumber: pageNumber,
|
|
105
111
|
Take: take,
|
|
@@ -260,6 +266,7 @@ export class RegisterReportService {
|
|
|
260
266
|
*/
|
|
261
267
|
public getPage({
|
|
262
268
|
venueId,
|
|
269
|
+
programmeId,
|
|
263
270
|
userId,
|
|
264
271
|
pageNumber,
|
|
265
272
|
take,
|
|
@@ -277,6 +284,10 @@ export class RegisterReportService {
|
|
|
277
284
|
* Gets or sets the Venue Id.
|
|
278
285
|
*/
|
|
279
286
|
venueId?: string;
|
|
287
|
+
/**
|
|
288
|
+
* Gets or sets the Programme Id.
|
|
289
|
+
*/
|
|
290
|
+
programmeId?: string;
|
|
280
291
|
/**
|
|
281
292
|
* Gets or sets the queryable User Id.
|
|
282
293
|
*/
|
|
@@ -331,6 +342,7 @@ export class RegisterReportService {
|
|
|
331
342
|
url: '/api/register-report',
|
|
332
343
|
query: {
|
|
333
344
|
VenueId: venueId,
|
|
345
|
+
ProgrammeId: programmeId,
|
|
334
346
|
UserId: userId,
|
|
335
347
|
PageNumber: pageNumber,
|
|
336
348
|
Take: take,
|
|
@@ -440,6 +452,7 @@ export class RegisterReportService {
|
|
|
440
452
|
*/
|
|
441
453
|
public exists({
|
|
442
454
|
venueId,
|
|
455
|
+
programmeId,
|
|
443
456
|
userId,
|
|
444
457
|
pageNumber,
|
|
445
458
|
take,
|
|
@@ -457,6 +470,10 @@ export class RegisterReportService {
|
|
|
457
470
|
* Gets or sets the Venue Id.
|
|
458
471
|
*/
|
|
459
472
|
venueId?: string;
|
|
473
|
+
/**
|
|
474
|
+
* Gets or sets the Programme Id.
|
|
475
|
+
*/
|
|
476
|
+
programmeId?: string;
|
|
460
477
|
/**
|
|
461
478
|
* Gets or sets the queryable User Id.
|
|
462
479
|
*/
|
|
@@ -511,6 +528,7 @@ export class RegisterReportService {
|
|
|
511
528
|
url: '/api/register-report/exists',
|
|
512
529
|
query: {
|
|
513
530
|
VenueId: venueId,
|
|
531
|
+
ProgrammeId: programmeId,
|
|
514
532
|
UserId: userId,
|
|
515
533
|
PageNumber: pageNumber,
|
|
516
534
|
Take: take,
|
|
@@ -539,6 +557,7 @@ export class RegisterReportService {
|
|
|
539
557
|
*/
|
|
540
558
|
public getListWithoutReferences({
|
|
541
559
|
venueId,
|
|
560
|
+
programmeId,
|
|
542
561
|
userId,
|
|
543
562
|
pageNumber,
|
|
544
563
|
take,
|
|
@@ -556,6 +575,10 @@ export class RegisterReportService {
|
|
|
556
575
|
* Gets or sets the Venue Id.
|
|
557
576
|
*/
|
|
558
577
|
venueId?: string;
|
|
578
|
+
/**
|
|
579
|
+
* Gets or sets the Programme Id.
|
|
580
|
+
*/
|
|
581
|
+
programmeId?: string;
|
|
559
582
|
/**
|
|
560
583
|
* Gets or sets the queryable User Id.
|
|
561
584
|
*/
|
|
@@ -610,6 +633,7 @@ export class RegisterReportService {
|
|
|
610
633
|
url: '/api/register-report/without-references',
|
|
611
634
|
query: {
|
|
612
635
|
VenueId: venueId,
|
|
636
|
+
ProgrammeId: programmeId,
|
|
613
637
|
UserId: userId,
|
|
614
638
|
PageNumber: pageNumber,
|
|
615
639
|
Take: take,
|
|
@@ -638,6 +662,7 @@ export class RegisterReportService {
|
|
|
638
662
|
*/
|
|
639
663
|
public getListIdName({
|
|
640
664
|
venueId,
|
|
665
|
+
programmeId,
|
|
641
666
|
userId,
|
|
642
667
|
pageNumber,
|
|
643
668
|
take,
|
|
@@ -655,6 +680,10 @@ export class RegisterReportService {
|
|
|
655
680
|
* Gets or sets the Venue Id.
|
|
656
681
|
*/
|
|
657
682
|
venueId?: string;
|
|
683
|
+
/**
|
|
684
|
+
* Gets or sets the Programme Id.
|
|
685
|
+
*/
|
|
686
|
+
programmeId?: string;
|
|
658
687
|
/**
|
|
659
688
|
* Gets or sets the queryable User Id.
|
|
660
689
|
*/
|
|
@@ -709,6 +738,7 @@ export class RegisterReportService {
|
|
|
709
738
|
url: '/api/register-report/id-name',
|
|
710
739
|
query: {
|
|
711
740
|
VenueId: venueId,
|
|
741
|
+
ProgrammeId: programmeId,
|
|
712
742
|
UserId: userId,
|
|
713
743
|
PageNumber: pageNumber,
|
|
714
744
|
Take: take,
|