reach-api-sdk 1.0.209 → 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 +2742 -647
- package/dist/reach-sdk.js +2636 -935
- package/package.json +1 -1
- package/src/apiClient.ts +15 -0
- package/src/definition/swagger.yaml +7106 -1465
- package/src/index.ts +28 -0
- package/src/models/AddressBookItem.ts +26 -0
- package/src/models/AddressBooksRequest.ts +22 -0
- package/src/models/Customer.ts +0 -4
- 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/OrderItem.ts +4 -0
- package/src/models/OrderItemReport.ts +4 -0
- package/src/services/CourseSessionsService.ts +30 -0
- package/src/services/CustomersService.ts +42 -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/PublicCustomersService.ts +12 -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
|
@@ -1181,10 +1181,6 @@ type Customer = {
|
|
|
1181
1181
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
1182
1182
|
*/
|
|
1183
1183
|
isLive: boolean;
|
|
1184
|
-
/**
|
|
1185
|
-
* Gets or sets the customer provider id.
|
|
1186
|
-
*/
|
|
1187
|
-
providerId?: string | null;
|
|
1188
1184
|
type?: CustomerType;
|
|
1189
1185
|
/**
|
|
1190
1186
|
* Gets or sets the first name.
|
|
@@ -4615,6 +4611,10 @@ type OrderItem = {
|
|
|
4615
4611
|
* Gets the venue id.
|
|
4616
4612
|
*/
|
|
4617
4613
|
readonly venueId?: string | null;
|
|
4614
|
+
/**
|
|
4615
|
+
* Gets the provider id.
|
|
4616
|
+
*/
|
|
4617
|
+
readonly providerId?: string | null;
|
|
4618
4618
|
/**
|
|
4619
4619
|
* Gets or sets the quantity of opportunities required on the order item.
|
|
4620
4620
|
*/
|
|
@@ -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
|
*/
|
|
@@ -11635,7 +11655,7 @@ declare class CustomersService {
|
|
|
11635
11655
|
* @returns any OK
|
|
11636
11656
|
* @throws ApiError
|
|
11637
11657
|
*/
|
|
11638
|
-
exportToCsv({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11658
|
+
exportToCsv({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11639
11659
|
/**
|
|
11640
11660
|
* Gets or sets the wildcard for use in a query search.
|
|
11641
11661
|
*/
|
|
@@ -11648,6 +11668,10 @@ declare class CustomersService {
|
|
|
11648
11668
|
* Gets or sets the venue id for use in a query search.
|
|
11649
11669
|
*/
|
|
11650
11670
|
venueId?: string;
|
|
11671
|
+
/**
|
|
11672
|
+
* Gets or sets the provider id for use in a query search.
|
|
11673
|
+
*/
|
|
11674
|
+
providerId?: string;
|
|
11651
11675
|
/**
|
|
11652
11676
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11653
11677
|
*/
|
|
@@ -11721,7 +11745,7 @@ declare class CustomersService {
|
|
|
11721
11745
|
* @returns any OK
|
|
11722
11746
|
* @throws ApiError
|
|
11723
11747
|
*/
|
|
11724
|
-
exportToXlsx({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11748
|
+
exportToXlsx({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11725
11749
|
/**
|
|
11726
11750
|
* Gets or sets the wildcard for use in a query search.
|
|
11727
11751
|
*/
|
|
@@ -11734,6 +11758,10 @@ declare class CustomersService {
|
|
|
11734
11758
|
* Gets or sets the venue id for use in a query search.
|
|
11735
11759
|
*/
|
|
11736
11760
|
venueId?: string;
|
|
11761
|
+
/**
|
|
11762
|
+
* Gets or sets the provider id for use in a query search.
|
|
11763
|
+
*/
|
|
11764
|
+
providerId?: string;
|
|
11737
11765
|
/**
|
|
11738
11766
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11739
11767
|
*/
|
|
@@ -11861,7 +11889,7 @@ declare class CustomersService {
|
|
|
11861
11889
|
* @returns CustomerPage OK
|
|
11862
11890
|
* @throws ApiError
|
|
11863
11891
|
*/
|
|
11864
|
-
getPage({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11892
|
+
getPage({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11865
11893
|
/**
|
|
11866
11894
|
* Gets or sets the wildcard for use in a query search.
|
|
11867
11895
|
*/
|
|
@@ -11874,6 +11902,10 @@ declare class CustomersService {
|
|
|
11874
11902
|
* Gets or sets the venue id for use in a query search.
|
|
11875
11903
|
*/
|
|
11876
11904
|
venueId?: string;
|
|
11905
|
+
/**
|
|
11906
|
+
* Gets or sets the provider id for use in a query search.
|
|
11907
|
+
*/
|
|
11908
|
+
providerId?: string;
|
|
11877
11909
|
/**
|
|
11878
11910
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11879
11911
|
*/
|
|
@@ -11973,7 +12005,7 @@ declare class CustomersService {
|
|
|
11973
12005
|
* @returns boolean OK
|
|
11974
12006
|
* @throws ApiError
|
|
11975
12007
|
*/
|
|
11976
|
-
exists({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12008
|
+
exists({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11977
12009
|
/**
|
|
11978
12010
|
* Gets or sets the wildcard for use in a query search.
|
|
11979
12011
|
*/
|
|
@@ -11986,6 +12018,10 @@ declare class CustomersService {
|
|
|
11986
12018
|
* Gets or sets the venue id for use in a query search.
|
|
11987
12019
|
*/
|
|
11988
12020
|
venueId?: string;
|
|
12021
|
+
/**
|
|
12022
|
+
* Gets or sets the provider id for use in a query search.
|
|
12023
|
+
*/
|
|
12024
|
+
providerId?: string;
|
|
11989
12025
|
/**
|
|
11990
12026
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11991
12027
|
*/
|
|
@@ -12052,7 +12088,7 @@ declare class CustomersService {
|
|
|
12052
12088
|
* @returns number OK
|
|
12053
12089
|
* @throws ApiError
|
|
12054
12090
|
*/
|
|
12055
|
-
count({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12091
|
+
count({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12056
12092
|
/**
|
|
12057
12093
|
* Gets or sets the wildcard for use in a query search.
|
|
12058
12094
|
*/
|
|
@@ -12065,6 +12101,10 @@ declare class CustomersService {
|
|
|
12065
12101
|
* Gets or sets the venue id for use in a query search.
|
|
12066
12102
|
*/
|
|
12067
12103
|
venueId?: string;
|
|
12104
|
+
/**
|
|
12105
|
+
* Gets or sets the provider id for use in a query search.
|
|
12106
|
+
*/
|
|
12107
|
+
providerId?: string;
|
|
12068
12108
|
/**
|
|
12069
12109
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
12070
12110
|
*/
|
|
@@ -12131,7 +12171,7 @@ declare class CustomersService {
|
|
|
12131
12171
|
* @returns Customer OK
|
|
12132
12172
|
* @throws ApiError
|
|
12133
12173
|
*/
|
|
12134
|
-
getListWithoutReferences({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12174
|
+
getListWithoutReferences({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12135
12175
|
/**
|
|
12136
12176
|
* Gets or sets the wildcard for use in a query search.
|
|
12137
12177
|
*/
|
|
@@ -12144,6 +12184,10 @@ declare class CustomersService {
|
|
|
12144
12184
|
* Gets or sets the venue id for use in a query search.
|
|
12145
12185
|
*/
|
|
12146
12186
|
venueId?: string;
|
|
12187
|
+
/**
|
|
12188
|
+
* Gets or sets the provider id for use in a query search.
|
|
12189
|
+
*/
|
|
12190
|
+
providerId?: string;
|
|
12147
12191
|
/**
|
|
12148
12192
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
12149
12193
|
*/
|
|
@@ -12210,7 +12254,7 @@ declare class CustomersService {
|
|
|
12210
12254
|
* @returns Customer OK
|
|
12211
12255
|
* @throws ApiError
|
|
12212
12256
|
*/
|
|
12213
|
-
getListIdName({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12257
|
+
getListIdName({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12214
12258
|
/**
|
|
12215
12259
|
* Gets or sets the wildcard for use in a query search.
|
|
12216
12260
|
*/
|
|
@@ -12223,6 +12267,10 @@ declare class CustomersService {
|
|
|
12223
12267
|
* Gets or sets the venue id for use in a query search.
|
|
12224
12268
|
*/
|
|
12225
12269
|
venueId?: string;
|
|
12270
|
+
/**
|
|
12271
|
+
* Gets or sets the provider id for use in a query search.
|
|
12272
|
+
*/
|
|
12273
|
+
providerId?: string;
|
|
12226
12274
|
/**
|
|
12227
12275
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
12228
12276
|
*/
|
|
@@ -14804,6 +14852,62 @@ declare class DiscountCodeUsesService {
|
|
|
14804
14852
|
}): CancelablePromise<Array<DiscountCodeUse>>;
|
|
14805
14853
|
}
|
|
14806
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
|
+
|
|
14807
14911
|
/**
|
|
14808
14912
|
* Represents an organisation within the Reach application.
|
|
14809
14913
|
*/
|
|
@@ -20013,158 +20117,153 @@ declare class ImageUploadHistoryService {
|
|
|
20013
20117
|
}
|
|
20014
20118
|
|
|
20015
20119
|
/**
|
|
20016
|
-
*
|
|
20120
|
+
* Dotdigital canonical field types.
|
|
20017
20121
|
*/
|
|
20018
|
-
|
|
20019
|
-
|
|
20020
|
-
|
|
20021
|
-
|
|
20022
|
-
|
|
20023
|
-
|
|
20024
|
-
|
|
20025
|
-
|
|
20026
|
-
|
|
20027
|
-
|
|
20028
|
-
|
|
20029
|
-
|
|
20030
|
-
|
|
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 = {
|
|
20031
20147
|
/**
|
|
20032
|
-
* Gets or sets the
|
|
20148
|
+
* Gets or sets the entities Id.
|
|
20033
20149
|
*/
|
|
20034
|
-
|
|
20150
|
+
id?: string;
|
|
20035
20151
|
/**
|
|
20036
|
-
* Gets or sets the
|
|
20152
|
+
* Gets or sets the tenant Id.
|
|
20037
20153
|
*/
|
|
20038
|
-
|
|
20154
|
+
tenantId: string;
|
|
20039
20155
|
/**
|
|
20040
|
-
* Gets or sets the
|
|
20156
|
+
* Gets or sets the created date of this entity.
|
|
20041
20157
|
*/
|
|
20042
|
-
|
|
20043
|
-
};
|
|
20044
|
-
|
|
20045
|
-
/**
|
|
20046
|
-
* Refresh model for order refreshesnpm .
|
|
20047
|
-
*/
|
|
20048
|
-
type OrderRefresh = {
|
|
20158
|
+
dateCreated: string;
|
|
20049
20159
|
/**
|
|
20050
|
-
* Gets or sets the
|
|
20160
|
+
* Gets or sets the last modified date of this entity.
|
|
20051
20161
|
*/
|
|
20052
|
-
|
|
20162
|
+
dateModified: string;
|
|
20053
20163
|
/**
|
|
20054
|
-
* Gets or sets the Id.
|
|
20164
|
+
* Gets or sets the modified by Id.
|
|
20055
20165
|
*/
|
|
20056
|
-
|
|
20166
|
+
modifiedById?: string | null;
|
|
20057
20167
|
/**
|
|
20058
|
-
* Gets or sets the
|
|
20168
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
20059
20169
|
*/
|
|
20060
|
-
|
|
20170
|
+
isLive: boolean;
|
|
20171
|
+
canonicalField?: DotdigitalCanonicalField;
|
|
20061
20172
|
/**
|
|
20062
|
-
* Gets or sets the
|
|
20173
|
+
* Gets or sets the Dotdigital field key.
|
|
20063
20174
|
*/
|
|
20064
|
-
|
|
20175
|
+
dotdigitalFieldKey?: string | null;
|
|
20176
|
+
sourceType?: DotdigitalSourceType;
|
|
20065
20177
|
/**
|
|
20066
|
-
* Gets or sets the
|
|
20178
|
+
* Gets or sets the source key.
|
|
20067
20179
|
*/
|
|
20068
|
-
|
|
20180
|
+
sourceKey?: string | null;
|
|
20069
20181
|
/**
|
|
20070
|
-
* Gets or sets the
|
|
20182
|
+
* Gets or sets the static value.
|
|
20071
20183
|
*/
|
|
20072
|
-
|
|
20184
|
+
staticValue?: string | null;
|
|
20073
20185
|
/**
|
|
20074
|
-
* Gets or sets the
|
|
20186
|
+
* Gets or sets a value indicating whether the field is required.
|
|
20075
20187
|
*/
|
|
20076
|
-
|
|
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 = {
|
|
20077
20200
|
/**
|
|
20078
|
-
* Gets or sets
|
|
20201
|
+
* Gets or sets the tenant Id.
|
|
20079
20202
|
*/
|
|
20080
|
-
|
|
20203
|
+
tenantId: string;
|
|
20081
20204
|
/**
|
|
20082
|
-
* Gets or sets
|
|
20205
|
+
* Gets or sets the Id.
|
|
20083
20206
|
*/
|
|
20084
|
-
|
|
20207
|
+
id: string;
|
|
20208
|
+
};
|
|
20209
|
+
|
|
20210
|
+
/**
|
|
20211
|
+
* Post model for Dotdigital field map inserts.
|
|
20212
|
+
*/
|
|
20213
|
+
type IntegrationDotdigitalFieldMapPost = {
|
|
20085
20214
|
/**
|
|
20086
|
-
* Gets or sets the
|
|
20215
|
+
* Gets or sets the tenant Id.
|
|
20087
20216
|
*/
|
|
20088
|
-
|
|
20217
|
+
tenantId: string;
|
|
20089
20218
|
};
|
|
20090
20219
|
|
|
20091
|
-
declare class
|
|
20220
|
+
declare class IntegrationDotdigitalFieldMapService {
|
|
20092
20221
|
readonly httpRequest: BaseHttpRequest;
|
|
20093
20222
|
constructor(httpRequest: BaseHttpRequest);
|
|
20094
|
-
/**
|
|
20095
|
-
* Refreshes a lease and updates any changes />.
|
|
20096
|
-
* @returns Order OK
|
|
20097
|
-
* @throws ApiError
|
|
20098
|
-
*/
|
|
20099
|
-
refresh({ orderId, requestBody, }: {
|
|
20100
|
-
/**
|
|
20101
|
-
* The order Id.
|
|
20102
|
-
*/
|
|
20103
|
-
orderId: string;
|
|
20104
|
-
/**
|
|
20105
|
-
* The order.
|
|
20106
|
-
*/
|
|
20107
|
-
requestBody?: OrderRefresh;
|
|
20108
|
-
}): CancelablePromise<Order>;
|
|
20109
|
-
/**
|
|
20110
|
-
* Converts a leased order into a booked order and creates stripes payment intent secret..
|
|
20111
|
-
* @returns Order OK
|
|
20112
|
-
* @throws ApiError
|
|
20113
|
-
*/
|
|
20114
|
-
convertToOrder({ orderId, requestBody, }: {
|
|
20115
|
-
/**
|
|
20116
|
-
* The order Id.
|
|
20117
|
-
*/
|
|
20118
|
-
orderId: string;
|
|
20119
|
-
/**
|
|
20120
|
-
* The order.
|
|
20121
|
-
*/
|
|
20122
|
-
requestBody?: Order;
|
|
20123
|
-
}): CancelablePromise<Order>;
|
|
20124
20223
|
/**
|
|
20125
20224
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
20126
|
-
* @returns
|
|
20225
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20127
20226
|
* @throws ApiError
|
|
20128
20227
|
*/
|
|
20129
20228
|
post({ requestBody, }: {
|
|
20130
20229
|
/**
|
|
20131
20230
|
* The <typeparamref name="TObject" /> model.
|
|
20132
20231
|
*/
|
|
20133
|
-
requestBody?:
|
|
20134
|
-
}): CancelablePromise<
|
|
20232
|
+
requestBody?: IntegrationDotdigitalFieldMapPost;
|
|
20233
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20135
20234
|
/**
|
|
20136
20235
|
* Patches the resource.
|
|
20137
|
-
* @returns
|
|
20236
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20138
20237
|
* @throws ApiError
|
|
20139
20238
|
*/
|
|
20140
20239
|
patch({ requestBody, }: {
|
|
20141
20240
|
/**
|
|
20142
20241
|
* The <typeparamref name="TObject" /> model.
|
|
20143
20242
|
*/
|
|
20144
|
-
requestBody?:
|
|
20145
|
-
}): CancelablePromise<
|
|
20243
|
+
requestBody?: IntegrationDotdigitalFieldMapPatch;
|
|
20244
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20146
20245
|
/**
|
|
20147
20246
|
* Inserts a list of resources.
|
|
20148
|
-
* @returns
|
|
20247
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20149
20248
|
* @throws ApiError
|
|
20150
20249
|
*/
|
|
20151
20250
|
postList({ requestBody, }: {
|
|
20152
20251
|
/**
|
|
20153
20252
|
* The list of <typeparamref name="TObject" />.
|
|
20154
20253
|
*/
|
|
20155
|
-
requestBody?: Array<
|
|
20156
|
-
}): CancelablePromise<Array<
|
|
20254
|
+
requestBody?: Array<IntegrationDotdigitalFieldMapPost>;
|
|
20255
|
+
}): CancelablePromise<Array<IntegrationDotdigitalFieldMap>>;
|
|
20157
20256
|
/**
|
|
20158
20257
|
* Patches the resource.
|
|
20159
|
-
* @returns
|
|
20258
|
+
* @returns IntegrationDotdigitalFieldMap OK
|
|
20160
20259
|
* @throws ApiError
|
|
20161
20260
|
*/
|
|
20162
20261
|
patchWithReferences({ requestBody, }: {
|
|
20163
20262
|
/**
|
|
20164
20263
|
* The <typeparamref name="TObject" /> model.
|
|
20165
20264
|
*/
|
|
20166
|
-
requestBody?:
|
|
20167
|
-
}): CancelablePromise<
|
|
20265
|
+
requestBody?: IntegrationDotdigitalFieldMapPatch;
|
|
20266
|
+
}): CancelablePromise<IntegrationDotdigitalFieldMap>;
|
|
20168
20267
|
/**
|
|
20169
20268
|
* Deletes the resource.
|
|
20170
20269
|
* @returns any OK
|
|
@@ -20174,86 +20273,1957 @@ declare class LeasingService {
|
|
|
20174
20273
|
/**
|
|
20175
20274
|
* The <typeparamref name="TObject" /> model.
|
|
20176
20275
|
*/
|
|
20177
|
-
requestBody?:
|
|
20276
|
+
requestBody?: IntegrationDotdigitalFieldMap;
|
|
20178
20277
|
}): CancelablePromise<any>;
|
|
20179
20278
|
/**
|
|
20180
20279
|
* Gets a list of resources.
|
|
20181
|
-
* @returns
|
|
20280
|
+
* @returns IntegrationDotdigitalFieldMapPage OK
|
|
20182
20281
|
* @throws ApiError
|
|
20183
20282
|
*/
|
|
20184
|
-
getPage({
|
|
20185
|
-
/**
|
|
20186
|
-
* Gets or sets the
|
|
20187
|
-
*/
|
|
20188
|
-
|
|
20189
|
-
/**
|
|
20190
|
-
* Gets or sets the
|
|
20191
|
-
*/
|
|
20192
|
-
|
|
20193
|
-
/**
|
|
20194
|
-
* Gets or sets
|
|
20195
|
-
*/
|
|
20196
|
-
|
|
20197
|
-
/**
|
|
20198
|
-
* Gets or sets the
|
|
20199
|
-
*/
|
|
20200
|
-
|
|
20201
|
-
/**
|
|
20202
|
-
* Gets or sets the
|
|
20203
|
-
*/
|
|
20204
|
-
|
|
20205
|
-
/**
|
|
20206
|
-
* Gets or sets the
|
|
20207
|
-
*/
|
|
20208
|
-
|
|
20209
|
-
/**
|
|
20210
|
-
* Gets or sets the
|
|
20211
|
-
*/
|
|
20212
|
-
|
|
20213
|
-
/**
|
|
20214
|
-
* Gets or sets the
|
|
20215
|
-
*/
|
|
20216
|
-
|
|
20217
|
-
/**
|
|
20218
|
-
* Gets or sets the
|
|
20219
|
-
*/
|
|
20220
|
-
|
|
20221
|
-
/**
|
|
20222
|
-
* Gets or sets the
|
|
20223
|
-
*/
|
|
20224
|
-
|
|
20225
|
-
/**
|
|
20226
|
-
* Gets or sets the
|
|
20227
|
-
*/
|
|
20228
|
-
|
|
20229
|
-
|
|
20230
|
-
|
|
20231
|
-
|
|
20232
|
-
|
|
20233
|
-
|
|
20234
|
-
|
|
20235
|
-
|
|
20236
|
-
|
|
20237
|
-
|
|
20238
|
-
|
|
20239
|
-
|
|
20240
|
-
|
|
20241
|
-
|
|
20242
|
-
|
|
20243
|
-
|
|
20244
|
-
|
|
20245
|
-
|
|
20246
|
-
|
|
20247
|
-
|
|
20248
|
-
|
|
20249
|
-
|
|
20250
|
-
|
|
20251
|
-
|
|
20252
|
-
|
|
20253
|
-
|
|
20254
|
-
|
|
20255
|
-
|
|
20256
|
-
|
|
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
|
|
21403
|
+
* @throws ApiError
|
|
21404
|
+
*/
|
|
21405
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21406
|
+
/**
|
|
21407
|
+
* Gets or sets the page number for paged queries.
|
|
21408
|
+
*/
|
|
21409
|
+
pageNumber?: number;
|
|
21410
|
+
/**
|
|
21411
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21412
|
+
*/
|
|
21413
|
+
take?: number;
|
|
21414
|
+
/**
|
|
21415
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21416
|
+
*/
|
|
21417
|
+
skip?: number;
|
|
21418
|
+
/**
|
|
21419
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21420
|
+
*/
|
|
21421
|
+
limitListRequests?: boolean;
|
|
21422
|
+
/**
|
|
21423
|
+
* Gets or sets the Tenant Id.
|
|
21424
|
+
*/
|
|
21425
|
+
tenantId?: string;
|
|
21426
|
+
/**
|
|
21427
|
+
* Gets or sets the Modifed By Id.
|
|
21428
|
+
*/
|
|
21429
|
+
modifiedById?: string;
|
|
21430
|
+
/**
|
|
21431
|
+
* Gets or sets the Modifed By Ids.
|
|
21432
|
+
*/
|
|
21433
|
+
modifiedByIds?: Array<string>;
|
|
21434
|
+
/**
|
|
21435
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21436
|
+
*/
|
|
21437
|
+
dateCreatedGte?: string;
|
|
21438
|
+
/**
|
|
21439
|
+
* Gets or sets the Date Created less than equal to.
|
|
21440
|
+
*/
|
|
21441
|
+
dateCreatedLte?: string;
|
|
21442
|
+
/**
|
|
21443
|
+
* Gets or sets the queryable only is live status.
|
|
21444
|
+
*/
|
|
21445
|
+
isLive?: boolean;
|
|
21446
|
+
/**
|
|
21447
|
+
* Gets or sets the sort order direction.
|
|
21448
|
+
*/
|
|
21449
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21450
|
+
}): CancelablePromise<Array<IntegrationDotdigitalSettings>>;
|
|
21451
|
+
/**
|
|
21452
|
+
* Gets a list of resources.
|
|
21453
|
+
* @returns IntegrationDotdigitalSettings OK
|
|
21454
|
+
* @throws ApiError
|
|
21455
|
+
*/
|
|
21456
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21457
|
+
/**
|
|
21458
|
+
* Gets or sets the page number for paged queries.
|
|
21459
|
+
*/
|
|
21460
|
+
pageNumber?: number;
|
|
21461
|
+
/**
|
|
21462
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21463
|
+
*/
|
|
21464
|
+
take?: number;
|
|
21465
|
+
/**
|
|
21466
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21467
|
+
*/
|
|
21468
|
+
skip?: number;
|
|
21469
|
+
/**
|
|
21470
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21471
|
+
*/
|
|
21472
|
+
limitListRequests?: boolean;
|
|
21473
|
+
/**
|
|
21474
|
+
* Gets or sets the Tenant Id.
|
|
21475
|
+
*/
|
|
21476
|
+
tenantId?: string;
|
|
21477
|
+
/**
|
|
21478
|
+
* Gets or sets the Modifed By Id.
|
|
21479
|
+
*/
|
|
21480
|
+
modifiedById?: string;
|
|
21481
|
+
/**
|
|
21482
|
+
* Gets or sets the Modifed By Ids.
|
|
21483
|
+
*/
|
|
21484
|
+
modifiedByIds?: Array<string>;
|
|
21485
|
+
/**
|
|
21486
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21487
|
+
*/
|
|
21488
|
+
dateCreatedGte?: string;
|
|
21489
|
+
/**
|
|
21490
|
+
* Gets or sets the Date Created less than equal to.
|
|
21491
|
+
*/
|
|
21492
|
+
dateCreatedLte?: string;
|
|
21493
|
+
/**
|
|
21494
|
+
* Gets or sets the queryable only is live status.
|
|
21495
|
+
*/
|
|
21496
|
+
isLive?: boolean;
|
|
21497
|
+
/**
|
|
21498
|
+
* Gets or sets the sort order direction.
|
|
21499
|
+
*/
|
|
21500
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21501
|
+
}): CancelablePromise<Array<IntegrationDotdigitalSettings>>;
|
|
21502
|
+
}
|
|
21503
|
+
|
|
21504
|
+
/**
|
|
21505
|
+
* Controls the integration type.
|
|
21506
|
+
*/
|
|
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 = {
|
|
21515
|
+
/**
|
|
21516
|
+
* Gets or sets the entities Id.
|
|
21517
|
+
*/
|
|
21518
|
+
id?: string;
|
|
21519
|
+
/**
|
|
21520
|
+
* Gets or sets the tenant Id.
|
|
21521
|
+
*/
|
|
21522
|
+
tenantId: string;
|
|
21523
|
+
/**
|
|
21524
|
+
* Gets or sets the created date of this entity.
|
|
21525
|
+
*/
|
|
21526
|
+
dateCreated: string;
|
|
21527
|
+
/**
|
|
21528
|
+
* Gets or sets the last modified date of this entity.
|
|
21529
|
+
*/
|
|
21530
|
+
dateModified: string;
|
|
21531
|
+
/**
|
|
21532
|
+
* Gets or sets the modified by Id.
|
|
21533
|
+
*/
|
|
21534
|
+
modifiedById?: string | null;
|
|
21535
|
+
/**
|
|
21536
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
21537
|
+
*/
|
|
21538
|
+
isLive: boolean;
|
|
21539
|
+
integrationType?: IntegrationType;
|
|
21540
|
+
/**
|
|
21541
|
+
* Gets or sets the model id (e.g. entity being synced).
|
|
21542
|
+
*/
|
|
21543
|
+
modelId?: string;
|
|
21544
|
+
/**
|
|
21545
|
+
* Gets or sets a value indicating whether the item has been processed.
|
|
21546
|
+
*/
|
|
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;
|
|
21560
|
+
};
|
|
21561
|
+
|
|
21562
|
+
type IntegrationQueuePage = {
|
|
21563
|
+
pagination: Pagination;
|
|
21564
|
+
readonly items: Array<IntegrationQueue>;
|
|
21565
|
+
};
|
|
21566
|
+
|
|
21567
|
+
/**
|
|
21568
|
+
* Patch model for integration queue updates.
|
|
21569
|
+
*/
|
|
21570
|
+
type IntegrationQueuePatch = {
|
|
21571
|
+
/**
|
|
21572
|
+
* Gets or sets the tenant Id.
|
|
21573
|
+
*/
|
|
21574
|
+
tenantId: string;
|
|
21575
|
+
/**
|
|
21576
|
+
* Gets or sets the Id.
|
|
21577
|
+
*/
|
|
21578
|
+
id: string;
|
|
21579
|
+
};
|
|
21580
|
+
|
|
21581
|
+
/**
|
|
21582
|
+
* Post model for integration queue inserts.
|
|
21583
|
+
*/
|
|
21584
|
+
type IntegrationQueuePost = {
|
|
21585
|
+
/**
|
|
21586
|
+
* Gets or sets the tenant Id.
|
|
21587
|
+
*/
|
|
21588
|
+
tenantId: string;
|
|
21589
|
+
};
|
|
21590
|
+
|
|
21591
|
+
declare class IntegrationQueueService {
|
|
21592
|
+
readonly httpRequest: BaseHttpRequest;
|
|
21593
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
21594
|
+
/**
|
|
21595
|
+
* Processes the OA intermediates table.
|
|
21596
|
+
* @returns number OK
|
|
21597
|
+
* @throws ApiError
|
|
21598
|
+
*/
|
|
21599
|
+
process(): CancelablePromise<number>;
|
|
21600
|
+
/**
|
|
21601
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
21602
|
+
* @returns IntegrationQueue OK
|
|
21603
|
+
* @throws ApiError
|
|
21604
|
+
*/
|
|
21605
|
+
post({ requestBody, }: {
|
|
21606
|
+
/**
|
|
21607
|
+
* The <typeparamref name="TObject" /> model.
|
|
21608
|
+
*/
|
|
21609
|
+
requestBody?: IntegrationQueuePost;
|
|
21610
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
21611
|
+
/**
|
|
21612
|
+
* Patches the resource.
|
|
21613
|
+
* @returns IntegrationQueue OK
|
|
21614
|
+
* @throws ApiError
|
|
21615
|
+
*/
|
|
21616
|
+
patch({ requestBody, }: {
|
|
21617
|
+
/**
|
|
21618
|
+
* The <typeparamref name="TObject" /> model.
|
|
21619
|
+
*/
|
|
21620
|
+
requestBody?: IntegrationQueuePatch;
|
|
21621
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
21622
|
+
/**
|
|
21623
|
+
* Inserts a list of resources.
|
|
21624
|
+
* @returns IntegrationQueue OK
|
|
21625
|
+
* @throws ApiError
|
|
21626
|
+
*/
|
|
21627
|
+
postList({ requestBody, }: {
|
|
21628
|
+
/**
|
|
21629
|
+
* The list of <typeparamref name="TObject" />.
|
|
21630
|
+
*/
|
|
21631
|
+
requestBody?: Array<IntegrationQueuePost>;
|
|
21632
|
+
}): CancelablePromise<Array<IntegrationQueue>>;
|
|
21633
|
+
/**
|
|
21634
|
+
* Patches the resource.
|
|
21635
|
+
* @returns IntegrationQueue OK
|
|
21636
|
+
* @throws ApiError
|
|
21637
|
+
*/
|
|
21638
|
+
patchWithReferences({ requestBody, }: {
|
|
21639
|
+
/**
|
|
21640
|
+
* The <typeparamref name="TObject" /> model.
|
|
21641
|
+
*/
|
|
21642
|
+
requestBody?: IntegrationQueuePatch;
|
|
21643
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
21644
|
+
/**
|
|
21645
|
+
* Deletes the resource.
|
|
21646
|
+
* @returns any OK
|
|
21647
|
+
* @throws ApiError
|
|
21648
|
+
*/
|
|
21649
|
+
deleteByObject({ requestBody, }: {
|
|
21650
|
+
/**
|
|
21651
|
+
* The <typeparamref name="TObject" /> model.
|
|
21652
|
+
*/
|
|
21653
|
+
requestBody?: IntegrationQueue;
|
|
21654
|
+
}): CancelablePromise<any>;
|
|
21655
|
+
/**
|
|
21656
|
+
* Gets a list of resources.
|
|
21657
|
+
* @returns IntegrationQueuePage OK
|
|
21658
|
+
* @throws ApiError
|
|
21659
|
+
*/
|
|
21660
|
+
getPage({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21661
|
+
/**
|
|
21662
|
+
* Gets or sets the queryable processed status.
|
|
21663
|
+
*/
|
|
21664
|
+
processed?: boolean;
|
|
21665
|
+
/**
|
|
21666
|
+
* Gets or sets the queryable errored status.
|
|
21667
|
+
*/
|
|
21668
|
+
errored?: boolean;
|
|
21669
|
+
/**
|
|
21670
|
+
* Gets or sets the page number for paged queries.
|
|
21671
|
+
*/
|
|
21672
|
+
pageNumber?: number;
|
|
21673
|
+
/**
|
|
21674
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21675
|
+
*/
|
|
21676
|
+
take?: number;
|
|
21677
|
+
/**
|
|
21678
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21679
|
+
*/
|
|
21680
|
+
skip?: number;
|
|
21681
|
+
/**
|
|
21682
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21683
|
+
*/
|
|
21684
|
+
limitListRequests?: boolean;
|
|
21685
|
+
/**
|
|
21686
|
+
* Gets or sets the Tenant Id.
|
|
21687
|
+
*/
|
|
21688
|
+
tenantId?: string;
|
|
21689
|
+
/**
|
|
21690
|
+
* Gets or sets the Modifed By Id.
|
|
21691
|
+
*/
|
|
21692
|
+
modifiedById?: string;
|
|
21693
|
+
/**
|
|
21694
|
+
* Gets or sets the Modifed By Ids.
|
|
21695
|
+
*/
|
|
21696
|
+
modifiedByIds?: Array<string>;
|
|
21697
|
+
/**
|
|
21698
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21699
|
+
*/
|
|
21700
|
+
dateCreatedGte?: string;
|
|
21701
|
+
/**
|
|
21702
|
+
* Gets or sets the Date Created less than equal to.
|
|
21703
|
+
*/
|
|
21704
|
+
dateCreatedLte?: string;
|
|
21705
|
+
/**
|
|
21706
|
+
* Gets or sets the queryable only is live status.
|
|
21707
|
+
*/
|
|
21708
|
+
isLive?: boolean;
|
|
21709
|
+
/**
|
|
21710
|
+
* Gets or sets the sort order direction.
|
|
21711
|
+
*/
|
|
21712
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21713
|
+
}): CancelablePromise<IntegrationQueuePage>;
|
|
21714
|
+
/**
|
|
21715
|
+
* Deletes the resource.
|
|
21716
|
+
* @returns any OK
|
|
21717
|
+
* @throws ApiError
|
|
21718
|
+
*/
|
|
21719
|
+
deleteById({ id, }: {
|
|
21720
|
+
/**
|
|
21721
|
+
* The <typeparamref name="TObject" /> id.
|
|
21722
|
+
*/
|
|
21723
|
+
id: string;
|
|
21724
|
+
}): CancelablePromise<any>;
|
|
21725
|
+
/**
|
|
21726
|
+
* Gets the resource by its Id.
|
|
21727
|
+
* @returns IntegrationQueue OK
|
|
21728
|
+
* @throws ApiError
|
|
21729
|
+
*/
|
|
21730
|
+
getObject({ id, }: {
|
|
21731
|
+
/**
|
|
21732
|
+
* The <typeparamref name="TObject" /> id.
|
|
21733
|
+
*/
|
|
21734
|
+
id: string;
|
|
21735
|
+
}): CancelablePromise<IntegrationQueue>;
|
|
21736
|
+
/**
|
|
21737
|
+
* Returns a value indicating whether the resource is deletable.
|
|
21738
|
+
* @returns boolean OK
|
|
21739
|
+
* @throws ApiError
|
|
21740
|
+
*/
|
|
21741
|
+
canDelete({ id, }: {
|
|
21742
|
+
/**
|
|
21743
|
+
* The <typeparamref name="TObject" /> id.
|
|
21744
|
+
*/
|
|
21745
|
+
id: string;
|
|
21746
|
+
}): CancelablePromise<boolean>;
|
|
21747
|
+
/**
|
|
21748
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
21749
|
+
* @returns boolean OK
|
|
21750
|
+
* @throws ApiError
|
|
21751
|
+
*/
|
|
21752
|
+
exists({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21753
|
+
/**
|
|
21754
|
+
* Gets or sets the queryable processed status.
|
|
21755
|
+
*/
|
|
21756
|
+
processed?: boolean;
|
|
21757
|
+
/**
|
|
21758
|
+
* Gets or sets the queryable errored status.
|
|
21759
|
+
*/
|
|
21760
|
+
errored?: boolean;
|
|
21761
|
+
/**
|
|
21762
|
+
* Gets or sets the page number for paged queries.
|
|
21763
|
+
*/
|
|
21764
|
+
pageNumber?: number;
|
|
21765
|
+
/**
|
|
21766
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21767
|
+
*/
|
|
21768
|
+
take?: number;
|
|
21769
|
+
/**
|
|
21770
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21771
|
+
*/
|
|
21772
|
+
skip?: number;
|
|
21773
|
+
/**
|
|
21774
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21775
|
+
*/
|
|
21776
|
+
limitListRequests?: boolean;
|
|
21777
|
+
/**
|
|
21778
|
+
* Gets or sets the Tenant Id.
|
|
21779
|
+
*/
|
|
21780
|
+
tenantId?: string;
|
|
21781
|
+
/**
|
|
21782
|
+
* Gets or sets the Modifed By Id.
|
|
21783
|
+
*/
|
|
21784
|
+
modifiedById?: string;
|
|
21785
|
+
/**
|
|
21786
|
+
* Gets or sets the Modifed By Ids.
|
|
21787
|
+
*/
|
|
21788
|
+
modifiedByIds?: Array<string>;
|
|
21789
|
+
/**
|
|
21790
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21791
|
+
*/
|
|
21792
|
+
dateCreatedGte?: string;
|
|
21793
|
+
/**
|
|
21794
|
+
* Gets or sets the Date Created less than equal to.
|
|
21795
|
+
*/
|
|
21796
|
+
dateCreatedLte?: string;
|
|
21797
|
+
/**
|
|
21798
|
+
* Gets or sets the queryable only is live status.
|
|
21799
|
+
*/
|
|
21800
|
+
isLive?: boolean;
|
|
21801
|
+
/**
|
|
21802
|
+
* Gets or sets the sort order direction.
|
|
21803
|
+
*/
|
|
21804
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21805
|
+
}): CancelablePromise<boolean>;
|
|
21806
|
+
/**
|
|
21807
|
+
* Returns the number of results in the database given the provided search params.
|
|
21808
|
+
* @returns number OK
|
|
21809
|
+
* @throws ApiError
|
|
21810
|
+
*/
|
|
21811
|
+
count({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21812
|
+
/**
|
|
21813
|
+
* Gets or sets the queryable processed status.
|
|
21814
|
+
*/
|
|
21815
|
+
processed?: boolean;
|
|
21816
|
+
/**
|
|
21817
|
+
* Gets or sets the queryable errored status.
|
|
21818
|
+
*/
|
|
21819
|
+
errored?: boolean;
|
|
21820
|
+
/**
|
|
21821
|
+
* Gets or sets the page number for paged queries.
|
|
21822
|
+
*/
|
|
21823
|
+
pageNumber?: number;
|
|
21824
|
+
/**
|
|
21825
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21826
|
+
*/
|
|
21827
|
+
take?: number;
|
|
21828
|
+
/**
|
|
21829
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21830
|
+
*/
|
|
21831
|
+
skip?: number;
|
|
21832
|
+
/**
|
|
21833
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21834
|
+
*/
|
|
21835
|
+
limitListRequests?: boolean;
|
|
21836
|
+
/**
|
|
21837
|
+
* Gets or sets the Tenant Id.
|
|
21838
|
+
*/
|
|
21839
|
+
tenantId?: string;
|
|
21840
|
+
/**
|
|
21841
|
+
* Gets or sets the Modifed By Id.
|
|
21842
|
+
*/
|
|
21843
|
+
modifiedById?: string;
|
|
21844
|
+
/**
|
|
21845
|
+
* Gets or sets the Modifed By Ids.
|
|
21846
|
+
*/
|
|
21847
|
+
modifiedByIds?: Array<string>;
|
|
21848
|
+
/**
|
|
21849
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21850
|
+
*/
|
|
21851
|
+
dateCreatedGte?: string;
|
|
21852
|
+
/**
|
|
21853
|
+
* Gets or sets the Date Created less than equal to.
|
|
21854
|
+
*/
|
|
21855
|
+
dateCreatedLte?: string;
|
|
21856
|
+
/**
|
|
21857
|
+
* Gets or sets the queryable only is live status.
|
|
21858
|
+
*/
|
|
21859
|
+
isLive?: boolean;
|
|
21860
|
+
/**
|
|
21861
|
+
* Gets or sets the sort order direction.
|
|
21862
|
+
*/
|
|
21863
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21864
|
+
}): CancelablePromise<number>;
|
|
21865
|
+
/**
|
|
21866
|
+
* Gets a list of resources unpaged and without references.
|
|
21867
|
+
* @returns IntegrationQueue OK
|
|
21868
|
+
* @throws ApiError
|
|
21869
|
+
*/
|
|
21870
|
+
getListWithoutReferences({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21871
|
+
/**
|
|
21872
|
+
* Gets or sets the queryable processed status.
|
|
21873
|
+
*/
|
|
21874
|
+
processed?: boolean;
|
|
21875
|
+
/**
|
|
21876
|
+
* Gets or sets the queryable errored status.
|
|
21877
|
+
*/
|
|
21878
|
+
errored?: boolean;
|
|
21879
|
+
/**
|
|
21880
|
+
* Gets or sets the page number for paged queries.
|
|
21881
|
+
*/
|
|
21882
|
+
pageNumber?: number;
|
|
21883
|
+
/**
|
|
21884
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21885
|
+
*/
|
|
21886
|
+
take?: number;
|
|
21887
|
+
/**
|
|
21888
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21889
|
+
*/
|
|
21890
|
+
skip?: number;
|
|
21891
|
+
/**
|
|
21892
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21893
|
+
*/
|
|
21894
|
+
limitListRequests?: boolean;
|
|
21895
|
+
/**
|
|
21896
|
+
* Gets or sets the Tenant Id.
|
|
21897
|
+
*/
|
|
21898
|
+
tenantId?: string;
|
|
21899
|
+
/**
|
|
21900
|
+
* Gets or sets the Modifed By Id.
|
|
21901
|
+
*/
|
|
21902
|
+
modifiedById?: string;
|
|
21903
|
+
/**
|
|
21904
|
+
* Gets or sets the Modifed By Ids.
|
|
21905
|
+
*/
|
|
21906
|
+
modifiedByIds?: Array<string>;
|
|
21907
|
+
/**
|
|
21908
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21909
|
+
*/
|
|
21910
|
+
dateCreatedGte?: string;
|
|
21911
|
+
/**
|
|
21912
|
+
* Gets or sets the Date Created less than equal to.
|
|
21913
|
+
*/
|
|
21914
|
+
dateCreatedLte?: string;
|
|
21915
|
+
/**
|
|
21916
|
+
* Gets or sets the queryable only is live status.
|
|
21917
|
+
*/
|
|
21918
|
+
isLive?: boolean;
|
|
21919
|
+
/**
|
|
21920
|
+
* Gets or sets the sort order direction.
|
|
21921
|
+
*/
|
|
21922
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21923
|
+
}): CancelablePromise<Array<IntegrationQueue>>;
|
|
21924
|
+
/**
|
|
21925
|
+
* Gets a list of resources.
|
|
21926
|
+
* @returns IntegrationQueue OK
|
|
21927
|
+
* @throws ApiError
|
|
21928
|
+
*/
|
|
21929
|
+
getListIdName({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21930
|
+
/**
|
|
21931
|
+
* Gets or sets the queryable processed status.
|
|
21932
|
+
*/
|
|
21933
|
+
processed?: boolean;
|
|
21934
|
+
/**
|
|
21935
|
+
* Gets or sets the queryable errored status.
|
|
21936
|
+
*/
|
|
21937
|
+
errored?: boolean;
|
|
21938
|
+
/**
|
|
21939
|
+
* Gets or sets the page number for paged queries.
|
|
21940
|
+
*/
|
|
21941
|
+
pageNumber?: number;
|
|
21942
|
+
/**
|
|
21943
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21944
|
+
*/
|
|
21945
|
+
take?: number;
|
|
21946
|
+
/**
|
|
21947
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21948
|
+
*/
|
|
21949
|
+
skip?: number;
|
|
21950
|
+
/**
|
|
21951
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21952
|
+
*/
|
|
21953
|
+
limitListRequests?: boolean;
|
|
21954
|
+
/**
|
|
21955
|
+
* Gets or sets the Tenant Id.
|
|
21956
|
+
*/
|
|
21957
|
+
tenantId?: string;
|
|
21958
|
+
/**
|
|
21959
|
+
* Gets or sets the Modifed By Id.
|
|
21960
|
+
*/
|
|
21961
|
+
modifiedById?: string;
|
|
21962
|
+
/**
|
|
21963
|
+
* Gets or sets the Modifed By Ids.
|
|
21964
|
+
*/
|
|
21965
|
+
modifiedByIds?: Array<string>;
|
|
21966
|
+
/**
|
|
21967
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21968
|
+
*/
|
|
21969
|
+
dateCreatedGte?: string;
|
|
21970
|
+
/**
|
|
21971
|
+
* Gets or sets the Date Created less than equal to.
|
|
21972
|
+
*/
|
|
21973
|
+
dateCreatedLte?: string;
|
|
21974
|
+
/**
|
|
21975
|
+
* Gets or sets the queryable only is live status.
|
|
21976
|
+
*/
|
|
21977
|
+
isLive?: boolean;
|
|
21978
|
+
/**
|
|
21979
|
+
* Gets or sets the sort order direction.
|
|
21980
|
+
*/
|
|
21981
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21982
|
+
}): CancelablePromise<Array<IntegrationQueue>>;
|
|
21983
|
+
}
|
|
21984
|
+
|
|
21985
|
+
/**
|
|
21986
|
+
* Post model for the items contained in the order.
|
|
21987
|
+
*/
|
|
21988
|
+
type OrderPatchItem = {
|
|
21989
|
+
/**
|
|
21990
|
+
* Gets or sets the slot id.
|
|
21991
|
+
*/
|
|
21992
|
+
id?: string | null;
|
|
21993
|
+
/**
|
|
21994
|
+
* Gets or sets the slot id.
|
|
21995
|
+
*/
|
|
21996
|
+
slotId?: string | null;
|
|
21997
|
+
/**
|
|
21998
|
+
* Gets or sets the scheduled session id.
|
|
21999
|
+
*/
|
|
22000
|
+
scheduledSessionId?: string | null;
|
|
22001
|
+
/**
|
|
22002
|
+
* Gets or sets the course id.
|
|
22003
|
+
*/
|
|
22004
|
+
courseId?: string | null;
|
|
22005
|
+
/**
|
|
22006
|
+
* Gets or sets the offer id.
|
|
22007
|
+
*/
|
|
22008
|
+
offerId: string;
|
|
22009
|
+
/**
|
|
22010
|
+
* Gets or sets the quantity of opportunities required on the order item.
|
|
22011
|
+
*/
|
|
22012
|
+
quantity?: number | null;
|
|
22013
|
+
};
|
|
22014
|
+
|
|
22015
|
+
/**
|
|
22016
|
+
* Refresh model for order refreshesnpm .
|
|
22017
|
+
*/
|
|
22018
|
+
type OrderRefresh = {
|
|
22019
|
+
/**
|
|
22020
|
+
* Gets or sets the tenant Id.
|
|
22021
|
+
*/
|
|
22022
|
+
tenantId: string;
|
|
22023
|
+
/**
|
|
22024
|
+
* Gets or sets the Id.
|
|
22025
|
+
*/
|
|
22026
|
+
id: string;
|
|
22027
|
+
/**
|
|
22028
|
+
* Gets or sets the first name.
|
|
22029
|
+
*/
|
|
22030
|
+
firstName: string;
|
|
22031
|
+
/**
|
|
22032
|
+
* Gets or sets the last name.
|
|
22033
|
+
*/
|
|
22034
|
+
lastName: string;
|
|
22035
|
+
/**
|
|
22036
|
+
* Gets or sets the email.
|
|
22037
|
+
*/
|
|
22038
|
+
email: string;
|
|
22039
|
+
/**
|
|
22040
|
+
* Gets or sets the phone number.
|
|
22041
|
+
*/
|
|
22042
|
+
phone?: string | null;
|
|
22043
|
+
/**
|
|
22044
|
+
* Gets or sets the orders postcode.
|
|
22045
|
+
*/
|
|
22046
|
+
addressPostalcode?: string | null;
|
|
22047
|
+
/**
|
|
22048
|
+
* Gets or sets a value indicating whether the order customer is opted into marketing.
|
|
22049
|
+
*/
|
|
22050
|
+
marketingOptIn: boolean;
|
|
22051
|
+
/**
|
|
22052
|
+
* Gets or sets a value indicating whether the tenants terms have been agreed.
|
|
22053
|
+
*/
|
|
22054
|
+
termsAgreed: boolean;
|
|
22055
|
+
/**
|
|
22056
|
+
* Gets or sets the order items for the order.
|
|
22057
|
+
*/
|
|
22058
|
+
orderItems: Array<OrderPatchItem>;
|
|
22059
|
+
};
|
|
22060
|
+
|
|
22061
|
+
declare class LeasingService {
|
|
22062
|
+
readonly httpRequest: BaseHttpRequest;
|
|
22063
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
22064
|
+
/**
|
|
22065
|
+
* Refreshes a lease and updates any changes />.
|
|
22066
|
+
* @returns Order OK
|
|
22067
|
+
* @throws ApiError
|
|
22068
|
+
*/
|
|
22069
|
+
refresh({ orderId, requestBody, }: {
|
|
22070
|
+
/**
|
|
22071
|
+
* The order Id.
|
|
22072
|
+
*/
|
|
22073
|
+
orderId: string;
|
|
22074
|
+
/**
|
|
22075
|
+
* The order.
|
|
22076
|
+
*/
|
|
22077
|
+
requestBody?: OrderRefresh;
|
|
22078
|
+
}): CancelablePromise<Order>;
|
|
22079
|
+
/**
|
|
22080
|
+
* Converts a leased order into a booked order and creates stripes payment intent secret..
|
|
22081
|
+
* @returns Order OK
|
|
22082
|
+
* @throws ApiError
|
|
22083
|
+
*/
|
|
22084
|
+
convertToOrder({ orderId, requestBody, }: {
|
|
22085
|
+
/**
|
|
22086
|
+
* The order Id.
|
|
22087
|
+
*/
|
|
22088
|
+
orderId: string;
|
|
22089
|
+
/**
|
|
22090
|
+
* The order.
|
|
22091
|
+
*/
|
|
22092
|
+
requestBody?: Order;
|
|
22093
|
+
}): CancelablePromise<Order>;
|
|
22094
|
+
/**
|
|
22095
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
22096
|
+
* @returns Order OK
|
|
22097
|
+
* @throws ApiError
|
|
22098
|
+
*/
|
|
22099
|
+
post({ requestBody, }: {
|
|
22100
|
+
/**
|
|
22101
|
+
* The <typeparamref name="TObject" /> model.
|
|
22102
|
+
*/
|
|
22103
|
+
requestBody?: OrderPost;
|
|
22104
|
+
}): CancelablePromise<Order>;
|
|
22105
|
+
/**
|
|
22106
|
+
* Patches the resource.
|
|
22107
|
+
* @returns Order OK
|
|
22108
|
+
* @throws ApiError
|
|
22109
|
+
*/
|
|
22110
|
+
patch({ requestBody, }: {
|
|
22111
|
+
/**
|
|
22112
|
+
* The <typeparamref name="TObject" /> model.
|
|
22113
|
+
*/
|
|
22114
|
+
requestBody?: OrderPatch;
|
|
22115
|
+
}): CancelablePromise<Order>;
|
|
22116
|
+
/**
|
|
22117
|
+
* Inserts a list of resources.
|
|
22118
|
+
* @returns Order OK
|
|
22119
|
+
* @throws ApiError
|
|
22120
|
+
*/
|
|
22121
|
+
postList({ requestBody, }: {
|
|
22122
|
+
/**
|
|
22123
|
+
* The list of <typeparamref name="TObject" />.
|
|
22124
|
+
*/
|
|
22125
|
+
requestBody?: Array<OrderPost>;
|
|
22126
|
+
}): CancelablePromise<Array<Order>>;
|
|
22127
|
+
/**
|
|
22128
|
+
* Patches the resource.
|
|
22129
|
+
* @returns Order OK
|
|
22130
|
+
* @throws ApiError
|
|
22131
|
+
*/
|
|
22132
|
+
patchWithReferences({ requestBody, }: {
|
|
22133
|
+
/**
|
|
22134
|
+
* The <typeparamref name="TObject" /> model.
|
|
22135
|
+
*/
|
|
22136
|
+
requestBody?: OrderPatch;
|
|
22137
|
+
}): CancelablePromise<Order>;
|
|
22138
|
+
/**
|
|
22139
|
+
* Deletes the resource.
|
|
22140
|
+
* @returns any OK
|
|
22141
|
+
* @throws ApiError
|
|
22142
|
+
*/
|
|
22143
|
+
deleteByObject({ requestBody, }: {
|
|
22144
|
+
/**
|
|
22145
|
+
* The <typeparamref name="TObject" /> model.
|
|
22146
|
+
*/
|
|
22147
|
+
requestBody?: Order;
|
|
22148
|
+
}): CancelablePromise<any>;
|
|
22149
|
+
/**
|
|
22150
|
+
* Gets a list of resources.
|
|
22151
|
+
* @returns OrderPage OK
|
|
22152
|
+
* @throws ApiError
|
|
22153
|
+
*/
|
|
22154
|
+
getPage({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22155
|
+
/**
|
|
22156
|
+
* Gets or sets the wildcard for use in a query search.
|
|
22157
|
+
*/
|
|
22158
|
+
wildcard?: string;
|
|
22159
|
+
/**
|
|
22160
|
+
* Gets or sets the access code for use in a query search.
|
|
22161
|
+
*/
|
|
22162
|
+
accessCode?: string;
|
|
22163
|
+
/**
|
|
22164
|
+
* Gets or sets the customer name for use in a query search.
|
|
22165
|
+
*/
|
|
22166
|
+
customerName?: string;
|
|
22167
|
+
/**
|
|
22168
|
+
* Gets or sets the email for use in a query search.
|
|
22169
|
+
*/
|
|
22170
|
+
email?: string;
|
|
22171
|
+
/**
|
|
22172
|
+
* Gets or sets the provider Id for use in a query search.
|
|
22173
|
+
*/
|
|
22174
|
+
providerId?: string;
|
|
22175
|
+
/**
|
|
22176
|
+
* Gets or sets the venue Id for use in a query search.
|
|
22177
|
+
*/
|
|
22178
|
+
venueId?: string;
|
|
22179
|
+
/**
|
|
22180
|
+
* Gets or sets the programme Id for use in a query search.
|
|
22181
|
+
*/
|
|
22182
|
+
programmeId?: string;
|
|
22183
|
+
/**
|
|
22184
|
+
* Gets or sets the customer Id for use in a query search.
|
|
22185
|
+
*/
|
|
22186
|
+
customerId?: string;
|
|
22187
|
+
/**
|
|
22188
|
+
* Gets or sets the queryable order ids.
|
|
22189
|
+
*/
|
|
22190
|
+
orderIds?: Array<string>;
|
|
22191
|
+
/**
|
|
22192
|
+
* Gets or sets the session Id for use in a query search.
|
|
22193
|
+
*/
|
|
22194
|
+
sessionId?: string;
|
|
22195
|
+
/**
|
|
22196
|
+
* Gets or sets the facility Id for use in a query search.
|
|
22197
|
+
*/
|
|
22198
|
+
facilityId?: string;
|
|
22199
|
+
/**
|
|
22200
|
+
* Gets or sets the course Id for use in a query search.
|
|
22201
|
+
*/
|
|
22202
|
+
courseId?: string;
|
|
22203
|
+
/**
|
|
22204
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
22205
|
+
*/
|
|
22206
|
+
orderStage?: OrderStage;
|
|
22207
|
+
/**
|
|
22208
|
+
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
22209
|
+
*/
|
|
22210
|
+
isBookedOrPendingPayment?: boolean;
|
|
22211
|
+
/**
|
|
22212
|
+
* Gets or sets the queryable order stages.
|
|
22213
|
+
*/
|
|
22214
|
+
orderStages?: Array<OrderStage>;
|
|
22215
|
+
/**
|
|
22216
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
22217
|
+
*/
|
|
22218
|
+
orderDateGte?: string;
|
|
22219
|
+
/**
|
|
22220
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
22221
|
+
*/
|
|
22222
|
+
orderDateLte?: string;
|
|
22223
|
+
/**
|
|
22224
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22225
|
+
*/
|
|
22226
|
+
endUserIdentityId?: string;
|
|
20257
22227
|
/**
|
|
20258
22228
|
* Gets or sets the page number for paged queries.
|
|
20259
22229
|
*/
|
|
@@ -25436,6 +27406,10 @@ type OrderItemReport = {
|
|
|
25436
27406
|
* Gets or sets the activity name.
|
|
25437
27407
|
*/
|
|
25438
27408
|
activityName?: string | null;
|
|
27409
|
+
/**
|
|
27410
|
+
* Gets or sets the provider name.
|
|
27411
|
+
*/
|
|
27412
|
+
providerName?: string | null;
|
|
25439
27413
|
/**
|
|
25440
27414
|
* Gets or sets the venue name.
|
|
25441
27415
|
*/
|
|
@@ -32533,7 +34507,7 @@ declare class PublicCalendarService {
|
|
|
32533
34507
|
* @returns any OK
|
|
32534
34508
|
* @throws ApiError
|
|
32535
34509
|
*/
|
|
32536
|
-
getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, }: {
|
|
34510
|
+
getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, providerId, }: {
|
|
32537
34511
|
/**
|
|
32538
34512
|
* The tenants subdomain.
|
|
32539
34513
|
*/
|
|
@@ -32550,6 +34524,10 @@ declare class PublicCalendarService {
|
|
|
32550
34524
|
* Gets or sets the programme Id for use in a query search.
|
|
32551
34525
|
*/
|
|
32552
34526
|
programmeId?: string;
|
|
34527
|
+
/**
|
|
34528
|
+
* Gets or sets the provider Id for use in a query search.
|
|
34529
|
+
*/
|
|
34530
|
+
providerId?: string;
|
|
32553
34531
|
}): CancelablePromise<any>;
|
|
32554
34532
|
}
|
|
32555
34533
|
|
|
@@ -33048,7 +35026,7 @@ declare class PublicCustomersService {
|
|
|
33048
35026
|
* @returns CustomerPage OK
|
|
33049
35027
|
* @throws ApiError
|
|
33050
35028
|
*/
|
|
33051
|
-
getPage({ xTenantSubdomain, wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35029
|
+
getPage({ xTenantSubdomain, wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33052
35030
|
xTenantSubdomain?: string;
|
|
33053
35031
|
/**
|
|
33054
35032
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -33062,6 +35040,10 @@ declare class PublicCustomersService {
|
|
|
33062
35040
|
* Gets or sets the venue id for use in a query search.
|
|
33063
35041
|
*/
|
|
33064
35042
|
venueId?: string;
|
|
35043
|
+
/**
|
|
35044
|
+
* Gets or sets the provider id for use in a query search.
|
|
35045
|
+
*/
|
|
35046
|
+
providerId?: string;
|
|
33065
35047
|
/**
|
|
33066
35048
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
33067
35049
|
*/
|
|
@@ -33203,7 +35185,7 @@ declare class PublicCustomersService {
|
|
|
33203
35185
|
* @returns boolean OK
|
|
33204
35186
|
* @throws ApiError
|
|
33205
35187
|
*/
|
|
33206
|
-
exists({ xTenantSubdomain, wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35188
|
+
exists({ xTenantSubdomain, wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33207
35189
|
/**
|
|
33208
35190
|
* The tenants subdomain.
|
|
33209
35191
|
*/
|
|
@@ -33220,6 +35202,10 @@ declare class PublicCustomersService {
|
|
|
33220
35202
|
* Gets or sets the venue id for use in a query search.
|
|
33221
35203
|
*/
|
|
33222
35204
|
venueId?: string;
|
|
35205
|
+
/**
|
|
35206
|
+
* Gets or sets the provider id for use in a query search.
|
|
35207
|
+
*/
|
|
35208
|
+
providerId?: string;
|
|
33223
35209
|
/**
|
|
33224
35210
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
33225
35211
|
*/
|
|
@@ -37293,7 +39279,7 @@ declare class PublicScheduledSessionsService {
|
|
|
37293
39279
|
* @returns ScheduledSessionPage OK
|
|
37294
39280
|
* @throws ApiError
|
|
37295
39281
|
*/
|
|
37296
|
-
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, }: {
|
|
37297
39283
|
xTenantSubdomain?: string;
|
|
37298
39284
|
/**
|
|
37299
39285
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -37307,6 +39293,10 @@ declare class PublicScheduledSessionsService {
|
|
|
37307
39293
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
37308
39294
|
*/
|
|
37309
39295
|
programmeId?: string;
|
|
39296
|
+
/**
|
|
39297
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
39298
|
+
*/
|
|
39299
|
+
providerId?: string;
|
|
37310
39300
|
/**
|
|
37311
39301
|
* Gets or sets the queryable scheduled session facility Id.
|
|
37312
39302
|
*/
|
|
@@ -37517,7 +39507,7 @@ declare class PublicScheduledSessionsService {
|
|
|
37517
39507
|
* @returns boolean OK
|
|
37518
39508
|
* @throws ApiError
|
|
37519
39509
|
*/
|
|
37520
|
-
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, }: {
|
|
37521
39511
|
/**
|
|
37522
39512
|
* The tenants subdomain.
|
|
37523
39513
|
*/
|
|
@@ -37534,6 +39524,10 @@ declare class PublicScheduledSessionsService {
|
|
|
37534
39524
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
37535
39525
|
*/
|
|
37536
39526
|
programmeId?: string;
|
|
39527
|
+
/**
|
|
39528
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
39529
|
+
*/
|
|
39530
|
+
providerId?: string;
|
|
37537
39531
|
/**
|
|
37538
39532
|
* Gets or sets the queryable scheduled session facility Id.
|
|
37539
39533
|
*/
|
|
@@ -38102,7 +40096,7 @@ declare class PublicSessionsService {
|
|
|
38102
40096
|
* @returns any OK
|
|
38103
40097
|
* @throws ApiError
|
|
38104
40098
|
*/
|
|
38105
|
-
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, }: {
|
|
38106
40100
|
/**
|
|
38107
40101
|
* The tenants subdomain.
|
|
38108
40102
|
*/
|
|
@@ -38119,6 +40113,10 @@ declare class PublicSessionsService {
|
|
|
38119
40113
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
38120
40114
|
*/
|
|
38121
40115
|
programmeId?: string;
|
|
40116
|
+
/**
|
|
40117
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
40118
|
+
*/
|
|
40119
|
+
providerId?: string;
|
|
38122
40120
|
/**
|
|
38123
40121
|
* Gets or sets the queryable scheduled session facility Id.
|
|
38124
40122
|
*/
|
|
@@ -40589,453 +42587,461 @@ declare class PublicTenantsService {
|
|
|
40589
42587
|
* Gets or sets the queryable sub domain.
|
|
40590
42588
|
*/
|
|
40591
42589
|
subDomain?: string;
|
|
40592
|
-
/**
|
|
40593
|
-
* Gets or sets the page number for paged queries.
|
|
40594
|
-
*/
|
|
40595
|
-
pageNumber?: number;
|
|
40596
|
-
/**
|
|
40597
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
40598
|
-
*/
|
|
40599
|
-
take?: number;
|
|
40600
|
-
/**
|
|
40601
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
40602
|
-
*/
|
|
40603
|
-
skip?: number;
|
|
40604
|
-
/**
|
|
40605
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
40606
|
-
*/
|
|
40607
|
-
limitListRequests?: boolean;
|
|
40608
|
-
/**
|
|
40609
|
-
* Gets or sets the Tenant Id.
|
|
40610
|
-
*/
|
|
40611
|
-
tenantId?: string;
|
|
40612
|
-
/**
|
|
40613
|
-
* Gets or sets the Modifed By Id.
|
|
40614
|
-
*/
|
|
40615
|
-
modifiedById?: string;
|
|
40616
|
-
/**
|
|
40617
|
-
* Gets or sets the Modifed By Ids.
|
|
40618
|
-
*/
|
|
40619
|
-
modifiedByIds?: Array<string>;
|
|
40620
|
-
/**
|
|
40621
|
-
* Gets or sets the Date Created greater than equal to.
|
|
40622
|
-
*/
|
|
40623
|
-
dateCreatedGte?: string;
|
|
40624
|
-
/**
|
|
40625
|
-
* Gets or sets the Date Created less than equal to.
|
|
40626
|
-
*/
|
|
40627
|
-
dateCreatedLte?: string;
|
|
40628
|
-
/**
|
|
40629
|
-
* Gets or sets the queryable only is live status.
|
|
40630
|
-
*/
|
|
40631
|
-
isLive?: boolean;
|
|
40632
|
-
/**
|
|
40633
|
-
* Gets or sets the sort order direction.
|
|
40634
|
-
*/
|
|
40635
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
40636
|
-
}): CancelablePromise<TenantPage>;
|
|
40637
|
-
/**
|
|
40638
|
-
* Deletes the resource.
|
|
40639
|
-
* @returns any OK
|
|
40640
|
-
* @throws ApiError
|
|
40641
|
-
*/
|
|
40642
|
-
deleteById({ id, xTenantSubdomain, }: {
|
|
40643
|
-
/**
|
|
40644
|
-
* The <typeparamref name="TObject" /> id.
|
|
40645
|
-
*/
|
|
40646
|
-
id: string;
|
|
40647
|
-
/**
|
|
40648
|
-
* The tenants subdomain.
|
|
40649
|
-
*/
|
|
40650
|
-
xTenantSubdomain?: string;
|
|
40651
|
-
}): CancelablePromise<any>;
|
|
40652
|
-
/**
|
|
40653
|
-
* Gets the resource by its Id.
|
|
40654
|
-
* @returns Tenant OK
|
|
40655
|
-
* @throws ApiError
|
|
40656
|
-
*/
|
|
40657
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
40658
|
-
/**
|
|
40659
|
-
* The <typeparamref name="TObject" /> id.
|
|
40660
|
-
*/
|
|
40661
|
-
id: string;
|
|
40662
|
-
/**
|
|
40663
|
-
* The tenants subdomain.
|
|
40664
|
-
*/
|
|
40665
|
-
xTenantSubdomain?: string;
|
|
40666
|
-
}): CancelablePromise<Tenant>;
|
|
40667
|
-
/**
|
|
40668
|
-
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
40669
|
-
* @returns boolean OK
|
|
40670
|
-
* @throws ApiError
|
|
40671
|
-
*/
|
|
40672
|
-
exists({ xTenantSubdomain, subDomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40673
|
-
/**
|
|
40674
|
-
* The tenants subdomain.
|
|
40675
|
-
*/
|
|
40676
|
-
xTenantSubdomain?: string;
|
|
40677
|
-
/**
|
|
40678
|
-
* Gets or sets the queryable sub domain.
|
|
40679
|
-
*/
|
|
40680
|
-
subDomain?: string;
|
|
40681
|
-
/**
|
|
40682
|
-
* Gets or sets the page number for paged queries.
|
|
40683
|
-
*/
|
|
40684
|
-
pageNumber?: number;
|
|
40685
|
-
/**
|
|
40686
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
40687
|
-
*/
|
|
40688
|
-
take?: number;
|
|
40689
|
-
/**
|
|
40690
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
40691
|
-
*/
|
|
40692
|
-
skip?: number;
|
|
40693
|
-
/**
|
|
40694
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
40695
|
-
*/
|
|
40696
|
-
limitListRequests?: boolean;
|
|
40697
|
-
/**
|
|
40698
|
-
* Gets or sets the Tenant Id.
|
|
40699
|
-
*/
|
|
40700
|
-
tenantId?: string;
|
|
40701
|
-
/**
|
|
40702
|
-
* Gets or sets the Modifed By Id.
|
|
40703
|
-
*/
|
|
40704
|
-
modifiedById?: string;
|
|
40705
|
-
/**
|
|
40706
|
-
* Gets or sets the Modifed By Ids.
|
|
40707
|
-
*/
|
|
40708
|
-
modifiedByIds?: Array<string>;
|
|
40709
|
-
/**
|
|
40710
|
-
* Gets or sets the Date Created greater than equal to.
|
|
40711
|
-
*/
|
|
40712
|
-
dateCreatedGte?: string;
|
|
40713
|
-
/**
|
|
40714
|
-
* Gets or sets the Date Created less than equal to.
|
|
40715
|
-
*/
|
|
40716
|
-
dateCreatedLte?: string;
|
|
40717
|
-
/**
|
|
40718
|
-
* Gets or sets the queryable only is live status.
|
|
40719
|
-
*/
|
|
40720
|
-
isLive?: boolean;
|
|
40721
|
-
/**
|
|
40722
|
-
* Gets or sets the sort order direction.
|
|
40723
|
-
*/
|
|
40724
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
40725
|
-
}): CancelablePromise<boolean>;
|
|
40726
|
-
}
|
|
40727
|
-
|
|
40728
|
-
type VenuePage = {
|
|
40729
|
-
pagination: Pagination;
|
|
40730
|
-
readonly items: Array<Venue>;
|
|
40731
|
-
};
|
|
40732
|
-
|
|
40733
|
-
/**
|
|
40734
|
-
* Patch model for venue opening hours.
|
|
40735
|
-
*/
|
|
40736
|
-
type VenueOpeningHourUpdate = {
|
|
40737
|
-
/**
|
|
40738
|
-
* Gets or sets the opening hour id.
|
|
40739
|
-
*/
|
|
40740
|
-
id: string;
|
|
40741
|
-
/**
|
|
40742
|
-
* Gets or sets the venues open time.
|
|
40743
|
-
*/
|
|
40744
|
-
openTime: string;
|
|
40745
|
-
/**
|
|
40746
|
-
* Gets or sets the venues close time.
|
|
40747
|
-
*/
|
|
40748
|
-
closeTime: string;
|
|
40749
|
-
/**
|
|
40750
|
-
* Gets or sets a value indicating whether the venue is closed.
|
|
40751
|
-
*/
|
|
40752
|
-
closed?: boolean | null;
|
|
40753
|
-
};
|
|
40754
|
-
|
|
40755
|
-
/**
|
|
40756
|
-
* Post model for venue updates.
|
|
40757
|
-
*/
|
|
40758
|
-
type VenuePatch = {
|
|
40759
|
-
/**
|
|
40760
|
-
* Gets or sets the tenant Id.
|
|
40761
|
-
*/
|
|
40762
|
-
tenantId: string;
|
|
40763
|
-
/**
|
|
40764
|
-
* Gets or sets the Id.
|
|
40765
|
-
*/
|
|
40766
|
-
id: string;
|
|
40767
|
-
/**
|
|
40768
|
-
* Gets or sets the venues name.
|
|
40769
|
-
*/
|
|
40770
|
-
name?: string | null;
|
|
40771
|
-
/**
|
|
40772
|
-
* Gets or sets the venues url slug.
|
|
40773
|
-
*/
|
|
40774
|
-
slug?: string | null;
|
|
40775
|
-
/**
|
|
40776
|
-
* Gets or sets the venues description.
|
|
40777
|
-
*/
|
|
40778
|
-
description?: string | null;
|
|
40779
|
-
/**
|
|
40780
|
-
* Gets or sets the venue image url.
|
|
40781
|
-
*/
|
|
40782
|
-
imageUrl?: string | null;
|
|
40783
|
-
/**
|
|
40784
|
-
* Gets or sets the venues street address.
|
|
40785
|
-
*/
|
|
40786
|
-
streetAddress?: string | null;
|
|
40787
|
-
/**
|
|
40788
|
-
* Gets or sets the venues locality.
|
|
40789
|
-
*/
|
|
40790
|
-
addressLocality?: string | null;
|
|
40791
|
-
/**
|
|
40792
|
-
* Gets or sets the venues region.
|
|
40793
|
-
*/
|
|
40794
|
-
addressRegion?: string | null;
|
|
40795
|
-
/**
|
|
40796
|
-
* Gets or sets the venues postcode.
|
|
40797
|
-
*/
|
|
40798
|
-
addressPostalcode?: string | null;
|
|
40799
|
-
/**
|
|
40800
|
-
* Gets or sets the venues Country id.
|
|
40801
|
-
*/
|
|
40802
|
-
countryId?: number | null;
|
|
40803
|
-
/**
|
|
40804
|
-
* Gets or sets the venues lat.
|
|
40805
|
-
*/
|
|
40806
|
-
lat?: number | null;
|
|
40807
|
-
/**
|
|
40808
|
-
* Gets or sets the venues lng.
|
|
40809
|
-
*/
|
|
40810
|
-
lng?: number | null;
|
|
40811
|
-
/**
|
|
40812
|
-
* Gets or sets a value indicating whether opening hours are applicable to the location.
|
|
40813
|
-
*/
|
|
40814
|
-
hasOpeningHours?: boolean | null;
|
|
40815
|
-
/**
|
|
40816
|
-
* Gets or sets the contact phone.
|
|
40817
|
-
*/
|
|
40818
|
-
contactPhone?: string | null;
|
|
40819
|
-
/**
|
|
40820
|
-
* Gets or sets the contact email.
|
|
40821
|
-
*/
|
|
40822
|
-
contactEmail?: string | null;
|
|
40823
|
-
/**
|
|
40824
|
-
* Gets or sets the contact website.
|
|
40825
|
-
*/
|
|
40826
|
-
contactWebsite?: string | null;
|
|
40827
|
-
upcomingLayout: UpcomingLayout;
|
|
40828
|
-
/**
|
|
40829
|
-
* Gets or sets a value indicating whether the venue can take bookings.
|
|
40830
|
-
*/
|
|
40831
|
-
online?: boolean | null;
|
|
40832
|
-
/**
|
|
40833
|
-
* Gets or sets a value indicating whether the venue is published on the booking website.
|
|
40834
|
-
*/
|
|
40835
|
-
publishedOnWeb?: boolean | null;
|
|
40836
|
-
emailSettings?: UpdateEmailSettings;
|
|
40837
|
-
/**
|
|
40838
|
-
* Gets or sets the venue amenities Ids.
|
|
40839
|
-
*/
|
|
40840
|
-
amenities?: Array<number> | null;
|
|
40841
|
-
/**
|
|
40842
|
-
* Gets or sets the venue manager Ids.
|
|
40843
|
-
*/
|
|
40844
|
-
managers?: Array<string> | null;
|
|
40845
|
-
/**
|
|
40846
|
-
* Gets or sets the venue amenities.
|
|
40847
|
-
*/
|
|
40848
|
-
openingHours?: Array<VenueOpeningHourUpdate> | null;
|
|
40849
|
-
customFields?: CustomFieldsBulkUpdate;
|
|
40850
|
-
};
|
|
40851
|
-
|
|
40852
|
-
/**
|
|
40853
|
-
* Post model for venue inserts.
|
|
40854
|
-
*/
|
|
40855
|
-
type VenuePost = {
|
|
40856
|
-
/**
|
|
40857
|
-
* Gets or sets the tenant Id.
|
|
40858
|
-
*/
|
|
40859
|
-
tenantId: string;
|
|
40860
|
-
/**
|
|
40861
|
-
* Gets or sets the venues name.
|
|
40862
|
-
*/
|
|
40863
|
-
name?: string | null;
|
|
40864
|
-
/**
|
|
40865
|
-
* Gets or sets the venues description.
|
|
40866
|
-
*/
|
|
40867
|
-
description?: string | null;
|
|
40868
|
-
/**
|
|
40869
|
-
* Gets or sets the venue image url.
|
|
40870
|
-
*/
|
|
40871
|
-
imageUrl?: string | null;
|
|
40872
|
-
/**
|
|
40873
|
-
* Gets or sets the venues street address.
|
|
40874
|
-
*/
|
|
40875
|
-
streetAddress: string;
|
|
40876
|
-
/**
|
|
40877
|
-
* Gets or sets the venues locality.
|
|
40878
|
-
*/
|
|
40879
|
-
addressLocality?: string | null;
|
|
40880
|
-
/**
|
|
40881
|
-
* Gets or sets the venues region.
|
|
40882
|
-
*/
|
|
40883
|
-
addressRegion?: string | null;
|
|
40884
|
-
/**
|
|
40885
|
-
* Gets or sets the venues postcode.
|
|
40886
|
-
*/
|
|
40887
|
-
addressPostalcode: string;
|
|
40888
|
-
/**
|
|
40889
|
-
* Gets or sets the venues Country id.
|
|
40890
|
-
*/
|
|
40891
|
-
countryId: number;
|
|
40892
|
-
/**
|
|
40893
|
-
* Gets or sets the venues lat.
|
|
40894
|
-
*/
|
|
40895
|
-
lat: number;
|
|
40896
|
-
/**
|
|
40897
|
-
* Gets or sets the venues lng.
|
|
40898
|
-
*/
|
|
40899
|
-
lng: number;
|
|
40900
|
-
/**
|
|
40901
|
-
* Gets or sets the contact phone.
|
|
40902
|
-
*/
|
|
40903
|
-
contactPhone?: string | null;
|
|
40904
|
-
/**
|
|
40905
|
-
* Gets or sets the contact email.
|
|
40906
|
-
*/
|
|
40907
|
-
contactEmail?: string | null;
|
|
40908
|
-
/**
|
|
40909
|
-
* Gets or sets the contact website.
|
|
40910
|
-
*/
|
|
40911
|
-
contactWebsite?: string | null;
|
|
40912
|
-
/**
|
|
40913
|
-
* Gets or sets the amenity ids.
|
|
40914
|
-
*/
|
|
40915
|
-
amenityIds?: Array<number> | null;
|
|
40916
|
-
customFields?: CustomFieldsBulkUpdate;
|
|
40917
|
-
};
|
|
40918
|
-
|
|
40919
|
-
declare class PublicVenuesService {
|
|
40920
|
-
readonly httpRequest: BaseHttpRequest;
|
|
40921
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
40922
|
-
/**
|
|
40923
|
-
* @returns Venue OK
|
|
40924
|
-
* @throws ApiError
|
|
40925
|
-
*/
|
|
40926
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
40927
|
-
id: string;
|
|
40928
|
-
xTenantSubdomain?: string;
|
|
40929
|
-
}): CancelablePromise<Venue>;
|
|
40930
|
-
/**
|
|
40931
|
-
* Deletes the resource.
|
|
40932
|
-
* @returns any OK
|
|
40933
|
-
* @throws ApiError
|
|
40934
|
-
*/
|
|
40935
|
-
deleteById({ id, xTenantSubdomain, }: {
|
|
40936
|
-
/**
|
|
40937
|
-
* The <typeparamref name="TObject" /> id.
|
|
40938
|
-
*/
|
|
40939
|
-
id: string;
|
|
40940
|
-
/**
|
|
40941
|
-
* The tenants subdomain.
|
|
40942
|
-
*/
|
|
40943
|
-
xTenantSubdomain?: string;
|
|
40944
|
-
}): CancelablePromise<any>;
|
|
40945
|
-
/**
|
|
40946
|
-
* @returns VenuePage OK
|
|
40947
|
-
* @throws ApiError
|
|
40948
|
-
*/
|
|
40949
|
-
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, }: {
|
|
40950
|
-
xTenantSubdomain?: string;
|
|
40951
|
-
/**
|
|
40952
|
-
* Gets or sets the queryable venue ids.
|
|
40953
|
-
*/
|
|
40954
|
-
ids?: Array<string>;
|
|
40955
|
-
/**
|
|
40956
|
-
* Gets or sets the queryable venue name wildcard.
|
|
40957
|
-
*/
|
|
40958
|
-
wildcard?: string;
|
|
40959
|
-
/**
|
|
40960
|
-
* Gets or sets the queryable venue name.
|
|
40961
|
-
*/
|
|
40962
|
-
name?: string;
|
|
40963
|
-
/**
|
|
40964
|
-
* Gets or sets the queryable venue street address.
|
|
40965
|
-
*/
|
|
40966
|
-
streetAddress?: string;
|
|
40967
|
-
/**
|
|
40968
|
-
* Gets or sets the queryable venue address postal code.
|
|
40969
|
-
*/
|
|
40970
|
-
addressPostalcode?: string;
|
|
40971
|
-
/**
|
|
40972
|
-
* Gets or sets the queryable venue name wildcard.
|
|
40973
|
-
*/
|
|
40974
|
-
nameLike?: string;
|
|
40975
|
-
/**
|
|
40976
|
-
* Gets or sets the queryable venue url slug.
|
|
40977
|
-
*/
|
|
40978
|
-
slug?: string;
|
|
40979
|
-
/**
|
|
40980
|
-
* Gets or sets the queryable assign to Id.
|
|
40981
|
-
*/
|
|
40982
|
-
assignedTo?: string;
|
|
40983
|
-
/**
|
|
40984
|
-
* Gets or sets the queryable stripe account Id.
|
|
40985
|
-
*/
|
|
40986
|
-
stripeAccountId?: string;
|
|
40987
|
-
/**
|
|
40988
|
-
* Gets or sets the queryable search geo center.
|
|
40989
|
-
*/
|
|
40990
|
-
searchGeoCenter?: string;
|
|
40991
|
-
/**
|
|
40992
|
-
* Gets or sets a value indicating whether to show published venues.
|
|
40993
|
-
*/
|
|
40994
|
-
publishedOnWeb?: boolean;
|
|
40995
|
-
/**
|
|
40996
|
-
* Gets or sets a value indicating whether to include archived venues.
|
|
40997
|
-
*/
|
|
40998
|
-
archived?: boolean;
|
|
40999
|
-
/**
|
|
41000
|
-
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
41001
|
-
*/
|
|
41002
|
-
networkId?: string;
|
|
41003
|
-
/**
|
|
41004
|
-
* Gets or sets a value indicating whether the results should return a specific tenant status.
|
|
41005
|
-
*/
|
|
41006
|
-
tenantStatus?: TenantStatus;
|
|
41007
|
-
/**
|
|
41008
|
-
* Gets or sets the queryable programme Id.
|
|
41009
|
-
*/
|
|
41010
|
-
programmeId?: string;
|
|
41011
|
-
/**
|
|
41012
|
-
* Gets or sets a value indicating whether to inlcude the venues opportunity images.
|
|
41013
|
-
*/
|
|
41014
|
-
includeOpportunityImages?: boolean;
|
|
41015
|
-
/**
|
|
41016
|
-
* Gets or sets a value indicating whether to inlcude the venues opportunity offers.
|
|
41017
|
-
*/
|
|
41018
|
-
includeOpportunityOffers?: boolean;
|
|
41019
|
-
/**
|
|
41020
|
-
* Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
|
|
41021
|
-
*/
|
|
41022
|
-
includeNextOpportunity?: boolean;
|
|
41023
|
-
/**
|
|
41024
|
-
* Gets or sets Distance.
|
|
41025
|
-
*/
|
|
41026
|
-
distance?: number;
|
|
41027
|
-
/**
|
|
41028
|
-
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
41029
|
-
*/
|
|
41030
|
-
dashboardRequest?: boolean;
|
|
41031
|
-
/**
|
|
41032
|
-
* Gets or sets the programme ids.
|
|
41033
|
-
*/
|
|
41034
|
-
programmeIds?: Array<string>;
|
|
41035
|
-
/**
|
|
41036
|
-
* Gets or sets the venue type ids.
|
|
41037
|
-
*/
|
|
41038
|
-
venueTypeIds?: Array<string>;
|
|
42590
|
+
/**
|
|
42591
|
+
* Gets or sets the page number for paged queries.
|
|
42592
|
+
*/
|
|
42593
|
+
pageNumber?: number;
|
|
42594
|
+
/**
|
|
42595
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
42596
|
+
*/
|
|
42597
|
+
take?: number;
|
|
42598
|
+
/**
|
|
42599
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
42600
|
+
*/
|
|
42601
|
+
skip?: number;
|
|
42602
|
+
/**
|
|
42603
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
42604
|
+
*/
|
|
42605
|
+
limitListRequests?: boolean;
|
|
42606
|
+
/**
|
|
42607
|
+
* Gets or sets the Tenant Id.
|
|
42608
|
+
*/
|
|
42609
|
+
tenantId?: string;
|
|
42610
|
+
/**
|
|
42611
|
+
* Gets or sets the Modifed By Id.
|
|
42612
|
+
*/
|
|
42613
|
+
modifiedById?: string;
|
|
42614
|
+
/**
|
|
42615
|
+
* Gets or sets the Modifed By Ids.
|
|
42616
|
+
*/
|
|
42617
|
+
modifiedByIds?: Array<string>;
|
|
42618
|
+
/**
|
|
42619
|
+
* Gets or sets the Date Created greater than equal to.
|
|
42620
|
+
*/
|
|
42621
|
+
dateCreatedGte?: string;
|
|
42622
|
+
/**
|
|
42623
|
+
* Gets or sets the Date Created less than equal to.
|
|
42624
|
+
*/
|
|
42625
|
+
dateCreatedLte?: string;
|
|
42626
|
+
/**
|
|
42627
|
+
* Gets or sets the queryable only is live status.
|
|
42628
|
+
*/
|
|
42629
|
+
isLive?: boolean;
|
|
42630
|
+
/**
|
|
42631
|
+
* Gets or sets the sort order direction.
|
|
42632
|
+
*/
|
|
42633
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
42634
|
+
}): CancelablePromise<TenantPage>;
|
|
42635
|
+
/**
|
|
42636
|
+
* Deletes the resource.
|
|
42637
|
+
* @returns any OK
|
|
42638
|
+
* @throws ApiError
|
|
42639
|
+
*/
|
|
42640
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
42641
|
+
/**
|
|
42642
|
+
* The <typeparamref name="TObject" /> id.
|
|
42643
|
+
*/
|
|
42644
|
+
id: string;
|
|
42645
|
+
/**
|
|
42646
|
+
* The tenants subdomain.
|
|
42647
|
+
*/
|
|
42648
|
+
xTenantSubdomain?: string;
|
|
42649
|
+
}): CancelablePromise<any>;
|
|
42650
|
+
/**
|
|
42651
|
+
* Gets the resource by its Id.
|
|
42652
|
+
* @returns Tenant OK
|
|
42653
|
+
* @throws ApiError
|
|
42654
|
+
*/
|
|
42655
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
42656
|
+
/**
|
|
42657
|
+
* The <typeparamref name="TObject" /> id.
|
|
42658
|
+
*/
|
|
42659
|
+
id: string;
|
|
42660
|
+
/**
|
|
42661
|
+
* The tenants subdomain.
|
|
42662
|
+
*/
|
|
42663
|
+
xTenantSubdomain?: string;
|
|
42664
|
+
}): CancelablePromise<Tenant>;
|
|
42665
|
+
/**
|
|
42666
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
42667
|
+
* @returns boolean OK
|
|
42668
|
+
* @throws ApiError
|
|
42669
|
+
*/
|
|
42670
|
+
exists({ xTenantSubdomain, subDomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
42671
|
+
/**
|
|
42672
|
+
* The tenants subdomain.
|
|
42673
|
+
*/
|
|
42674
|
+
xTenantSubdomain?: string;
|
|
42675
|
+
/**
|
|
42676
|
+
* Gets or sets the queryable sub domain.
|
|
42677
|
+
*/
|
|
42678
|
+
subDomain?: string;
|
|
42679
|
+
/**
|
|
42680
|
+
* Gets or sets the page number for paged queries.
|
|
42681
|
+
*/
|
|
42682
|
+
pageNumber?: number;
|
|
42683
|
+
/**
|
|
42684
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
42685
|
+
*/
|
|
42686
|
+
take?: number;
|
|
42687
|
+
/**
|
|
42688
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
42689
|
+
*/
|
|
42690
|
+
skip?: number;
|
|
42691
|
+
/**
|
|
42692
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
42693
|
+
*/
|
|
42694
|
+
limitListRequests?: boolean;
|
|
42695
|
+
/**
|
|
42696
|
+
* Gets or sets the Tenant Id.
|
|
42697
|
+
*/
|
|
42698
|
+
tenantId?: string;
|
|
42699
|
+
/**
|
|
42700
|
+
* Gets or sets the Modifed By Id.
|
|
42701
|
+
*/
|
|
42702
|
+
modifiedById?: string;
|
|
42703
|
+
/**
|
|
42704
|
+
* Gets or sets the Modifed By Ids.
|
|
42705
|
+
*/
|
|
42706
|
+
modifiedByIds?: Array<string>;
|
|
42707
|
+
/**
|
|
42708
|
+
* Gets or sets the Date Created greater than equal to.
|
|
42709
|
+
*/
|
|
42710
|
+
dateCreatedGte?: string;
|
|
42711
|
+
/**
|
|
42712
|
+
* Gets or sets the Date Created less than equal to.
|
|
42713
|
+
*/
|
|
42714
|
+
dateCreatedLte?: string;
|
|
42715
|
+
/**
|
|
42716
|
+
* Gets or sets the queryable only is live status.
|
|
42717
|
+
*/
|
|
42718
|
+
isLive?: boolean;
|
|
42719
|
+
/**
|
|
42720
|
+
* Gets or sets the sort order direction.
|
|
42721
|
+
*/
|
|
42722
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
42723
|
+
}): CancelablePromise<boolean>;
|
|
42724
|
+
}
|
|
42725
|
+
|
|
42726
|
+
type VenuePage = {
|
|
42727
|
+
pagination: Pagination;
|
|
42728
|
+
readonly items: Array<Venue>;
|
|
42729
|
+
};
|
|
42730
|
+
|
|
42731
|
+
/**
|
|
42732
|
+
* Patch model for venue opening hours.
|
|
42733
|
+
*/
|
|
42734
|
+
type VenueOpeningHourUpdate = {
|
|
42735
|
+
/**
|
|
42736
|
+
* Gets or sets the opening hour id.
|
|
42737
|
+
*/
|
|
42738
|
+
id: string;
|
|
42739
|
+
/**
|
|
42740
|
+
* Gets or sets the venues open time.
|
|
42741
|
+
*/
|
|
42742
|
+
openTime: string;
|
|
42743
|
+
/**
|
|
42744
|
+
* Gets or sets the venues close time.
|
|
42745
|
+
*/
|
|
42746
|
+
closeTime: string;
|
|
42747
|
+
/**
|
|
42748
|
+
* Gets or sets a value indicating whether the venue is closed.
|
|
42749
|
+
*/
|
|
42750
|
+
closed?: boolean | null;
|
|
42751
|
+
};
|
|
42752
|
+
|
|
42753
|
+
/**
|
|
42754
|
+
* Post model for venue updates.
|
|
42755
|
+
*/
|
|
42756
|
+
type VenuePatch = {
|
|
42757
|
+
/**
|
|
42758
|
+
* Gets or sets the tenant Id.
|
|
42759
|
+
*/
|
|
42760
|
+
tenantId: string;
|
|
42761
|
+
/**
|
|
42762
|
+
* Gets or sets the Id.
|
|
42763
|
+
*/
|
|
42764
|
+
id: string;
|
|
42765
|
+
/**
|
|
42766
|
+
* Gets or sets the venues name.
|
|
42767
|
+
*/
|
|
42768
|
+
name?: string | null;
|
|
42769
|
+
/**
|
|
42770
|
+
* Gets or sets the venues url slug.
|
|
42771
|
+
*/
|
|
42772
|
+
slug?: string | null;
|
|
42773
|
+
/**
|
|
42774
|
+
* Gets or sets the venues description.
|
|
42775
|
+
*/
|
|
42776
|
+
description?: string | null;
|
|
42777
|
+
/**
|
|
42778
|
+
* Gets or sets the venue image url.
|
|
42779
|
+
*/
|
|
42780
|
+
imageUrl?: string | null;
|
|
42781
|
+
/**
|
|
42782
|
+
* Gets or sets the venues street address.
|
|
42783
|
+
*/
|
|
42784
|
+
streetAddress?: string | null;
|
|
42785
|
+
/**
|
|
42786
|
+
* Gets or sets the venues locality.
|
|
42787
|
+
*/
|
|
42788
|
+
addressLocality?: string | null;
|
|
42789
|
+
/**
|
|
42790
|
+
* Gets or sets the venues region.
|
|
42791
|
+
*/
|
|
42792
|
+
addressRegion?: string | null;
|
|
42793
|
+
/**
|
|
42794
|
+
* Gets or sets the venues postcode.
|
|
42795
|
+
*/
|
|
42796
|
+
addressPostalcode?: string | null;
|
|
42797
|
+
/**
|
|
42798
|
+
* Gets or sets the venues Country id.
|
|
42799
|
+
*/
|
|
42800
|
+
countryId?: number | null;
|
|
42801
|
+
/**
|
|
42802
|
+
* Gets or sets the venues lat.
|
|
42803
|
+
*/
|
|
42804
|
+
lat?: number | null;
|
|
42805
|
+
/**
|
|
42806
|
+
* Gets or sets the venues lng.
|
|
42807
|
+
*/
|
|
42808
|
+
lng?: number | null;
|
|
42809
|
+
/**
|
|
42810
|
+
* Gets or sets a value indicating whether opening hours are applicable to the location.
|
|
42811
|
+
*/
|
|
42812
|
+
hasOpeningHours?: boolean | null;
|
|
42813
|
+
/**
|
|
42814
|
+
* Gets or sets the contact phone.
|
|
42815
|
+
*/
|
|
42816
|
+
contactPhone?: string | null;
|
|
42817
|
+
/**
|
|
42818
|
+
* Gets or sets the contact email.
|
|
42819
|
+
*/
|
|
42820
|
+
contactEmail?: string | null;
|
|
42821
|
+
/**
|
|
42822
|
+
* Gets or sets the contact website.
|
|
42823
|
+
*/
|
|
42824
|
+
contactWebsite?: string | null;
|
|
42825
|
+
upcomingLayout: UpcomingLayout;
|
|
42826
|
+
/**
|
|
42827
|
+
* Gets or sets a value indicating whether the venue can take bookings.
|
|
42828
|
+
*/
|
|
42829
|
+
online?: boolean | null;
|
|
42830
|
+
/**
|
|
42831
|
+
* Gets or sets a value indicating whether the venue is published on the booking website.
|
|
42832
|
+
*/
|
|
42833
|
+
publishedOnWeb?: boolean | null;
|
|
42834
|
+
emailSettings?: UpdateEmailSettings;
|
|
42835
|
+
/**
|
|
42836
|
+
* Gets or sets the venue amenities Ids.
|
|
42837
|
+
*/
|
|
42838
|
+
amenities?: Array<number> | null;
|
|
42839
|
+
/**
|
|
42840
|
+
* Gets or sets the venue manager Ids.
|
|
42841
|
+
*/
|
|
42842
|
+
managers?: Array<string> | null;
|
|
42843
|
+
/**
|
|
42844
|
+
* Gets or sets the venue amenities.
|
|
42845
|
+
*/
|
|
42846
|
+
openingHours?: Array<VenueOpeningHourUpdate> | null;
|
|
42847
|
+
customFields?: CustomFieldsBulkUpdate;
|
|
42848
|
+
};
|
|
42849
|
+
|
|
42850
|
+
/**
|
|
42851
|
+
* Post model for venue inserts.
|
|
42852
|
+
*/
|
|
42853
|
+
type VenuePost = {
|
|
42854
|
+
/**
|
|
42855
|
+
* Gets or sets the tenant Id.
|
|
42856
|
+
*/
|
|
42857
|
+
tenantId: string;
|
|
42858
|
+
/**
|
|
42859
|
+
* Gets or sets the venues name.
|
|
42860
|
+
*/
|
|
42861
|
+
name?: string | null;
|
|
42862
|
+
/**
|
|
42863
|
+
* Gets or sets the venues description.
|
|
42864
|
+
*/
|
|
42865
|
+
description?: string | null;
|
|
42866
|
+
/**
|
|
42867
|
+
* Gets or sets the venue image url.
|
|
42868
|
+
*/
|
|
42869
|
+
imageUrl?: string | null;
|
|
42870
|
+
/**
|
|
42871
|
+
* Gets or sets the venues street address.
|
|
42872
|
+
*/
|
|
42873
|
+
streetAddress: string;
|
|
42874
|
+
/**
|
|
42875
|
+
* Gets or sets the venues locality.
|
|
42876
|
+
*/
|
|
42877
|
+
addressLocality?: string | null;
|
|
42878
|
+
/**
|
|
42879
|
+
* Gets or sets the venues region.
|
|
42880
|
+
*/
|
|
42881
|
+
addressRegion?: string | null;
|
|
42882
|
+
/**
|
|
42883
|
+
* Gets or sets the venues postcode.
|
|
42884
|
+
*/
|
|
42885
|
+
addressPostalcode: string;
|
|
42886
|
+
/**
|
|
42887
|
+
* Gets or sets the venues Country id.
|
|
42888
|
+
*/
|
|
42889
|
+
countryId: number;
|
|
42890
|
+
/**
|
|
42891
|
+
* Gets or sets the venues lat.
|
|
42892
|
+
*/
|
|
42893
|
+
lat: number;
|
|
42894
|
+
/**
|
|
42895
|
+
* Gets or sets the venues lng.
|
|
42896
|
+
*/
|
|
42897
|
+
lng: number;
|
|
42898
|
+
/**
|
|
42899
|
+
* Gets or sets the contact phone.
|
|
42900
|
+
*/
|
|
42901
|
+
contactPhone?: string | null;
|
|
42902
|
+
/**
|
|
42903
|
+
* Gets or sets the contact email.
|
|
42904
|
+
*/
|
|
42905
|
+
contactEmail?: string | null;
|
|
42906
|
+
/**
|
|
42907
|
+
* Gets or sets the contact website.
|
|
42908
|
+
*/
|
|
42909
|
+
contactWebsite?: string | null;
|
|
42910
|
+
/**
|
|
42911
|
+
* Gets or sets the amenity ids.
|
|
42912
|
+
*/
|
|
42913
|
+
amenityIds?: Array<number> | null;
|
|
42914
|
+
customFields?: CustomFieldsBulkUpdate;
|
|
42915
|
+
};
|
|
42916
|
+
|
|
42917
|
+
declare class PublicVenuesService {
|
|
42918
|
+
readonly httpRequest: BaseHttpRequest;
|
|
42919
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
42920
|
+
/**
|
|
42921
|
+
* @returns Venue OK
|
|
42922
|
+
* @throws ApiError
|
|
42923
|
+
*/
|
|
42924
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
42925
|
+
id: string;
|
|
42926
|
+
xTenantSubdomain?: string;
|
|
42927
|
+
}): CancelablePromise<Venue>;
|
|
42928
|
+
/**
|
|
42929
|
+
* Deletes the resource.
|
|
42930
|
+
* @returns any OK
|
|
42931
|
+
* @throws ApiError
|
|
42932
|
+
*/
|
|
42933
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
42934
|
+
/**
|
|
42935
|
+
* The <typeparamref name="TObject" /> id.
|
|
42936
|
+
*/
|
|
42937
|
+
id: string;
|
|
42938
|
+
/**
|
|
42939
|
+
* The tenants subdomain.
|
|
42940
|
+
*/
|
|
42941
|
+
xTenantSubdomain?: string;
|
|
42942
|
+
}): CancelablePromise<any>;
|
|
42943
|
+
/**
|
|
42944
|
+
* @returns VenuePage OK
|
|
42945
|
+
* @throws ApiError
|
|
42946
|
+
*/
|
|
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, }: {
|
|
42948
|
+
xTenantSubdomain?: string;
|
|
42949
|
+
/**
|
|
42950
|
+
* Gets or sets the queryable venue ids.
|
|
42951
|
+
*/
|
|
42952
|
+
ids?: Array<string>;
|
|
42953
|
+
/**
|
|
42954
|
+
* Gets or sets the queryable venue name wildcard.
|
|
42955
|
+
*/
|
|
42956
|
+
wildcard?: string;
|
|
42957
|
+
/**
|
|
42958
|
+
* Gets or sets the queryable venue name.
|
|
42959
|
+
*/
|
|
42960
|
+
name?: string;
|
|
42961
|
+
/**
|
|
42962
|
+
* Gets or sets the queryable venue street address.
|
|
42963
|
+
*/
|
|
42964
|
+
streetAddress?: string;
|
|
42965
|
+
/**
|
|
42966
|
+
* Gets or sets the queryable venue address postal code.
|
|
42967
|
+
*/
|
|
42968
|
+
addressPostalcode?: string;
|
|
42969
|
+
/**
|
|
42970
|
+
* Gets or sets the queryable venue name wildcard.
|
|
42971
|
+
*/
|
|
42972
|
+
nameLike?: string;
|
|
42973
|
+
/**
|
|
42974
|
+
* Gets or sets the queryable venue url slug.
|
|
42975
|
+
*/
|
|
42976
|
+
slug?: string;
|
|
42977
|
+
/**
|
|
42978
|
+
* Gets or sets the queryable assign to Id.
|
|
42979
|
+
*/
|
|
42980
|
+
assignedTo?: string;
|
|
42981
|
+
/**
|
|
42982
|
+
* Gets or sets the queryable stripe account Id.
|
|
42983
|
+
*/
|
|
42984
|
+
stripeAccountId?: string;
|
|
42985
|
+
/**
|
|
42986
|
+
* Gets or sets the queryable search geo center.
|
|
42987
|
+
*/
|
|
42988
|
+
searchGeoCenter?: string;
|
|
42989
|
+
/**
|
|
42990
|
+
* Gets or sets a value indicating whether to show published venues.
|
|
42991
|
+
*/
|
|
42992
|
+
publishedOnWeb?: boolean;
|
|
42993
|
+
/**
|
|
42994
|
+
* Gets or sets a value indicating whether to include archived venues.
|
|
42995
|
+
*/
|
|
42996
|
+
archived?: boolean;
|
|
42997
|
+
/**
|
|
42998
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
42999
|
+
*/
|
|
43000
|
+
networkId?: string;
|
|
43001
|
+
/**
|
|
43002
|
+
* Gets or sets a value indicating whether the results should return a specific tenant status.
|
|
43003
|
+
*/
|
|
43004
|
+
tenantStatus?: TenantStatus;
|
|
43005
|
+
/**
|
|
43006
|
+
* Gets or sets the queryable programme Id.
|
|
43007
|
+
*/
|
|
43008
|
+
programmeId?: string;
|
|
43009
|
+
/**
|
|
43010
|
+
* Gets or sets a value indicating whether to inlcude the venues opportunity images.
|
|
43011
|
+
*/
|
|
43012
|
+
includeOpportunityImages?: boolean;
|
|
43013
|
+
/**
|
|
43014
|
+
* Gets or sets a value indicating whether to inlcude the venues opportunity offers.
|
|
43015
|
+
*/
|
|
43016
|
+
includeOpportunityOffers?: boolean;
|
|
43017
|
+
/**
|
|
43018
|
+
* Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
|
|
43019
|
+
*/
|
|
43020
|
+
includeNextOpportunity?: boolean;
|
|
43021
|
+
/**
|
|
43022
|
+
* Gets or sets Distance.
|
|
43023
|
+
*/
|
|
43024
|
+
distance?: number;
|
|
43025
|
+
/**
|
|
43026
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
43027
|
+
*/
|
|
43028
|
+
dashboardRequest?: boolean;
|
|
43029
|
+
/**
|
|
43030
|
+
* Gets or sets the programme ids.
|
|
43031
|
+
*/
|
|
43032
|
+
programmeIds?: Array<string>;
|
|
43033
|
+
/**
|
|
43034
|
+
* Gets or sets the venue type ids.
|
|
43035
|
+
*/
|
|
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>;
|
|
41039
43045
|
/**
|
|
41040
43046
|
* Gets or sets the page number for paged queries.
|
|
41041
43047
|
*/
|
|
@@ -41101,7 +43107,7 @@ declare class PublicVenuesService {
|
|
|
41101
43107
|
* @returns VenuePage OK
|
|
41102
43108
|
* @throws ApiError
|
|
41103
43109
|
*/
|
|
41104
|
-
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, }: {
|
|
41105
43111
|
/**
|
|
41106
43112
|
* Gets or sets the queryable venue ids.
|
|
41107
43113
|
*/
|
|
@@ -41190,6 +43196,14 @@ declare class PublicVenuesService {
|
|
|
41190
43196
|
* Gets or sets the venue type ids.
|
|
41191
43197
|
*/
|
|
41192
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>;
|
|
41193
43207
|
/**
|
|
41194
43208
|
* Gets or sets the page number for paged queries.
|
|
41195
43209
|
*/
|
|
@@ -41240,7 +43254,7 @@ declare class PublicVenuesService {
|
|
|
41240
43254
|
* @returns VenuePage OK
|
|
41241
43255
|
* @throws ApiError
|
|
41242
43256
|
*/
|
|
41243
|
-
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, }: {
|
|
41244
43258
|
/**
|
|
41245
43259
|
* Gets or sets the queryable venue ids.
|
|
41246
43260
|
*/
|
|
@@ -41329,6 +43343,14 @@ declare class PublicVenuesService {
|
|
|
41329
43343
|
* Gets or sets the venue type ids.
|
|
41330
43344
|
*/
|
|
41331
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>;
|
|
41332
43354
|
/**
|
|
41333
43355
|
* Gets or sets the page number for paged queries.
|
|
41334
43356
|
*/
|
|
@@ -41439,7 +43461,7 @@ declare class PublicVenuesService {
|
|
|
41439
43461
|
* @returns boolean OK
|
|
41440
43462
|
* @throws ApiError
|
|
41441
43463
|
*/
|
|
41442
|
-
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, }: {
|
|
41443
43465
|
/**
|
|
41444
43466
|
* The tenants subdomain.
|
|
41445
43467
|
*/
|
|
@@ -41532,6 +43554,14 @@ declare class PublicVenuesService {
|
|
|
41532
43554
|
* Gets or sets the venue type ids.
|
|
41533
43555
|
*/
|
|
41534
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>;
|
|
41535
43565
|
/**
|
|
41536
43566
|
* Gets or sets the page number for paged queries.
|
|
41537
43567
|
*/
|
|
@@ -44434,7 +46464,7 @@ declare class ScheduledSessionsService {
|
|
|
44434
46464
|
* @returns ScheduledSessionPage OK
|
|
44435
46465
|
* @throws ApiError
|
|
44436
46466
|
*/
|
|
44437
|
-
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, }: {
|
|
44438
46468
|
/**
|
|
44439
46469
|
* Gets or sets the queryable scheduled session ids.
|
|
44440
46470
|
*/
|
|
@@ -44447,6 +46477,10 @@ declare class ScheduledSessionsService {
|
|
|
44447
46477
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44448
46478
|
*/
|
|
44449
46479
|
programmeId?: string;
|
|
46480
|
+
/**
|
|
46481
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
46482
|
+
*/
|
|
46483
|
+
providerId?: string;
|
|
44450
46484
|
/**
|
|
44451
46485
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44452
46486
|
*/
|
|
@@ -44630,7 +46664,7 @@ declare class ScheduledSessionsService {
|
|
|
44630
46664
|
* @returns boolean OK
|
|
44631
46665
|
* @throws ApiError
|
|
44632
46666
|
*/
|
|
44633
|
-
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, }: {
|
|
44634
46668
|
/**
|
|
44635
46669
|
* Gets or sets the queryable scheduled session ids.
|
|
44636
46670
|
*/
|
|
@@ -44643,6 +46677,10 @@ declare class ScheduledSessionsService {
|
|
|
44643
46677
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44644
46678
|
*/
|
|
44645
46679
|
programmeId?: string;
|
|
46680
|
+
/**
|
|
46681
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
46682
|
+
*/
|
|
46683
|
+
providerId?: string;
|
|
44646
46684
|
/**
|
|
44647
46685
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44648
46686
|
*/
|
|
@@ -44793,7 +46831,7 @@ declare class ScheduledSessionsService {
|
|
|
44793
46831
|
* @returns number OK
|
|
44794
46832
|
* @throws ApiError
|
|
44795
46833
|
*/
|
|
44796
|
-
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, }: {
|
|
44797
46835
|
/**
|
|
44798
46836
|
* Gets or sets the queryable scheduled session ids.
|
|
44799
46837
|
*/
|
|
@@ -44806,6 +46844,10 @@ declare class ScheduledSessionsService {
|
|
|
44806
46844
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44807
46845
|
*/
|
|
44808
46846
|
programmeId?: string;
|
|
46847
|
+
/**
|
|
46848
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
46849
|
+
*/
|
|
46850
|
+
providerId?: string;
|
|
44809
46851
|
/**
|
|
44810
46852
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44811
46853
|
*/
|
|
@@ -44956,7 +46998,7 @@ declare class ScheduledSessionsService {
|
|
|
44956
46998
|
* @returns ScheduledSession OK
|
|
44957
46999
|
* @throws ApiError
|
|
44958
47000
|
*/
|
|
44959
|
-
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, }: {
|
|
44960
47002
|
/**
|
|
44961
47003
|
* Gets or sets the queryable scheduled session ids.
|
|
44962
47004
|
*/
|
|
@@ -44969,6 +47011,10 @@ declare class ScheduledSessionsService {
|
|
|
44969
47011
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
44970
47012
|
*/
|
|
44971
47013
|
programmeId?: string;
|
|
47014
|
+
/**
|
|
47015
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
47016
|
+
*/
|
|
47017
|
+
providerId?: string;
|
|
44972
47018
|
/**
|
|
44973
47019
|
* Gets or sets the queryable scheduled session facility Id.
|
|
44974
47020
|
*/
|
|
@@ -45119,7 +47165,7 @@ declare class ScheduledSessionsService {
|
|
|
45119
47165
|
* @returns ScheduledSession OK
|
|
45120
47166
|
* @throws ApiError
|
|
45121
47167
|
*/
|
|
45122
|
-
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, }: {
|
|
45123
47169
|
/**
|
|
45124
47170
|
* Gets or sets the queryable scheduled session ids.
|
|
45125
47171
|
*/
|
|
@@ -45132,6 +47178,10 @@ declare class ScheduledSessionsService {
|
|
|
45132
47178
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
45133
47179
|
*/
|
|
45134
47180
|
programmeId?: string;
|
|
47181
|
+
/**
|
|
47182
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
47183
|
+
*/
|
|
47184
|
+
providerId?: string;
|
|
45135
47185
|
/**
|
|
45136
47186
|
* Gets or sets the queryable scheduled session facility Id.
|
|
45137
47187
|
*/
|
|
@@ -60710,7 +62760,7 @@ declare class VenuesService {
|
|
|
60710
62760
|
* @returns VenuePage OK
|
|
60711
62761
|
* @throws ApiError
|
|
60712
62762
|
*/
|
|
60713
|
-
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, }: {
|
|
60714
62764
|
/**
|
|
60715
62765
|
* Gets or sets the queryable venue ids.
|
|
60716
62766
|
*/
|
|
@@ -60799,6 +62849,14 @@ declare class VenuesService {
|
|
|
60799
62849
|
* Gets or sets the venue type ids.
|
|
60800
62850
|
*/
|
|
60801
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>;
|
|
60802
62860
|
/**
|
|
60803
62861
|
* Gets or sets the page number for paged queries.
|
|
60804
62862
|
*/
|
|
@@ -60882,7 +62940,7 @@ declare class VenuesService {
|
|
|
60882
62940
|
* @returns boolean OK
|
|
60883
62941
|
* @throws ApiError
|
|
60884
62942
|
*/
|
|
60885
|
-
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, }: {
|
|
60886
62944
|
/**
|
|
60887
62945
|
* Gets or sets the queryable venue ids.
|
|
60888
62946
|
*/
|
|
@@ -60971,6 +63029,14 @@ declare class VenuesService {
|
|
|
60971
63029
|
* Gets or sets the venue type ids.
|
|
60972
63030
|
*/
|
|
60973
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>;
|
|
60974
63040
|
/**
|
|
60975
63041
|
* Gets or sets the page number for paged queries.
|
|
60976
63042
|
*/
|
|
@@ -61021,7 +63087,7 @@ declare class VenuesService {
|
|
|
61021
63087
|
* @returns number OK
|
|
61022
63088
|
* @throws ApiError
|
|
61023
63089
|
*/
|
|
61024
|
-
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, }: {
|
|
61025
63091
|
/**
|
|
61026
63092
|
* Gets or sets the queryable venue ids.
|
|
61027
63093
|
*/
|
|
@@ -61110,6 +63176,14 @@ declare class VenuesService {
|
|
|
61110
63176
|
* Gets or sets the venue type ids.
|
|
61111
63177
|
*/
|
|
61112
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>;
|
|
61113
63187
|
/**
|
|
61114
63188
|
* Gets or sets the page number for paged queries.
|
|
61115
63189
|
*/
|
|
@@ -61160,7 +63234,7 @@ declare class VenuesService {
|
|
|
61160
63234
|
* @returns Venue OK
|
|
61161
63235
|
* @throws ApiError
|
|
61162
63236
|
*/
|
|
61163
|
-
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, }: {
|
|
61164
63238
|
/**
|
|
61165
63239
|
* Gets or sets the queryable venue ids.
|
|
61166
63240
|
*/
|
|
@@ -61249,6 +63323,14 @@ declare class VenuesService {
|
|
|
61249
63323
|
* Gets or sets the venue type ids.
|
|
61250
63324
|
*/
|
|
61251
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>;
|
|
61252
63334
|
/**
|
|
61253
63335
|
* Gets or sets the page number for paged queries.
|
|
61254
63336
|
*/
|
|
@@ -61299,7 +63381,7 @@ declare class VenuesService {
|
|
|
61299
63381
|
* @returns Venue OK
|
|
61300
63382
|
* @throws ApiError
|
|
61301
63383
|
*/
|
|
61302
|
-
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, }: {
|
|
61303
63385
|
/**
|
|
61304
63386
|
* Gets or sets the queryable venue ids.
|
|
61305
63387
|
*/
|
|
@@ -61388,6 +63470,14 @@ declare class VenuesService {
|
|
|
61388
63470
|
* Gets or sets the venue type ids.
|
|
61389
63471
|
*/
|
|
61390
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>;
|
|
61391
63481
|
/**
|
|
61392
63482
|
* Gets or sets the page number for paged queries.
|
|
61393
63483
|
*/
|
|
@@ -65610,6 +67700,7 @@ declare class ApiClient {
|
|
|
65610
67700
|
readonly dealActivities: DealActivitiesService;
|
|
65611
67701
|
readonly deals: DealsService;
|
|
65612
67702
|
readonly discountCodeUses: DiscountCodeUsesService;
|
|
67703
|
+
readonly dotdigital: DotdigitalService;
|
|
65613
67704
|
readonly emailReminderSchedules: EmailReminderSchedulesService;
|
|
65614
67705
|
readonly emailSettings: EmailSettingsService;
|
|
65615
67706
|
readonly endUserIdentitySecureToken: EndUserIdentitySecureTokenService;
|
|
@@ -65625,6 +67716,10 @@ declare class ApiClient {
|
|
|
65625
67716
|
readonly imageLibraryImage: ImageLibraryImageService;
|
|
65626
67717
|
readonly images: ImagesService;
|
|
65627
67718
|
readonly imageUploadHistory: ImageUploadHistoryService;
|
|
67719
|
+
readonly integrationDotdigitalFieldMap: IntegrationDotdigitalFieldMapService;
|
|
67720
|
+
readonly integrationDotdigitalLog: IntegrationDotdigitalLogService;
|
|
67721
|
+
readonly integrationDotDigitalSettings: IntegrationDotDigitalSettingsService;
|
|
67722
|
+
readonly integrationQueue: IntegrationQueueService;
|
|
65628
67723
|
readonly leasing: LeasingService;
|
|
65629
67724
|
readonly locationsReport: LocationsReportService;
|
|
65630
67725
|
readonly loqatePlaces: LoqatePlacesService;
|
|
@@ -65846,4 +67941,4 @@ type ValidationResultModel = {
|
|
|
65846
67941
|
readonly errors?: Array<ValidationError> | null;
|
|
65847
67942
|
};
|
|
65848
67943
|
|
|
65849
|
-
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 };
|