reach-api-sdk 1.0.161 → 1.0.163
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 +259 -7
- package/dist/reach-sdk.js +152 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +529 -0
- package/src/index.ts +2 -0
- package/src/models/LocationReportSummary.ts +42 -0
- package/src/models/RegisterReportSummary.ts +38 -0
- package/src/services/LocationsReportService.ts +106 -0
- package/src/services/ProgrammesService.ts +78 -0
- package/src/services/PublicProgrammesService.ts +12 -0
- package/src/services/RegisterReportService.ts +118 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -16290,6 +16290,44 @@ type LocationReportPost = {
|
|
|
16290
16290
|
tenantId: string;
|
|
16291
16291
|
};
|
|
16292
16292
|
|
|
16293
|
+
/**
|
|
16294
|
+
* Represents the location report model.
|
|
16295
|
+
*/
|
|
16296
|
+
type LocationReportSummary = {
|
|
16297
|
+
/**
|
|
16298
|
+
* Gets or sets the entities Id.
|
|
16299
|
+
*/
|
|
16300
|
+
id?: string;
|
|
16301
|
+
/**
|
|
16302
|
+
* Gets or sets the tenant Id.
|
|
16303
|
+
*/
|
|
16304
|
+
tenantId: string;
|
|
16305
|
+
/**
|
|
16306
|
+
* Gets or sets the created date of this entity.
|
|
16307
|
+
*/
|
|
16308
|
+
dateCreated: string;
|
|
16309
|
+
/**
|
|
16310
|
+
* Gets or sets the last modified date of this entity.
|
|
16311
|
+
*/
|
|
16312
|
+
dateModified: string;
|
|
16313
|
+
/**
|
|
16314
|
+
* Gets or sets the modified by Id.
|
|
16315
|
+
*/
|
|
16316
|
+
modifiedById?: string | null;
|
|
16317
|
+
/**
|
|
16318
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
16319
|
+
*/
|
|
16320
|
+
isLive: boolean;
|
|
16321
|
+
/**
|
|
16322
|
+
* Gets or sets the revenue per location.
|
|
16323
|
+
*/
|
|
16324
|
+
revenuePerLocation?: number;
|
|
16325
|
+
/**
|
|
16326
|
+
* Gets or sets the revenue per location.
|
|
16327
|
+
*/
|
|
16328
|
+
totalLive?: number;
|
|
16329
|
+
};
|
|
16330
|
+
|
|
16293
16331
|
declare class LocationsReportService {
|
|
16294
16332
|
readonly httpRequest: BaseHttpRequest;
|
|
16295
16333
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -16363,6 +16401,69 @@ declare class LocationsReportService {
|
|
|
16363
16401
|
Token?: string;
|
|
16364
16402
|
};
|
|
16365
16403
|
}): CancelablePromise<any>;
|
|
16404
|
+
/**
|
|
16405
|
+
* Get summary for locations.
|
|
16406
|
+
* @returns LocationReportSummary Success
|
|
16407
|
+
* @throws ApiError
|
|
16408
|
+
*/
|
|
16409
|
+
getSummary({ userId, archived, programmeId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16410
|
+
/**
|
|
16411
|
+
* Gets or sets the queryable User Id.
|
|
16412
|
+
*/
|
|
16413
|
+
userId?: string;
|
|
16414
|
+
/**
|
|
16415
|
+
* Gets or sets a value indicating whether to include archived venues.
|
|
16416
|
+
*/
|
|
16417
|
+
archived?: boolean;
|
|
16418
|
+
/**
|
|
16419
|
+
* Gets or sets the queryable programme Id.
|
|
16420
|
+
*/
|
|
16421
|
+
programmeId?: string;
|
|
16422
|
+
/**
|
|
16423
|
+
* Gets or sets the page number for paged queries.
|
|
16424
|
+
*/
|
|
16425
|
+
pageNumber?: number;
|
|
16426
|
+
/**
|
|
16427
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16428
|
+
*/
|
|
16429
|
+
take?: number;
|
|
16430
|
+
/**
|
|
16431
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
16432
|
+
*/
|
|
16433
|
+
skip?: number;
|
|
16434
|
+
/**
|
|
16435
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16436
|
+
*/
|
|
16437
|
+
limitListRequests?: boolean;
|
|
16438
|
+
/**
|
|
16439
|
+
* Gets or sets the Tenant Id.
|
|
16440
|
+
*/
|
|
16441
|
+
tenantId?: string;
|
|
16442
|
+
/**
|
|
16443
|
+
* Gets or sets the Modifed By Id.
|
|
16444
|
+
*/
|
|
16445
|
+
modifiedById?: string;
|
|
16446
|
+
/**
|
|
16447
|
+
* Gets or sets the Modifed By Ids.
|
|
16448
|
+
*/
|
|
16449
|
+
modifiedByIds?: Array<string>;
|
|
16450
|
+
/**
|
|
16451
|
+
* Gets or sets the Date Created greater than equal to.
|
|
16452
|
+
*/
|
|
16453
|
+
dateCreatedGte?: string;
|
|
16454
|
+
/**
|
|
16455
|
+
* Gets or sets the Date Created less than equal to.
|
|
16456
|
+
*/
|
|
16457
|
+
dateCreatedLte?: string;
|
|
16458
|
+
/**
|
|
16459
|
+
* Gets or sets the queryable only is live status.
|
|
16460
|
+
*/
|
|
16461
|
+
isLive?: boolean;
|
|
16462
|
+
/**
|
|
16463
|
+
* Gets or sets the sort order direction.
|
|
16464
|
+
*/
|
|
16465
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
16466
|
+
}): CancelablePromise<LocationReportSummary>;
|
|
16366
16467
|
/**
|
|
16367
16468
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16368
16469
|
* @returns LocationReport Success
|
|
@@ -24301,6 +24402,28 @@ type ProgrammePost = {
|
|
|
24301
24402
|
declare class ProgrammesService {
|
|
24302
24403
|
readonly httpRequest: BaseHttpRequest;
|
|
24303
24404
|
constructor(httpRequest: BaseHttpRequest);
|
|
24405
|
+
/**
|
|
24406
|
+
* Sets the programme active. />.
|
|
24407
|
+
* @returns Programme Success
|
|
24408
|
+
* @throws ApiError
|
|
24409
|
+
*/
|
|
24410
|
+
setActive({ programmeId, }: {
|
|
24411
|
+
/**
|
|
24412
|
+
* The programme Id.
|
|
24413
|
+
*/
|
|
24414
|
+
programmeId: string;
|
|
24415
|
+
}): CancelablePromise<Programme>;
|
|
24416
|
+
/**
|
|
24417
|
+
* Sets the programme Inactive. />.
|
|
24418
|
+
* @returns Programme Success
|
|
24419
|
+
* @throws ApiError
|
|
24420
|
+
*/
|
|
24421
|
+
setInactive({ programmeId, }: {
|
|
24422
|
+
/**
|
|
24423
|
+
* The programme Id.
|
|
24424
|
+
*/
|
|
24425
|
+
programmeId: string;
|
|
24426
|
+
}): CancelablePromise<Programme>;
|
|
24304
24427
|
/**
|
|
24305
24428
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
24306
24429
|
* @returns Programme Success
|
|
@@ -24361,7 +24484,7 @@ declare class ProgrammesService {
|
|
|
24361
24484
|
* @returns ProgrammePage Success
|
|
24362
24485
|
* @throws ApiError
|
|
24363
24486
|
*/
|
|
24364
|
-
getPage({ name, nameLike, slug, includeOpportunityImages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24487
|
+
getPage({ name, nameLike, slug, includeOpportunityImages, active, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24365
24488
|
/**
|
|
24366
24489
|
* Gets or sets the queryable programme name.
|
|
24367
24490
|
*/
|
|
@@ -24378,6 +24501,10 @@ declare class ProgrammesService {
|
|
|
24378
24501
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24379
24502
|
*/
|
|
24380
24503
|
includeOpportunityImages?: boolean;
|
|
24504
|
+
/**
|
|
24505
|
+
* Gets or sets the queryable programme active status.
|
|
24506
|
+
*/
|
|
24507
|
+
active?: boolean;
|
|
24381
24508
|
/**
|
|
24382
24509
|
* Gets or sets the page number for paged queries.
|
|
24383
24510
|
*/
|
|
@@ -24461,7 +24588,7 @@ declare class ProgrammesService {
|
|
|
24461
24588
|
* @returns boolean Success
|
|
24462
24589
|
* @throws ApiError
|
|
24463
24590
|
*/
|
|
24464
|
-
exists({ name, nameLike, slug, includeOpportunityImages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24591
|
+
exists({ name, nameLike, slug, includeOpportunityImages, active, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24465
24592
|
/**
|
|
24466
24593
|
* Gets or sets the queryable programme name.
|
|
24467
24594
|
*/
|
|
@@ -24478,6 +24605,10 @@ declare class ProgrammesService {
|
|
|
24478
24605
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24479
24606
|
*/
|
|
24480
24607
|
includeOpportunityImages?: boolean;
|
|
24608
|
+
/**
|
|
24609
|
+
* Gets or sets the queryable programme active status.
|
|
24610
|
+
*/
|
|
24611
|
+
active?: boolean;
|
|
24481
24612
|
/**
|
|
24482
24613
|
* Gets or sets the page number for paged queries.
|
|
24483
24614
|
*/
|
|
@@ -24528,7 +24659,7 @@ declare class ProgrammesService {
|
|
|
24528
24659
|
* @returns Programme Success
|
|
24529
24660
|
* @throws ApiError
|
|
24530
24661
|
*/
|
|
24531
|
-
getListWithoutReferences({ name, nameLike, slug, includeOpportunityImages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24662
|
+
getListWithoutReferences({ name, nameLike, slug, includeOpportunityImages, active, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24532
24663
|
/**
|
|
24533
24664
|
* Gets or sets the queryable programme name.
|
|
24534
24665
|
*/
|
|
@@ -24545,6 +24676,10 @@ declare class ProgrammesService {
|
|
|
24545
24676
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24546
24677
|
*/
|
|
24547
24678
|
includeOpportunityImages?: boolean;
|
|
24679
|
+
/**
|
|
24680
|
+
* Gets or sets the queryable programme active status.
|
|
24681
|
+
*/
|
|
24682
|
+
active?: boolean;
|
|
24548
24683
|
/**
|
|
24549
24684
|
* Gets or sets the page number for paged queries.
|
|
24550
24685
|
*/
|
|
@@ -24595,7 +24730,7 @@ declare class ProgrammesService {
|
|
|
24595
24730
|
* @returns Programme Success
|
|
24596
24731
|
* @throws ApiError
|
|
24597
24732
|
*/
|
|
24598
|
-
getListIdName({ name, nameLike, slug, includeOpportunityImages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24733
|
+
getListIdName({ name, nameLike, slug, includeOpportunityImages, active, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24599
24734
|
/**
|
|
24600
24735
|
* Gets or sets the queryable programme name.
|
|
24601
24736
|
*/
|
|
@@ -24612,6 +24747,10 @@ declare class ProgrammesService {
|
|
|
24612
24747
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24613
24748
|
*/
|
|
24614
24749
|
includeOpportunityImages?: boolean;
|
|
24750
|
+
/**
|
|
24751
|
+
* Gets or sets the queryable programme active status.
|
|
24752
|
+
*/
|
|
24753
|
+
active?: boolean;
|
|
24615
24754
|
/**
|
|
24616
24755
|
* Gets or sets the page number for paged queries.
|
|
24617
24756
|
*/
|
|
@@ -29529,7 +29668,7 @@ declare class PublicProgrammesService {
|
|
|
29529
29668
|
* @returns ProgrammePage Success
|
|
29530
29669
|
* @throws ApiError
|
|
29531
29670
|
*/
|
|
29532
|
-
getPage({ xTenantSubdomain, name, nameLike, slug, includeOpportunityImages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29671
|
+
getPage({ xTenantSubdomain, name, nameLike, slug, includeOpportunityImages, active, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29533
29672
|
xTenantSubdomain?: string;
|
|
29534
29673
|
/**
|
|
29535
29674
|
* Gets or sets the queryable programme name.
|
|
@@ -29547,6 +29686,10 @@ declare class PublicProgrammesService {
|
|
|
29547
29686
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
29548
29687
|
*/
|
|
29549
29688
|
includeOpportunityImages?: boolean;
|
|
29689
|
+
/**
|
|
29690
|
+
* Gets or sets the queryable programme active status.
|
|
29691
|
+
*/
|
|
29692
|
+
active?: boolean;
|
|
29550
29693
|
/**
|
|
29551
29694
|
* Gets or sets the page number for paged queries.
|
|
29552
29695
|
*/
|
|
@@ -29657,7 +29800,7 @@ declare class PublicProgrammesService {
|
|
|
29657
29800
|
* @returns boolean Success
|
|
29658
29801
|
* @throws ApiError
|
|
29659
29802
|
*/
|
|
29660
|
-
exists({ xTenantSubdomain, name, nameLike, slug, includeOpportunityImages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29803
|
+
exists({ xTenantSubdomain, name, nameLike, slug, includeOpportunityImages, active, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29661
29804
|
/**
|
|
29662
29805
|
* The tenants subdomain.
|
|
29663
29806
|
*/
|
|
@@ -29678,6 +29821,10 @@ declare class PublicProgrammesService {
|
|
|
29678
29821
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
29679
29822
|
*/
|
|
29680
29823
|
includeOpportunityImages?: boolean;
|
|
29824
|
+
/**
|
|
29825
|
+
* Gets or sets the queryable programme active status.
|
|
29826
|
+
*/
|
|
29827
|
+
active?: boolean;
|
|
29681
29828
|
/**
|
|
29682
29829
|
* Gets or sets the page number for paged queries.
|
|
29683
29830
|
*/
|
|
@@ -35288,6 +35435,40 @@ type RegisterReportPost = {
|
|
|
35288
35435
|
tenantId: string;
|
|
35289
35436
|
};
|
|
35290
35437
|
|
|
35438
|
+
/**
|
|
35439
|
+
* Represents the location report model.
|
|
35440
|
+
*/
|
|
35441
|
+
type RegisterReportSummary = {
|
|
35442
|
+
/**
|
|
35443
|
+
* Gets or sets the entities Id.
|
|
35444
|
+
*/
|
|
35445
|
+
id?: string;
|
|
35446
|
+
/**
|
|
35447
|
+
* Gets or sets the tenant Id.
|
|
35448
|
+
*/
|
|
35449
|
+
tenantId: string;
|
|
35450
|
+
/**
|
|
35451
|
+
* Gets or sets the created date of this entity.
|
|
35452
|
+
*/
|
|
35453
|
+
dateCreated: string;
|
|
35454
|
+
/**
|
|
35455
|
+
* Gets or sets the last modified date of this entity.
|
|
35456
|
+
*/
|
|
35457
|
+
dateModified: string;
|
|
35458
|
+
/**
|
|
35459
|
+
* Gets or sets the modified by Id.
|
|
35460
|
+
*/
|
|
35461
|
+
modifiedById?: string | null;
|
|
35462
|
+
/**
|
|
35463
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
35464
|
+
*/
|
|
35465
|
+
isLive: boolean;
|
|
35466
|
+
/**
|
|
35467
|
+
* Gets or sets the total revenue.
|
|
35468
|
+
*/
|
|
35469
|
+
revenueGenerated?: number;
|
|
35470
|
+
};
|
|
35471
|
+
|
|
35291
35472
|
declare class RegisterReportService {
|
|
35292
35473
|
readonly httpRequest: BaseHttpRequest;
|
|
35293
35474
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -35369,6 +35550,77 @@ declare class RegisterReportService {
|
|
|
35369
35550
|
Token?: string;
|
|
35370
35551
|
};
|
|
35371
35552
|
}): CancelablePromise<any>;
|
|
35553
|
+
/**
|
|
35554
|
+
* Get summary for register report.
|
|
35555
|
+
* @returns RegisterReportSummary Success
|
|
35556
|
+
* @throws ApiError
|
|
35557
|
+
*/
|
|
35558
|
+
getSummary({ venueId, programmeId, userId, startDateGte, startDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35559
|
+
/**
|
|
35560
|
+
* Gets or sets the Venue Id.
|
|
35561
|
+
*/
|
|
35562
|
+
venueId?: string;
|
|
35563
|
+
/**
|
|
35564
|
+
* Gets or sets the Programme Id.
|
|
35565
|
+
*/
|
|
35566
|
+
programmeId?: string;
|
|
35567
|
+
/**
|
|
35568
|
+
* Gets or sets the queryable User Id.
|
|
35569
|
+
*/
|
|
35570
|
+
userId?: string;
|
|
35571
|
+
/**
|
|
35572
|
+
* Gets or sets the starting date greater than or equal to.
|
|
35573
|
+
*/
|
|
35574
|
+
startDateGte?: string;
|
|
35575
|
+
/**
|
|
35576
|
+
* Gets or sets the starting date less than or equal to.
|
|
35577
|
+
*/
|
|
35578
|
+
startDateLte?: string;
|
|
35579
|
+
/**
|
|
35580
|
+
* Gets or sets the page number for paged queries.
|
|
35581
|
+
*/
|
|
35582
|
+
pageNumber?: number;
|
|
35583
|
+
/**
|
|
35584
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
35585
|
+
*/
|
|
35586
|
+
take?: number;
|
|
35587
|
+
/**
|
|
35588
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
35589
|
+
*/
|
|
35590
|
+
skip?: number;
|
|
35591
|
+
/**
|
|
35592
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
35593
|
+
*/
|
|
35594
|
+
limitListRequests?: boolean;
|
|
35595
|
+
/**
|
|
35596
|
+
* Gets or sets the Tenant Id.
|
|
35597
|
+
*/
|
|
35598
|
+
tenantId?: string;
|
|
35599
|
+
/**
|
|
35600
|
+
* Gets or sets the Modifed By Id.
|
|
35601
|
+
*/
|
|
35602
|
+
modifiedById?: string;
|
|
35603
|
+
/**
|
|
35604
|
+
* Gets or sets the Modifed By Ids.
|
|
35605
|
+
*/
|
|
35606
|
+
modifiedByIds?: Array<string>;
|
|
35607
|
+
/**
|
|
35608
|
+
* Gets or sets the Date Created greater than equal to.
|
|
35609
|
+
*/
|
|
35610
|
+
dateCreatedGte?: string;
|
|
35611
|
+
/**
|
|
35612
|
+
* Gets or sets the Date Created less than equal to.
|
|
35613
|
+
*/
|
|
35614
|
+
dateCreatedLte?: string;
|
|
35615
|
+
/**
|
|
35616
|
+
* Gets or sets the queryable only is live status.
|
|
35617
|
+
*/
|
|
35618
|
+
isLive?: boolean;
|
|
35619
|
+
/**
|
|
35620
|
+
* Gets or sets the sort order direction.
|
|
35621
|
+
*/
|
|
35622
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
35623
|
+
}): CancelablePromise<RegisterReportSummary>;
|
|
35372
35624
|
/**
|
|
35373
35625
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
35374
35626
|
* @returns RegisterReport Success
|
|
@@ -52890,4 +53142,4 @@ type ValidationResultModel = {
|
|
|
52890
53142
|
readonly errors?: Array<ValidationError> | null;
|
|
52891
53143
|
};
|
|
52892
53144
|
|
|
52893
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
53145
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
package/dist/reach-sdk.js
CHANGED
|
@@ -9761,6 +9761,53 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9761
9761
|
}
|
|
9762
9762
|
});
|
|
9763
9763
|
}
|
|
9764
|
+
/**
|
|
9765
|
+
* Get summary for locations.
|
|
9766
|
+
* @returns LocationReportSummary Success
|
|
9767
|
+
* @throws ApiError
|
|
9768
|
+
*/
|
|
9769
|
+
getSummary({
|
|
9770
|
+
userId,
|
|
9771
|
+
archived,
|
|
9772
|
+
programmeId,
|
|
9773
|
+
pageNumber,
|
|
9774
|
+
take,
|
|
9775
|
+
skip,
|
|
9776
|
+
limitListRequests,
|
|
9777
|
+
tenantId,
|
|
9778
|
+
modifiedById,
|
|
9779
|
+
modifiedByIds,
|
|
9780
|
+
dateCreatedGte,
|
|
9781
|
+
dateCreatedLte,
|
|
9782
|
+
isLive,
|
|
9783
|
+
sortOrderDirection
|
|
9784
|
+
}) {
|
|
9785
|
+
return this.httpRequest.request({
|
|
9786
|
+
method: "GET",
|
|
9787
|
+
url: "/api/locations-report/summary",
|
|
9788
|
+
query: {
|
|
9789
|
+
UserId: userId,
|
|
9790
|
+
Archived: archived,
|
|
9791
|
+
ProgrammeId: programmeId,
|
|
9792
|
+
PageNumber: pageNumber,
|
|
9793
|
+
Take: take,
|
|
9794
|
+
Skip: skip,
|
|
9795
|
+
LimitListRequests: limitListRequests,
|
|
9796
|
+
TenantId: tenantId,
|
|
9797
|
+
ModifiedById: modifiedById,
|
|
9798
|
+
ModifiedByIds: modifiedByIds,
|
|
9799
|
+
DateCreatedGTE: dateCreatedGte,
|
|
9800
|
+
DateCreatedLTE: dateCreatedLte,
|
|
9801
|
+
IsLive: isLive,
|
|
9802
|
+
SortOrderDirection: sortOrderDirection
|
|
9803
|
+
},
|
|
9804
|
+
errors: {
|
|
9805
|
+
400: `Bad Request`,
|
|
9806
|
+
422: `Client Error`,
|
|
9807
|
+
500: `Server Error`
|
|
9808
|
+
}
|
|
9809
|
+
});
|
|
9810
|
+
}
|
|
9764
9811
|
/**
|
|
9765
9812
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
9766
9813
|
* @returns LocationReport Success
|
|
@@ -16092,6 +16139,48 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16092
16139
|
constructor(httpRequest) {
|
|
16093
16140
|
this.httpRequest = httpRequest;
|
|
16094
16141
|
}
|
|
16142
|
+
/**
|
|
16143
|
+
* Sets the programme active. />.
|
|
16144
|
+
* @returns Programme Success
|
|
16145
|
+
* @throws ApiError
|
|
16146
|
+
*/
|
|
16147
|
+
setActive({
|
|
16148
|
+
programmeId
|
|
16149
|
+
}) {
|
|
16150
|
+
return this.httpRequest.request({
|
|
16151
|
+
method: "PATCH",
|
|
16152
|
+
url: "/api/programmes/{programmeId}/set-active",
|
|
16153
|
+
path: {
|
|
16154
|
+
programmeId
|
|
16155
|
+
},
|
|
16156
|
+
errors: {
|
|
16157
|
+
400: `Bad Request`,
|
|
16158
|
+
422: `Client Error`,
|
|
16159
|
+
500: `Server Error`
|
|
16160
|
+
}
|
|
16161
|
+
});
|
|
16162
|
+
}
|
|
16163
|
+
/**
|
|
16164
|
+
* Sets the programme Inactive. />.
|
|
16165
|
+
* @returns Programme Success
|
|
16166
|
+
* @throws ApiError
|
|
16167
|
+
*/
|
|
16168
|
+
setInactive({
|
|
16169
|
+
programmeId
|
|
16170
|
+
}) {
|
|
16171
|
+
return this.httpRequest.request({
|
|
16172
|
+
method: "PATCH",
|
|
16173
|
+
url: "/api/programmes/{programmeId}/set-inactive",
|
|
16174
|
+
path: {
|
|
16175
|
+
programmeId
|
|
16176
|
+
},
|
|
16177
|
+
errors: {
|
|
16178
|
+
400: `Bad Request`,
|
|
16179
|
+
422: `Client Error`,
|
|
16180
|
+
500: `Server Error`
|
|
16181
|
+
}
|
|
16182
|
+
});
|
|
16183
|
+
}
|
|
16095
16184
|
/**
|
|
16096
16185
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16097
16186
|
* @returns Programme Success
|
|
@@ -16202,6 +16291,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16202
16291
|
nameLike,
|
|
16203
16292
|
slug,
|
|
16204
16293
|
includeOpportunityImages,
|
|
16294
|
+
active,
|
|
16205
16295
|
pageNumber,
|
|
16206
16296
|
take,
|
|
16207
16297
|
skip,
|
|
@@ -16222,6 +16312,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16222
16312
|
NameLike: nameLike,
|
|
16223
16313
|
Slug: slug,
|
|
16224
16314
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16315
|
+
Active: active,
|
|
16225
16316
|
PageNumber: pageNumber,
|
|
16226
16317
|
Take: take,
|
|
16227
16318
|
Skip: skip,
|
|
@@ -16314,6 +16405,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16314
16405
|
nameLike,
|
|
16315
16406
|
slug,
|
|
16316
16407
|
includeOpportunityImages,
|
|
16408
|
+
active,
|
|
16317
16409
|
pageNumber,
|
|
16318
16410
|
take,
|
|
16319
16411
|
skip,
|
|
@@ -16334,6 +16426,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16334
16426
|
NameLike: nameLike,
|
|
16335
16427
|
Slug: slug,
|
|
16336
16428
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16429
|
+
Active: active,
|
|
16337
16430
|
PageNumber: pageNumber,
|
|
16338
16431
|
Take: take,
|
|
16339
16432
|
Skip: skip,
|
|
@@ -16363,6 +16456,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16363
16456
|
nameLike,
|
|
16364
16457
|
slug,
|
|
16365
16458
|
includeOpportunityImages,
|
|
16459
|
+
active,
|
|
16366
16460
|
pageNumber,
|
|
16367
16461
|
take,
|
|
16368
16462
|
skip,
|
|
@@ -16383,6 +16477,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16383
16477
|
NameLike: nameLike,
|
|
16384
16478
|
Slug: slug,
|
|
16385
16479
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16480
|
+
Active: active,
|
|
16386
16481
|
PageNumber: pageNumber,
|
|
16387
16482
|
Take: take,
|
|
16388
16483
|
Skip: skip,
|
|
@@ -16412,6 +16507,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16412
16507
|
nameLike,
|
|
16413
16508
|
slug,
|
|
16414
16509
|
includeOpportunityImages,
|
|
16510
|
+
active,
|
|
16415
16511
|
pageNumber,
|
|
16416
16512
|
take,
|
|
16417
16513
|
skip,
|
|
@@ -16432,6 +16528,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16432
16528
|
NameLike: nameLike,
|
|
16433
16529
|
Slug: slug,
|
|
16434
16530
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16531
|
+
Active: active,
|
|
16435
16532
|
PageNumber: pageNumber,
|
|
16436
16533
|
Take: take,
|
|
16437
16534
|
Skip: skip,
|
|
@@ -20561,6 +20658,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20561
20658
|
nameLike,
|
|
20562
20659
|
slug,
|
|
20563
20660
|
includeOpportunityImages,
|
|
20661
|
+
active,
|
|
20564
20662
|
pageNumber,
|
|
20565
20663
|
take,
|
|
20566
20664
|
skip,
|
|
@@ -20584,6 +20682,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20584
20682
|
NameLike: nameLike,
|
|
20585
20683
|
Slug: slug,
|
|
20586
20684
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
20685
|
+
Active: active,
|
|
20587
20686
|
PageNumber: pageNumber,
|
|
20588
20687
|
Take: take,
|
|
20589
20688
|
Skip: skip,
|
|
@@ -20710,6 +20809,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20710
20809
|
nameLike,
|
|
20711
20810
|
slug,
|
|
20712
20811
|
includeOpportunityImages,
|
|
20812
|
+
active,
|
|
20713
20813
|
pageNumber,
|
|
20714
20814
|
take,
|
|
20715
20815
|
skip,
|
|
@@ -20733,6 +20833,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20733
20833
|
NameLike: nameLike,
|
|
20734
20834
|
Slug: slug,
|
|
20735
20835
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
20836
|
+
Active: active,
|
|
20736
20837
|
PageNumber: pageNumber,
|
|
20737
20838
|
Take: take,
|
|
20738
20839
|
Skip: skip,
|
|
@@ -24813,6 +24914,57 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24813
24914
|
}
|
|
24814
24915
|
});
|
|
24815
24916
|
}
|
|
24917
|
+
/**
|
|
24918
|
+
* Get summary for register report.
|
|
24919
|
+
* @returns RegisterReportSummary Success
|
|
24920
|
+
* @throws ApiError
|
|
24921
|
+
*/
|
|
24922
|
+
getSummary({
|
|
24923
|
+
venueId,
|
|
24924
|
+
programmeId,
|
|
24925
|
+
userId,
|
|
24926
|
+
startDateGte,
|
|
24927
|
+
startDateLte,
|
|
24928
|
+
pageNumber,
|
|
24929
|
+
take,
|
|
24930
|
+
skip,
|
|
24931
|
+
limitListRequests,
|
|
24932
|
+
tenantId,
|
|
24933
|
+
modifiedById,
|
|
24934
|
+
modifiedByIds,
|
|
24935
|
+
dateCreatedGte,
|
|
24936
|
+
dateCreatedLte,
|
|
24937
|
+
isLive,
|
|
24938
|
+
sortOrderDirection
|
|
24939
|
+
}) {
|
|
24940
|
+
return this.httpRequest.request({
|
|
24941
|
+
method: "GET",
|
|
24942
|
+
url: "/api/register-report/summary",
|
|
24943
|
+
query: {
|
|
24944
|
+
VenueId: venueId,
|
|
24945
|
+
ProgrammeId: programmeId,
|
|
24946
|
+
UserId: userId,
|
|
24947
|
+
StartDateGTE: startDateGte,
|
|
24948
|
+
StartDateLTE: startDateLte,
|
|
24949
|
+
PageNumber: pageNumber,
|
|
24950
|
+
Take: take,
|
|
24951
|
+
Skip: skip,
|
|
24952
|
+
LimitListRequests: limitListRequests,
|
|
24953
|
+
TenantId: tenantId,
|
|
24954
|
+
ModifiedById: modifiedById,
|
|
24955
|
+
ModifiedByIds: modifiedByIds,
|
|
24956
|
+
DateCreatedGTE: dateCreatedGte,
|
|
24957
|
+
DateCreatedLTE: dateCreatedLte,
|
|
24958
|
+
IsLive: isLive,
|
|
24959
|
+
SortOrderDirection: sortOrderDirection
|
|
24960
|
+
},
|
|
24961
|
+
errors: {
|
|
24962
|
+
400: `Bad Request`,
|
|
24963
|
+
422: `Client Error`,
|
|
24964
|
+
500: `Server Error`
|
|
24965
|
+
}
|
|
24966
|
+
});
|
|
24967
|
+
}
|
|
24816
24968
|
/**
|
|
24817
24969
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
24818
24970
|
* @returns RegisterReport Success
|