reach-api-sdk 1.0.210 → 1.0.211
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 +2228 -169
- package/dist/reach-sdk.js +2618 -935
- package/package.json +1 -1
- package/src/apiClient.ts +15 -0
- package/src/definition/swagger.yaml +6733 -1147
- package/src/index.ts +28 -0
- package/src/models/AddressBookItem.ts +26 -0
- package/src/models/AddressBooksRequest.ts +22 -0
- package/src/models/DotdigitalCanonicalField.ts +17 -0
- package/src/models/DotdigitalSourceType.ts +15 -0
- package/src/models/IntegrationDotdigitalFieldMap.ts +55 -0
- package/src/models/IntegrationDotdigitalFieldMapPage.ts +12 -0
- package/src/models/IntegrationDotdigitalFieldMapPatch.ts +18 -0
- package/src/models/IntegrationDotdigitalFieldMapPost.ts +14 -0
- package/src/models/IntegrationDotdigitalLog.ts +65 -0
- package/src/models/IntegrationDotdigitalLogPage.ts +12 -0
- package/src/models/IntegrationDotdigitalLogPatch.ts +18 -0
- package/src/models/IntegrationDotdigitalLogPost.ts +14 -0
- package/src/models/IntegrationDotdigitalLogStatus.ts +13 -0
- package/src/models/IntegrationDotdigitalSettings.ts +66 -0
- package/src/models/IntegrationDotdigitalSettingsCreate.ts +38 -0
- package/src/models/IntegrationDotdigitalSettingsPage.ts +12 -0
- package/src/models/IntegrationDotdigitalSettingsPatch.ts +18 -0
- package/src/models/IntegrationDotdigitalSettingsPost.ts +14 -0
- package/src/models/IntegrationQueue.ts +57 -0
- package/src/models/IntegrationQueuePage.ts +12 -0
- package/src/models/IntegrationQueuePatch.ts +18 -0
- package/src/models/IntegrationQueuePost.ts +14 -0
- package/src/models/IntegrationType.ts +11 -0
- package/src/models/OrderItemReport.ts +4 -0
- package/src/services/CourseSessionsService.ts +30 -0
- package/src/services/DotdigitalService.ts +39 -0
- package/src/services/IntegrationDotDigitalSettingsService.ts +708 -0
- package/src/services/IntegrationDotdigitalFieldMapService.ts +662 -0
- package/src/services/IntegrationDotdigitalLogService.ts +662 -0
- package/src/services/IntegrationQueueService.ts +739 -0
- package/src/services/PublicCalendarService.ts +6 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +6 -0
- package/src/services/PublicVenuesService.ts +48 -0
- package/src/services/ScheduledSessionsService.ts +30 -0
- package/src/services/VenuesService.ts +60 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -10251,7 +10251,7 @@ declare class CourseSessionsService {
|
|
|
10251
10251
|
* @returns CourseSessionPage OK
|
|
10252
10252
|
* @throws ApiError
|
|
10253
10253
|
*/
|
|
10254
|
-
getPage({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10254
|
+
getPage({ ids, venueId, programmeId, providerId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10255
10255
|
/**
|
|
10256
10256
|
* Gets or sets the queryable course session ids.
|
|
10257
10257
|
*/
|
|
@@ -10264,6 +10264,10 @@ declare class CourseSessionsService {
|
|
|
10264
10264
|
* Gets or sets the queryable course sessions programme Id.
|
|
10265
10265
|
*/
|
|
10266
10266
|
programmeId?: string;
|
|
10267
|
+
/**
|
|
10268
|
+
* Gets or sets the queryable course session provider Id.
|
|
10269
|
+
*/
|
|
10270
|
+
providerId?: string;
|
|
10267
10271
|
/**
|
|
10268
10272
|
* Gets or sets the queryable course session Id.
|
|
10269
10273
|
*/
|
|
@@ -10407,7 +10411,7 @@ declare class CourseSessionsService {
|
|
|
10407
10411
|
* @returns boolean OK
|
|
10408
10412
|
* @throws ApiError
|
|
10409
10413
|
*/
|
|
10410
|
-
exists({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10414
|
+
exists({ ids, venueId, programmeId, providerId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10411
10415
|
/**
|
|
10412
10416
|
* Gets or sets the queryable course session ids.
|
|
10413
10417
|
*/
|
|
@@ -10420,6 +10424,10 @@ declare class CourseSessionsService {
|
|
|
10420
10424
|
* Gets or sets the queryable course sessions programme Id.
|
|
10421
10425
|
*/
|
|
10422
10426
|
programmeId?: string;
|
|
10427
|
+
/**
|
|
10428
|
+
* Gets or sets the queryable course session provider Id.
|
|
10429
|
+
*/
|
|
10430
|
+
providerId?: string;
|
|
10423
10431
|
/**
|
|
10424
10432
|
* Gets or sets the queryable course session Id.
|
|
10425
10433
|
*/
|
|
@@ -10530,7 +10538,7 @@ declare class CourseSessionsService {
|
|
|
10530
10538
|
* @returns number OK
|
|
10531
10539
|
* @throws ApiError
|
|
10532
10540
|
*/
|
|
10533
|
-
count({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10541
|
+
count({ ids, venueId, programmeId, providerId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10534
10542
|
/**
|
|
10535
10543
|
* Gets or sets the queryable course session ids.
|
|
10536
10544
|
*/
|
|
@@ -10543,6 +10551,10 @@ declare class CourseSessionsService {
|
|
|
10543
10551
|
* Gets or sets the queryable course sessions programme Id.
|
|
10544
10552
|
*/
|
|
10545
10553
|
programmeId?: string;
|
|
10554
|
+
/**
|
|
10555
|
+
* Gets or sets the queryable course session provider Id.
|
|
10556
|
+
*/
|
|
10557
|
+
providerId?: string;
|
|
10546
10558
|
/**
|
|
10547
10559
|
* Gets or sets the queryable course session Id.
|
|
10548
10560
|
*/
|
|
@@ -10653,7 +10665,7 @@ declare class CourseSessionsService {
|
|
|
10653
10665
|
* @returns CourseSession OK
|
|
10654
10666
|
* @throws ApiError
|
|
10655
10667
|
*/
|
|
10656
|
-
getListWithoutReferences({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10668
|
+
getListWithoutReferences({ ids, venueId, programmeId, providerId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10657
10669
|
/**
|
|
10658
10670
|
* Gets or sets the queryable course session ids.
|
|
10659
10671
|
*/
|
|
@@ -10666,6 +10678,10 @@ declare class CourseSessionsService {
|
|
|
10666
10678
|
* Gets or sets the queryable course sessions programme Id.
|
|
10667
10679
|
*/
|
|
10668
10680
|
programmeId?: string;
|
|
10681
|
+
/**
|
|
10682
|
+
* Gets or sets the queryable course session provider Id.
|
|
10683
|
+
*/
|
|
10684
|
+
providerId?: string;
|
|
10669
10685
|
/**
|
|
10670
10686
|
* Gets or sets the queryable course session Id.
|
|
10671
10687
|
*/
|
|
@@ -10776,7 +10792,7 @@ declare class CourseSessionsService {
|
|
|
10776
10792
|
* @returns CourseSession OK
|
|
10777
10793
|
* @throws ApiError
|
|
10778
10794
|
*/
|
|
10779
|
-
getListIdName({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10795
|
+
getListIdName({ ids, venueId, programmeId, providerId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, bookableOnly, includeVenue, includeOffers, excludeArchived, excludePrivate, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10780
10796
|
/**
|
|
10781
10797
|
* Gets or sets the queryable course session ids.
|
|
10782
10798
|
*/
|
|
@@ -10789,6 +10805,10 @@ declare class CourseSessionsService {
|
|
|
10789
10805
|
* Gets or sets the queryable course sessions programme Id.
|
|
10790
10806
|
*/
|
|
10791
10807
|
programmeId?: string;
|
|
10808
|
+
/**
|
|
10809
|
+
* Gets or sets the queryable course session provider Id.
|
|
10810
|
+
*/
|
|
10811
|
+
providerId?: string;
|
|
10792
10812
|
/**
|
|
10793
10813
|
* Gets or sets the queryable course session Id.
|
|
10794
10814
|
*/
|
|
@@ -14832,6 +14852,62 @@ declare class DiscountCodeUsesService {
|
|
|
14832
14852
|
}): CancelablePromise<Array<DiscountCodeUse>>;
|
|
14833
14853
|
}
|
|
14834
14854
|
|
|
14855
|
+
/**
|
|
14856
|
+
* The AddressBook item response model.
|
|
14857
|
+
*/
|
|
14858
|
+
type AddressBookItem = {
|
|
14859
|
+
/**
|
|
14860
|
+
* Gets or sets the response id.
|
|
14861
|
+
*/
|
|
14862
|
+
id?: number;
|
|
14863
|
+
/**
|
|
14864
|
+
* Gets or sets the name.
|
|
14865
|
+
*/
|
|
14866
|
+
name?: string | null;
|
|
14867
|
+
/**
|
|
14868
|
+
* Gets or sets the visibility.
|
|
14869
|
+
*/
|
|
14870
|
+
visibility?: string | null;
|
|
14871
|
+
/**
|
|
14872
|
+
* Gets or sets the contacts.
|
|
14873
|
+
*/
|
|
14874
|
+
contacts?: number;
|
|
14875
|
+
};
|
|
14876
|
+
|
|
14877
|
+
/**
|
|
14878
|
+
* The OpenAI description completion message model.
|
|
14879
|
+
*/
|
|
14880
|
+
type AddressBooksRequest = {
|
|
14881
|
+
/**
|
|
14882
|
+
* Gets or sets the message role.
|
|
14883
|
+
*/
|
|
14884
|
+
apiUrl?: string | null;
|
|
14885
|
+
/**
|
|
14886
|
+
* Gets or sets the message role.
|
|
14887
|
+
*/
|
|
14888
|
+
username?: string | null;
|
|
14889
|
+
/**
|
|
14890
|
+
* Gets or sets the message role.
|
|
14891
|
+
*/
|
|
14892
|
+
password?: string | null;
|
|
14893
|
+
};
|
|
14894
|
+
|
|
14895
|
+
declare class DotdigitalService {
|
|
14896
|
+
readonly httpRequest: BaseHttpRequest;
|
|
14897
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
14898
|
+
/**
|
|
14899
|
+
* Returns a suggestion for an activity description based on given attributes.
|
|
14900
|
+
* @returns AddressBookItem OK
|
|
14901
|
+
* @throws ApiError
|
|
14902
|
+
*/
|
|
14903
|
+
getAddressBooks({ requestBody, }: {
|
|
14904
|
+
/**
|
|
14905
|
+
* The attributes to use to generate the the open AI response.
|
|
14906
|
+
*/
|
|
14907
|
+
requestBody?: AddressBooksRequest;
|
|
14908
|
+
}): CancelablePromise<Array<AddressBookItem>>;
|
|
14909
|
+
}
|
|
14910
|
+
|
|
14835
14911
|
/**
|
|
14836
14912
|
* Represents an organisation within the Reach application.
|
|
14837
14913
|
*/
|
|
@@ -19403,50 +19479,1930 @@ declare class ImagesService {
|
|
|
19403
19479
|
}): CancelablePromise<number>;
|
|
19404
19480
|
/**
|
|
19405
19481
|
* Gets a list of resources unpaged and without references.
|
|
19406
|
-
* @returns Image OK
|
|
19482
|
+
* @returns Image OK
|
|
19483
|
+
* @throws ApiError
|
|
19484
|
+
*/
|
|
19485
|
+
getListWithoutReferences({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19486
|
+
/**
|
|
19487
|
+
* Gets or sets the queryable venue id.
|
|
19488
|
+
*/
|
|
19489
|
+
venueId?: string;
|
|
19490
|
+
/**
|
|
19491
|
+
* Gets or sets the queryable venue ids.
|
|
19492
|
+
*/
|
|
19493
|
+
venueIds?: Array<string>;
|
|
19494
|
+
/**
|
|
19495
|
+
* Gets or sets the queryable facility id.
|
|
19496
|
+
*/
|
|
19497
|
+
facilityId?: string;
|
|
19498
|
+
/**
|
|
19499
|
+
* Gets or sets the queryable facility ids.
|
|
19500
|
+
*/
|
|
19501
|
+
facilityIds?: Array<string>;
|
|
19502
|
+
/**
|
|
19503
|
+
* Gets or sets the queryable session id.
|
|
19504
|
+
*/
|
|
19505
|
+
sessionId?: string;
|
|
19506
|
+
/**
|
|
19507
|
+
* Gets or sets the queryable session ids.
|
|
19508
|
+
*/
|
|
19509
|
+
sessionIds?: Array<string>;
|
|
19510
|
+
/**
|
|
19511
|
+
* Gets or sets the queryable course id.
|
|
19512
|
+
*/
|
|
19513
|
+
courseId?: string;
|
|
19514
|
+
/**
|
|
19515
|
+
* Gets or sets the queryable course ids.
|
|
19516
|
+
*/
|
|
19517
|
+
courseIds?: Array<string>;
|
|
19518
|
+
/**
|
|
19519
|
+
* Gets or sets the queryable programme id.
|
|
19520
|
+
*/
|
|
19521
|
+
programmeId?: string;
|
|
19522
|
+
/**
|
|
19523
|
+
* Gets or sets the queryable programme ids.
|
|
19524
|
+
*/
|
|
19525
|
+
programmeIds?: Array<string>;
|
|
19526
|
+
/**
|
|
19527
|
+
* Gets or sets the page number for paged queries.
|
|
19528
|
+
*/
|
|
19529
|
+
pageNumber?: number;
|
|
19530
|
+
/**
|
|
19531
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19532
|
+
*/
|
|
19533
|
+
take?: number;
|
|
19534
|
+
/**
|
|
19535
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19536
|
+
*/
|
|
19537
|
+
skip?: number;
|
|
19538
|
+
/**
|
|
19539
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19540
|
+
*/
|
|
19541
|
+
limitListRequests?: boolean;
|
|
19542
|
+
/**
|
|
19543
|
+
* Gets or sets the Tenant Id.
|
|
19544
|
+
*/
|
|
19545
|
+
tenantId?: string;
|
|
19546
|
+
/**
|
|
19547
|
+
* Gets or sets the Modifed By Id.
|
|
19548
|
+
*/
|
|
19549
|
+
modifiedById?: string;
|
|
19550
|
+
/**
|
|
19551
|
+
* Gets or sets the Modifed By Ids.
|
|
19552
|
+
*/
|
|
19553
|
+
modifiedByIds?: Array<string>;
|
|
19554
|
+
/**
|
|
19555
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19556
|
+
*/
|
|
19557
|
+
dateCreatedGte?: string;
|
|
19558
|
+
/**
|
|
19559
|
+
* Gets or sets the Date Created less than equal to.
|
|
19560
|
+
*/
|
|
19561
|
+
dateCreatedLte?: string;
|
|
19562
|
+
/**
|
|
19563
|
+
* Gets or sets the queryable only is live status.
|
|
19564
|
+
*/
|
|
19565
|
+
isLive?: boolean;
|
|
19566
|
+
/**
|
|
19567
|
+
* Gets or sets the sort order direction.
|
|
19568
|
+
*/
|
|
19569
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19570
|
+
}): CancelablePromise<Array<Image>>;
|
|
19571
|
+
/**
|
|
19572
|
+
* Gets a list of resources.
|
|
19573
|
+
* @returns Image OK
|
|
19574
|
+
* @throws ApiError
|
|
19575
|
+
*/
|
|
19576
|
+
getListIdName({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19577
|
+
/**
|
|
19578
|
+
* Gets or sets the queryable venue id.
|
|
19579
|
+
*/
|
|
19580
|
+
venueId?: string;
|
|
19581
|
+
/**
|
|
19582
|
+
* Gets or sets the queryable venue ids.
|
|
19583
|
+
*/
|
|
19584
|
+
venueIds?: Array<string>;
|
|
19585
|
+
/**
|
|
19586
|
+
* Gets or sets the queryable facility id.
|
|
19587
|
+
*/
|
|
19588
|
+
facilityId?: string;
|
|
19589
|
+
/**
|
|
19590
|
+
* Gets or sets the queryable facility ids.
|
|
19591
|
+
*/
|
|
19592
|
+
facilityIds?: Array<string>;
|
|
19593
|
+
/**
|
|
19594
|
+
* Gets or sets the queryable session id.
|
|
19595
|
+
*/
|
|
19596
|
+
sessionId?: string;
|
|
19597
|
+
/**
|
|
19598
|
+
* Gets or sets the queryable session ids.
|
|
19599
|
+
*/
|
|
19600
|
+
sessionIds?: Array<string>;
|
|
19601
|
+
/**
|
|
19602
|
+
* Gets or sets the queryable course id.
|
|
19603
|
+
*/
|
|
19604
|
+
courseId?: string;
|
|
19605
|
+
/**
|
|
19606
|
+
* Gets or sets the queryable course ids.
|
|
19607
|
+
*/
|
|
19608
|
+
courseIds?: Array<string>;
|
|
19609
|
+
/**
|
|
19610
|
+
* Gets or sets the queryable programme id.
|
|
19611
|
+
*/
|
|
19612
|
+
programmeId?: string;
|
|
19613
|
+
/**
|
|
19614
|
+
* Gets or sets the queryable programme ids.
|
|
19615
|
+
*/
|
|
19616
|
+
programmeIds?: Array<string>;
|
|
19617
|
+
/**
|
|
19618
|
+
* Gets or sets the page number for paged queries.
|
|
19619
|
+
*/
|
|
19620
|
+
pageNumber?: number;
|
|
19621
|
+
/**
|
|
19622
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19623
|
+
*/
|
|
19624
|
+
take?: number;
|
|
19625
|
+
/**
|
|
19626
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19627
|
+
*/
|
|
19628
|
+
skip?: number;
|
|
19629
|
+
/**
|
|
19630
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19631
|
+
*/
|
|
19632
|
+
limitListRequests?: boolean;
|
|
19633
|
+
/**
|
|
19634
|
+
* Gets or sets the Tenant Id.
|
|
19635
|
+
*/
|
|
19636
|
+
tenantId?: string;
|
|
19637
|
+
/**
|
|
19638
|
+
* Gets or sets the Modifed By Id.
|
|
19639
|
+
*/
|
|
19640
|
+
modifiedById?: string;
|
|
19641
|
+
/**
|
|
19642
|
+
* Gets or sets the Modifed By Ids.
|
|
19643
|
+
*/
|
|
19644
|
+
modifiedByIds?: Array<string>;
|
|
19645
|
+
/**
|
|
19646
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19647
|
+
*/
|
|
19648
|
+
dateCreatedGte?: string;
|
|
19649
|
+
/**
|
|
19650
|
+
* Gets or sets the Date Created less than equal to.
|
|
19651
|
+
*/
|
|
19652
|
+
dateCreatedLte?: string;
|
|
19653
|
+
/**
|
|
19654
|
+
* Gets or sets the queryable only is live status.
|
|
19655
|
+
*/
|
|
19656
|
+
isLive?: boolean;
|
|
19657
|
+
/**
|
|
19658
|
+
* Gets or sets the sort order direction.
|
|
19659
|
+
*/
|
|
19660
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19661
|
+
}): CancelablePromise<Array<Image>>;
|
|
19662
|
+
}
|
|
19663
|
+
|
|
19664
|
+
/**
|
|
19665
|
+
* Represents a Image upload history within the Reach application.
|
|
19666
|
+
*/
|
|
19667
|
+
type ImageUploadHistory = {
|
|
19668
|
+
/**
|
|
19669
|
+
* Gets or sets the entities Id.
|
|
19670
|
+
*/
|
|
19671
|
+
id?: string;
|
|
19672
|
+
/**
|
|
19673
|
+
* Gets or sets the tenant Id.
|
|
19674
|
+
*/
|
|
19675
|
+
tenantId: string;
|
|
19676
|
+
/**
|
|
19677
|
+
* Gets or sets the created date of this entity.
|
|
19678
|
+
*/
|
|
19679
|
+
dateCreated: string;
|
|
19680
|
+
/**
|
|
19681
|
+
* Gets or sets the last modified date of this entity.
|
|
19682
|
+
*/
|
|
19683
|
+
dateModified: string;
|
|
19684
|
+
/**
|
|
19685
|
+
* Gets or sets the modified by Id.
|
|
19686
|
+
*/
|
|
19687
|
+
modifiedById?: string | null;
|
|
19688
|
+
/**
|
|
19689
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
19690
|
+
*/
|
|
19691
|
+
isLive: boolean;
|
|
19692
|
+
/**
|
|
19693
|
+
* Gets or sets the user id.
|
|
19694
|
+
*/
|
|
19695
|
+
userId?: string;
|
|
19696
|
+
/**
|
|
19697
|
+
* Gets or sets the images url.
|
|
19698
|
+
*/
|
|
19699
|
+
imageUrl?: string | null;
|
|
19700
|
+
};
|
|
19701
|
+
|
|
19702
|
+
type ImageUploadHistoryPage = {
|
|
19703
|
+
pagination: Pagination;
|
|
19704
|
+
readonly items: Array<ImageUploadHistory>;
|
|
19705
|
+
};
|
|
19706
|
+
|
|
19707
|
+
/**
|
|
19708
|
+
* Post model for image updates.
|
|
19709
|
+
*/
|
|
19710
|
+
type ImageUploadHistoryPatch = {
|
|
19711
|
+
/**
|
|
19712
|
+
* Gets or sets the tenant Id.
|
|
19713
|
+
*/
|
|
19714
|
+
tenantId: string;
|
|
19715
|
+
/**
|
|
19716
|
+
* Gets or sets the Id.
|
|
19717
|
+
*/
|
|
19718
|
+
id: string;
|
|
19719
|
+
};
|
|
19720
|
+
|
|
19721
|
+
/**
|
|
19722
|
+
* Post model for image inserts.
|
|
19723
|
+
*/
|
|
19724
|
+
type ImageUploadHistoryPost = {
|
|
19725
|
+
/**
|
|
19726
|
+
* Gets or sets the tenant Id.
|
|
19727
|
+
*/
|
|
19728
|
+
tenantId: string;
|
|
19729
|
+
};
|
|
19730
|
+
|
|
19731
|
+
declare class ImageUploadHistoryService {
|
|
19732
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19733
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19734
|
+
/**
|
|
19735
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
19736
|
+
* @returns ImageUploadHistory OK
|
|
19737
|
+
* @throws ApiError
|
|
19738
|
+
*/
|
|
19739
|
+
post({ requestBody, }: {
|
|
19740
|
+
/**
|
|
19741
|
+
* The <typeparamref name="TObject" /> model.
|
|
19742
|
+
*/
|
|
19743
|
+
requestBody?: ImageUploadHistoryPost;
|
|
19744
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
19745
|
+
/**
|
|
19746
|
+
* Patches the resource.
|
|
19747
|
+
* @returns ImageUploadHistory OK
|
|
19748
|
+
* @throws ApiError
|
|
19749
|
+
*/
|
|
19750
|
+
patch({ requestBody, }: {
|
|
19751
|
+
/**
|
|
19752
|
+
* The <typeparamref name="TObject" /> model.
|
|
19753
|
+
*/
|
|
19754
|
+
requestBody?: ImageUploadHistoryPatch;
|
|
19755
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
19756
|
+
/**
|
|
19757
|
+
* Inserts a list of resources.
|
|
19758
|
+
* @returns ImageUploadHistory OK
|
|
19759
|
+
* @throws ApiError
|
|
19760
|
+
*/
|
|
19761
|
+
postList({ requestBody, }: {
|
|
19762
|
+
/**
|
|
19763
|
+
* The list of <typeparamref name="TObject" />.
|
|
19764
|
+
*/
|
|
19765
|
+
requestBody?: Array<ImageUploadHistoryPost>;
|
|
19766
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
19767
|
+
/**
|
|
19768
|
+
* Patches the resource.
|
|
19769
|
+
* @returns ImageUploadHistory OK
|
|
19770
|
+
* @throws ApiError
|
|
19771
|
+
*/
|
|
19772
|
+
patchWithReferences({ requestBody, }: {
|
|
19773
|
+
/**
|
|
19774
|
+
* The <typeparamref name="TObject" /> model.
|
|
19775
|
+
*/
|
|
19776
|
+
requestBody?: ImageUploadHistoryPatch;
|
|
19777
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
19778
|
+
/**
|
|
19779
|
+
* Deletes the resource.
|
|
19780
|
+
* @returns any OK
|
|
19781
|
+
* @throws ApiError
|
|
19782
|
+
*/
|
|
19783
|
+
deleteByObject({ requestBody, }: {
|
|
19784
|
+
/**
|
|
19785
|
+
* The <typeparamref name="TObject" /> model.
|
|
19786
|
+
*/
|
|
19787
|
+
requestBody?: ImageUploadHistory;
|
|
19788
|
+
}): CancelablePromise<any>;
|
|
19789
|
+
/**
|
|
19790
|
+
* Gets a list of resources.
|
|
19791
|
+
* @returns ImageUploadHistoryPage OK
|
|
19792
|
+
* @throws ApiError
|
|
19793
|
+
*/
|
|
19794
|
+
getPage({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19795
|
+
/**
|
|
19796
|
+
* Gets or sets the queryable user id.
|
|
19797
|
+
*/
|
|
19798
|
+
userId?: string;
|
|
19799
|
+
/**
|
|
19800
|
+
* Gets or sets the queryable image url.
|
|
19801
|
+
*/
|
|
19802
|
+
imageUrl?: string;
|
|
19803
|
+
/**
|
|
19804
|
+
* Gets or sets the page number for paged queries.
|
|
19805
|
+
*/
|
|
19806
|
+
pageNumber?: number;
|
|
19807
|
+
/**
|
|
19808
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19809
|
+
*/
|
|
19810
|
+
take?: number;
|
|
19811
|
+
/**
|
|
19812
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19813
|
+
*/
|
|
19814
|
+
skip?: number;
|
|
19815
|
+
/**
|
|
19816
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19817
|
+
*/
|
|
19818
|
+
limitListRequests?: boolean;
|
|
19819
|
+
/**
|
|
19820
|
+
* Gets or sets the Tenant Id.
|
|
19821
|
+
*/
|
|
19822
|
+
tenantId?: string;
|
|
19823
|
+
/**
|
|
19824
|
+
* Gets or sets the Modifed By Id.
|
|
19825
|
+
*/
|
|
19826
|
+
modifiedById?: string;
|
|
19827
|
+
/**
|
|
19828
|
+
* Gets or sets the Modifed By Ids.
|
|
19829
|
+
*/
|
|
19830
|
+
modifiedByIds?: Array<string>;
|
|
19831
|
+
/**
|
|
19832
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19833
|
+
*/
|
|
19834
|
+
dateCreatedGte?: string;
|
|
19835
|
+
/**
|
|
19836
|
+
* Gets or sets the Date Created less than equal to.
|
|
19837
|
+
*/
|
|
19838
|
+
dateCreatedLte?: string;
|
|
19839
|
+
/**
|
|
19840
|
+
* Gets or sets the queryable only is live status.
|
|
19841
|
+
*/
|
|
19842
|
+
isLive?: boolean;
|
|
19843
|
+
/**
|
|
19844
|
+
* Gets or sets the sort order direction.
|
|
19845
|
+
*/
|
|
19846
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19847
|
+
}): CancelablePromise<ImageUploadHistoryPage>;
|
|
19848
|
+
/**
|
|
19849
|
+
* Deletes the resource.
|
|
19850
|
+
* @returns any OK
|
|
19851
|
+
* @throws ApiError
|
|
19852
|
+
*/
|
|
19853
|
+
deleteById({ id, }: {
|
|
19854
|
+
/**
|
|
19855
|
+
* The <typeparamref name="TObject" /> id.
|
|
19856
|
+
*/
|
|
19857
|
+
id: string;
|
|
19858
|
+
}): CancelablePromise<any>;
|
|
19859
|
+
/**
|
|
19860
|
+
* Gets the resource by its Id.
|
|
19861
|
+
* @returns ImageUploadHistory OK
|
|
19862
|
+
* @throws ApiError
|
|
19863
|
+
*/
|
|
19864
|
+
getObject({ id, }: {
|
|
19865
|
+
/**
|
|
19866
|
+
* The <typeparamref name="TObject" /> id.
|
|
19867
|
+
*/
|
|
19868
|
+
id: string;
|
|
19869
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
19870
|
+
/**
|
|
19871
|
+
* Returns a value indicating whether the resource is deletable.
|
|
19872
|
+
* @returns boolean OK
|
|
19873
|
+
* @throws ApiError
|
|
19874
|
+
*/
|
|
19875
|
+
canDelete({ id, }: {
|
|
19876
|
+
/**
|
|
19877
|
+
* The <typeparamref name="TObject" /> id.
|
|
19878
|
+
*/
|
|
19879
|
+
id: string;
|
|
19880
|
+
}): CancelablePromise<boolean>;
|
|
19881
|
+
/**
|
|
19882
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
19883
|
+
* @returns boolean OK
|
|
19884
|
+
* @throws ApiError
|
|
19885
|
+
*/
|
|
19886
|
+
exists({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19887
|
+
/**
|
|
19888
|
+
* Gets or sets the queryable user id.
|
|
19889
|
+
*/
|
|
19890
|
+
userId?: string;
|
|
19891
|
+
/**
|
|
19892
|
+
* Gets or sets the queryable image url.
|
|
19893
|
+
*/
|
|
19894
|
+
imageUrl?: string;
|
|
19895
|
+
/**
|
|
19896
|
+
* Gets or sets the page number for paged queries.
|
|
19897
|
+
*/
|
|
19898
|
+
pageNumber?: number;
|
|
19899
|
+
/**
|
|
19900
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19901
|
+
*/
|
|
19902
|
+
take?: number;
|
|
19903
|
+
/**
|
|
19904
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19905
|
+
*/
|
|
19906
|
+
skip?: number;
|
|
19907
|
+
/**
|
|
19908
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19909
|
+
*/
|
|
19910
|
+
limitListRequests?: boolean;
|
|
19911
|
+
/**
|
|
19912
|
+
* Gets or sets the Tenant Id.
|
|
19913
|
+
*/
|
|
19914
|
+
tenantId?: string;
|
|
19915
|
+
/**
|
|
19916
|
+
* Gets or sets the Modifed By Id.
|
|
19917
|
+
*/
|
|
19918
|
+
modifiedById?: string;
|
|
19919
|
+
/**
|
|
19920
|
+
* Gets or sets the Modifed By Ids.
|
|
19921
|
+
*/
|
|
19922
|
+
modifiedByIds?: Array<string>;
|
|
19923
|
+
/**
|
|
19924
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19925
|
+
*/
|
|
19926
|
+
dateCreatedGte?: string;
|
|
19927
|
+
/**
|
|
19928
|
+
* Gets or sets the Date Created less than equal to.
|
|
19929
|
+
*/
|
|
19930
|
+
dateCreatedLte?: string;
|
|
19931
|
+
/**
|
|
19932
|
+
* Gets or sets the queryable only is live status.
|
|
19933
|
+
*/
|
|
19934
|
+
isLive?: boolean;
|
|
19935
|
+
/**
|
|
19936
|
+
* Gets or sets the sort order direction.
|
|
19937
|
+
*/
|
|
19938
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19939
|
+
}): CancelablePromise<boolean>;
|
|
19940
|
+
/**
|
|
19941
|
+
* Returns the number of results in the database given the provided search params.
|
|
19942
|
+
* @returns number OK
|
|
19943
|
+
* @throws ApiError
|
|
19944
|
+
*/
|
|
19945
|
+
count({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19946
|
+
/**
|
|
19947
|
+
* Gets or sets the queryable user id.
|
|
19948
|
+
*/
|
|
19949
|
+
userId?: string;
|
|
19950
|
+
/**
|
|
19951
|
+
* Gets or sets the queryable image url.
|
|
19952
|
+
*/
|
|
19953
|
+
imageUrl?: string;
|
|
19954
|
+
/**
|
|
19955
|
+
* Gets or sets the page number for paged queries.
|
|
19956
|
+
*/
|
|
19957
|
+
pageNumber?: number;
|
|
19958
|
+
/**
|
|
19959
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19960
|
+
*/
|
|
19961
|
+
take?: number;
|
|
19962
|
+
/**
|
|
19963
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19964
|
+
*/
|
|
19965
|
+
skip?: number;
|
|
19966
|
+
/**
|
|
19967
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19968
|
+
*/
|
|
19969
|
+
limitListRequests?: boolean;
|
|
19970
|
+
/**
|
|
19971
|
+
* Gets or sets the Tenant Id.
|
|
19972
|
+
*/
|
|
19973
|
+
tenantId?: string;
|
|
19974
|
+
/**
|
|
19975
|
+
* Gets or sets the Modifed By Id.
|
|
19976
|
+
*/
|
|
19977
|
+
modifiedById?: string;
|
|
19978
|
+
/**
|
|
19979
|
+
* Gets or sets the Modifed By Ids.
|
|
19980
|
+
*/
|
|
19981
|
+
modifiedByIds?: Array<string>;
|
|
19982
|
+
/**
|
|
19983
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19984
|
+
*/
|
|
19985
|
+
dateCreatedGte?: string;
|
|
19986
|
+
/**
|
|
19987
|
+
* Gets or sets the Date Created less than equal to.
|
|
19988
|
+
*/
|
|
19989
|
+
dateCreatedLte?: string;
|
|
19990
|
+
/**
|
|
19991
|
+
* Gets or sets the queryable only is live status.
|
|
19992
|
+
*/
|
|
19993
|
+
isLive?: boolean;
|
|
19994
|
+
/**
|
|
19995
|
+
* Gets or sets the sort order direction.
|
|
19996
|
+
*/
|
|
19997
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19998
|
+
}): CancelablePromise<number>;
|
|
19999
|
+
/**
|
|
20000
|
+
* Gets a list of resources unpaged and without references.
|
|
20001
|
+
* @returns ImageUploadHistory OK
|
|
20002
|
+
* @throws ApiError
|
|
20003
|
+
*/
|
|
20004
|
+
getListWithoutReferences({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20005
|
+
/**
|
|
20006
|
+
* Gets or sets the queryable user id.
|
|
20007
|
+
*/
|
|
20008
|
+
userId?: string;
|
|
20009
|
+
/**
|
|
20010
|
+
* Gets or sets the queryable image url.
|
|
20011
|
+
*/
|
|
20012
|
+
imageUrl?: string;
|
|
20013
|
+
/**
|
|
20014
|
+
* Gets or sets the page number for paged queries.
|
|
20015
|
+
*/
|
|
20016
|
+
pageNumber?: number;
|
|
20017
|
+
/**
|
|
20018
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20019
|
+
*/
|
|
20020
|
+
take?: number;
|
|
20021
|
+
/**
|
|
20022
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20023
|
+
*/
|
|
20024
|
+
skip?: number;
|
|
20025
|
+
/**
|
|
20026
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20027
|
+
*/
|
|
20028
|
+
limitListRequests?: boolean;
|
|
20029
|
+
/**
|
|
20030
|
+
* Gets or sets the Tenant Id.
|
|
20031
|
+
*/
|
|
20032
|
+
tenantId?: string;
|
|
20033
|
+
/**
|
|
20034
|
+
* Gets or sets the Modifed By Id.
|
|
20035
|
+
*/
|
|
20036
|
+
modifiedById?: string;
|
|
20037
|
+
/**
|
|
20038
|
+
* Gets or sets the Modifed By Ids.
|
|
20039
|
+
*/
|
|
20040
|
+
modifiedByIds?: Array<string>;
|
|
20041
|
+
/**
|
|
20042
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20043
|
+
*/
|
|
20044
|
+
dateCreatedGte?: string;
|
|
20045
|
+
/**
|
|
20046
|
+
* Gets or sets the Date Created less than equal to.
|
|
20047
|
+
*/
|
|
20048
|
+
dateCreatedLte?: string;
|
|
20049
|
+
/**
|
|
20050
|
+
* Gets or sets the queryable only is live status.
|
|
20051
|
+
*/
|
|
20052
|
+
isLive?: boolean;
|
|
20053
|
+
/**
|
|
20054
|
+
* Gets or sets the sort order direction.
|
|
20055
|
+
*/
|
|
20056
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20057
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
20058
|
+
/**
|
|
20059
|
+
* Gets a list of resources.
|
|
20060
|
+
* @returns ImageUploadHistory OK
|
|
20061
|
+
* @throws ApiError
|
|
20062
|
+
*/
|
|
20063
|
+
getListIdName({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20064
|
+
/**
|
|
20065
|
+
* Gets or sets the queryable user id.
|
|
20066
|
+
*/
|
|
20067
|
+
userId?: string;
|
|
20068
|
+
/**
|
|
20069
|
+
* Gets or sets the queryable image url.
|
|
20070
|
+
*/
|
|
20071
|
+
imageUrl?: string;
|
|
20072
|
+
/**
|
|
20073
|
+
* Gets or sets the page number for paged queries.
|
|
20074
|
+
*/
|
|
20075
|
+
pageNumber?: number;
|
|
20076
|
+
/**
|
|
20077
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20078
|
+
*/
|
|
20079
|
+
take?: number;
|
|
20080
|
+
/**
|
|
20081
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20082
|
+
*/
|
|
20083
|
+
skip?: number;
|
|
20084
|
+
/**
|
|
20085
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20086
|
+
*/
|
|
20087
|
+
limitListRequests?: boolean;
|
|
20088
|
+
/**
|
|
20089
|
+
* Gets or sets the Tenant Id.
|
|
20090
|
+
*/
|
|
20091
|
+
tenantId?: string;
|
|
20092
|
+
/**
|
|
20093
|
+
* Gets or sets the Modifed By Id.
|
|
20094
|
+
*/
|
|
20095
|
+
modifiedById?: string;
|
|
20096
|
+
/**
|
|
20097
|
+
* Gets or sets the Modifed By Ids.
|
|
20098
|
+
*/
|
|
20099
|
+
modifiedByIds?: Array<string>;
|
|
20100
|
+
/**
|
|
20101
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20102
|
+
*/
|
|
20103
|
+
dateCreatedGte?: string;
|
|
20104
|
+
/**
|
|
20105
|
+
* Gets or sets the Date Created less than equal to.
|
|
20106
|
+
*/
|
|
20107
|
+
dateCreatedLte?: string;
|
|
20108
|
+
/**
|
|
20109
|
+
* Gets or sets the queryable only is live status.
|
|
20110
|
+
*/
|
|
20111
|
+
isLive?: boolean;
|
|
20112
|
+
/**
|
|
20113
|
+
* Gets or sets the sort order direction.
|
|
20114
|
+
*/
|
|
20115
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20116
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
20117
|
+
}
|
|
20118
|
+
|
|
20119
|
+
/**
|
|
20120
|
+
* Dotdigital canonical field types.
|
|
20121
|
+
*/
|
|
20122
|
+
declare enum DotdigitalCanonicalField {
|
|
20123
|
+
EMAIL = "Email",
|
|
20124
|
+
FIRST_NAME = "FirstName",
|
|
20125
|
+
LAST_NAME = "LastName",
|
|
20126
|
+
FULL_NAME = "FullName",
|
|
20127
|
+
GENDER = "Gender",
|
|
20128
|
+
POSTCODE = "Postcode",
|
|
20129
|
+
MARKETING_OPT_IN = "MarketingOptIn"
|
|
20130
|
+
}
|
|
20131
|
+
|
|
20132
|
+
/**
|
|
20133
|
+
* Dotdigital source types.
|
|
20134
|
+
*/
|
|
20135
|
+
declare enum DotdigitalSourceType {
|
|
20136
|
+
CUSTOMER_COLUMN = "CustomerColumn",
|
|
20137
|
+
ORDER_COLUMN = "OrderColumn",
|
|
20138
|
+
CUSTOMER_CUSTOM_FIELD = "CustomerCustomField",
|
|
20139
|
+
ORDER_CUSTOM_FIELD = "OrderCustomField",
|
|
20140
|
+
STATIC = "Static"
|
|
20141
|
+
}
|
|
20142
|
+
|
|
20143
|
+
/**
|
|
20144
|
+
* Represents a Dotdigital field mapping configuration within the Reach application.
|
|
20145
|
+
*/
|
|
20146
|
+
type IntegrationDotdigitalFieldMap = {
|
|
20147
|
+
/**
|
|
20148
|
+
* Gets or sets the entities Id.
|
|
20149
|
+
*/
|
|
20150
|
+
id?: string;
|
|
20151
|
+
/**
|
|
20152
|
+
* Gets or sets the tenant Id.
|
|
20153
|
+
*/
|
|
20154
|
+
tenantId: string;
|
|
20155
|
+
/**
|
|
20156
|
+
* Gets or sets the created date of this entity.
|
|
20157
|
+
*/
|
|
20158
|
+
dateCreated: string;
|
|
20159
|
+
/**
|
|
20160
|
+
* Gets or sets the last modified date of this entity.
|
|
20161
|
+
*/
|
|
20162
|
+
dateModified: string;
|
|
20163
|
+
/**
|
|
20164
|
+
* Gets or sets the modified by Id.
|
|
20165
|
+
*/
|
|
20166
|
+
modifiedById?: string | null;
|
|
20167
|
+
/**
|
|
20168
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
20169
|
+
*/
|
|
20170
|
+
isLive: boolean;
|
|
20171
|
+
canonicalField?: DotdigitalCanonicalField;
|
|
20172
|
+
/**
|
|
20173
|
+
* Gets or sets the Dotdigital field key.
|
|
20174
|
+
*/
|
|
20175
|
+
dotdigitalFieldKey?: string | null;
|
|
20176
|
+
sourceType?: DotdigitalSourceType;
|
|
20177
|
+
/**
|
|
20178
|
+
* Gets or sets the source key.
|
|
20179
|
+
*/
|
|
20180
|
+
sourceKey?: string | null;
|
|
20181
|
+
/**
|
|
20182
|
+
* Gets or sets the static value.
|
|
20183
|
+
*/
|
|
20184
|
+
staticValue?: string | null;
|
|
20185
|
+
/**
|
|
20186
|
+
* Gets or sets a value indicating whether the field is required.
|
|
20187
|
+
*/
|
|
20188
|
+
isRequired?: boolean | null;
|
|
20189
|
+
};
|
|
20190
|
+
|
|
20191
|
+
type IntegrationDotdigitalFieldMapPage = {
|
|
20192
|
+
pagination: Pagination;
|
|
20193
|
+
readonly items: Array<IntegrationDotdigitalFieldMap>;
|
|
20194
|
+
};
|
|
20195
|
+
|
|
20196
|
+
/**
|
|
20197
|
+
* Patch model for Dotdigital field map updates.
|
|
20198
|
+
*/
|
|
20199
|
+
type IntegrationDotdigitalFieldMapPatch = {
|
|
20200
|
+
/**
|
|
20201
|
+
* Gets or sets the tenant Id.
|
|
20202
|
+
*/
|
|
20203
|
+
tenantId: string;
|
|
20204
|
+
/**
|
|
20205
|
+
* Gets or sets the Id.
|
|
20206
|
+
*/
|
|
20207
|
+
id: string;
|
|
20208
|
+
};
|
|
20209
|
+
|
|
20210
|
+
/**
|
|
20211
|
+
* Post model for Dotdigital field map inserts.
|
|
20212
|
+
*/
|
|
20213
|
+
type IntegrationDotdigitalFieldMapPost = {
|
|
20214
|
+
/**
|
|
20215
|
+
* Gets or sets the tenant Id.
|
|
20216
|
+
*/
|
|
20217
|
+
tenantId: string;
|
|
20218
|
+
};
|
|
20219
|
+
|
|
20220
|
+
declare class IntegrationDotdigitalFieldMapService {
|
|
20221
|
+
readonly httpRequest: BaseHttpRequest;
|
|
20222
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
20223
|
+
/**
|
|
20224
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
20225
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20226
|
+
* @throws ApiError
|
|
20227
|
+
*/
|
|
20228
|
+
post({ requestBody, }: {
|
|
20229
|
+
/**
|
|
20230
|
+
* The <typeparamref name="TObject" /> model.
|
|
20231
|
+
*/
|
|
20232
|
+
requestBody?: IntegrationDotdigitalFieldMapPost;
|
|
20233
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20234
|
+
/**
|
|
20235
|
+
* Patches the resource.
|
|
20236
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20237
|
+
* @throws ApiError
|
|
20238
|
+
*/
|
|
20239
|
+
patch({ requestBody, }: {
|
|
20240
|
+
/**
|
|
20241
|
+
* The <typeparamref name="TObject" /> model.
|
|
20242
|
+
*/
|
|
20243
|
+
requestBody?: IntegrationDotdigitalFieldMapPatch;
|
|
20244
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20245
|
+
/**
|
|
20246
|
+
* Inserts a list of resources.
|
|
20247
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20248
|
+
* @throws ApiError
|
|
20249
|
+
*/
|
|
20250
|
+
postList({ requestBody, }: {
|
|
20251
|
+
/**
|
|
20252
|
+
* The list of <typeparamref name="TObject" />.
|
|
20253
|
+
*/
|
|
20254
|
+
requestBody?: Array<IntegrationDotdigitalFieldMapPost>;
|
|
20255
|
+
}): CancelablePromise<Array<IntegrationDotdigitalFieldMap>>;
|
|
20256
|
+
/**
|
|
20257
|
+
* Patches the resource.
|
|
20258
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20259
|
+
* @throws ApiError
|
|
20260
|
+
*/
|
|
20261
|
+
patchWithReferences({ requestBody, }: {
|
|
20262
|
+
/**
|
|
20263
|
+
* The <typeparamref name="TObject" /> model.
|
|
20264
|
+
*/
|
|
20265
|
+
requestBody?: IntegrationDotdigitalFieldMapPatch;
|
|
20266
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20267
|
+
/**
|
|
20268
|
+
* Deletes the resource.
|
|
20269
|
+
* @returns any OK
|
|
20270
|
+
* @throws ApiError
|
|
20271
|
+
*/
|
|
20272
|
+
deleteByObject({ requestBody, }: {
|
|
20273
|
+
/**
|
|
20274
|
+
* The <typeparamref name="TObject" /> model.
|
|
20275
|
+
*/
|
|
20276
|
+
requestBody?: IntegrationDotdigitalFieldMap;
|
|
20277
|
+
}): CancelablePromise<any>;
|
|
20278
|
+
/**
|
|
20279
|
+
* Gets a list of resources.
|
|
20280
|
+
* @returns IntegrationDotdigitalFieldMapPage OK
|
|
20281
|
+
* @throws ApiError
|
|
20282
|
+
*/
|
|
20283
|
+
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20284
|
+
/**
|
|
20285
|
+
* Gets or sets the page number for paged queries.
|
|
20286
|
+
*/
|
|
20287
|
+
pageNumber?: number;
|
|
20288
|
+
/**
|
|
20289
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20290
|
+
*/
|
|
20291
|
+
take?: number;
|
|
20292
|
+
/**
|
|
20293
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20294
|
+
*/
|
|
20295
|
+
skip?: number;
|
|
20296
|
+
/**
|
|
20297
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20298
|
+
*/
|
|
20299
|
+
limitListRequests?: boolean;
|
|
20300
|
+
/**
|
|
20301
|
+
* Gets or sets the Tenant Id.
|
|
20302
|
+
*/
|
|
20303
|
+
tenantId?: string;
|
|
20304
|
+
/**
|
|
20305
|
+
* Gets or sets the Modifed By Id.
|
|
20306
|
+
*/
|
|
20307
|
+
modifiedById?: string;
|
|
20308
|
+
/**
|
|
20309
|
+
* Gets or sets the Modifed By Ids.
|
|
20310
|
+
*/
|
|
20311
|
+
modifiedByIds?: Array<string>;
|
|
20312
|
+
/**
|
|
20313
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20314
|
+
*/
|
|
20315
|
+
dateCreatedGte?: string;
|
|
20316
|
+
/**
|
|
20317
|
+
* Gets or sets the Date Created less than equal to.
|
|
20318
|
+
*/
|
|
20319
|
+
dateCreatedLte?: string;
|
|
20320
|
+
/**
|
|
20321
|
+
* Gets or sets the queryable only is live status.
|
|
20322
|
+
*/
|
|
20323
|
+
isLive?: boolean;
|
|
20324
|
+
/**
|
|
20325
|
+
* Gets or sets the sort order direction.
|
|
20326
|
+
*/
|
|
20327
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20328
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMapPage>;
|
|
20329
|
+
/**
|
|
20330
|
+
* Deletes the resource.
|
|
20331
|
+
* @returns any OK
|
|
20332
|
+
* @throws ApiError
|
|
20333
|
+
*/
|
|
20334
|
+
deleteById({ id, }: {
|
|
20335
|
+
/**
|
|
20336
|
+
* The <typeparamref name="TObject" /> id.
|
|
20337
|
+
*/
|
|
20338
|
+
id: string;
|
|
20339
|
+
}): CancelablePromise<any>;
|
|
20340
|
+
/**
|
|
20341
|
+
* Gets the resource by its Id.
|
|
20342
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20343
|
+
* @throws ApiError
|
|
20344
|
+
*/
|
|
20345
|
+
getObject({ id, }: {
|
|
20346
|
+
/**
|
|
20347
|
+
* The <typeparamref name="TObject" /> id.
|
|
20348
|
+
*/
|
|
20349
|
+
id: string;
|
|
20350
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20351
|
+
/**
|
|
20352
|
+
* Returns a value indicating whether the resource is deletable.
|
|
20353
|
+
* @returns boolean OK
|
|
20354
|
+
* @throws ApiError
|
|
20355
|
+
*/
|
|
20356
|
+
canDelete({ id, }: {
|
|
20357
|
+
/**
|
|
20358
|
+
* The <typeparamref name="TObject" /> id.
|
|
20359
|
+
*/
|
|
20360
|
+
id: string;
|
|
20361
|
+
}): CancelablePromise<boolean>;
|
|
20362
|
+
/**
|
|
20363
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
20364
|
+
* @returns boolean OK
|
|
20365
|
+
* @throws ApiError
|
|
20366
|
+
*/
|
|
20367
|
+
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20368
|
+
/**
|
|
20369
|
+
* Gets or sets the page number for paged queries.
|
|
20370
|
+
*/
|
|
20371
|
+
pageNumber?: number;
|
|
20372
|
+
/**
|
|
20373
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20374
|
+
*/
|
|
20375
|
+
take?: number;
|
|
20376
|
+
/**
|
|
20377
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20378
|
+
*/
|
|
20379
|
+
skip?: number;
|
|
20380
|
+
/**
|
|
20381
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20382
|
+
*/
|
|
20383
|
+
limitListRequests?: boolean;
|
|
20384
|
+
/**
|
|
20385
|
+
* Gets or sets the Tenant Id.
|
|
20386
|
+
*/
|
|
20387
|
+
tenantId?: string;
|
|
20388
|
+
/**
|
|
20389
|
+
* Gets or sets the Modifed By Id.
|
|
20390
|
+
*/
|
|
20391
|
+
modifiedById?: string;
|
|
20392
|
+
/**
|
|
20393
|
+
* Gets or sets the Modifed By Ids.
|
|
20394
|
+
*/
|
|
20395
|
+
modifiedByIds?: Array<string>;
|
|
20396
|
+
/**
|
|
20397
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20398
|
+
*/
|
|
20399
|
+
dateCreatedGte?: string;
|
|
20400
|
+
/**
|
|
20401
|
+
* Gets or sets the Date Created less than equal to.
|
|
20402
|
+
*/
|
|
20403
|
+
dateCreatedLte?: string;
|
|
20404
|
+
/**
|
|
20405
|
+
* Gets or sets the queryable only is live status.
|
|
20406
|
+
*/
|
|
20407
|
+
isLive?: boolean;
|
|
20408
|
+
/**
|
|
20409
|
+
* Gets or sets the sort order direction.
|
|
20410
|
+
*/
|
|
20411
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20412
|
+
}): CancelablePromise<boolean>;
|
|
20413
|
+
/**
|
|
20414
|
+
* Returns the number of results in the database given the provided search params.
|
|
20415
|
+
* @returns number OK
|
|
20416
|
+
* @throws ApiError
|
|
20417
|
+
*/
|
|
20418
|
+
count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20419
|
+
/**
|
|
20420
|
+
* Gets or sets the page number for paged queries.
|
|
20421
|
+
*/
|
|
20422
|
+
pageNumber?: number;
|
|
20423
|
+
/**
|
|
20424
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20425
|
+
*/
|
|
20426
|
+
take?: number;
|
|
20427
|
+
/**
|
|
20428
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20429
|
+
*/
|
|
20430
|
+
skip?: number;
|
|
20431
|
+
/**
|
|
20432
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20433
|
+
*/
|
|
20434
|
+
limitListRequests?: boolean;
|
|
20435
|
+
/**
|
|
20436
|
+
* Gets or sets the Tenant Id.
|
|
20437
|
+
*/
|
|
20438
|
+
tenantId?: string;
|
|
20439
|
+
/**
|
|
20440
|
+
* Gets or sets the Modifed By Id.
|
|
20441
|
+
*/
|
|
20442
|
+
modifiedById?: string;
|
|
20443
|
+
/**
|
|
20444
|
+
* Gets or sets the Modifed By Ids.
|
|
20445
|
+
*/
|
|
20446
|
+
modifiedByIds?: Array<string>;
|
|
20447
|
+
/**
|
|
20448
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20449
|
+
*/
|
|
20450
|
+
dateCreatedGte?: string;
|
|
20451
|
+
/**
|
|
20452
|
+
* Gets or sets the Date Created less than equal to.
|
|
20453
|
+
*/
|
|
20454
|
+
dateCreatedLte?: string;
|
|
20455
|
+
/**
|
|
20456
|
+
* Gets or sets the queryable only is live status.
|
|
20457
|
+
*/
|
|
20458
|
+
isLive?: boolean;
|
|
20459
|
+
/**
|
|
20460
|
+
* Gets or sets the sort order direction.
|
|
20461
|
+
*/
|
|
20462
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20463
|
+
}): CancelablePromise<number>;
|
|
20464
|
+
/**
|
|
20465
|
+
* Gets a list of resources unpaged and without references.
|
|
20466
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20467
|
+
* @throws ApiError
|
|
20468
|
+
*/
|
|
20469
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20470
|
+
/**
|
|
20471
|
+
* Gets or sets the page number for paged queries.
|
|
20472
|
+
*/
|
|
20473
|
+
pageNumber?: number;
|
|
20474
|
+
/**
|
|
20475
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20476
|
+
*/
|
|
20477
|
+
take?: number;
|
|
20478
|
+
/**
|
|
20479
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20480
|
+
*/
|
|
20481
|
+
skip?: number;
|
|
20482
|
+
/**
|
|
20483
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20484
|
+
*/
|
|
20485
|
+
limitListRequests?: boolean;
|
|
20486
|
+
/**
|
|
20487
|
+
* Gets or sets the Tenant Id.
|
|
20488
|
+
*/
|
|
20489
|
+
tenantId?: string;
|
|
20490
|
+
/**
|
|
20491
|
+
* Gets or sets the Modifed By Id.
|
|
20492
|
+
*/
|
|
20493
|
+
modifiedById?: string;
|
|
20494
|
+
/**
|
|
20495
|
+
* Gets or sets the Modifed By Ids.
|
|
20496
|
+
*/
|
|
20497
|
+
modifiedByIds?: Array<string>;
|
|
20498
|
+
/**
|
|
20499
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20500
|
+
*/
|
|
20501
|
+
dateCreatedGte?: string;
|
|
20502
|
+
/**
|
|
20503
|
+
* Gets or sets the Date Created less than equal to.
|
|
20504
|
+
*/
|
|
20505
|
+
dateCreatedLte?: string;
|
|
20506
|
+
/**
|
|
20507
|
+
* Gets or sets the queryable only is live status.
|
|
20508
|
+
*/
|
|
20509
|
+
isLive?: boolean;
|
|
20510
|
+
/**
|
|
20511
|
+
* Gets or sets the sort order direction.
|
|
20512
|
+
*/
|
|
20513
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20514
|
+
}): CancelablePromise<Array<IntegrationDotdigitalFieldMap>>;
|
|
20515
|
+
/**
|
|
20516
|
+
* Gets a list of resources.
|
|
20517
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20518
|
+
* @throws ApiError
|
|
20519
|
+
*/
|
|
20520
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20521
|
+
/**
|
|
20522
|
+
* Gets or sets the page number for paged queries.
|
|
20523
|
+
*/
|
|
20524
|
+
pageNumber?: number;
|
|
20525
|
+
/**
|
|
20526
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20527
|
+
*/
|
|
20528
|
+
take?: number;
|
|
20529
|
+
/**
|
|
20530
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20531
|
+
*/
|
|
20532
|
+
skip?: number;
|
|
20533
|
+
/**
|
|
20534
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20535
|
+
*/
|
|
20536
|
+
limitListRequests?: boolean;
|
|
20537
|
+
/**
|
|
20538
|
+
* Gets or sets the Tenant Id.
|
|
20539
|
+
*/
|
|
20540
|
+
tenantId?: string;
|
|
20541
|
+
/**
|
|
20542
|
+
* Gets or sets the Modifed By Id.
|
|
20543
|
+
*/
|
|
20544
|
+
modifiedById?: string;
|
|
20545
|
+
/**
|
|
20546
|
+
* Gets or sets the Modifed By Ids.
|
|
20547
|
+
*/
|
|
20548
|
+
modifiedByIds?: Array<string>;
|
|
20549
|
+
/**
|
|
20550
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20551
|
+
*/
|
|
20552
|
+
dateCreatedGte?: string;
|
|
20553
|
+
/**
|
|
20554
|
+
* Gets or sets the Date Created less than equal to.
|
|
20555
|
+
*/
|
|
20556
|
+
dateCreatedLte?: string;
|
|
20557
|
+
/**
|
|
20558
|
+
* Gets or sets the queryable only is live status.
|
|
20559
|
+
*/
|
|
20560
|
+
isLive?: boolean;
|
|
20561
|
+
/**
|
|
20562
|
+
* Gets or sets the sort order direction.
|
|
20563
|
+
*/
|
|
20564
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20565
|
+
}): CancelablePromise<Array<IntegrationDotdigitalFieldMap>>;
|
|
20566
|
+
}
|
|
20567
|
+
|
|
20568
|
+
/**
|
|
20569
|
+
* Integrations Dotdigital log status.
|
|
20570
|
+
*/
|
|
20571
|
+
declare enum IntegrationDotdigitalLogStatus {
|
|
20572
|
+
QUEUED = "Queued",
|
|
20573
|
+
SENT = "Sent",
|
|
20574
|
+
FAILED = "Failed"
|
|
20575
|
+
}
|
|
20576
|
+
|
|
20577
|
+
/**
|
|
20578
|
+
* Represents a Dotdigital integration log entry within the Reach application.
|
|
20579
|
+
*/
|
|
20580
|
+
type IntegrationDotdigitalLog = {
|
|
20581
|
+
/**
|
|
20582
|
+
* Gets or sets the entities Id.
|
|
20583
|
+
*/
|
|
20584
|
+
id?: string;
|
|
20585
|
+
/**
|
|
20586
|
+
* Gets or sets the tenant Id.
|
|
20587
|
+
*/
|
|
20588
|
+
tenantId: string;
|
|
20589
|
+
/**
|
|
20590
|
+
* Gets or sets the created date of this entity.
|
|
20591
|
+
*/
|
|
20592
|
+
dateCreated: string;
|
|
20593
|
+
/**
|
|
20594
|
+
* Gets or sets the last modified date of this entity.
|
|
20595
|
+
*/
|
|
20596
|
+
dateModified: string;
|
|
20597
|
+
/**
|
|
20598
|
+
* Gets or sets the modified by Id.
|
|
20599
|
+
*/
|
|
20600
|
+
modifiedById?: string | null;
|
|
20601
|
+
/**
|
|
20602
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
20603
|
+
*/
|
|
20604
|
+
isLive: boolean;
|
|
20605
|
+
/**
|
|
20606
|
+
* Gets or sets the order id.
|
|
20607
|
+
*/
|
|
20608
|
+
orderId?: string;
|
|
20609
|
+
/**
|
|
20610
|
+
* Gets or sets the customer id.
|
|
20611
|
+
*/
|
|
20612
|
+
customerId?: string | null;
|
|
20613
|
+
/**
|
|
20614
|
+
* Gets or sets the email.
|
|
20615
|
+
*/
|
|
20616
|
+
email?: string | null;
|
|
20617
|
+
status?: IntegrationDotdigitalLogStatus;
|
|
20618
|
+
/**
|
|
20619
|
+
* Gets or sets the Dotdigital contact id.
|
|
20620
|
+
*/
|
|
20621
|
+
dotdigitalContactId?: string | null;
|
|
20622
|
+
/**
|
|
20623
|
+
* Gets or sets the request JSON.
|
|
20624
|
+
*/
|
|
20625
|
+
requestJson?: string | null;
|
|
20626
|
+
/**
|
|
20627
|
+
* Gets or sets the response JSON.
|
|
20628
|
+
*/
|
|
20629
|
+
responseJson?: string | null;
|
|
20630
|
+
/**
|
|
20631
|
+
* Gets or sets the error message.
|
|
20632
|
+
*/
|
|
20633
|
+
errorMessage?: string | null;
|
|
20634
|
+
};
|
|
20635
|
+
|
|
20636
|
+
type IntegrationDotdigitalLogPage = {
|
|
20637
|
+
pagination: Pagination;
|
|
20638
|
+
readonly items: Array<IntegrationDotdigitalLog>;
|
|
20639
|
+
};
|
|
20640
|
+
|
|
20641
|
+
/**
|
|
20642
|
+
* Patch model for Dotdigital integration log updates.
|
|
20643
|
+
*/
|
|
20644
|
+
type IntegrationDotdigitalLogPatch = {
|
|
20645
|
+
/**
|
|
20646
|
+
* Gets or sets the tenant Id.
|
|
20647
|
+
*/
|
|
20648
|
+
tenantId: string;
|
|
20649
|
+
/**
|
|
20650
|
+
* Gets or sets the Id.
|
|
20651
|
+
*/
|
|
20652
|
+
id: string;
|
|
20653
|
+
};
|
|
20654
|
+
|
|
20655
|
+
/**
|
|
20656
|
+
* Post model for Dotdigital integration log inserts.
|
|
20657
|
+
*/
|
|
20658
|
+
type IntegrationDotdigitalLogPost = {
|
|
20659
|
+
/**
|
|
20660
|
+
* Gets or sets the tenant Id.
|
|
20661
|
+
*/
|
|
20662
|
+
tenantId: string;
|
|
20663
|
+
};
|
|
20664
|
+
|
|
20665
|
+
declare class IntegrationDotdigitalLogService {
|
|
20666
|
+
readonly httpRequest: BaseHttpRequest;
|
|
20667
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
20668
|
+
/**
|
|
20669
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
20670
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20671
|
+
* @throws ApiError
|
|
20672
|
+
*/
|
|
20673
|
+
post({ requestBody, }: {
|
|
20674
|
+
/**
|
|
20675
|
+
* The <typeparamref name="TObject" /> model.
|
|
20676
|
+
*/
|
|
20677
|
+
requestBody?: IntegrationDotdigitalLogPost;
|
|
20678
|
+
}): CancelablePromise<IntegrationDotdigitalLog>;
|
|
20679
|
+
/**
|
|
20680
|
+
* Patches the resource.
|
|
20681
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20682
|
+
* @throws ApiError
|
|
20683
|
+
*/
|
|
20684
|
+
patch({ requestBody, }: {
|
|
20685
|
+
/**
|
|
20686
|
+
* The <typeparamref name="TObject" /> model.
|
|
20687
|
+
*/
|
|
20688
|
+
requestBody?: IntegrationDotdigitalLogPatch;
|
|
20689
|
+
}): CancelablePromise<IntegrationDotdigitalLog>;
|
|
20690
|
+
/**
|
|
20691
|
+
* Inserts a list of resources.
|
|
20692
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20693
|
+
* @throws ApiError
|
|
20694
|
+
*/
|
|
20695
|
+
postList({ requestBody, }: {
|
|
20696
|
+
/**
|
|
20697
|
+
* The list of <typeparamref name="TObject" />.
|
|
20698
|
+
*/
|
|
20699
|
+
requestBody?: Array<IntegrationDotdigitalLogPost>;
|
|
20700
|
+
}): CancelablePromise<Array<IntegrationDotdigitalLog>>;
|
|
20701
|
+
/**
|
|
20702
|
+
* Patches the resource.
|
|
20703
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20704
|
+
* @throws ApiError
|
|
20705
|
+
*/
|
|
20706
|
+
patchWithReferences({ requestBody, }: {
|
|
20707
|
+
/**
|
|
20708
|
+
* The <typeparamref name="TObject" /> model.
|
|
20709
|
+
*/
|
|
20710
|
+
requestBody?: IntegrationDotdigitalLogPatch;
|
|
20711
|
+
}): CancelablePromise<IntegrationDotdigitalLog>;
|
|
20712
|
+
/**
|
|
20713
|
+
* Deletes the resource.
|
|
20714
|
+
* @returns any OK
|
|
20715
|
+
* @throws ApiError
|
|
20716
|
+
*/
|
|
20717
|
+
deleteByObject({ requestBody, }: {
|
|
20718
|
+
/**
|
|
20719
|
+
* The <typeparamref name="TObject" /> model.
|
|
20720
|
+
*/
|
|
20721
|
+
requestBody?: IntegrationDotdigitalLog;
|
|
20722
|
+
}): CancelablePromise<any>;
|
|
20723
|
+
/**
|
|
20724
|
+
* Gets a list of resources.
|
|
20725
|
+
* @returns IntegrationDotdigitalLogPage OK
|
|
20726
|
+
* @throws ApiError
|
|
20727
|
+
*/
|
|
20728
|
+
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20729
|
+
/**
|
|
20730
|
+
* Gets or sets the page number for paged queries.
|
|
20731
|
+
*/
|
|
20732
|
+
pageNumber?: number;
|
|
20733
|
+
/**
|
|
20734
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20735
|
+
*/
|
|
20736
|
+
take?: number;
|
|
20737
|
+
/**
|
|
20738
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20739
|
+
*/
|
|
20740
|
+
skip?: number;
|
|
20741
|
+
/**
|
|
20742
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20743
|
+
*/
|
|
20744
|
+
limitListRequests?: boolean;
|
|
20745
|
+
/**
|
|
20746
|
+
* Gets or sets the Tenant Id.
|
|
20747
|
+
*/
|
|
20748
|
+
tenantId?: string;
|
|
20749
|
+
/**
|
|
20750
|
+
* Gets or sets the Modifed By Id.
|
|
20751
|
+
*/
|
|
20752
|
+
modifiedById?: string;
|
|
20753
|
+
/**
|
|
20754
|
+
* Gets or sets the Modifed By Ids.
|
|
20755
|
+
*/
|
|
20756
|
+
modifiedByIds?: Array<string>;
|
|
20757
|
+
/**
|
|
20758
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20759
|
+
*/
|
|
20760
|
+
dateCreatedGte?: string;
|
|
20761
|
+
/**
|
|
20762
|
+
* Gets or sets the Date Created less than equal to.
|
|
20763
|
+
*/
|
|
20764
|
+
dateCreatedLte?: string;
|
|
20765
|
+
/**
|
|
20766
|
+
* Gets or sets the queryable only is live status.
|
|
20767
|
+
*/
|
|
20768
|
+
isLive?: boolean;
|
|
20769
|
+
/**
|
|
20770
|
+
* Gets or sets the sort order direction.
|
|
20771
|
+
*/
|
|
20772
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20773
|
+
}): CancelablePromise<IntegrationDotdigitalLogPage>;
|
|
20774
|
+
/**
|
|
20775
|
+
* Deletes the resource.
|
|
20776
|
+
* @returns any OK
|
|
20777
|
+
* @throws ApiError
|
|
20778
|
+
*/
|
|
20779
|
+
deleteById({ id, }: {
|
|
20780
|
+
/**
|
|
20781
|
+
* The <typeparamref name="TObject" /> id.
|
|
20782
|
+
*/
|
|
20783
|
+
id: string;
|
|
20784
|
+
}): CancelablePromise<any>;
|
|
20785
|
+
/**
|
|
20786
|
+
* Gets the resource by its Id.
|
|
20787
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20788
|
+
* @throws ApiError
|
|
20789
|
+
*/
|
|
20790
|
+
getObject({ id, }: {
|
|
20791
|
+
/**
|
|
20792
|
+
* The <typeparamref name="TObject" /> id.
|
|
20793
|
+
*/
|
|
20794
|
+
id: string;
|
|
20795
|
+
}): CancelablePromise<IntegrationDotdigitalLog>;
|
|
20796
|
+
/**
|
|
20797
|
+
* Returns a value indicating whether the resource is deletable.
|
|
20798
|
+
* @returns boolean OK
|
|
20799
|
+
* @throws ApiError
|
|
20800
|
+
*/
|
|
20801
|
+
canDelete({ id, }: {
|
|
20802
|
+
/**
|
|
20803
|
+
* The <typeparamref name="TObject" /> id.
|
|
20804
|
+
*/
|
|
20805
|
+
id: string;
|
|
20806
|
+
}): CancelablePromise<boolean>;
|
|
20807
|
+
/**
|
|
20808
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
20809
|
+
* @returns boolean OK
|
|
20810
|
+
* @throws ApiError
|
|
20811
|
+
*/
|
|
20812
|
+
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20813
|
+
/**
|
|
20814
|
+
* Gets or sets the page number for paged queries.
|
|
20815
|
+
*/
|
|
20816
|
+
pageNumber?: number;
|
|
20817
|
+
/**
|
|
20818
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20819
|
+
*/
|
|
20820
|
+
take?: number;
|
|
20821
|
+
/**
|
|
20822
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20823
|
+
*/
|
|
20824
|
+
skip?: number;
|
|
20825
|
+
/**
|
|
20826
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20827
|
+
*/
|
|
20828
|
+
limitListRequests?: boolean;
|
|
20829
|
+
/**
|
|
20830
|
+
* Gets or sets the Tenant Id.
|
|
20831
|
+
*/
|
|
20832
|
+
tenantId?: string;
|
|
20833
|
+
/**
|
|
20834
|
+
* Gets or sets the Modifed By Id.
|
|
20835
|
+
*/
|
|
20836
|
+
modifiedById?: string;
|
|
20837
|
+
/**
|
|
20838
|
+
* Gets or sets the Modifed By Ids.
|
|
20839
|
+
*/
|
|
20840
|
+
modifiedByIds?: Array<string>;
|
|
20841
|
+
/**
|
|
20842
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20843
|
+
*/
|
|
20844
|
+
dateCreatedGte?: string;
|
|
20845
|
+
/**
|
|
20846
|
+
* Gets or sets the Date Created less than equal to.
|
|
20847
|
+
*/
|
|
20848
|
+
dateCreatedLte?: string;
|
|
20849
|
+
/**
|
|
20850
|
+
* Gets or sets the queryable only is live status.
|
|
20851
|
+
*/
|
|
20852
|
+
isLive?: boolean;
|
|
20853
|
+
/**
|
|
20854
|
+
* Gets or sets the sort order direction.
|
|
20855
|
+
*/
|
|
20856
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20857
|
+
}): CancelablePromise<boolean>;
|
|
20858
|
+
/**
|
|
20859
|
+
* Returns the number of results in the database given the provided search params.
|
|
20860
|
+
* @returns number OK
|
|
20861
|
+
* @throws ApiError
|
|
20862
|
+
*/
|
|
20863
|
+
count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20864
|
+
/**
|
|
20865
|
+
* Gets or sets the page number for paged queries.
|
|
20866
|
+
*/
|
|
20867
|
+
pageNumber?: number;
|
|
20868
|
+
/**
|
|
20869
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20870
|
+
*/
|
|
20871
|
+
take?: number;
|
|
20872
|
+
/**
|
|
20873
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20874
|
+
*/
|
|
20875
|
+
skip?: number;
|
|
20876
|
+
/**
|
|
20877
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20878
|
+
*/
|
|
20879
|
+
limitListRequests?: boolean;
|
|
20880
|
+
/**
|
|
20881
|
+
* Gets or sets the Tenant Id.
|
|
20882
|
+
*/
|
|
20883
|
+
tenantId?: string;
|
|
20884
|
+
/**
|
|
20885
|
+
* Gets or sets the Modifed By Id.
|
|
20886
|
+
*/
|
|
20887
|
+
modifiedById?: string;
|
|
20888
|
+
/**
|
|
20889
|
+
* Gets or sets the Modifed By Ids.
|
|
20890
|
+
*/
|
|
20891
|
+
modifiedByIds?: Array<string>;
|
|
20892
|
+
/**
|
|
20893
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20894
|
+
*/
|
|
20895
|
+
dateCreatedGte?: string;
|
|
20896
|
+
/**
|
|
20897
|
+
* Gets or sets the Date Created less than equal to.
|
|
20898
|
+
*/
|
|
20899
|
+
dateCreatedLte?: string;
|
|
20900
|
+
/**
|
|
20901
|
+
* Gets or sets the queryable only is live status.
|
|
20902
|
+
*/
|
|
20903
|
+
isLive?: boolean;
|
|
20904
|
+
/**
|
|
20905
|
+
* Gets or sets the sort order direction.
|
|
20906
|
+
*/
|
|
20907
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20908
|
+
}): CancelablePromise<number>;
|
|
20909
|
+
/**
|
|
20910
|
+
* Gets a list of resources unpaged and without references.
|
|
20911
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20912
|
+
* @throws ApiError
|
|
20913
|
+
*/
|
|
20914
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20915
|
+
/**
|
|
20916
|
+
* Gets or sets the page number for paged queries.
|
|
20917
|
+
*/
|
|
20918
|
+
pageNumber?: number;
|
|
20919
|
+
/**
|
|
20920
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20921
|
+
*/
|
|
20922
|
+
take?: number;
|
|
20923
|
+
/**
|
|
20924
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20925
|
+
*/
|
|
20926
|
+
skip?: number;
|
|
20927
|
+
/**
|
|
20928
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20929
|
+
*/
|
|
20930
|
+
limitListRequests?: boolean;
|
|
20931
|
+
/**
|
|
20932
|
+
* Gets or sets the Tenant Id.
|
|
20933
|
+
*/
|
|
20934
|
+
tenantId?: string;
|
|
20935
|
+
/**
|
|
20936
|
+
* Gets or sets the Modifed By Id.
|
|
20937
|
+
*/
|
|
20938
|
+
modifiedById?: string;
|
|
20939
|
+
/**
|
|
20940
|
+
* Gets or sets the Modifed By Ids.
|
|
20941
|
+
*/
|
|
20942
|
+
modifiedByIds?: Array<string>;
|
|
20943
|
+
/**
|
|
20944
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20945
|
+
*/
|
|
20946
|
+
dateCreatedGte?: string;
|
|
20947
|
+
/**
|
|
20948
|
+
* Gets or sets the Date Created less than equal to.
|
|
20949
|
+
*/
|
|
20950
|
+
dateCreatedLte?: string;
|
|
20951
|
+
/**
|
|
20952
|
+
* Gets or sets the queryable only is live status.
|
|
20953
|
+
*/
|
|
20954
|
+
isLive?: boolean;
|
|
20955
|
+
/**
|
|
20956
|
+
* Gets or sets the sort order direction.
|
|
20957
|
+
*/
|
|
20958
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
20959
|
+
}): CancelablePromise<Array<IntegrationDotdigitalLog>>;
|
|
20960
|
+
/**
|
|
20961
|
+
* Gets a list of resources.
|
|
20962
|
+
* @returns IntegrationDotdigitalLog OK
|
|
20963
|
+
* @throws ApiError
|
|
20964
|
+
*/
|
|
20965
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20966
|
+
/**
|
|
20967
|
+
* Gets or sets the page number for paged queries.
|
|
20968
|
+
*/
|
|
20969
|
+
pageNumber?: number;
|
|
20970
|
+
/**
|
|
20971
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20972
|
+
*/
|
|
20973
|
+
take?: number;
|
|
20974
|
+
/**
|
|
20975
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20976
|
+
*/
|
|
20977
|
+
skip?: number;
|
|
20978
|
+
/**
|
|
20979
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20980
|
+
*/
|
|
20981
|
+
limitListRequests?: boolean;
|
|
20982
|
+
/**
|
|
20983
|
+
* Gets or sets the Tenant Id.
|
|
20984
|
+
*/
|
|
20985
|
+
tenantId?: string;
|
|
20986
|
+
/**
|
|
20987
|
+
* Gets or sets the Modifed By Id.
|
|
20988
|
+
*/
|
|
20989
|
+
modifiedById?: string;
|
|
20990
|
+
/**
|
|
20991
|
+
* Gets or sets the Modifed By Ids.
|
|
20992
|
+
*/
|
|
20993
|
+
modifiedByIds?: Array<string>;
|
|
20994
|
+
/**
|
|
20995
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20996
|
+
*/
|
|
20997
|
+
dateCreatedGte?: string;
|
|
20998
|
+
/**
|
|
20999
|
+
* Gets or sets the Date Created less than equal to.
|
|
21000
|
+
*/
|
|
21001
|
+
dateCreatedLte?: string;
|
|
21002
|
+
/**
|
|
21003
|
+
* Gets or sets the queryable only is live status.
|
|
21004
|
+
*/
|
|
21005
|
+
isLive?: boolean;
|
|
21006
|
+
/**
|
|
21007
|
+
* Gets or sets the sort order direction.
|
|
21008
|
+
*/
|
|
21009
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21010
|
+
}): CancelablePromise<Array<IntegrationDotdigitalLog>>;
|
|
21011
|
+
}
|
|
21012
|
+
|
|
21013
|
+
/**
|
|
21014
|
+
* Represents DotDigital integration settings within the Reach application.
|
|
21015
|
+
*/
|
|
21016
|
+
type IntegrationDotdigitalSettings = {
|
|
21017
|
+
/**
|
|
21018
|
+
* Gets or sets the entities Id.
|
|
21019
|
+
*/
|
|
21020
|
+
id?: string;
|
|
21021
|
+
/**
|
|
21022
|
+
* Gets or sets the tenant Id.
|
|
21023
|
+
*/
|
|
21024
|
+
tenantId: string;
|
|
21025
|
+
/**
|
|
21026
|
+
* Gets or sets the created date of this entity.
|
|
21027
|
+
*/
|
|
21028
|
+
dateCreated: string;
|
|
21029
|
+
/**
|
|
21030
|
+
* Gets or sets the last modified date of this entity.
|
|
21031
|
+
*/
|
|
21032
|
+
dateModified: string;
|
|
21033
|
+
/**
|
|
21034
|
+
* Gets or sets the modified by Id.
|
|
21035
|
+
*/
|
|
21036
|
+
modifiedById?: string | null;
|
|
21037
|
+
/**
|
|
21038
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
21039
|
+
*/
|
|
21040
|
+
isLive: boolean;
|
|
21041
|
+
/**
|
|
21042
|
+
* Gets or sets a value indicating whether the integration is enabled.
|
|
21043
|
+
*/
|
|
21044
|
+
enabled?: boolean | null;
|
|
21045
|
+
/**
|
|
21046
|
+
* Gets or sets the API base URL.
|
|
21047
|
+
*/
|
|
21048
|
+
apiBaseUrl?: string | null;
|
|
21049
|
+
/**
|
|
21050
|
+
* Gets or sets the API user.
|
|
21051
|
+
*/
|
|
21052
|
+
apiUser?: string | null;
|
|
21053
|
+
/**
|
|
21054
|
+
* Gets or sets the encrypted API password.
|
|
21055
|
+
*/
|
|
21056
|
+
apiPasswordEncrypted?: string | null;
|
|
21057
|
+
/**
|
|
21058
|
+
* Gets or sets the API password nonce.
|
|
21059
|
+
*/
|
|
21060
|
+
apiPasswordNonce?: string | null;
|
|
21061
|
+
/**
|
|
21062
|
+
* Gets or sets the API password key version.
|
|
21063
|
+
*/
|
|
21064
|
+
apiPasswordKeyVersion?: string | null;
|
|
21065
|
+
/**
|
|
21066
|
+
* Gets or sets the address book name.
|
|
21067
|
+
*/
|
|
21068
|
+
addressBookName?: string | null;
|
|
21069
|
+
/**
|
|
21070
|
+
* Gets or sets the address book id.
|
|
21071
|
+
*/
|
|
21072
|
+
addressBookId?: number | null;
|
|
21073
|
+
};
|
|
21074
|
+
|
|
21075
|
+
/**
|
|
21076
|
+
* Post model for deal inserts.
|
|
21077
|
+
*/
|
|
21078
|
+
type IntegrationDotdigitalSettingsCreate = {
|
|
21079
|
+
/**
|
|
21080
|
+
* Gets or sets the tenant Id.
|
|
21081
|
+
*/
|
|
21082
|
+
tenantId: string;
|
|
21083
|
+
/**
|
|
21084
|
+
* Gets or sets a value indicating whether the integration is enabled.
|
|
21085
|
+
*/
|
|
21086
|
+
enabled: boolean;
|
|
21087
|
+
/**
|
|
21088
|
+
* Gets or sets the API base URL.
|
|
21089
|
+
*/
|
|
21090
|
+
apiBaseUrl: string;
|
|
21091
|
+
/**
|
|
21092
|
+
* Gets or sets the API user.
|
|
21093
|
+
*/
|
|
21094
|
+
apiUser: string;
|
|
21095
|
+
/**
|
|
21096
|
+
* Gets or sets the API password. Required on create; optional on update (existing password kept if not provided).
|
|
21097
|
+
*/
|
|
21098
|
+
apiPassword?: string | null;
|
|
21099
|
+
/**
|
|
21100
|
+
* Gets or sets the address book name.
|
|
21101
|
+
*/
|
|
21102
|
+
addressBookName: string;
|
|
21103
|
+
/**
|
|
21104
|
+
* Gets or sets the address book id.
|
|
21105
|
+
*/
|
|
21106
|
+
addressBookId: number;
|
|
21107
|
+
};
|
|
21108
|
+
|
|
21109
|
+
type IntegrationDotdigitalSettingsPage = {
|
|
21110
|
+
pagination: Pagination;
|
|
21111
|
+
readonly items: Array<IntegrationDotdigitalSettings>;
|
|
21112
|
+
};
|
|
21113
|
+
|
|
21114
|
+
/**
|
|
21115
|
+
* Patch model for Dotdigital integration settings updates.
|
|
21116
|
+
*/
|
|
21117
|
+
type IntegrationDotdigitalSettingsPatch = {
|
|
21118
|
+
/**
|
|
21119
|
+
* Gets or sets the tenant Id.
|
|
21120
|
+
*/
|
|
21121
|
+
tenantId: string;
|
|
21122
|
+
/**
|
|
21123
|
+
* Gets or sets the Id.
|
|
21124
|
+
*/
|
|
21125
|
+
id: string;
|
|
21126
|
+
};
|
|
21127
|
+
|
|
21128
|
+
/**
|
|
21129
|
+
* Post model for Dotdigital integration settings inserts.
|
|
21130
|
+
*/
|
|
21131
|
+
type IntegrationDotdigitalSettingsPost = {
|
|
21132
|
+
/**
|
|
21133
|
+
* Gets or sets the tenant Id.
|
|
21134
|
+
*/
|
|
21135
|
+
tenantId: string;
|
|
21136
|
+
};
|
|
21137
|
+
|
|
21138
|
+
declare class IntegrationDotDigitalSettingsService {
|
|
21139
|
+
readonly httpRequest: BaseHttpRequest;
|
|
21140
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
21141
|
+
/**
|
|
21142
|
+
* Creates or updates Dotdigital integration settings for the tenant.
|
|
21143
|
+
* If settings do not exist, creates them; otherwise updates the existing settings.
|
|
21144
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21145
|
+
* @throws ApiError
|
|
21146
|
+
*/
|
|
21147
|
+
upsert({ requestBody, }: {
|
|
21148
|
+
/**
|
|
21149
|
+
* The settings data (create model).
|
|
21150
|
+
*/
|
|
21151
|
+
requestBody?: IntegrationDotdigitalSettingsCreate;
|
|
21152
|
+
}): CancelablePromise<IntegrationDotdigitalSettings>;
|
|
21153
|
+
/**
|
|
21154
|
+
* Gets the tenant's address books from Dotdigital using stored settings.
|
|
21155
|
+
* @returns AddressBookItem OK
|
|
21156
|
+
* @throws ApiError
|
|
21157
|
+
*/
|
|
21158
|
+
getAddressBooks(): CancelablePromise<Array<AddressBookItem>>;
|
|
21159
|
+
/**
|
|
21160
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
21161
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21162
|
+
* @throws ApiError
|
|
21163
|
+
*/
|
|
21164
|
+
post({ requestBody, }: {
|
|
21165
|
+
/**
|
|
21166
|
+
* The <typeparamref name="TObject" /> model.
|
|
21167
|
+
*/
|
|
21168
|
+
requestBody?: IntegrationDotdigitalSettingsPost;
|
|
21169
|
+
}): CancelablePromise<IntegrationDotdigitalSettings>;
|
|
21170
|
+
/**
|
|
21171
|
+
* Patches the resource.
|
|
21172
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21173
|
+
* @throws ApiError
|
|
21174
|
+
*/
|
|
21175
|
+
patch({ requestBody, }: {
|
|
21176
|
+
/**
|
|
21177
|
+
* The <typeparamref name="TObject" /> model.
|
|
21178
|
+
*/
|
|
21179
|
+
requestBody?: IntegrationDotdigitalSettingsPatch;
|
|
21180
|
+
}): CancelablePromise<IntegrationDotdigitalSettings>;
|
|
21181
|
+
/**
|
|
21182
|
+
* Inserts a list of resources.
|
|
21183
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21184
|
+
* @throws ApiError
|
|
21185
|
+
*/
|
|
21186
|
+
postList({ requestBody, }: {
|
|
21187
|
+
/**
|
|
21188
|
+
* The list of <typeparamref name="TObject" />.
|
|
21189
|
+
*/
|
|
21190
|
+
requestBody?: Array<IntegrationDotdigitalSettingsPost>;
|
|
21191
|
+
}): CancelablePromise<Array<IntegrationDotdigitalSettings>>;
|
|
21192
|
+
/**
|
|
21193
|
+
* Patches the resource.
|
|
21194
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21195
|
+
* @throws ApiError
|
|
21196
|
+
*/
|
|
21197
|
+
patchWithReferences({ requestBody, }: {
|
|
21198
|
+
/**
|
|
21199
|
+
* The <typeparamref name="TObject" /> model.
|
|
21200
|
+
*/
|
|
21201
|
+
requestBody?: IntegrationDotdigitalSettingsPatch;
|
|
21202
|
+
}): CancelablePromise<IntegrationDotdigitalSettings>;
|
|
21203
|
+
/**
|
|
21204
|
+
* Deletes the resource.
|
|
21205
|
+
* @returns any OK
|
|
21206
|
+
* @throws ApiError
|
|
21207
|
+
*/
|
|
21208
|
+
deleteByObject({ requestBody, }: {
|
|
21209
|
+
/**
|
|
21210
|
+
* The <typeparamref name="TObject" /> model.
|
|
21211
|
+
*/
|
|
21212
|
+
requestBody?: IntegrationDotdigitalSettings;
|
|
21213
|
+
}): CancelablePromise<any>;
|
|
21214
|
+
/**
|
|
21215
|
+
* Gets a list of resources.
|
|
21216
|
+
* @returns IntegrationDotdigitalSettingsPage OK
|
|
21217
|
+
* @throws ApiError
|
|
21218
|
+
*/
|
|
21219
|
+
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21220
|
+
/**
|
|
21221
|
+
* Gets or sets the page number for paged queries.
|
|
21222
|
+
*/
|
|
21223
|
+
pageNumber?: number;
|
|
21224
|
+
/**
|
|
21225
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21226
|
+
*/
|
|
21227
|
+
take?: number;
|
|
21228
|
+
/**
|
|
21229
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21230
|
+
*/
|
|
21231
|
+
skip?: number;
|
|
21232
|
+
/**
|
|
21233
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21234
|
+
*/
|
|
21235
|
+
limitListRequests?: boolean;
|
|
21236
|
+
/**
|
|
21237
|
+
* Gets or sets the Tenant Id.
|
|
21238
|
+
*/
|
|
21239
|
+
tenantId?: string;
|
|
21240
|
+
/**
|
|
21241
|
+
* Gets or sets the Modifed By Id.
|
|
21242
|
+
*/
|
|
21243
|
+
modifiedById?: string;
|
|
21244
|
+
/**
|
|
21245
|
+
* Gets or sets the Modifed By Ids.
|
|
21246
|
+
*/
|
|
21247
|
+
modifiedByIds?: Array<string>;
|
|
21248
|
+
/**
|
|
21249
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21250
|
+
*/
|
|
21251
|
+
dateCreatedGte?: string;
|
|
21252
|
+
/**
|
|
21253
|
+
* Gets or sets the Date Created less than equal to.
|
|
21254
|
+
*/
|
|
21255
|
+
dateCreatedLte?: string;
|
|
21256
|
+
/**
|
|
21257
|
+
* Gets or sets the queryable only is live status.
|
|
21258
|
+
*/
|
|
21259
|
+
isLive?: boolean;
|
|
21260
|
+
/**
|
|
21261
|
+
* Gets or sets the sort order direction.
|
|
21262
|
+
*/
|
|
21263
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21264
|
+
}): CancelablePromise<IntegrationDotdigitalSettingsPage>;
|
|
21265
|
+
/**
|
|
21266
|
+
* Deletes the resource.
|
|
21267
|
+
* @returns any OK
|
|
21268
|
+
* @throws ApiError
|
|
21269
|
+
*/
|
|
21270
|
+
deleteById({ id, }: {
|
|
21271
|
+
/**
|
|
21272
|
+
* The <typeparamref name="TObject" /> id.
|
|
21273
|
+
*/
|
|
21274
|
+
id: string;
|
|
21275
|
+
}): CancelablePromise<any>;
|
|
21276
|
+
/**
|
|
21277
|
+
* Gets the resource by its Id.
|
|
21278
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21279
|
+
* @throws ApiError
|
|
21280
|
+
*/
|
|
21281
|
+
getObject({ id, }: {
|
|
21282
|
+
/**
|
|
21283
|
+
* The <typeparamref name="TObject" /> id.
|
|
21284
|
+
*/
|
|
21285
|
+
id: string;
|
|
21286
|
+
}): CancelablePromise<IntegrationDotdigitalSettings>;
|
|
21287
|
+
/**
|
|
21288
|
+
* Returns a value indicating whether the resource is deletable.
|
|
21289
|
+
* @returns boolean OK
|
|
21290
|
+
* @throws ApiError
|
|
21291
|
+
*/
|
|
21292
|
+
canDelete({ id, }: {
|
|
21293
|
+
/**
|
|
21294
|
+
* The <typeparamref name="TObject" /> id.
|
|
21295
|
+
*/
|
|
21296
|
+
id: string;
|
|
21297
|
+
}): CancelablePromise<boolean>;
|
|
21298
|
+
/**
|
|
21299
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
21300
|
+
* @returns boolean OK
|
|
21301
|
+
* @throws ApiError
|
|
21302
|
+
*/
|
|
21303
|
+
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21304
|
+
/**
|
|
21305
|
+
* Gets or sets the page number for paged queries.
|
|
21306
|
+
*/
|
|
21307
|
+
pageNumber?: number;
|
|
21308
|
+
/**
|
|
21309
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21310
|
+
*/
|
|
21311
|
+
take?: number;
|
|
21312
|
+
/**
|
|
21313
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21314
|
+
*/
|
|
21315
|
+
skip?: number;
|
|
21316
|
+
/**
|
|
21317
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21318
|
+
*/
|
|
21319
|
+
limitListRequests?: boolean;
|
|
21320
|
+
/**
|
|
21321
|
+
* Gets or sets the Tenant Id.
|
|
21322
|
+
*/
|
|
21323
|
+
tenantId?: string;
|
|
21324
|
+
/**
|
|
21325
|
+
* Gets or sets the Modifed By Id.
|
|
21326
|
+
*/
|
|
21327
|
+
modifiedById?: string;
|
|
21328
|
+
/**
|
|
21329
|
+
* Gets or sets the Modifed By Ids.
|
|
21330
|
+
*/
|
|
21331
|
+
modifiedByIds?: Array<string>;
|
|
21332
|
+
/**
|
|
21333
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21334
|
+
*/
|
|
21335
|
+
dateCreatedGte?: string;
|
|
21336
|
+
/**
|
|
21337
|
+
* Gets or sets the Date Created less than equal to.
|
|
21338
|
+
*/
|
|
21339
|
+
dateCreatedLte?: string;
|
|
21340
|
+
/**
|
|
21341
|
+
* Gets or sets the queryable only is live status.
|
|
21342
|
+
*/
|
|
21343
|
+
isLive?: boolean;
|
|
21344
|
+
/**
|
|
21345
|
+
* Gets or sets the sort order direction.
|
|
21346
|
+
*/
|
|
21347
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21348
|
+
}): CancelablePromise<boolean>;
|
|
21349
|
+
/**
|
|
21350
|
+
* Returns the number of results in the database given the provided search params.
|
|
21351
|
+
* @returns number OK
|
|
21352
|
+
* @throws ApiError
|
|
21353
|
+
*/
|
|
21354
|
+
count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21355
|
+
/**
|
|
21356
|
+
* Gets or sets the page number for paged queries.
|
|
21357
|
+
*/
|
|
21358
|
+
pageNumber?: number;
|
|
21359
|
+
/**
|
|
21360
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21361
|
+
*/
|
|
21362
|
+
take?: number;
|
|
21363
|
+
/**
|
|
21364
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21365
|
+
*/
|
|
21366
|
+
skip?: number;
|
|
21367
|
+
/**
|
|
21368
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21369
|
+
*/
|
|
21370
|
+
limitListRequests?: boolean;
|
|
21371
|
+
/**
|
|
21372
|
+
* Gets or sets the Tenant Id.
|
|
21373
|
+
*/
|
|
21374
|
+
tenantId?: string;
|
|
21375
|
+
/**
|
|
21376
|
+
* Gets or sets the Modifed By Id.
|
|
21377
|
+
*/
|
|
21378
|
+
modifiedById?: string;
|
|
21379
|
+
/**
|
|
21380
|
+
* Gets or sets the Modifed By Ids.
|
|
21381
|
+
*/
|
|
21382
|
+
modifiedByIds?: Array<string>;
|
|
21383
|
+
/**
|
|
21384
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21385
|
+
*/
|
|
21386
|
+
dateCreatedGte?: string;
|
|
21387
|
+
/**
|
|
21388
|
+
* Gets or sets the Date Created less than equal to.
|
|
21389
|
+
*/
|
|
21390
|
+
dateCreatedLte?: string;
|
|
21391
|
+
/**
|
|
21392
|
+
* Gets or sets the queryable only is live status.
|
|
21393
|
+
*/
|
|
21394
|
+
isLive?: boolean;
|
|
21395
|
+
/**
|
|
21396
|
+
* Gets or sets the sort order direction.
|
|
21397
|
+
*/
|
|
21398
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21399
|
+
}): CancelablePromise<number>;
|
|
21400
|
+
/**
|
|
21401
|
+
* Gets a list of resources unpaged and without references.
|
|
21402
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
19407
21403
|
* @throws ApiError
|
|
19408
21404
|
*/
|
|
19409
|
-
getListWithoutReferences({
|
|
19410
|
-
/**
|
|
19411
|
-
* Gets or sets the queryable venue id.
|
|
19412
|
-
*/
|
|
19413
|
-
venueId?: string;
|
|
19414
|
-
/**
|
|
19415
|
-
* Gets or sets the queryable venue ids.
|
|
19416
|
-
*/
|
|
19417
|
-
venueIds?: Array<string>;
|
|
19418
|
-
/**
|
|
19419
|
-
* Gets or sets the queryable facility id.
|
|
19420
|
-
*/
|
|
19421
|
-
facilityId?: string;
|
|
19422
|
-
/**
|
|
19423
|
-
* Gets or sets the queryable facility ids.
|
|
19424
|
-
*/
|
|
19425
|
-
facilityIds?: Array<string>;
|
|
19426
|
-
/**
|
|
19427
|
-
* Gets or sets the queryable session id.
|
|
19428
|
-
*/
|
|
19429
|
-
sessionId?: string;
|
|
19430
|
-
/**
|
|
19431
|
-
* Gets or sets the queryable session ids.
|
|
19432
|
-
*/
|
|
19433
|
-
sessionIds?: Array<string>;
|
|
19434
|
-
/**
|
|
19435
|
-
* Gets or sets the queryable course id.
|
|
19436
|
-
*/
|
|
19437
|
-
courseId?: string;
|
|
19438
|
-
/**
|
|
19439
|
-
* Gets or sets the queryable course ids.
|
|
19440
|
-
*/
|
|
19441
|
-
courseIds?: Array<string>;
|
|
19442
|
-
/**
|
|
19443
|
-
* Gets or sets the queryable programme id.
|
|
19444
|
-
*/
|
|
19445
|
-
programmeId?: string;
|
|
19446
|
-
/**
|
|
19447
|
-
* Gets or sets the queryable programme ids.
|
|
19448
|
-
*/
|
|
19449
|
-
programmeIds?: Array<string>;
|
|
21405
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19450
21406
|
/**
|
|
19451
21407
|
* Gets or sets the page number for paged queries.
|
|
19452
21408
|
*/
|
|
@@ -19491,53 +21447,13 @@ declare class ImagesService {
|
|
|
19491
21447
|
* Gets or sets the sort order direction.
|
|
19492
21448
|
*/
|
|
19493
21449
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
19494
|
-
}): CancelablePromise<Array<
|
|
21450
|
+
}): CancelablePromise<Array<IntegrationDotdigitalSettings>>;
|
|
19495
21451
|
/**
|
|
19496
21452
|
* Gets a list of resources.
|
|
19497
|
-
* @returns
|
|
21453
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
19498
21454
|
* @throws ApiError
|
|
19499
21455
|
*/
|
|
19500
|
-
getListIdName({
|
|
19501
|
-
/**
|
|
19502
|
-
* Gets or sets the queryable venue id.
|
|
19503
|
-
*/
|
|
19504
|
-
venueId?: string;
|
|
19505
|
-
/**
|
|
19506
|
-
* Gets or sets the queryable venue ids.
|
|
19507
|
-
*/
|
|
19508
|
-
venueIds?: Array<string>;
|
|
19509
|
-
/**
|
|
19510
|
-
* Gets or sets the queryable facility id.
|
|
19511
|
-
*/
|
|
19512
|
-
facilityId?: string;
|
|
19513
|
-
/**
|
|
19514
|
-
* Gets or sets the queryable facility ids.
|
|
19515
|
-
*/
|
|
19516
|
-
facilityIds?: Array<string>;
|
|
19517
|
-
/**
|
|
19518
|
-
* Gets or sets the queryable session id.
|
|
19519
|
-
*/
|
|
19520
|
-
sessionId?: string;
|
|
19521
|
-
/**
|
|
19522
|
-
* Gets or sets the queryable session ids.
|
|
19523
|
-
*/
|
|
19524
|
-
sessionIds?: Array<string>;
|
|
19525
|
-
/**
|
|
19526
|
-
* Gets or sets the queryable course id.
|
|
19527
|
-
*/
|
|
19528
|
-
courseId?: string;
|
|
19529
|
-
/**
|
|
19530
|
-
* Gets or sets the queryable course ids.
|
|
19531
|
-
*/
|
|
19532
|
-
courseIds?: Array<string>;
|
|
19533
|
-
/**
|
|
19534
|
-
* Gets or sets the queryable programme id.
|
|
19535
|
-
*/
|
|
19536
|
-
programmeId?: string;
|
|
19537
|
-
/**
|
|
19538
|
-
* Gets or sets the queryable programme ids.
|
|
19539
|
-
*/
|
|
19540
|
-
programmeIds?: Array<string>;
|
|
21456
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19541
21457
|
/**
|
|
19542
21458
|
* Gets or sets the page number for paged queries.
|
|
19543
21459
|
*/
|
|
@@ -19582,13 +21498,20 @@ declare class ImagesService {
|
|
|
19582
21498
|
* Gets or sets the sort order direction.
|
|
19583
21499
|
*/
|
|
19584
21500
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
19585
|
-
}): CancelablePromise<Array<
|
|
21501
|
+
}): CancelablePromise<Array<IntegrationDotdigitalSettings>>;
|
|
19586
21502
|
}
|
|
19587
21503
|
|
|
19588
21504
|
/**
|
|
19589
|
-
*
|
|
21505
|
+
* Controls the integration type.
|
|
19590
21506
|
*/
|
|
19591
|
-
|
|
21507
|
+
declare enum IntegrationType {
|
|
21508
|
+
DOTDIGITAL_UPSERT_CONTACT = "DotdigitalUpsertContact"
|
|
21509
|
+
}
|
|
21510
|
+
|
|
21511
|
+
/**
|
|
21512
|
+
* Represents an item in the integration queue within the Reach application.
|
|
21513
|
+
*/
|
|
21514
|
+
type IntegrationQueue = {
|
|
19592
21515
|
/**
|
|
19593
21516
|
* Gets or sets the entities Id.
|
|
19594
21517
|
*/
|
|
@@ -19613,25 +21536,38 @@ type ImageUploadHistory = {
|
|
|
19613
21536
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
19614
21537
|
*/
|
|
19615
21538
|
isLive: boolean;
|
|
21539
|
+
integrationType?: IntegrationType;
|
|
19616
21540
|
/**
|
|
19617
|
-
* Gets or sets the
|
|
21541
|
+
* Gets or sets the model id (e.g. entity being synced).
|
|
19618
21542
|
*/
|
|
19619
|
-
|
|
21543
|
+
modelId?: string;
|
|
19620
21544
|
/**
|
|
19621
|
-
* Gets or sets the
|
|
21545
|
+
* Gets or sets a value indicating whether the item has been processed.
|
|
19622
21546
|
*/
|
|
19623
|
-
|
|
21547
|
+
processed?: boolean | null;
|
|
21548
|
+
/**
|
|
21549
|
+
* Gets or sets a value indicating whether the last attempt errored.
|
|
21550
|
+
*/
|
|
21551
|
+
errored?: boolean | null;
|
|
21552
|
+
/**
|
|
21553
|
+
* Gets or sets the number of processing attempts.
|
|
21554
|
+
*/
|
|
21555
|
+
attemptCount?: number;
|
|
21556
|
+
/**
|
|
21557
|
+
* Gets or sets the last error message if any.
|
|
21558
|
+
*/
|
|
21559
|
+
lastError?: string | null;
|
|
19624
21560
|
};
|
|
19625
21561
|
|
|
19626
|
-
type
|
|
21562
|
+
type IntegrationQueuePage = {
|
|
19627
21563
|
pagination: Pagination;
|
|
19628
|
-
readonly items: Array<
|
|
21564
|
+
readonly items: Array<IntegrationQueue>;
|
|
19629
21565
|
};
|
|
19630
21566
|
|
|
19631
21567
|
/**
|
|
19632
|
-
*
|
|
21568
|
+
* Patch model for integration queue updates.
|
|
19633
21569
|
*/
|
|
19634
|
-
type
|
|
21570
|
+
type IntegrationQueuePatch = {
|
|
19635
21571
|
/**
|
|
19636
21572
|
* Gets or sets the tenant Id.
|
|
19637
21573
|
*/
|
|
@@ -19643,62 +21579,68 @@ type ImageUploadHistoryPatch = {
|
|
|
19643
21579
|
};
|
|
19644
21580
|
|
|
19645
21581
|
/**
|
|
19646
|
-
* Post model for
|
|
21582
|
+
* Post model for integration queue inserts.
|
|
19647
21583
|
*/
|
|
19648
|
-
type
|
|
21584
|
+
type IntegrationQueuePost = {
|
|
19649
21585
|
/**
|
|
19650
21586
|
* Gets or sets the tenant Id.
|
|
19651
21587
|
*/
|
|
19652
21588
|
tenantId: string;
|
|
19653
21589
|
};
|
|
19654
21590
|
|
|
19655
|
-
declare class
|
|
21591
|
+
declare class IntegrationQueueService {
|
|
19656
21592
|
readonly httpRequest: BaseHttpRequest;
|
|
19657
21593
|
constructor(httpRequest: BaseHttpRequest);
|
|
21594
|
+
/**
|
|
21595
|
+
* Processes the OA intermediates table.
|
|
21596
|
+
* @returns number OK
|
|
21597
|
+
* @throws ApiError
|
|
21598
|
+
*/
|
|
21599
|
+
process(): CancelablePromise<number>;
|
|
19658
21600
|
/**
|
|
19659
21601
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
19660
|
-
* @returns
|
|
21602
|
+
* @returns IntegrationQueue OK
|
|
19661
21603
|
* @throws ApiError
|
|
19662
21604
|
*/
|
|
19663
21605
|
post({ requestBody, }: {
|
|
19664
21606
|
/**
|
|
19665
21607
|
* The <typeparamref name="TObject" /> model.
|
|
19666
21608
|
*/
|
|
19667
|
-
requestBody?:
|
|
19668
|
-
}): CancelablePromise<
|
|
21609
|
+
requestBody?: IntegrationQueuePost;
|
|
21610
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
19669
21611
|
/**
|
|
19670
21612
|
* Patches the resource.
|
|
19671
|
-
* @returns
|
|
21613
|
+
* @returns IntegrationQueue OK
|
|
19672
21614
|
* @throws ApiError
|
|
19673
21615
|
*/
|
|
19674
21616
|
patch({ requestBody, }: {
|
|
19675
21617
|
/**
|
|
19676
21618
|
* The <typeparamref name="TObject" /> model.
|
|
19677
21619
|
*/
|
|
19678
|
-
requestBody?:
|
|
19679
|
-
}): CancelablePromise<
|
|
21620
|
+
requestBody?: IntegrationQueuePatch;
|
|
21621
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
19680
21622
|
/**
|
|
19681
21623
|
* Inserts a list of resources.
|
|
19682
|
-
* @returns
|
|
21624
|
+
* @returns IntegrationQueue OK
|
|
19683
21625
|
* @throws ApiError
|
|
19684
21626
|
*/
|
|
19685
21627
|
postList({ requestBody, }: {
|
|
19686
21628
|
/**
|
|
19687
21629
|
* The list of <typeparamref name="TObject" />.
|
|
19688
21630
|
*/
|
|
19689
|
-
requestBody?: Array<
|
|
19690
|
-
}): CancelablePromise<Array<
|
|
21631
|
+
requestBody?: Array<IntegrationQueuePost>;
|
|
21632
|
+
}): CancelablePromise<Array<IntegrationQueue>>;
|
|
19691
21633
|
/**
|
|
19692
21634
|
* Patches the resource.
|
|
19693
|
-
* @returns
|
|
21635
|
+
* @returns IntegrationQueue OK
|
|
19694
21636
|
* @throws ApiError
|
|
19695
21637
|
*/
|
|
19696
21638
|
patchWithReferences({ requestBody, }: {
|
|
19697
21639
|
/**
|
|
19698
21640
|
* The <typeparamref name="TObject" /> model.
|
|
19699
21641
|
*/
|
|
19700
|
-
requestBody?:
|
|
19701
|
-
}): CancelablePromise<
|
|
21642
|
+
requestBody?: IntegrationQueuePatch;
|
|
21643
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
19702
21644
|
/**
|
|
19703
21645
|
* Deletes the resource.
|
|
19704
21646
|
* @returns any OK
|
|
@@ -19708,22 +21650,22 @@ declare class ImageUploadHistoryService {
|
|
|
19708
21650
|
/**
|
|
19709
21651
|
* The <typeparamref name="TObject" /> model.
|
|
19710
21652
|
*/
|
|
19711
|
-
requestBody?:
|
|
21653
|
+
requestBody?: IntegrationQueue;
|
|
19712
21654
|
}): CancelablePromise<any>;
|
|
19713
21655
|
/**
|
|
19714
21656
|
* Gets a list of resources.
|
|
19715
|
-
* @returns
|
|
21657
|
+
* @returns IntegrationQueuePage OK
|
|
19716
21658
|
* @throws ApiError
|
|
19717
21659
|
*/
|
|
19718
|
-
getPage({
|
|
21660
|
+
getPage({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19719
21661
|
/**
|
|
19720
|
-
* Gets or sets the queryable
|
|
21662
|
+
* Gets or sets the queryable processed status.
|
|
19721
21663
|
*/
|
|
19722
|
-
|
|
21664
|
+
processed?: boolean;
|
|
19723
21665
|
/**
|
|
19724
|
-
* Gets or sets the queryable
|
|
21666
|
+
* Gets or sets the queryable errored status.
|
|
19725
21667
|
*/
|
|
19726
|
-
|
|
21668
|
+
errored?: boolean;
|
|
19727
21669
|
/**
|
|
19728
21670
|
* Gets or sets the page number for paged queries.
|
|
19729
21671
|
*/
|
|
@@ -19768,7 +21710,7 @@ declare class ImageUploadHistoryService {
|
|
|
19768
21710
|
* Gets or sets the sort order direction.
|
|
19769
21711
|
*/
|
|
19770
21712
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
19771
|
-
}): CancelablePromise<
|
|
21713
|
+
}): CancelablePromise<IntegrationQueuePage>;
|
|
19772
21714
|
/**
|
|
19773
21715
|
* Deletes the resource.
|
|
19774
21716
|
* @returns any OK
|
|
@@ -19782,7 +21724,7 @@ declare class ImageUploadHistoryService {
|
|
|
19782
21724
|
}): CancelablePromise<any>;
|
|
19783
21725
|
/**
|
|
19784
21726
|
* Gets the resource by its Id.
|
|
19785
|
-
* @returns
|
|
21727
|
+
* @returns IntegrationQueue OK
|
|
19786
21728
|
* @throws ApiError
|
|
19787
21729
|
*/
|
|
19788
21730
|
getObject({ id, }: {
|
|
@@ -19790,7 +21732,7 @@ declare class ImageUploadHistoryService {
|
|
|
19790
21732
|
* The <typeparamref name="TObject" /> id.
|
|
19791
21733
|
*/
|
|
19792
21734
|
id: string;
|
|
19793
|
-
}): CancelablePromise<
|
|
21735
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
19794
21736
|
/**
|
|
19795
21737
|
* Returns a value indicating whether the resource is deletable.
|
|
19796
21738
|
* @returns boolean OK
|
|
@@ -19807,15 +21749,15 @@ declare class ImageUploadHistoryService {
|
|
|
19807
21749
|
* @returns boolean OK
|
|
19808
21750
|
* @throws ApiError
|
|
19809
21751
|
*/
|
|
19810
|
-
exists({
|
|
21752
|
+
exists({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19811
21753
|
/**
|
|
19812
|
-
* Gets or sets the queryable
|
|
21754
|
+
* Gets or sets the queryable processed status.
|
|
19813
21755
|
*/
|
|
19814
|
-
|
|
21756
|
+
processed?: boolean;
|
|
19815
21757
|
/**
|
|
19816
|
-
* Gets or sets the queryable
|
|
21758
|
+
* Gets or sets the queryable errored status.
|
|
19817
21759
|
*/
|
|
19818
|
-
|
|
21760
|
+
errored?: boolean;
|
|
19819
21761
|
/**
|
|
19820
21762
|
* Gets or sets the page number for paged queries.
|
|
19821
21763
|
*/
|
|
@@ -19866,15 +21808,15 @@ declare class ImageUploadHistoryService {
|
|
|
19866
21808
|
* @returns number OK
|
|
19867
21809
|
* @throws ApiError
|
|
19868
21810
|
*/
|
|
19869
|
-
count({
|
|
21811
|
+
count({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19870
21812
|
/**
|
|
19871
|
-
* Gets or sets the queryable
|
|
21813
|
+
* Gets or sets the queryable processed status.
|
|
19872
21814
|
*/
|
|
19873
|
-
|
|
21815
|
+
processed?: boolean;
|
|
19874
21816
|
/**
|
|
19875
|
-
* Gets or sets the queryable
|
|
21817
|
+
* Gets or sets the queryable errored status.
|
|
19876
21818
|
*/
|
|
19877
|
-
|
|
21819
|
+
errored?: boolean;
|
|
19878
21820
|
/**
|
|
19879
21821
|
* Gets or sets the page number for paged queries.
|
|
19880
21822
|
*/
|
|
@@ -19922,18 +21864,18 @@ declare class ImageUploadHistoryService {
|
|
|
19922
21864
|
}): CancelablePromise<number>;
|
|
19923
21865
|
/**
|
|
19924
21866
|
* Gets a list of resources unpaged and without references.
|
|
19925
|
-
* @returns
|
|
21867
|
+
* @returns IntegrationQueue OK
|
|
19926
21868
|
* @throws ApiError
|
|
19927
21869
|
*/
|
|
19928
|
-
getListWithoutReferences({
|
|
21870
|
+
getListWithoutReferences({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19929
21871
|
/**
|
|
19930
|
-
* Gets or sets the queryable
|
|
21872
|
+
* Gets or sets the queryable processed status.
|
|
19931
21873
|
*/
|
|
19932
|
-
|
|
21874
|
+
processed?: boolean;
|
|
19933
21875
|
/**
|
|
19934
|
-
* Gets or sets the queryable
|
|
21876
|
+
* Gets or sets the queryable errored status.
|
|
19935
21877
|
*/
|
|
19936
|
-
|
|
21878
|
+
errored?: boolean;
|
|
19937
21879
|
/**
|
|
19938
21880
|
* Gets or sets the page number for paged queries.
|
|
19939
21881
|
*/
|
|
@@ -19978,21 +21920,21 @@ declare class ImageUploadHistoryService {
|
|
|
19978
21920
|
* Gets or sets the sort order direction.
|
|
19979
21921
|
*/
|
|
19980
21922
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
19981
|
-
}): CancelablePromise<Array<
|
|
21923
|
+
}): CancelablePromise<Array<IntegrationQueue>>;
|
|
19982
21924
|
/**
|
|
19983
21925
|
* Gets a list of resources.
|
|
19984
|
-
* @returns
|
|
21926
|
+
* @returns IntegrationQueue OK
|
|
19985
21927
|
* @throws ApiError
|
|
19986
21928
|
*/
|
|
19987
|
-
getListIdName({
|
|
21929
|
+
getListIdName({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19988
21930
|
/**
|
|
19989
|
-
* Gets or sets the queryable
|
|
21931
|
+
* Gets or sets the queryable processed status.
|
|
19990
21932
|
*/
|
|
19991
|
-
|
|
21933
|
+
processed?: boolean;
|
|
19992
21934
|
/**
|
|
19993
|
-
* Gets or sets the queryable
|
|
21935
|
+
* Gets or sets the queryable errored status.
|
|
19994
21936
|
*/
|
|
19995
|
-
|
|
21937
|
+
errored?: boolean;
|
|
19996
21938
|
/**
|
|
19997
21939
|
* Gets or sets the page number for paged queries.
|
|
19998
21940
|
*/
|
|
@@ -20037,7 +21979,7 @@ declare class ImageUploadHistoryService {
|
|
|
20037
21979
|
* Gets or sets the sort order direction.
|
|
20038
21980
|
*/
|
|
20039
21981
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
20040
|
-
}): CancelablePromise<Array<
|
|
21982
|
+
}): CancelablePromise<Array<IntegrationQueue>>;
|
|
20041
21983
|
}
|
|
20042
21984
|
|
|
20043
21985
|
/**
|
|
@@ -25464,6 +27406,10 @@ type OrderItemReport = {
|
|
|
25464
27406
|
* Gets or sets the activity name.
|
|
25465
27407
|
*/
|
|
25466
27408
|
activityName?: string | null;
|
|
27409
|
+
/**
|
|
27410
|
+
* Gets or sets the provider name.
|
|
27411
|
+
*/
|
|
27412
|
+
providerName?: string | null;
|
|
25467
27413
|
/**
|
|
25468
27414
|
* Gets or sets the venue name.
|
|
25469
27415
|
*/
|
|
@@ -32561,7 +34507,7 @@ declare class PublicCalendarService {
|
|
|
32561
34507
|
* @returns any OK
|
|
32562
34508
|
* @throws ApiError
|
|
32563
34509
|
*/
|
|
32564
|
-
getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, }: {
|
|
34510
|
+
getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, providerId, }: {
|
|
32565
34511
|
/**
|
|
32566
34512
|
* The tenants subdomain.
|
|
32567
34513
|
*/
|
|
@@ -32578,6 +34524,10 @@ declare class PublicCalendarService {
|
|
|
32578
34524
|
* Gets or sets the programme Id for use in a query search.
|
|
32579
34525
|
*/
|
|
32580
34526
|
programmeId?: string;
|
|
34527
|
+
/**
|
|
34528
|
+
* Gets or sets the provider Id for use in a query search.
|
|
34529
|
+
*/
|
|
34530
|
+
providerId?: string;
|
|
32581
34531
|
}): CancelablePromise<any>;
|
|
32582
34532
|
}
|
|
32583
34533
|
|
|
@@ -37329,7 +39279,7 @@ declare class PublicScheduledSessionsService {
|
|
|
37329
39279
|
* @returns ScheduledSessionPage OK
|
|
37330
39280
|
* @throws ApiError
|
|
37331
39281
|
*/
|
|
37332
|
-
getPage({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39282
|
+
getPage({ xTenantSubdomain, ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37333
39283
|
xTenantSubdomain?: string;
|
|
37334
39284
|
/**
|
|
37335
39285
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -37343,6 +39293,10 @@ declare class PublicScheduledSessionsService {
|
|
|
37343
39293
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
37344
39294
|
*/
|
|
37345
39295
|
programmeId?: string;
|
|
39296
|
+
/**
|
|
39297
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
39298
|
+
*/
|
|
39299
|
+
providerId?: string;
|
|
37346
39300
|
/**
|
|
37347
39301
|
* Gets or sets the queryable scheduled session facility Id.
|
|
37348
39302
|
*/
|
|
@@ -37553,7 +39507,7 @@ declare class PublicScheduledSessionsService {
|
|
|
37553
39507
|
* @returns boolean OK
|
|
37554
39508
|
* @throws ApiError
|
|
37555
39509
|
*/
|
|
37556
|
-
exists({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39510
|
+
exists({ xTenantSubdomain, ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37557
39511
|
/**
|
|
37558
39512
|
* The tenants subdomain.
|
|
37559
39513
|
*/
|
|
@@ -37570,6 +39524,10 @@ declare class PublicScheduledSessionsService {
|
|
|
37570
39524
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
37571
39525
|
*/
|
|
37572
39526
|
programmeId?: string;
|
|
39527
|
+
/**
|
|
39528
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
39529
|
+
*/
|
|
39530
|
+
providerId?: string;
|
|
37573
39531
|
/**
|
|
37574
39532
|
* Gets or sets the queryable scheduled session facility Id.
|
|
37575
39533
|
*/
|
|
@@ -38138,7 +40096,7 @@ declare class PublicSessionsService {
|
|
|
38138
40096
|
* @returns any OK
|
|
38139
40097
|
* @throws ApiError
|
|
38140
40098
|
*/
|
|
38141
|
-
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40099
|
+
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38142
40100
|
/**
|
|
38143
40101
|
* The tenants subdomain.
|
|
38144
40102
|
*/
|
|
@@ -38155,6 +40113,10 @@ declare class PublicSessionsService {
|
|
|
38155
40113
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
38156
40114
|
*/
|
|
38157
40115
|
programmeId?: string;
|
|
40116
|
+
/**
|
|
40117
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
40118
|
+
*/
|
|
40119
|
+
providerId?: string;
|
|
38158
40120
|
/**
|
|
38159
40121
|
* Gets or sets the queryable scheduled session facility Id.
|
|
38160
40122
|
*/
|
|
@@ -40982,7 +42944,7 @@ declare class PublicVenuesService {
|
|
|
40982
42944
|
* @returns VenuePage OK
|
|
40983
42945
|
* @throws ApiError
|
|
40984
42946
|
*/
|
|
40985
|
-
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
42947
|
+
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40986
42948
|
xTenantSubdomain?: string;
|
|
40987
42949
|
/**
|
|
40988
42950
|
* Gets or sets the queryable venue ids.
|
|
@@ -41072,6 +43034,14 @@ declare class PublicVenuesService {
|
|
|
41072
43034
|
* Gets or sets the venue type ids.
|
|
41073
43035
|
*/
|
|
41074
43036
|
venueTypeIds?: Array<string>;
|
|
43037
|
+
/**
|
|
43038
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
43039
|
+
*/
|
|
43040
|
+
providerId?: string;
|
|
43041
|
+
/**
|
|
43042
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
43043
|
+
*/
|
|
43044
|
+
providerIds?: Array<string>;
|
|
41075
43045
|
/**
|
|
41076
43046
|
* Gets or sets the page number for paged queries.
|
|
41077
43047
|
*/
|
|
@@ -41137,7 +43107,7 @@ declare class PublicVenuesService {
|
|
|
41137
43107
|
* @returns VenuePage OK
|
|
41138
43108
|
* @throws ApiError
|
|
41139
43109
|
*/
|
|
41140
|
-
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43110
|
+
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41141
43111
|
/**
|
|
41142
43112
|
* Gets or sets the queryable venue ids.
|
|
41143
43113
|
*/
|
|
@@ -41226,6 +43196,14 @@ declare class PublicVenuesService {
|
|
|
41226
43196
|
* Gets or sets the venue type ids.
|
|
41227
43197
|
*/
|
|
41228
43198
|
venueTypeIds?: Array<string>;
|
|
43199
|
+
/**
|
|
43200
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
43201
|
+
*/
|
|
43202
|
+
providerId?: string;
|
|
43203
|
+
/**
|
|
43204
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
43205
|
+
*/
|
|
43206
|
+
providerIds?: Array<string>;
|
|
41229
43207
|
/**
|
|
41230
43208
|
* Gets or sets the page number for paged queries.
|
|
41231
43209
|
*/
|
|
@@ -41276,7 +43254,7 @@ declare class PublicVenuesService {
|
|
|
41276
43254
|
* @returns VenuePage OK
|
|
41277
43255
|
* @throws ApiError
|
|
41278
43256
|
*/
|
|
41279
|
-
getNetworkPageOptimized({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43257
|
+
getNetworkPageOptimized({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41280
43258
|
/**
|
|
41281
43259
|
* Gets or sets the queryable venue ids.
|
|
41282
43260
|
*/
|
|
@@ -41365,6 +43343,14 @@ declare class PublicVenuesService {
|
|
|
41365
43343
|
* Gets or sets the venue type ids.
|
|
41366
43344
|
*/
|
|
41367
43345
|
venueTypeIds?: Array<string>;
|
|
43346
|
+
/**
|
|
43347
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
43348
|
+
*/
|
|
43349
|
+
providerId?: string;
|
|
43350
|
+
/**
|
|
43351
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
43352
|
+
*/
|
|
43353
|
+
providerIds?: Array<string>;
|
|
41368
43354
|
/**
|
|
41369
43355
|
* Gets or sets the page number for paged queries.
|
|
41370
43356
|
*/
|
|
@@ -41475,7 +43461,7 @@ declare class PublicVenuesService {
|
|
|
41475
43461
|
* @returns boolean OK
|
|
41476
43462
|
* @throws ApiError
|
|
41477
43463
|
*/
|
|
41478
|
-
exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43464
|
+
exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41479
43465
|
/**
|
|
41480
43466
|
* The tenants subdomain.
|
|
41481
43467
|
*/
|
|
@@ -41568,6 +43554,14 @@ declare class PublicVenuesService {
|
|
|
41568
43554
|
* Gets or sets the venue type ids.
|
|
41569
43555
|
*/
|
|
41570
43556
|
venueTypeIds?: Array<string>;
|
|
43557
|
+
/**
|
|
43558
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
43559
|
+
*/
|
|
43560
|
+
providerId?: string;
|
|
43561
|
+
/**
|
|
43562
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
43563
|
+
*/
|
|
43564
|
+
providerIds?: Array<string>;
|
|
41571
43565
|
/**
|
|
41572
43566
|
* Gets or sets the page number for paged queries.
|
|
41573
43567
|
*/
|
|
@@ -44470,7 +46464,7 @@ declare class ScheduledSessionsService {
|
|
|
44470
46464
|
* @returns ScheduledSessionPage OK
|
|
44471
46465
|
* @throws ApiError
|
|
44472
46466
|
*/
|
|
44473
|
-
getPage({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46467
|
+
getPage({ ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
44474
46468
|
/**
|
|
44475
46469
|
* Gets or sets the queryable scheduled session ids.
|
|
44476
46470
|
*/
|
|
@@ -44483,6 +46477,10 @@ declare class ScheduledSessionsService {
|
|
|
44483
46477
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44484
46478
|
*/
|
|
44485
46479
|
programmeId?: string;
|
|
46480
|
+
/**
|
|
46481
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
46482
|
+
*/
|
|
46483
|
+
providerId?: string;
|
|
44486
46484
|
/**
|
|
44487
46485
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44488
46486
|
*/
|
|
@@ -44666,7 +46664,7 @@ declare class ScheduledSessionsService {
|
|
|
44666
46664
|
* @returns boolean OK
|
|
44667
46665
|
* @throws ApiError
|
|
44668
46666
|
*/
|
|
44669
|
-
exists({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46667
|
+
exists({ ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
44670
46668
|
/**
|
|
44671
46669
|
* Gets or sets the queryable scheduled session ids.
|
|
44672
46670
|
*/
|
|
@@ -44679,6 +46677,10 @@ declare class ScheduledSessionsService {
|
|
|
44679
46677
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44680
46678
|
*/
|
|
44681
46679
|
programmeId?: string;
|
|
46680
|
+
/**
|
|
46681
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
46682
|
+
*/
|
|
46683
|
+
providerId?: string;
|
|
44682
46684
|
/**
|
|
44683
46685
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44684
46686
|
*/
|
|
@@ -44829,7 +46831,7 @@ declare class ScheduledSessionsService {
|
|
|
44829
46831
|
* @returns number OK
|
|
44830
46832
|
* @throws ApiError
|
|
44831
46833
|
*/
|
|
44832
|
-
count({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46834
|
+
count({ ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
44833
46835
|
/**
|
|
44834
46836
|
* Gets or sets the queryable scheduled session ids.
|
|
44835
46837
|
*/
|
|
@@ -44842,6 +46844,10 @@ declare class ScheduledSessionsService {
|
|
|
44842
46844
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44843
46845
|
*/
|
|
44844
46846
|
programmeId?: string;
|
|
46847
|
+
/**
|
|
46848
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
46849
|
+
*/
|
|
46850
|
+
providerId?: string;
|
|
44845
46851
|
/**
|
|
44846
46852
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44847
46853
|
*/
|
|
@@ -44992,7 +46998,7 @@ declare class ScheduledSessionsService {
|
|
|
44992
46998
|
* @returns ScheduledSession OK
|
|
44993
46999
|
* @throws ApiError
|
|
44994
47000
|
*/
|
|
44995
|
-
getListWithoutReferences({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
47001
|
+
getListWithoutReferences({ ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
44996
47002
|
/**
|
|
44997
47003
|
* Gets or sets the queryable scheduled session ids.
|
|
44998
47004
|
*/
|
|
@@ -45005,6 +47011,10 @@ declare class ScheduledSessionsService {
|
|
|
45005
47011
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
45006
47012
|
*/
|
|
45007
47013
|
programmeId?: string;
|
|
47014
|
+
/**
|
|
47015
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
47016
|
+
*/
|
|
47017
|
+
providerId?: string;
|
|
45008
47018
|
/**
|
|
45009
47019
|
* Gets or sets the queryable scheduled session facility Id.
|
|
45010
47020
|
*/
|
|
@@ -45155,7 +47165,7 @@ declare class ScheduledSessionsService {
|
|
|
45155
47165
|
* @returns ScheduledSession OK
|
|
45156
47166
|
* @throws ApiError
|
|
45157
47167
|
*/
|
|
45158
|
-
getListIdName({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
47168
|
+
getListIdName({ ids, venueId, programmeId, providerId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, excludePrivate, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
45159
47169
|
/**
|
|
45160
47170
|
* Gets or sets the queryable scheduled session ids.
|
|
45161
47171
|
*/
|
|
@@ -45168,6 +47178,10 @@ declare class ScheduledSessionsService {
|
|
|
45168
47178
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
45169
47179
|
*/
|
|
45170
47180
|
programmeId?: string;
|
|
47181
|
+
/**
|
|
47182
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
47183
|
+
*/
|
|
47184
|
+
providerId?: string;
|
|
45171
47185
|
/**
|
|
45172
47186
|
* Gets or sets the queryable scheduled session facility Id.
|
|
45173
47187
|
*/
|
|
@@ -60746,7 +62760,7 @@ declare class VenuesService {
|
|
|
60746
62760
|
* @returns VenuePage OK
|
|
60747
62761
|
* @throws ApiError
|
|
60748
62762
|
*/
|
|
60749
|
-
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62763
|
+
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60750
62764
|
/**
|
|
60751
62765
|
* Gets or sets the queryable venue ids.
|
|
60752
62766
|
*/
|
|
@@ -60835,6 +62849,14 @@ declare class VenuesService {
|
|
|
60835
62849
|
* Gets or sets the venue type ids.
|
|
60836
62850
|
*/
|
|
60837
62851
|
venueTypeIds?: Array<string>;
|
|
62852
|
+
/**
|
|
62853
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
62854
|
+
*/
|
|
62855
|
+
providerId?: string;
|
|
62856
|
+
/**
|
|
62857
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
62858
|
+
*/
|
|
62859
|
+
providerIds?: Array<string>;
|
|
60838
62860
|
/**
|
|
60839
62861
|
* Gets or sets the page number for paged queries.
|
|
60840
62862
|
*/
|
|
@@ -60918,7 +62940,7 @@ declare class VenuesService {
|
|
|
60918
62940
|
* @returns boolean OK
|
|
60919
62941
|
* @throws ApiError
|
|
60920
62942
|
*/
|
|
60921
|
-
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62943
|
+
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60922
62944
|
/**
|
|
60923
62945
|
* Gets or sets the queryable venue ids.
|
|
60924
62946
|
*/
|
|
@@ -61007,6 +63029,14 @@ declare class VenuesService {
|
|
|
61007
63029
|
* Gets or sets the venue type ids.
|
|
61008
63030
|
*/
|
|
61009
63031
|
venueTypeIds?: Array<string>;
|
|
63032
|
+
/**
|
|
63033
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
63034
|
+
*/
|
|
63035
|
+
providerId?: string;
|
|
63036
|
+
/**
|
|
63037
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
63038
|
+
*/
|
|
63039
|
+
providerIds?: Array<string>;
|
|
61010
63040
|
/**
|
|
61011
63041
|
* Gets or sets the page number for paged queries.
|
|
61012
63042
|
*/
|
|
@@ -61057,7 +63087,7 @@ declare class VenuesService {
|
|
|
61057
63087
|
* @returns number OK
|
|
61058
63088
|
* @throws ApiError
|
|
61059
63089
|
*/
|
|
61060
|
-
count({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
63090
|
+
count({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61061
63091
|
/**
|
|
61062
63092
|
* Gets or sets the queryable venue ids.
|
|
61063
63093
|
*/
|
|
@@ -61146,6 +63176,14 @@ declare class VenuesService {
|
|
|
61146
63176
|
* Gets or sets the venue type ids.
|
|
61147
63177
|
*/
|
|
61148
63178
|
venueTypeIds?: Array<string>;
|
|
63179
|
+
/**
|
|
63180
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
63181
|
+
*/
|
|
63182
|
+
providerId?: string;
|
|
63183
|
+
/**
|
|
63184
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
63185
|
+
*/
|
|
63186
|
+
providerIds?: Array<string>;
|
|
61149
63187
|
/**
|
|
61150
63188
|
* Gets or sets the page number for paged queries.
|
|
61151
63189
|
*/
|
|
@@ -61196,7 +63234,7 @@ declare class VenuesService {
|
|
|
61196
63234
|
* @returns Venue OK
|
|
61197
63235
|
* @throws ApiError
|
|
61198
63236
|
*/
|
|
61199
|
-
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
63237
|
+
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61200
63238
|
/**
|
|
61201
63239
|
* Gets or sets the queryable venue ids.
|
|
61202
63240
|
*/
|
|
@@ -61285,6 +63323,14 @@ declare class VenuesService {
|
|
|
61285
63323
|
* Gets or sets the venue type ids.
|
|
61286
63324
|
*/
|
|
61287
63325
|
venueTypeIds?: Array<string>;
|
|
63326
|
+
/**
|
|
63327
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
63328
|
+
*/
|
|
63329
|
+
providerId?: string;
|
|
63330
|
+
/**
|
|
63331
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
63332
|
+
*/
|
|
63333
|
+
providerIds?: Array<string>;
|
|
61288
63334
|
/**
|
|
61289
63335
|
* Gets or sets the page number for paged queries.
|
|
61290
63336
|
*/
|
|
@@ -61335,7 +63381,7 @@ declare class VenuesService {
|
|
|
61335
63381
|
* @returns Venue OK
|
|
61336
63382
|
* @throws ApiError
|
|
61337
63383
|
*/
|
|
61338
|
-
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
63384
|
+
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, providerId, providerIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61339
63385
|
/**
|
|
61340
63386
|
* Gets or sets the queryable venue ids.
|
|
61341
63387
|
*/
|
|
@@ -61424,6 +63470,14 @@ declare class VenuesService {
|
|
|
61424
63470
|
* Gets or sets the venue type ids.
|
|
61425
63471
|
*/
|
|
61426
63472
|
venueTypeIds?: Array<string>;
|
|
63473
|
+
/**
|
|
63474
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
63475
|
+
*/
|
|
63476
|
+
providerId?: string;
|
|
63477
|
+
/**
|
|
63478
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
63479
|
+
*/
|
|
63480
|
+
providerIds?: Array<string>;
|
|
61427
63481
|
/**
|
|
61428
63482
|
* Gets or sets the page number for paged queries.
|
|
61429
63483
|
*/
|
|
@@ -65646,6 +67700,7 @@ declare class ApiClient {
|
|
|
65646
67700
|
readonly dealActivities: DealActivitiesService;
|
|
65647
67701
|
readonly deals: DealsService;
|
|
65648
67702
|
readonly discountCodeUses: DiscountCodeUsesService;
|
|
67703
|
+
readonly dotdigital: DotdigitalService;
|
|
65649
67704
|
readonly emailReminderSchedules: EmailReminderSchedulesService;
|
|
65650
67705
|
readonly emailSettings: EmailSettingsService;
|
|
65651
67706
|
readonly endUserIdentitySecureToken: EndUserIdentitySecureTokenService;
|
|
@@ -65661,6 +67716,10 @@ declare class ApiClient {
|
|
|
65661
67716
|
readonly imageLibraryImage: ImageLibraryImageService;
|
|
65662
67717
|
readonly images: ImagesService;
|
|
65663
67718
|
readonly imageUploadHistory: ImageUploadHistoryService;
|
|
67719
|
+
readonly integrationDotdigitalFieldMap: IntegrationDotdigitalFieldMapService;
|
|
67720
|
+
readonly integrationDotdigitalLog: IntegrationDotdigitalLogService;
|
|
67721
|
+
readonly integrationDotDigitalSettings: IntegrationDotDigitalSettingsService;
|
|
67722
|
+
readonly integrationQueue: IntegrationQueueService;
|
|
65664
67723
|
readonly leasing: LeasingService;
|
|
65665
67724
|
readonly locationsReport: LocationsReportService;
|
|
65666
67725
|
readonly loqatePlaces: LoqatePlacesService;
|
|
@@ -65882,4 +67941,4 @@ type ValidationResultModel = {
|
|
|
65882
67941
|
readonly errors?: Array<ValidationError> | null;
|
|
65883
67942
|
};
|
|
65884
67943
|
|
|
65885
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, 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, SortIndex, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService };
|
|
67944
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, 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, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, 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, SortIndex, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService };
|