reach-api-sdk 1.0.209 → 1.0.210
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 +49 -13
- package/dist/reach-sdk.js +18 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +60 -5
- package/src/models/Customer.ts +0 -4
- package/src/models/OrderItem.ts +4 -0
- package/src/services/CustomersService.ts +42 -0
- package/src/services/PublicCustomersService.ts +12 -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
|
*/
|
|
@@ -11635,7 +11635,7 @@ declare class CustomersService {
|
|
|
11635
11635
|
* @returns any OK
|
|
11636
11636
|
* @throws ApiError
|
|
11637
11637
|
*/
|
|
11638
|
-
exportToCsv({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11638
|
+
exportToCsv({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11639
11639
|
/**
|
|
11640
11640
|
* Gets or sets the wildcard for use in a query search.
|
|
11641
11641
|
*/
|
|
@@ -11648,6 +11648,10 @@ declare class CustomersService {
|
|
|
11648
11648
|
* Gets or sets the venue id for use in a query search.
|
|
11649
11649
|
*/
|
|
11650
11650
|
venueId?: string;
|
|
11651
|
+
/**
|
|
11652
|
+
* Gets or sets the provider id for use in a query search.
|
|
11653
|
+
*/
|
|
11654
|
+
providerId?: string;
|
|
11651
11655
|
/**
|
|
11652
11656
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11653
11657
|
*/
|
|
@@ -11721,7 +11725,7 @@ declare class CustomersService {
|
|
|
11721
11725
|
* @returns any OK
|
|
11722
11726
|
* @throws ApiError
|
|
11723
11727
|
*/
|
|
11724
|
-
exportToXlsx({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11728
|
+
exportToXlsx({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
11725
11729
|
/**
|
|
11726
11730
|
* Gets or sets the wildcard for use in a query search.
|
|
11727
11731
|
*/
|
|
@@ -11734,6 +11738,10 @@ declare class CustomersService {
|
|
|
11734
11738
|
* Gets or sets the venue id for use in a query search.
|
|
11735
11739
|
*/
|
|
11736
11740
|
venueId?: string;
|
|
11741
|
+
/**
|
|
11742
|
+
* Gets or sets the provider id for use in a query search.
|
|
11743
|
+
*/
|
|
11744
|
+
providerId?: string;
|
|
11737
11745
|
/**
|
|
11738
11746
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11739
11747
|
*/
|
|
@@ -11861,7 +11869,7 @@ declare class CustomersService {
|
|
|
11861
11869
|
* @returns CustomerPage OK
|
|
11862
11870
|
* @throws ApiError
|
|
11863
11871
|
*/
|
|
11864
|
-
getPage({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11872
|
+
getPage({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11865
11873
|
/**
|
|
11866
11874
|
* Gets or sets the wildcard for use in a query search.
|
|
11867
11875
|
*/
|
|
@@ -11874,6 +11882,10 @@ declare class CustomersService {
|
|
|
11874
11882
|
* Gets or sets the venue id for use in a query search.
|
|
11875
11883
|
*/
|
|
11876
11884
|
venueId?: string;
|
|
11885
|
+
/**
|
|
11886
|
+
* Gets or sets the provider id for use in a query search.
|
|
11887
|
+
*/
|
|
11888
|
+
providerId?: string;
|
|
11877
11889
|
/**
|
|
11878
11890
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11879
11891
|
*/
|
|
@@ -11973,7 +11985,7 @@ declare class CustomersService {
|
|
|
11973
11985
|
* @returns boolean OK
|
|
11974
11986
|
* @throws ApiError
|
|
11975
11987
|
*/
|
|
11976
|
-
exists({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11988
|
+
exists({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11977
11989
|
/**
|
|
11978
11990
|
* Gets or sets the wildcard for use in a query search.
|
|
11979
11991
|
*/
|
|
@@ -11986,6 +11998,10 @@ declare class CustomersService {
|
|
|
11986
11998
|
* Gets or sets the venue id for use in a query search.
|
|
11987
11999
|
*/
|
|
11988
12000
|
venueId?: string;
|
|
12001
|
+
/**
|
|
12002
|
+
* Gets or sets the provider id for use in a query search.
|
|
12003
|
+
*/
|
|
12004
|
+
providerId?: string;
|
|
11989
12005
|
/**
|
|
11990
12006
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11991
12007
|
*/
|
|
@@ -12052,7 +12068,7 @@ declare class CustomersService {
|
|
|
12052
12068
|
* @returns number OK
|
|
12053
12069
|
* @throws ApiError
|
|
12054
12070
|
*/
|
|
12055
|
-
count({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12071
|
+
count({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12056
12072
|
/**
|
|
12057
12073
|
* Gets or sets the wildcard for use in a query search.
|
|
12058
12074
|
*/
|
|
@@ -12065,6 +12081,10 @@ declare class CustomersService {
|
|
|
12065
12081
|
* Gets or sets the venue id for use in a query search.
|
|
12066
12082
|
*/
|
|
12067
12083
|
venueId?: string;
|
|
12084
|
+
/**
|
|
12085
|
+
* Gets or sets the provider id for use in a query search.
|
|
12086
|
+
*/
|
|
12087
|
+
providerId?: string;
|
|
12068
12088
|
/**
|
|
12069
12089
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
12070
12090
|
*/
|
|
@@ -12131,7 +12151,7 @@ declare class CustomersService {
|
|
|
12131
12151
|
* @returns Customer OK
|
|
12132
12152
|
* @throws ApiError
|
|
12133
12153
|
*/
|
|
12134
|
-
getListWithoutReferences({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12154
|
+
getListWithoutReferences({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12135
12155
|
/**
|
|
12136
12156
|
* Gets or sets the wildcard for use in a query search.
|
|
12137
12157
|
*/
|
|
@@ -12144,6 +12164,10 @@ declare class CustomersService {
|
|
|
12144
12164
|
* Gets or sets the venue id for use in a query search.
|
|
12145
12165
|
*/
|
|
12146
12166
|
venueId?: string;
|
|
12167
|
+
/**
|
|
12168
|
+
* Gets or sets the provider id for use in a query search.
|
|
12169
|
+
*/
|
|
12170
|
+
providerId?: string;
|
|
12147
12171
|
/**
|
|
12148
12172
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
12149
12173
|
*/
|
|
@@ -12210,7 +12234,7 @@ declare class CustomersService {
|
|
|
12210
12234
|
* @returns Customer OK
|
|
12211
12235
|
* @throws ApiError
|
|
12212
12236
|
*/
|
|
12213
|
-
getListIdName({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12237
|
+
getListIdName({ wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12214
12238
|
/**
|
|
12215
12239
|
* Gets or sets the wildcard for use in a query search.
|
|
12216
12240
|
*/
|
|
@@ -12223,6 +12247,10 @@ declare class CustomersService {
|
|
|
12223
12247
|
* Gets or sets the venue id for use in a query search.
|
|
12224
12248
|
*/
|
|
12225
12249
|
venueId?: string;
|
|
12250
|
+
/**
|
|
12251
|
+
* Gets or sets the provider id for use in a query search.
|
|
12252
|
+
*/
|
|
12253
|
+
providerId?: string;
|
|
12226
12254
|
/**
|
|
12227
12255
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
12228
12256
|
*/
|
|
@@ -33048,7 +33076,7 @@ declare class PublicCustomersService {
|
|
|
33048
33076
|
* @returns CustomerPage OK
|
|
33049
33077
|
* @throws ApiError
|
|
33050
33078
|
*/
|
|
33051
|
-
getPage({ xTenantSubdomain, wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33079
|
+
getPage({ xTenantSubdomain, wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33052
33080
|
xTenantSubdomain?: string;
|
|
33053
33081
|
/**
|
|
33054
33082
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -33062,6 +33090,10 @@ declare class PublicCustomersService {
|
|
|
33062
33090
|
* Gets or sets the venue id for use in a query search.
|
|
33063
33091
|
*/
|
|
33064
33092
|
venueId?: string;
|
|
33093
|
+
/**
|
|
33094
|
+
* Gets or sets the provider id for use in a query search.
|
|
33095
|
+
*/
|
|
33096
|
+
providerId?: string;
|
|
33065
33097
|
/**
|
|
33066
33098
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
33067
33099
|
*/
|
|
@@ -33203,7 +33235,7 @@ declare class PublicCustomersService {
|
|
|
33203
33235
|
* @returns boolean OK
|
|
33204
33236
|
* @throws ApiError
|
|
33205
33237
|
*/
|
|
33206
|
-
exists({ xTenantSubdomain, wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33238
|
+
exists({ xTenantSubdomain, wildcard, displayEmail, venueId, providerId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33207
33239
|
/**
|
|
33208
33240
|
* The tenants subdomain.
|
|
33209
33241
|
*/
|
|
@@ -33220,6 +33252,10 @@ declare class PublicCustomersService {
|
|
|
33220
33252
|
* Gets or sets the venue id for use in a query search.
|
|
33221
33253
|
*/
|
|
33222
33254
|
venueId?: string;
|
|
33255
|
+
/**
|
|
33256
|
+
* Gets or sets the provider id for use in a query search.
|
|
33257
|
+
*/
|
|
33258
|
+
providerId?: string;
|
|
33223
33259
|
/**
|
|
33224
33260
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
33225
33261
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -5385,6 +5385,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5385
5385
|
wildcard,
|
|
5386
5386
|
displayEmail,
|
|
5387
5387
|
venueId,
|
|
5388
|
+
providerId,
|
|
5388
5389
|
programmeId,
|
|
5389
5390
|
marketingOptIn,
|
|
5390
5391
|
isActiveCustomer,
|
|
@@ -5409,6 +5410,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5409
5410
|
Wildcard: wildcard,
|
|
5410
5411
|
DisplayEmail: displayEmail,
|
|
5411
5412
|
VenueId: venueId,
|
|
5413
|
+
ProviderId: providerId,
|
|
5412
5414
|
ProgrammeId: programmeId,
|
|
5413
5415
|
MarketingOptIn: marketingOptIn,
|
|
5414
5416
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -5444,6 +5446,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5444
5446
|
wildcard,
|
|
5445
5447
|
displayEmail,
|
|
5446
5448
|
venueId,
|
|
5449
|
+
providerId,
|
|
5447
5450
|
programmeId,
|
|
5448
5451
|
marketingOptIn,
|
|
5449
5452
|
isActiveCustomer,
|
|
@@ -5468,6 +5471,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5468
5471
|
Wildcard: wildcard,
|
|
5469
5472
|
DisplayEmail: displayEmail,
|
|
5470
5473
|
VenueId: venueId,
|
|
5474
|
+
ProviderId: providerId,
|
|
5471
5475
|
ProgrammeId: programmeId,
|
|
5472
5476
|
MarketingOptIn: marketingOptIn,
|
|
5473
5477
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -5602,6 +5606,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5602
5606
|
wildcard,
|
|
5603
5607
|
displayEmail,
|
|
5604
5608
|
venueId,
|
|
5609
|
+
providerId,
|
|
5605
5610
|
programmeId,
|
|
5606
5611
|
marketingOptIn,
|
|
5607
5612
|
isActiveCustomer,
|
|
@@ -5625,6 +5630,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5625
5630
|
Wildcard: wildcard,
|
|
5626
5631
|
DisplayEmail: displayEmail,
|
|
5627
5632
|
VenueId: venueId,
|
|
5633
|
+
ProviderId: providerId,
|
|
5628
5634
|
ProgrammeId: programmeId,
|
|
5629
5635
|
MarketingOptIn: marketingOptIn,
|
|
5630
5636
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -5720,6 +5726,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5720
5726
|
wildcard,
|
|
5721
5727
|
displayEmail,
|
|
5722
5728
|
venueId,
|
|
5729
|
+
providerId,
|
|
5723
5730
|
programmeId,
|
|
5724
5731
|
marketingOptIn,
|
|
5725
5732
|
isActiveCustomer,
|
|
@@ -5743,6 +5750,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5743
5750
|
Wildcard: wildcard,
|
|
5744
5751
|
DisplayEmail: displayEmail,
|
|
5745
5752
|
VenueId: venueId,
|
|
5753
|
+
ProviderId: providerId,
|
|
5746
5754
|
ProgrammeId: programmeId,
|
|
5747
5755
|
MarketingOptIn: marketingOptIn,
|
|
5748
5756
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -5775,6 +5783,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5775
5783
|
wildcard,
|
|
5776
5784
|
displayEmail,
|
|
5777
5785
|
venueId,
|
|
5786
|
+
providerId,
|
|
5778
5787
|
programmeId,
|
|
5779
5788
|
marketingOptIn,
|
|
5780
5789
|
isActiveCustomer,
|
|
@@ -5798,6 +5807,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5798
5807
|
Wildcard: wildcard,
|
|
5799
5808
|
DisplayEmail: displayEmail,
|
|
5800
5809
|
VenueId: venueId,
|
|
5810
|
+
ProviderId: providerId,
|
|
5801
5811
|
ProgrammeId: programmeId,
|
|
5802
5812
|
MarketingOptIn: marketingOptIn,
|
|
5803
5813
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -5830,6 +5840,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5830
5840
|
wildcard,
|
|
5831
5841
|
displayEmail,
|
|
5832
5842
|
venueId,
|
|
5843
|
+
providerId,
|
|
5833
5844
|
programmeId,
|
|
5834
5845
|
marketingOptIn,
|
|
5835
5846
|
isActiveCustomer,
|
|
@@ -5853,6 +5864,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5853
5864
|
Wildcard: wildcard,
|
|
5854
5865
|
DisplayEmail: displayEmail,
|
|
5855
5866
|
VenueId: venueId,
|
|
5867
|
+
ProviderId: providerId,
|
|
5856
5868
|
ProgrammeId: programmeId,
|
|
5857
5869
|
MarketingOptIn: marketingOptIn,
|
|
5858
5870
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -5885,6 +5897,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5885
5897
|
wildcard,
|
|
5886
5898
|
displayEmail,
|
|
5887
5899
|
venueId,
|
|
5900
|
+
providerId,
|
|
5888
5901
|
programmeId,
|
|
5889
5902
|
marketingOptIn,
|
|
5890
5903
|
isActiveCustomer,
|
|
@@ -5908,6 +5921,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5908
5921
|
Wildcard: wildcard,
|
|
5909
5922
|
DisplayEmail: displayEmail,
|
|
5910
5923
|
VenueId: venueId,
|
|
5924
|
+
ProviderId: providerId,
|
|
5911
5925
|
ProgrammeId: programmeId,
|
|
5912
5926
|
MarketingOptIn: marketingOptIn,
|
|
5913
5927
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -21626,6 +21640,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21626
21640
|
wildcard,
|
|
21627
21641
|
displayEmail,
|
|
21628
21642
|
venueId,
|
|
21643
|
+
providerId,
|
|
21629
21644
|
programmeId,
|
|
21630
21645
|
marketingOptIn,
|
|
21631
21646
|
isActiveCustomer,
|
|
@@ -21652,6 +21667,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21652
21667
|
Wildcard: wildcard,
|
|
21653
21668
|
DisplayEmail: displayEmail,
|
|
21654
21669
|
VenueId: venueId,
|
|
21670
|
+
ProviderId: providerId,
|
|
21655
21671
|
ProgrammeId: programmeId,
|
|
21656
21672
|
MarketingOptIn: marketingOptIn,
|
|
21657
21673
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -21806,6 +21822,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21806
21822
|
wildcard,
|
|
21807
21823
|
displayEmail,
|
|
21808
21824
|
venueId,
|
|
21825
|
+
providerId,
|
|
21809
21826
|
programmeId,
|
|
21810
21827
|
marketingOptIn,
|
|
21811
21828
|
isActiveCustomer,
|
|
@@ -21832,6 +21849,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21832
21849
|
Wildcard: wildcard,
|
|
21833
21850
|
DisplayEmail: displayEmail,
|
|
21834
21851
|
VenueId: venueId,
|
|
21852
|
+
ProviderId: providerId,
|
|
21835
21853
|
ProgrammeId: programmeId,
|
|
21836
21854
|
MarketingOptIn: marketingOptIn,
|
|
21837
21855
|
IsActiveCustomer: isActiveCustomer,
|
package/package.json
CHANGED
|
@@ -15029,6 +15029,12 @@ paths:
|
|
|
15029
15029
|
schema:
|
|
15030
15030
|
type: string
|
|
15031
15031
|
format: uuid
|
|
15032
|
+
- name: ProviderId
|
|
15033
|
+
in: query
|
|
15034
|
+
description: Gets or sets the provider id for use in a query search.
|
|
15035
|
+
schema:
|
|
15036
|
+
type: string
|
|
15037
|
+
format: uuid
|
|
15032
15038
|
- name: ProgrammeId
|
|
15033
15039
|
in: query
|
|
15034
15040
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -15191,6 +15197,12 @@ paths:
|
|
|
15191
15197
|
schema:
|
|
15192
15198
|
type: string
|
|
15193
15199
|
format: uuid
|
|
15200
|
+
- name: ProviderId
|
|
15201
|
+
in: query
|
|
15202
|
+
description: Gets or sets the provider id for use in a query search.
|
|
15203
|
+
schema:
|
|
15204
|
+
type: string
|
|
15205
|
+
format: uuid
|
|
15194
15206
|
- name: ProgrammeId
|
|
15195
15207
|
in: query
|
|
15196
15208
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -15687,6 +15699,12 @@ paths:
|
|
|
15687
15699
|
schema:
|
|
15688
15700
|
type: string
|
|
15689
15701
|
format: uuid
|
|
15702
|
+
- name: ProviderId
|
|
15703
|
+
in: query
|
|
15704
|
+
description: Gets or sets the provider id for use in a query search.
|
|
15705
|
+
schema:
|
|
15706
|
+
type: string
|
|
15707
|
+
format: uuid
|
|
15690
15708
|
- name: ProgrammeId
|
|
15691
15709
|
in: query
|
|
15692
15710
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -16024,6 +16042,12 @@ paths:
|
|
|
16024
16042
|
schema:
|
|
16025
16043
|
type: string
|
|
16026
16044
|
format: uuid
|
|
16045
|
+
- name: ProviderId
|
|
16046
|
+
in: query
|
|
16047
|
+
description: Gets or sets the provider id for use in a query search.
|
|
16048
|
+
schema:
|
|
16049
|
+
type: string
|
|
16050
|
+
format: uuid
|
|
16027
16051
|
- name: ProgrammeId
|
|
16028
16052
|
in: query
|
|
16029
16053
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -16183,6 +16207,12 @@ paths:
|
|
|
16183
16207
|
schema:
|
|
16184
16208
|
type: string
|
|
16185
16209
|
format: uuid
|
|
16210
|
+
- name: ProviderId
|
|
16211
|
+
in: query
|
|
16212
|
+
description: Gets or sets the provider id for use in a query search.
|
|
16213
|
+
schema:
|
|
16214
|
+
type: string
|
|
16215
|
+
format: uuid
|
|
16186
16216
|
- name: ProgrammeId
|
|
16187
16217
|
in: query
|
|
16188
16218
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -16345,6 +16375,12 @@ paths:
|
|
|
16345
16375
|
schema:
|
|
16346
16376
|
type: string
|
|
16347
16377
|
format: uuid
|
|
16378
|
+
- name: ProviderId
|
|
16379
|
+
in: query
|
|
16380
|
+
description: Gets or sets the provider id for use in a query search.
|
|
16381
|
+
schema:
|
|
16382
|
+
type: string
|
|
16383
|
+
format: uuid
|
|
16348
16384
|
- name: ProgrammeId
|
|
16349
16385
|
in: query
|
|
16350
16386
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -16510,6 +16546,12 @@ paths:
|
|
|
16510
16546
|
schema:
|
|
16511
16547
|
type: string
|
|
16512
16548
|
format: uuid
|
|
16549
|
+
- name: ProviderId
|
|
16550
|
+
in: query
|
|
16551
|
+
description: Gets or sets the provider id for use in a query search.
|
|
16552
|
+
schema:
|
|
16553
|
+
type: string
|
|
16554
|
+
format: uuid
|
|
16513
16555
|
- name: ProgrammeId
|
|
16514
16556
|
in: query
|
|
16515
16557
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -63765,6 +63807,12 @@ paths:
|
|
|
63765
63807
|
schema:
|
|
63766
63808
|
type: string
|
|
63767
63809
|
format: uuid
|
|
63810
|
+
- name: ProviderId
|
|
63811
|
+
in: query
|
|
63812
|
+
description: Gets or sets the provider id for use in a query search.
|
|
63813
|
+
schema:
|
|
63814
|
+
type: string
|
|
63815
|
+
format: uuid
|
|
63768
63816
|
- name: ProgrammeId
|
|
63769
63817
|
in: query
|
|
63770
63818
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -64279,6 +64327,12 @@ paths:
|
|
|
64279
64327
|
schema:
|
|
64280
64328
|
type: string
|
|
64281
64329
|
format: uuid
|
|
64330
|
+
- name: ProviderId
|
|
64331
|
+
in: query
|
|
64332
|
+
description: Gets or sets the provider id for use in a query search.
|
|
64333
|
+
schema:
|
|
64334
|
+
type: string
|
|
64335
|
+
format: uuid
|
|
64282
64336
|
- name: ProgrammeId
|
|
64283
64337
|
in: query
|
|
64284
64338
|
description: Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
@@ -144889,11 +144943,6 @@ components:
|
|
|
144889
144943
|
type: boolean
|
|
144890
144944
|
description: Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
144891
144945
|
default: false
|
|
144892
|
-
providerId:
|
|
144893
|
-
type: string
|
|
144894
|
-
description: Gets or sets the customer provider id.
|
|
144895
|
-
format: uuid
|
|
144896
|
-
nullable: true
|
|
144897
144946
|
type:
|
|
144898
144947
|
$ref: '#/components/schemas/CustomerType'
|
|
144899
144948
|
firstName:
|
|
@@ -148921,6 +148970,12 @@ components:
|
|
|
148921
148970
|
format: uuid
|
|
148922
148971
|
nullable: true
|
|
148923
148972
|
readOnly: true
|
|
148973
|
+
providerId:
|
|
148974
|
+
type: string
|
|
148975
|
+
description: Gets the provider id.
|
|
148976
|
+
format: uuid
|
|
148977
|
+
nullable: true
|
|
148978
|
+
readOnly: true
|
|
148924
148979
|
quantity:
|
|
148925
148980
|
type: integer
|
|
148926
148981
|
description: Gets or sets the quantity of opportunities required on the order item.
|
package/src/models/Customer.ts
CHANGED
|
@@ -37,10 +37,6 @@ export type Customer = {
|
|
|
37
37
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
38
38
|
*/
|
|
39
39
|
isLive: boolean;
|
|
40
|
-
/**
|
|
41
|
-
* Gets or sets the customer provider id.
|
|
42
|
-
*/
|
|
43
|
-
providerId?: string | null;
|
|
44
40
|
type?: CustomerType;
|
|
45
41
|
/**
|
|
46
42
|
* Gets or sets the first name.
|
package/src/models/OrderItem.ts
CHANGED
|
@@ -70,6 +70,10 @@ export type OrderItem = {
|
|
|
70
70
|
* Gets the venue id.
|
|
71
71
|
*/
|
|
72
72
|
readonly venueId?: string | null;
|
|
73
|
+
/**
|
|
74
|
+
* Gets the provider id.
|
|
75
|
+
*/
|
|
76
|
+
readonly providerId?: string | null;
|
|
73
77
|
/**
|
|
74
78
|
* Gets or sets the quantity of opportunities required on the order item.
|
|
75
79
|
*/
|
|
@@ -121,6 +121,7 @@ export class CustomersService {
|
|
|
121
121
|
wildcard,
|
|
122
122
|
displayEmail,
|
|
123
123
|
venueId,
|
|
124
|
+
providerId,
|
|
124
125
|
programmeId,
|
|
125
126
|
marketingOptIn,
|
|
126
127
|
isActiveCustomer,
|
|
@@ -150,6 +151,10 @@ export class CustomersService {
|
|
|
150
151
|
* Gets or sets the venue id for use in a query search.
|
|
151
152
|
*/
|
|
152
153
|
venueId?: string;
|
|
154
|
+
/**
|
|
155
|
+
* Gets or sets the provider id for use in a query search.
|
|
156
|
+
*/
|
|
157
|
+
providerId?: string;
|
|
153
158
|
/**
|
|
154
159
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
155
160
|
*/
|
|
@@ -224,6 +229,7 @@ export class CustomersService {
|
|
|
224
229
|
Wildcard: wildcard,
|
|
225
230
|
DisplayEmail: displayEmail,
|
|
226
231
|
VenueId: venueId,
|
|
232
|
+
ProviderId: providerId,
|
|
227
233
|
ProgrammeId: programmeId,
|
|
228
234
|
MarketingOptIn: marketingOptIn,
|
|
229
235
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -260,6 +266,7 @@ export class CustomersService {
|
|
|
260
266
|
wildcard,
|
|
261
267
|
displayEmail,
|
|
262
268
|
venueId,
|
|
269
|
+
providerId,
|
|
263
270
|
programmeId,
|
|
264
271
|
marketingOptIn,
|
|
265
272
|
isActiveCustomer,
|
|
@@ -289,6 +296,10 @@ export class CustomersService {
|
|
|
289
296
|
* Gets or sets the venue id for use in a query search.
|
|
290
297
|
*/
|
|
291
298
|
venueId?: string;
|
|
299
|
+
/**
|
|
300
|
+
* Gets or sets the provider id for use in a query search.
|
|
301
|
+
*/
|
|
302
|
+
providerId?: string;
|
|
292
303
|
/**
|
|
293
304
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
294
305
|
*/
|
|
@@ -363,6 +374,7 @@ export class CustomersService {
|
|
|
363
374
|
Wildcard: wildcard,
|
|
364
375
|
DisplayEmail: displayEmail,
|
|
365
376
|
VenueId: venueId,
|
|
377
|
+
ProviderId: providerId,
|
|
366
378
|
ProgrammeId: programmeId,
|
|
367
379
|
MarketingOptIn: marketingOptIn,
|
|
368
380
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -528,6 +540,7 @@ export class CustomersService {
|
|
|
528
540
|
wildcard,
|
|
529
541
|
displayEmail,
|
|
530
542
|
venueId,
|
|
543
|
+
providerId,
|
|
531
544
|
programmeId,
|
|
532
545
|
marketingOptIn,
|
|
533
546
|
isActiveCustomer,
|
|
@@ -556,6 +569,10 @@ export class CustomersService {
|
|
|
556
569
|
* Gets or sets the venue id for use in a query search.
|
|
557
570
|
*/
|
|
558
571
|
venueId?: string;
|
|
572
|
+
/**
|
|
573
|
+
* Gets or sets the provider id for use in a query search.
|
|
574
|
+
*/
|
|
575
|
+
providerId?: string;
|
|
559
576
|
/**
|
|
560
577
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
561
578
|
*/
|
|
@@ -624,6 +641,7 @@ export class CustomersService {
|
|
|
624
641
|
Wildcard: wildcard,
|
|
625
642
|
DisplayEmail: displayEmail,
|
|
626
643
|
VenueId: venueId,
|
|
644
|
+
ProviderId: providerId,
|
|
627
645
|
ProgrammeId: programmeId,
|
|
628
646
|
MarketingOptIn: marketingOptIn,
|
|
629
647
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -738,6 +756,7 @@ export class CustomersService {
|
|
|
738
756
|
wildcard,
|
|
739
757
|
displayEmail,
|
|
740
758
|
venueId,
|
|
759
|
+
providerId,
|
|
741
760
|
programmeId,
|
|
742
761
|
marketingOptIn,
|
|
743
762
|
isActiveCustomer,
|
|
@@ -766,6 +785,10 @@ export class CustomersService {
|
|
|
766
785
|
* Gets or sets the venue id for use in a query search.
|
|
767
786
|
*/
|
|
768
787
|
venueId?: string;
|
|
788
|
+
/**
|
|
789
|
+
* Gets or sets the provider id for use in a query search.
|
|
790
|
+
*/
|
|
791
|
+
providerId?: string;
|
|
769
792
|
/**
|
|
770
793
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
771
794
|
*/
|
|
@@ -834,6 +857,7 @@ export class CustomersService {
|
|
|
834
857
|
Wildcard: wildcard,
|
|
835
858
|
DisplayEmail: displayEmail,
|
|
836
859
|
VenueId: venueId,
|
|
860
|
+
ProviderId: providerId,
|
|
837
861
|
ProgrammeId: programmeId,
|
|
838
862
|
MarketingOptIn: marketingOptIn,
|
|
839
863
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -867,6 +891,7 @@ export class CustomersService {
|
|
|
867
891
|
wildcard,
|
|
868
892
|
displayEmail,
|
|
869
893
|
venueId,
|
|
894
|
+
providerId,
|
|
870
895
|
programmeId,
|
|
871
896
|
marketingOptIn,
|
|
872
897
|
isActiveCustomer,
|
|
@@ -895,6 +920,10 @@ export class CustomersService {
|
|
|
895
920
|
* Gets or sets the venue id for use in a query search.
|
|
896
921
|
*/
|
|
897
922
|
venueId?: string;
|
|
923
|
+
/**
|
|
924
|
+
* Gets or sets the provider id for use in a query search.
|
|
925
|
+
*/
|
|
926
|
+
providerId?: string;
|
|
898
927
|
/**
|
|
899
928
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
900
929
|
*/
|
|
@@ -963,6 +992,7 @@ export class CustomersService {
|
|
|
963
992
|
Wildcard: wildcard,
|
|
964
993
|
DisplayEmail: displayEmail,
|
|
965
994
|
VenueId: venueId,
|
|
995
|
+
ProviderId: providerId,
|
|
966
996
|
ProgrammeId: programmeId,
|
|
967
997
|
MarketingOptIn: marketingOptIn,
|
|
968
998
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -996,6 +1026,7 @@ export class CustomersService {
|
|
|
996
1026
|
wildcard,
|
|
997
1027
|
displayEmail,
|
|
998
1028
|
venueId,
|
|
1029
|
+
providerId,
|
|
999
1030
|
programmeId,
|
|
1000
1031
|
marketingOptIn,
|
|
1001
1032
|
isActiveCustomer,
|
|
@@ -1024,6 +1055,10 @@ export class CustomersService {
|
|
|
1024
1055
|
* Gets or sets the venue id for use in a query search.
|
|
1025
1056
|
*/
|
|
1026
1057
|
venueId?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* Gets or sets the provider id for use in a query search.
|
|
1060
|
+
*/
|
|
1061
|
+
providerId?: string;
|
|
1027
1062
|
/**
|
|
1028
1063
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
1029
1064
|
*/
|
|
@@ -1092,6 +1127,7 @@ export class CustomersService {
|
|
|
1092
1127
|
Wildcard: wildcard,
|
|
1093
1128
|
DisplayEmail: displayEmail,
|
|
1094
1129
|
VenueId: venueId,
|
|
1130
|
+
ProviderId: providerId,
|
|
1095
1131
|
ProgrammeId: programmeId,
|
|
1096
1132
|
MarketingOptIn: marketingOptIn,
|
|
1097
1133
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -1125,6 +1161,7 @@ export class CustomersService {
|
|
|
1125
1161
|
wildcard,
|
|
1126
1162
|
displayEmail,
|
|
1127
1163
|
venueId,
|
|
1164
|
+
providerId,
|
|
1128
1165
|
programmeId,
|
|
1129
1166
|
marketingOptIn,
|
|
1130
1167
|
isActiveCustomer,
|
|
@@ -1153,6 +1190,10 @@ export class CustomersService {
|
|
|
1153
1190
|
* Gets or sets the venue id for use in a query search.
|
|
1154
1191
|
*/
|
|
1155
1192
|
venueId?: string;
|
|
1193
|
+
/**
|
|
1194
|
+
* Gets or sets the provider id for use in a query search.
|
|
1195
|
+
*/
|
|
1196
|
+
providerId?: string;
|
|
1156
1197
|
/**
|
|
1157
1198
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
1158
1199
|
*/
|
|
@@ -1221,6 +1262,7 @@ export class CustomersService {
|
|
|
1221
1262
|
Wildcard: wildcard,
|
|
1222
1263
|
DisplayEmail: displayEmail,
|
|
1223
1264
|
VenueId: venueId,
|
|
1265
|
+
ProviderId: providerId,
|
|
1224
1266
|
ProgrammeId: programmeId,
|
|
1225
1267
|
MarketingOptIn: marketingOptIn,
|
|
1226
1268
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -86,6 +86,7 @@ export class PublicCustomersService {
|
|
|
86
86
|
wildcard,
|
|
87
87
|
displayEmail,
|
|
88
88
|
venueId,
|
|
89
|
+
providerId,
|
|
89
90
|
programmeId,
|
|
90
91
|
marketingOptIn,
|
|
91
92
|
isActiveCustomer,
|
|
@@ -115,6 +116,10 @@ export class PublicCustomersService {
|
|
|
115
116
|
* Gets or sets the venue id for use in a query search.
|
|
116
117
|
*/
|
|
117
118
|
venueId?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Gets or sets the provider id for use in a query search.
|
|
121
|
+
*/
|
|
122
|
+
providerId?: string;
|
|
118
123
|
/**
|
|
119
124
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
120
125
|
*/
|
|
@@ -186,6 +191,7 @@ export class PublicCustomersService {
|
|
|
186
191
|
Wildcard: wildcard,
|
|
187
192
|
DisplayEmail: displayEmail,
|
|
188
193
|
VenueId: venueId,
|
|
194
|
+
ProviderId: providerId,
|
|
189
195
|
ProgrammeId: programmeId,
|
|
190
196
|
MarketingOptIn: marketingOptIn,
|
|
191
197
|
IsActiveCustomer: isActiveCustomer,
|
|
@@ -391,6 +397,7 @@ export class PublicCustomersService {
|
|
|
391
397
|
wildcard,
|
|
392
398
|
displayEmail,
|
|
393
399
|
venueId,
|
|
400
|
+
providerId,
|
|
394
401
|
programmeId,
|
|
395
402
|
marketingOptIn,
|
|
396
403
|
isActiveCustomer,
|
|
@@ -423,6 +430,10 @@ export class PublicCustomersService {
|
|
|
423
430
|
* Gets or sets the venue id for use in a query search.
|
|
424
431
|
*/
|
|
425
432
|
venueId?: string;
|
|
433
|
+
/**
|
|
434
|
+
* Gets or sets the provider id for use in a query search.
|
|
435
|
+
*/
|
|
436
|
+
providerId?: string;
|
|
426
437
|
/**
|
|
427
438
|
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
428
439
|
*/
|
|
@@ -494,6 +505,7 @@ export class PublicCustomersService {
|
|
|
494
505
|
Wildcard: wildcard,
|
|
495
506
|
DisplayEmail: displayEmail,
|
|
496
507
|
VenueId: venueId,
|
|
508
|
+
ProviderId: providerId,
|
|
497
509
|
ProgrammeId: programmeId,
|
|
498
510
|
MarketingOptIn: marketingOptIn,
|
|
499
511
|
IsActiveCustomer: isActiveCustomer,
|