reach-api-sdk 1.0.162 → 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 +237 -7
- package/dist/reach-sdk.js +110 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +403 -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 +24 -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
|
|
@@ -24383,7 +24484,7 @@ declare class ProgrammesService {
|
|
|
24383
24484
|
* @returns ProgrammePage Success
|
|
24384
24485
|
* @throws ApiError
|
|
24385
24486
|
*/
|
|
24386
|
-
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, }: {
|
|
24387
24488
|
/**
|
|
24388
24489
|
* Gets or sets the queryable programme name.
|
|
24389
24490
|
*/
|
|
@@ -24400,6 +24501,10 @@ declare class ProgrammesService {
|
|
|
24400
24501
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24401
24502
|
*/
|
|
24402
24503
|
includeOpportunityImages?: boolean;
|
|
24504
|
+
/**
|
|
24505
|
+
* Gets or sets the queryable programme active status.
|
|
24506
|
+
*/
|
|
24507
|
+
active?: boolean;
|
|
24403
24508
|
/**
|
|
24404
24509
|
* Gets or sets the page number for paged queries.
|
|
24405
24510
|
*/
|
|
@@ -24483,7 +24588,7 @@ declare class ProgrammesService {
|
|
|
24483
24588
|
* @returns boolean Success
|
|
24484
24589
|
* @throws ApiError
|
|
24485
24590
|
*/
|
|
24486
|
-
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, }: {
|
|
24487
24592
|
/**
|
|
24488
24593
|
* Gets or sets the queryable programme name.
|
|
24489
24594
|
*/
|
|
@@ -24500,6 +24605,10 @@ declare class ProgrammesService {
|
|
|
24500
24605
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24501
24606
|
*/
|
|
24502
24607
|
includeOpportunityImages?: boolean;
|
|
24608
|
+
/**
|
|
24609
|
+
* Gets or sets the queryable programme active status.
|
|
24610
|
+
*/
|
|
24611
|
+
active?: boolean;
|
|
24503
24612
|
/**
|
|
24504
24613
|
* Gets or sets the page number for paged queries.
|
|
24505
24614
|
*/
|
|
@@ -24550,7 +24659,7 @@ declare class ProgrammesService {
|
|
|
24550
24659
|
* @returns Programme Success
|
|
24551
24660
|
* @throws ApiError
|
|
24552
24661
|
*/
|
|
24553
|
-
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, }: {
|
|
24554
24663
|
/**
|
|
24555
24664
|
* Gets or sets the queryable programme name.
|
|
24556
24665
|
*/
|
|
@@ -24567,6 +24676,10 @@ declare class ProgrammesService {
|
|
|
24567
24676
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24568
24677
|
*/
|
|
24569
24678
|
includeOpportunityImages?: boolean;
|
|
24679
|
+
/**
|
|
24680
|
+
* Gets or sets the queryable programme active status.
|
|
24681
|
+
*/
|
|
24682
|
+
active?: boolean;
|
|
24570
24683
|
/**
|
|
24571
24684
|
* Gets or sets the page number for paged queries.
|
|
24572
24685
|
*/
|
|
@@ -24617,7 +24730,7 @@ declare class ProgrammesService {
|
|
|
24617
24730
|
* @returns Programme Success
|
|
24618
24731
|
* @throws ApiError
|
|
24619
24732
|
*/
|
|
24620
|
-
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, }: {
|
|
24621
24734
|
/**
|
|
24622
24735
|
* Gets or sets the queryable programme name.
|
|
24623
24736
|
*/
|
|
@@ -24634,6 +24747,10 @@ declare class ProgrammesService {
|
|
|
24634
24747
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
24635
24748
|
*/
|
|
24636
24749
|
includeOpportunityImages?: boolean;
|
|
24750
|
+
/**
|
|
24751
|
+
* Gets or sets the queryable programme active status.
|
|
24752
|
+
*/
|
|
24753
|
+
active?: boolean;
|
|
24637
24754
|
/**
|
|
24638
24755
|
* Gets or sets the page number for paged queries.
|
|
24639
24756
|
*/
|
|
@@ -29551,7 +29668,7 @@ declare class PublicProgrammesService {
|
|
|
29551
29668
|
* @returns ProgrammePage Success
|
|
29552
29669
|
* @throws ApiError
|
|
29553
29670
|
*/
|
|
29554
|
-
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, }: {
|
|
29555
29672
|
xTenantSubdomain?: string;
|
|
29556
29673
|
/**
|
|
29557
29674
|
* Gets or sets the queryable programme name.
|
|
@@ -29569,6 +29686,10 @@ declare class PublicProgrammesService {
|
|
|
29569
29686
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
29570
29687
|
*/
|
|
29571
29688
|
includeOpportunityImages?: boolean;
|
|
29689
|
+
/**
|
|
29690
|
+
* Gets or sets the queryable programme active status.
|
|
29691
|
+
*/
|
|
29692
|
+
active?: boolean;
|
|
29572
29693
|
/**
|
|
29573
29694
|
* Gets or sets the page number for paged queries.
|
|
29574
29695
|
*/
|
|
@@ -29679,7 +29800,7 @@ declare class PublicProgrammesService {
|
|
|
29679
29800
|
* @returns boolean Success
|
|
29680
29801
|
* @throws ApiError
|
|
29681
29802
|
*/
|
|
29682
|
-
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, }: {
|
|
29683
29804
|
/**
|
|
29684
29805
|
* The tenants subdomain.
|
|
29685
29806
|
*/
|
|
@@ -29700,6 +29821,10 @@ declare class PublicProgrammesService {
|
|
|
29700
29821
|
* Gets or sets a value indicating whether to inlcude the programmes opportunity images.
|
|
29701
29822
|
*/
|
|
29702
29823
|
includeOpportunityImages?: boolean;
|
|
29824
|
+
/**
|
|
29825
|
+
* Gets or sets the queryable programme active status.
|
|
29826
|
+
*/
|
|
29827
|
+
active?: boolean;
|
|
29703
29828
|
/**
|
|
29704
29829
|
* Gets or sets the page number for paged queries.
|
|
29705
29830
|
*/
|
|
@@ -35310,6 +35435,40 @@ type RegisterReportPost = {
|
|
|
35310
35435
|
tenantId: string;
|
|
35311
35436
|
};
|
|
35312
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
|
+
|
|
35313
35472
|
declare class RegisterReportService {
|
|
35314
35473
|
readonly httpRequest: BaseHttpRequest;
|
|
35315
35474
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -35391,6 +35550,77 @@ declare class RegisterReportService {
|
|
|
35391
35550
|
Token?: string;
|
|
35392
35551
|
};
|
|
35393
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>;
|
|
35394
35624
|
/**
|
|
35395
35625
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
35396
35626
|
* @returns RegisterReport Success
|
|
@@ -52912,4 +53142,4 @@ type ValidationResultModel = {
|
|
|
52912
53142
|
readonly errors?: Array<ValidationError> | null;
|
|
52913
53143
|
};
|
|
52914
53144
|
|
|
52915
|
-
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
|
|
@@ -16244,6 +16291,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16244
16291
|
nameLike,
|
|
16245
16292
|
slug,
|
|
16246
16293
|
includeOpportunityImages,
|
|
16294
|
+
active,
|
|
16247
16295
|
pageNumber,
|
|
16248
16296
|
take,
|
|
16249
16297
|
skip,
|
|
@@ -16264,6 +16312,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16264
16312
|
NameLike: nameLike,
|
|
16265
16313
|
Slug: slug,
|
|
16266
16314
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16315
|
+
Active: active,
|
|
16267
16316
|
PageNumber: pageNumber,
|
|
16268
16317
|
Take: take,
|
|
16269
16318
|
Skip: skip,
|
|
@@ -16356,6 +16405,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16356
16405
|
nameLike,
|
|
16357
16406
|
slug,
|
|
16358
16407
|
includeOpportunityImages,
|
|
16408
|
+
active,
|
|
16359
16409
|
pageNumber,
|
|
16360
16410
|
take,
|
|
16361
16411
|
skip,
|
|
@@ -16376,6 +16426,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16376
16426
|
NameLike: nameLike,
|
|
16377
16427
|
Slug: slug,
|
|
16378
16428
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16429
|
+
Active: active,
|
|
16379
16430
|
PageNumber: pageNumber,
|
|
16380
16431
|
Take: take,
|
|
16381
16432
|
Skip: skip,
|
|
@@ -16405,6 +16456,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16405
16456
|
nameLike,
|
|
16406
16457
|
slug,
|
|
16407
16458
|
includeOpportunityImages,
|
|
16459
|
+
active,
|
|
16408
16460
|
pageNumber,
|
|
16409
16461
|
take,
|
|
16410
16462
|
skip,
|
|
@@ -16425,6 +16477,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16425
16477
|
NameLike: nameLike,
|
|
16426
16478
|
Slug: slug,
|
|
16427
16479
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16480
|
+
Active: active,
|
|
16428
16481
|
PageNumber: pageNumber,
|
|
16429
16482
|
Take: take,
|
|
16430
16483
|
Skip: skip,
|
|
@@ -16454,6 +16507,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16454
16507
|
nameLike,
|
|
16455
16508
|
slug,
|
|
16456
16509
|
includeOpportunityImages,
|
|
16510
|
+
active,
|
|
16457
16511
|
pageNumber,
|
|
16458
16512
|
take,
|
|
16459
16513
|
skip,
|
|
@@ -16474,6 +16528,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
16474
16528
|
NameLike: nameLike,
|
|
16475
16529
|
Slug: slug,
|
|
16476
16530
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
16531
|
+
Active: active,
|
|
16477
16532
|
PageNumber: pageNumber,
|
|
16478
16533
|
Take: take,
|
|
16479
16534
|
Skip: skip,
|
|
@@ -20603,6 +20658,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20603
20658
|
nameLike,
|
|
20604
20659
|
slug,
|
|
20605
20660
|
includeOpportunityImages,
|
|
20661
|
+
active,
|
|
20606
20662
|
pageNumber,
|
|
20607
20663
|
take,
|
|
20608
20664
|
skip,
|
|
@@ -20626,6 +20682,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20626
20682
|
NameLike: nameLike,
|
|
20627
20683
|
Slug: slug,
|
|
20628
20684
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
20685
|
+
Active: active,
|
|
20629
20686
|
PageNumber: pageNumber,
|
|
20630
20687
|
Take: take,
|
|
20631
20688
|
Skip: skip,
|
|
@@ -20752,6 +20809,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20752
20809
|
nameLike,
|
|
20753
20810
|
slug,
|
|
20754
20811
|
includeOpportunityImages,
|
|
20812
|
+
active,
|
|
20755
20813
|
pageNumber,
|
|
20756
20814
|
take,
|
|
20757
20815
|
skip,
|
|
@@ -20775,6 +20833,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20775
20833
|
NameLike: nameLike,
|
|
20776
20834
|
Slug: slug,
|
|
20777
20835
|
IncludeOpportunityImages: includeOpportunityImages,
|
|
20836
|
+
Active: active,
|
|
20778
20837
|
PageNumber: pageNumber,
|
|
20779
20838
|
Take: take,
|
|
20780
20839
|
Skip: skip,
|
|
@@ -24855,6 +24914,57 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24855
24914
|
}
|
|
24856
24915
|
});
|
|
24857
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
|
+
}
|
|
24858
24968
|
/**
|
|
24859
24969
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
24860
24970
|
* @returns RegisterReport Success
|