reach-api-sdk 1.0.219 → 1.0.221
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 +55 -7
- package/dist/reach-sdk.js +14 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +63 -0
- package/src/models/SellableItemPatch.ts +4 -0
- package/src/models/TenantWebsiteSetting.ts +8 -0
- package/src/models/TenantWebsiteSettingPatch.ts +8 -0
- package/src/services/PublicSellableItemsService.ts +12 -0
- package/src/services/SellableItemsService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -2337,6 +2337,14 @@ type TenantWebsiteSetting = {
|
|
|
2337
2337
|
*/
|
|
2338
2338
|
defaultMapCenterPlaceId?: string | null;
|
|
2339
2339
|
websiteHomepage?: WebsiteHomepage;
|
|
2340
|
+
/**
|
|
2341
|
+
* Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
2342
|
+
*/
|
|
2343
|
+
checkoutGatingMessageEnabled?: boolean | null;
|
|
2344
|
+
/**
|
|
2345
|
+
* Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
|
|
2346
|
+
*/
|
|
2347
|
+
checkoutGatingMessage?: string | null;
|
|
2340
2348
|
};
|
|
2341
2349
|
|
|
2342
2350
|
/**
|
|
@@ -42786,6 +42794,10 @@ type SellableItemPatch = {
|
|
|
42786
42794
|
* Gets or sets the venue id.
|
|
42787
42795
|
*/
|
|
42788
42796
|
venueId?: string | null;
|
|
42797
|
+
/**
|
|
42798
|
+
* Gets or sets the provider id.
|
|
42799
|
+
*/
|
|
42800
|
+
providerId?: string | null;
|
|
42789
42801
|
/**
|
|
42790
42802
|
* Gets or sets the activity category id.
|
|
42791
42803
|
*/
|
|
@@ -43078,7 +43090,7 @@ declare class PublicSellableItemsService {
|
|
|
43078
43090
|
* @returns SellableItemPage OK
|
|
43079
43091
|
* @throws ApiError
|
|
43080
43092
|
*/
|
|
43081
|
-
getPage({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43093
|
+
getPage({ xTenantSubdomain, ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43082
43094
|
xTenantSubdomain?: string;
|
|
43083
43095
|
/**
|
|
43084
43096
|
* Gets or sets the queryable ids.
|
|
@@ -43088,6 +43100,10 @@ declare class PublicSellableItemsService {
|
|
|
43088
43100
|
* Gets or sets the queryable Venue Id.
|
|
43089
43101
|
*/
|
|
43090
43102
|
venueId?: string;
|
|
43103
|
+
/**
|
|
43104
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
43105
|
+
*/
|
|
43106
|
+
providerId?: string;
|
|
43091
43107
|
/**
|
|
43092
43108
|
* Gets or sets a value indicating whether return online items.
|
|
43093
43109
|
*/
|
|
@@ -43214,7 +43230,7 @@ declare class PublicSellableItemsService {
|
|
|
43214
43230
|
* @returns boolean OK
|
|
43215
43231
|
* @throws ApiError
|
|
43216
43232
|
*/
|
|
43217
|
-
exists({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43233
|
+
exists({ xTenantSubdomain, ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43218
43234
|
/**
|
|
43219
43235
|
* The tenants subdomain.
|
|
43220
43236
|
*/
|
|
@@ -43227,6 +43243,10 @@ declare class PublicSellableItemsService {
|
|
|
43227
43243
|
* Gets or sets the queryable Venue Id.
|
|
43228
43244
|
*/
|
|
43229
43245
|
venueId?: string;
|
|
43246
|
+
/**
|
|
43247
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
43248
|
+
*/
|
|
43249
|
+
providerId?: string;
|
|
43230
43250
|
/**
|
|
43231
43251
|
* Gets or sets a value indicating whether return online items.
|
|
43232
43252
|
*/
|
|
@@ -51714,7 +51734,7 @@ declare class SellableItemsService {
|
|
|
51714
51734
|
* @returns SellableItemPage OK
|
|
51715
51735
|
* @throws ApiError
|
|
51716
51736
|
*/
|
|
51717
|
-
getPage({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51737
|
+
getPage({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51718
51738
|
/**
|
|
51719
51739
|
* Gets or sets the queryable ids.
|
|
51720
51740
|
*/
|
|
@@ -51723,6 +51743,10 @@ declare class SellableItemsService {
|
|
|
51723
51743
|
* Gets or sets the queryable Venue Id.
|
|
51724
51744
|
*/
|
|
51725
51745
|
venueId?: string;
|
|
51746
|
+
/**
|
|
51747
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
51748
|
+
*/
|
|
51749
|
+
providerId?: string;
|
|
51726
51750
|
/**
|
|
51727
51751
|
* Gets or sets a value indicating whether return online items.
|
|
51728
51752
|
*/
|
|
@@ -51822,7 +51846,7 @@ declare class SellableItemsService {
|
|
|
51822
51846
|
* @returns boolean OK
|
|
51823
51847
|
* @throws ApiError
|
|
51824
51848
|
*/
|
|
51825
|
-
exists({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51849
|
+
exists({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51826
51850
|
/**
|
|
51827
51851
|
* Gets or sets the queryable ids.
|
|
51828
51852
|
*/
|
|
@@ -51831,6 +51855,10 @@ declare class SellableItemsService {
|
|
|
51831
51855
|
* Gets or sets the queryable Venue Id.
|
|
51832
51856
|
*/
|
|
51833
51857
|
venueId?: string;
|
|
51858
|
+
/**
|
|
51859
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
51860
|
+
*/
|
|
51861
|
+
providerId?: string;
|
|
51834
51862
|
/**
|
|
51835
51863
|
* Gets or sets a value indicating whether return online items.
|
|
51836
51864
|
*/
|
|
@@ -51897,7 +51925,7 @@ declare class SellableItemsService {
|
|
|
51897
51925
|
* @returns number OK
|
|
51898
51926
|
* @throws ApiError
|
|
51899
51927
|
*/
|
|
51900
|
-
count({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51928
|
+
count({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51901
51929
|
/**
|
|
51902
51930
|
* Gets or sets the queryable ids.
|
|
51903
51931
|
*/
|
|
@@ -51906,6 +51934,10 @@ declare class SellableItemsService {
|
|
|
51906
51934
|
* Gets or sets the queryable Venue Id.
|
|
51907
51935
|
*/
|
|
51908
51936
|
venueId?: string;
|
|
51937
|
+
/**
|
|
51938
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
51939
|
+
*/
|
|
51940
|
+
providerId?: string;
|
|
51909
51941
|
/**
|
|
51910
51942
|
* Gets or sets a value indicating whether return online items.
|
|
51911
51943
|
*/
|
|
@@ -51972,7 +52004,7 @@ declare class SellableItemsService {
|
|
|
51972
52004
|
* @returns SellableItem OK
|
|
51973
52005
|
* @throws ApiError
|
|
51974
52006
|
*/
|
|
51975
|
-
getListWithoutReferences({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52007
|
+
getListWithoutReferences({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51976
52008
|
/**
|
|
51977
52009
|
* Gets or sets the queryable ids.
|
|
51978
52010
|
*/
|
|
@@ -51981,6 +52013,10 @@ declare class SellableItemsService {
|
|
|
51981
52013
|
* Gets or sets the queryable Venue Id.
|
|
51982
52014
|
*/
|
|
51983
52015
|
venueId?: string;
|
|
52016
|
+
/**
|
|
52017
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
52018
|
+
*/
|
|
52019
|
+
providerId?: string;
|
|
51984
52020
|
/**
|
|
51985
52021
|
* Gets or sets a value indicating whether return online items.
|
|
51986
52022
|
*/
|
|
@@ -52047,7 +52083,7 @@ declare class SellableItemsService {
|
|
|
52047
52083
|
* @returns SellableItem OK
|
|
52048
52084
|
* @throws ApiError
|
|
52049
52085
|
*/
|
|
52050
|
-
getListIdName({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52086
|
+
getListIdName({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52051
52087
|
/**
|
|
52052
52088
|
* Gets or sets the queryable ids.
|
|
52053
52089
|
*/
|
|
@@ -52056,6 +52092,10 @@ declare class SellableItemsService {
|
|
|
52056
52092
|
* Gets or sets the queryable Venue Id.
|
|
52057
52093
|
*/
|
|
52058
52094
|
venueId?: string;
|
|
52095
|
+
/**
|
|
52096
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
52097
|
+
*/
|
|
52098
|
+
providerId?: string;
|
|
52059
52099
|
/**
|
|
52060
52100
|
* Gets or sets a value indicating whether return online items.
|
|
52061
52101
|
*/
|
|
@@ -62367,6 +62407,14 @@ type TenantWebsiteSettingPatch = {
|
|
|
62367
62407
|
*/
|
|
62368
62408
|
defaultMapCenterPlaceId?: string | null;
|
|
62369
62409
|
websiteHomepage?: WebsiteHomepage;
|
|
62410
|
+
/**
|
|
62411
|
+
* Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
62412
|
+
*/
|
|
62413
|
+
checkoutGatingMessageEnabled?: boolean | null;
|
|
62414
|
+
/**
|
|
62415
|
+
* Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
|
|
62416
|
+
*/
|
|
62417
|
+
checkoutGatingMessage?: string | null;
|
|
62370
62418
|
};
|
|
62371
62419
|
|
|
62372
62420
|
/**
|
package/dist/reach-sdk.js
CHANGED
|
@@ -29329,6 +29329,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29329
29329
|
xTenantSubdomain,
|
|
29330
29330
|
ids,
|
|
29331
29331
|
venueId,
|
|
29332
|
+
providerId,
|
|
29332
29333
|
online,
|
|
29333
29334
|
archived,
|
|
29334
29335
|
deleted,
|
|
@@ -29354,6 +29355,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29354
29355
|
query: {
|
|
29355
29356
|
Ids: ids,
|
|
29356
29357
|
VenueId: venueId,
|
|
29358
|
+
ProviderId: providerId,
|
|
29357
29359
|
Online: online,
|
|
29358
29360
|
Archived: archived,
|
|
29359
29361
|
Deleted: deleted,
|
|
@@ -29482,6 +29484,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29482
29484
|
xTenantSubdomain,
|
|
29483
29485
|
ids,
|
|
29484
29486
|
venueId,
|
|
29487
|
+
providerId,
|
|
29485
29488
|
online,
|
|
29486
29489
|
archived,
|
|
29487
29490
|
deleted,
|
|
@@ -29507,6 +29510,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29507
29510
|
query: {
|
|
29508
29511
|
Ids: ids,
|
|
29509
29512
|
VenueId: venueId,
|
|
29513
|
+
ProviderId: providerId,
|
|
29510
29514
|
Online: online,
|
|
29511
29515
|
Archived: archived,
|
|
29512
29516
|
Deleted: deleted,
|
|
@@ -35821,6 +35825,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
35821
35825
|
getPage({
|
|
35822
35826
|
ids,
|
|
35823
35827
|
venueId,
|
|
35828
|
+
providerId,
|
|
35824
35829
|
online,
|
|
35825
35830
|
archived,
|
|
35826
35831
|
deleted,
|
|
@@ -35843,6 +35848,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
35843
35848
|
query: {
|
|
35844
35849
|
Ids: ids,
|
|
35845
35850
|
VenueId: venueId,
|
|
35851
|
+
ProviderId: providerId,
|
|
35846
35852
|
Online: online,
|
|
35847
35853
|
Archived: archived,
|
|
35848
35854
|
Deleted: deleted,
|
|
@@ -35937,6 +35943,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
35937
35943
|
exists({
|
|
35938
35944
|
ids,
|
|
35939
35945
|
venueId,
|
|
35946
|
+
providerId,
|
|
35940
35947
|
online,
|
|
35941
35948
|
archived,
|
|
35942
35949
|
deleted,
|
|
@@ -35959,6 +35966,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
35959
35966
|
query: {
|
|
35960
35967
|
Ids: ids,
|
|
35961
35968
|
VenueId: venueId,
|
|
35969
|
+
ProviderId: providerId,
|
|
35962
35970
|
Online: online,
|
|
35963
35971
|
Archived: archived,
|
|
35964
35972
|
Deleted: deleted,
|
|
@@ -35990,6 +35998,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
35990
35998
|
count({
|
|
35991
35999
|
ids,
|
|
35992
36000
|
venueId,
|
|
36001
|
+
providerId,
|
|
35993
36002
|
online,
|
|
35994
36003
|
archived,
|
|
35995
36004
|
deleted,
|
|
@@ -36012,6 +36021,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
36012
36021
|
query: {
|
|
36013
36022
|
Ids: ids,
|
|
36014
36023
|
VenueId: venueId,
|
|
36024
|
+
ProviderId: providerId,
|
|
36015
36025
|
Online: online,
|
|
36016
36026
|
Archived: archived,
|
|
36017
36027
|
Deleted: deleted,
|
|
@@ -36043,6 +36053,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
36043
36053
|
getListWithoutReferences({
|
|
36044
36054
|
ids,
|
|
36045
36055
|
venueId,
|
|
36056
|
+
providerId,
|
|
36046
36057
|
online,
|
|
36047
36058
|
archived,
|
|
36048
36059
|
deleted,
|
|
@@ -36065,6 +36076,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
36065
36076
|
query: {
|
|
36066
36077
|
Ids: ids,
|
|
36067
36078
|
VenueId: venueId,
|
|
36079
|
+
ProviderId: providerId,
|
|
36068
36080
|
Online: online,
|
|
36069
36081
|
Archived: archived,
|
|
36070
36082
|
Deleted: deleted,
|
|
@@ -36096,6 +36108,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
36096
36108
|
getListIdName({
|
|
36097
36109
|
ids,
|
|
36098
36110
|
venueId,
|
|
36111
|
+
providerId,
|
|
36099
36112
|
online,
|
|
36100
36113
|
archived,
|
|
36101
36114
|
deleted,
|
|
@@ -36118,6 +36131,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
36118
36131
|
query: {
|
|
36119
36132
|
Ids: ids,
|
|
36120
36133
|
VenueId: venueId,
|
|
36134
|
+
ProviderId: providerId,
|
|
36121
36135
|
Online: online,
|
|
36122
36136
|
Archived: archived,
|
|
36123
36137
|
Deleted: deleted,
|
package/package.json
CHANGED
|
@@ -86027,6 +86027,12 @@ paths:
|
|
|
86027
86027
|
schema:
|
|
86028
86028
|
type: string
|
|
86029
86029
|
format: uuid
|
|
86030
|
+
- name: ProviderId
|
|
86031
|
+
in: query
|
|
86032
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
86033
|
+
schema:
|
|
86034
|
+
type: string
|
|
86035
|
+
format: uuid
|
|
86030
86036
|
- name: Online
|
|
86031
86037
|
in: query
|
|
86032
86038
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -86479,6 +86485,12 @@ paths:
|
|
|
86479
86485
|
schema:
|
|
86480
86486
|
type: string
|
|
86481
86487
|
format: uuid
|
|
86488
|
+
- name: ProviderId
|
|
86489
|
+
in: query
|
|
86490
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
86491
|
+
schema:
|
|
86492
|
+
type: string
|
|
86493
|
+
format: uuid
|
|
86482
86494
|
- name: Online
|
|
86483
86495
|
in: query
|
|
86484
86496
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -104886,6 +104898,12 @@ paths:
|
|
|
104886
104898
|
schema:
|
|
104887
104899
|
type: string
|
|
104888
104900
|
format: uuid
|
|
104901
|
+
- name: ProviderId
|
|
104902
|
+
in: query
|
|
104903
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
104904
|
+
schema:
|
|
104905
|
+
type: string
|
|
104906
|
+
format: uuid
|
|
104889
104907
|
- name: Online
|
|
104890
104908
|
in: query
|
|
104891
104909
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -105219,6 +105237,12 @@ paths:
|
|
|
105219
105237
|
schema:
|
|
105220
105238
|
type: string
|
|
105221
105239
|
format: uuid
|
|
105240
|
+
- name: ProviderId
|
|
105241
|
+
in: query
|
|
105242
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
105243
|
+
schema:
|
|
105244
|
+
type: string
|
|
105245
|
+
format: uuid
|
|
105222
105246
|
- name: Online
|
|
105223
105247
|
in: query
|
|
105224
105248
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -105374,6 +105398,12 @@ paths:
|
|
|
105374
105398
|
schema:
|
|
105375
105399
|
type: string
|
|
105376
105400
|
format: uuid
|
|
105401
|
+
- name: ProviderId
|
|
105402
|
+
in: query
|
|
105403
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
105404
|
+
schema:
|
|
105405
|
+
type: string
|
|
105406
|
+
format: uuid
|
|
105377
105407
|
- name: Online
|
|
105378
105408
|
in: query
|
|
105379
105409
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -105532,6 +105562,12 @@ paths:
|
|
|
105532
105562
|
schema:
|
|
105533
105563
|
type: string
|
|
105534
105564
|
format: uuid
|
|
105565
|
+
- name: ProviderId
|
|
105566
|
+
in: query
|
|
105567
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
105568
|
+
schema:
|
|
105569
|
+
type: string
|
|
105570
|
+
format: uuid
|
|
105535
105571
|
- name: Online
|
|
105536
105572
|
in: query
|
|
105537
105573
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -105693,6 +105729,12 @@ paths:
|
|
|
105693
105729
|
schema:
|
|
105694
105730
|
type: string
|
|
105695
105731
|
format: uuid
|
|
105732
|
+
- name: ProviderId
|
|
105733
|
+
in: query
|
|
105734
|
+
description: Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
105735
|
+
schema:
|
|
105736
|
+
type: string
|
|
105737
|
+
format: uuid
|
|
105696
105738
|
- name: Online
|
|
105697
105739
|
in: query
|
|
105698
105740
|
description: Gets or sets a value indicating whether return online items.
|
|
@@ -167567,6 +167609,11 @@ components:
|
|
|
167567
167609
|
description: Gets or sets the venue id.
|
|
167568
167610
|
format: uuid
|
|
167569
167611
|
nullable: true
|
|
167612
|
+
providerId:
|
|
167613
|
+
type: string
|
|
167614
|
+
description: Gets or sets the provider id.
|
|
167615
|
+
format: uuid
|
|
167616
|
+
nullable: true
|
|
167570
167617
|
activityId:
|
|
167571
167618
|
type: integer
|
|
167572
167619
|
description: Gets or sets the activity category id.
|
|
@@ -172126,6 +172173,14 @@ components:
|
|
|
172126
172173
|
nullable: true
|
|
172127
172174
|
websiteHomepage:
|
|
172128
172175
|
$ref: '#/components/schemas/WebsiteHomepage'
|
|
172176
|
+
checkoutGatingMessageEnabled:
|
|
172177
|
+
type: boolean
|
|
172178
|
+
description: Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
172179
|
+
nullable: true
|
|
172180
|
+
checkoutGatingMessage:
|
|
172181
|
+
type: string
|
|
172182
|
+
description: Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
|
|
172183
|
+
nullable: true
|
|
172129
172184
|
additionalProperties: false
|
|
172130
172185
|
description: Represents an organisation within the Reach application.
|
|
172131
172186
|
TenantWebsiteSettingPage:
|
|
@@ -172232,6 +172287,14 @@ components:
|
|
|
172232
172287
|
nullable: true
|
|
172233
172288
|
websiteHomepage:
|
|
172234
172289
|
$ref: '#/components/schemas/WebsiteHomepage'
|
|
172290
|
+
checkoutGatingMessageEnabled:
|
|
172291
|
+
type: boolean
|
|
172292
|
+
description: Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
172293
|
+
nullable: true
|
|
172294
|
+
checkoutGatingMessage:
|
|
172295
|
+
type: string
|
|
172296
|
+
description: Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
|
|
172297
|
+
nullable: true
|
|
172235
172298
|
additionalProperties: false
|
|
172236
172299
|
description: Post model for tenant website setting updates.
|
|
172237
172300
|
TenantWebsiteSettingPost:
|
|
@@ -115,4 +115,12 @@ export type TenantWebsiteSetting = {
|
|
|
115
115
|
*/
|
|
116
116
|
defaultMapCenterPlaceId?: string | null;
|
|
117
117
|
websiteHomepage?: WebsiteHomepage;
|
|
118
|
+
/**
|
|
119
|
+
* Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
120
|
+
*/
|
|
121
|
+
checkoutGatingMessageEnabled?: boolean | null;
|
|
122
|
+
/**
|
|
123
|
+
* Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
|
|
124
|
+
*/
|
|
125
|
+
checkoutGatingMessage?: string | null;
|
|
118
126
|
};
|
|
@@ -83,4 +83,12 @@ export type TenantWebsiteSettingPatch = {
|
|
|
83
83
|
*/
|
|
84
84
|
defaultMapCenterPlaceId?: string | null;
|
|
85
85
|
websiteHomepage?: WebsiteHomepage;
|
|
86
|
+
/**
|
|
87
|
+
* Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
88
|
+
*/
|
|
89
|
+
checkoutGatingMessageEnabled?: boolean | null;
|
|
90
|
+
/**
|
|
91
|
+
* Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
|
|
92
|
+
*/
|
|
93
|
+
checkoutGatingMessage?: string | null;
|
|
86
94
|
};
|
|
@@ -85,6 +85,7 @@ export class PublicSellableItemsService {
|
|
|
85
85
|
xTenantSubdomain,
|
|
86
86
|
ids,
|
|
87
87
|
venueId,
|
|
88
|
+
providerId,
|
|
88
89
|
online,
|
|
89
90
|
archived,
|
|
90
91
|
deleted,
|
|
@@ -110,6 +111,10 @@ export class PublicSellableItemsService {
|
|
|
110
111
|
* Gets or sets the queryable Venue Id.
|
|
111
112
|
*/
|
|
112
113
|
venueId?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
116
|
+
*/
|
|
117
|
+
providerId?: string;
|
|
113
118
|
/**
|
|
114
119
|
* Gets or sets a value indicating whether return online items.
|
|
115
120
|
*/
|
|
@@ -180,6 +185,7 @@ export class PublicSellableItemsService {
|
|
|
180
185
|
query: {
|
|
181
186
|
Ids: ids,
|
|
182
187
|
VenueId: venueId,
|
|
188
|
+
ProviderId: providerId,
|
|
183
189
|
Online: online,
|
|
184
190
|
Archived: archived,
|
|
185
191
|
Deleted: deleted,
|
|
@@ -349,6 +355,7 @@ export class PublicSellableItemsService {
|
|
|
349
355
|
xTenantSubdomain,
|
|
350
356
|
ids,
|
|
351
357
|
venueId,
|
|
358
|
+
providerId,
|
|
352
359
|
online,
|
|
353
360
|
archived,
|
|
354
361
|
deleted,
|
|
@@ -377,6 +384,10 @@ export class PublicSellableItemsService {
|
|
|
377
384
|
* Gets or sets the queryable Venue Id.
|
|
378
385
|
*/
|
|
379
386
|
venueId?: string;
|
|
387
|
+
/**
|
|
388
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
389
|
+
*/
|
|
390
|
+
providerId?: string;
|
|
380
391
|
/**
|
|
381
392
|
* Gets or sets a value indicating whether return online items.
|
|
382
393
|
*/
|
|
@@ -447,6 +458,7 @@ export class PublicSellableItemsService {
|
|
|
447
458
|
query: {
|
|
448
459
|
Ids: ids,
|
|
449
460
|
VenueId: venueId,
|
|
461
|
+
ProviderId: providerId,
|
|
450
462
|
Online: online,
|
|
451
463
|
Archived: archived,
|
|
452
464
|
Deleted: deleted,
|
|
@@ -272,6 +272,7 @@ export class SellableItemsService {
|
|
|
272
272
|
public getPage({
|
|
273
273
|
ids,
|
|
274
274
|
venueId,
|
|
275
|
+
providerId,
|
|
275
276
|
online,
|
|
276
277
|
archived,
|
|
277
278
|
deleted,
|
|
@@ -296,6 +297,10 @@ export class SellableItemsService {
|
|
|
296
297
|
* Gets or sets the queryable Venue Id.
|
|
297
298
|
*/
|
|
298
299
|
venueId?: string;
|
|
300
|
+
/**
|
|
301
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
302
|
+
*/
|
|
303
|
+
providerId?: string;
|
|
299
304
|
/**
|
|
300
305
|
* Gets or sets a value indicating whether return online items.
|
|
301
306
|
*/
|
|
@@ -363,6 +368,7 @@ export class SellableItemsService {
|
|
|
363
368
|
query: {
|
|
364
369
|
Ids: ids,
|
|
365
370
|
VenueId: venueId,
|
|
371
|
+
ProviderId: providerId,
|
|
366
372
|
Online: online,
|
|
367
373
|
Archived: archived,
|
|
368
374
|
Deleted: deleted,
|
|
@@ -476,6 +482,7 @@ export class SellableItemsService {
|
|
|
476
482
|
public exists({
|
|
477
483
|
ids,
|
|
478
484
|
venueId,
|
|
485
|
+
providerId,
|
|
479
486
|
online,
|
|
480
487
|
archived,
|
|
481
488
|
deleted,
|
|
@@ -500,6 +507,10 @@ export class SellableItemsService {
|
|
|
500
507
|
* Gets or sets the queryable Venue Id.
|
|
501
508
|
*/
|
|
502
509
|
venueId?: string;
|
|
510
|
+
/**
|
|
511
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
512
|
+
*/
|
|
513
|
+
providerId?: string;
|
|
503
514
|
/**
|
|
504
515
|
* Gets or sets a value indicating whether return online items.
|
|
505
516
|
*/
|
|
@@ -567,6 +578,7 @@ export class SellableItemsService {
|
|
|
567
578
|
query: {
|
|
568
579
|
Ids: ids,
|
|
569
580
|
VenueId: venueId,
|
|
581
|
+
ProviderId: providerId,
|
|
570
582
|
Online: online,
|
|
571
583
|
Archived: archived,
|
|
572
584
|
Deleted: deleted,
|
|
@@ -599,6 +611,7 @@ export class SellableItemsService {
|
|
|
599
611
|
public count({
|
|
600
612
|
ids,
|
|
601
613
|
venueId,
|
|
614
|
+
providerId,
|
|
602
615
|
online,
|
|
603
616
|
archived,
|
|
604
617
|
deleted,
|
|
@@ -623,6 +636,10 @@ export class SellableItemsService {
|
|
|
623
636
|
* Gets or sets the queryable Venue Id.
|
|
624
637
|
*/
|
|
625
638
|
venueId?: string;
|
|
639
|
+
/**
|
|
640
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
641
|
+
*/
|
|
642
|
+
providerId?: string;
|
|
626
643
|
/**
|
|
627
644
|
* Gets or sets a value indicating whether return online items.
|
|
628
645
|
*/
|
|
@@ -690,6 +707,7 @@ export class SellableItemsService {
|
|
|
690
707
|
query: {
|
|
691
708
|
Ids: ids,
|
|
692
709
|
VenueId: venueId,
|
|
710
|
+
ProviderId: providerId,
|
|
693
711
|
Online: online,
|
|
694
712
|
Archived: archived,
|
|
695
713
|
Deleted: deleted,
|
|
@@ -722,6 +740,7 @@ export class SellableItemsService {
|
|
|
722
740
|
public getListWithoutReferences({
|
|
723
741
|
ids,
|
|
724
742
|
venueId,
|
|
743
|
+
providerId,
|
|
725
744
|
online,
|
|
726
745
|
archived,
|
|
727
746
|
deleted,
|
|
@@ -746,6 +765,10 @@ export class SellableItemsService {
|
|
|
746
765
|
* Gets or sets the queryable Venue Id.
|
|
747
766
|
*/
|
|
748
767
|
venueId?: string;
|
|
768
|
+
/**
|
|
769
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
770
|
+
*/
|
|
771
|
+
providerId?: string;
|
|
749
772
|
/**
|
|
750
773
|
* Gets or sets a value indicating whether return online items.
|
|
751
774
|
*/
|
|
@@ -813,6 +836,7 @@ export class SellableItemsService {
|
|
|
813
836
|
query: {
|
|
814
837
|
Ids: ids,
|
|
815
838
|
VenueId: venueId,
|
|
839
|
+
ProviderId: providerId,
|
|
816
840
|
Online: online,
|
|
817
841
|
Archived: archived,
|
|
818
842
|
Deleted: deleted,
|
|
@@ -845,6 +869,7 @@ export class SellableItemsService {
|
|
|
845
869
|
public getListIdName({
|
|
846
870
|
ids,
|
|
847
871
|
venueId,
|
|
872
|
+
providerId,
|
|
848
873
|
online,
|
|
849
874
|
archived,
|
|
850
875
|
deleted,
|
|
@@ -869,6 +894,10 @@ export class SellableItemsService {
|
|
|
869
894
|
* Gets or sets the queryable Venue Id.
|
|
870
895
|
*/
|
|
871
896
|
venueId?: string;
|
|
897
|
+
/**
|
|
898
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
899
|
+
*/
|
|
900
|
+
providerId?: string;
|
|
872
901
|
/**
|
|
873
902
|
* Gets or sets a value indicating whether return online items.
|
|
874
903
|
*/
|
|
@@ -936,6 +965,7 @@ export class SellableItemsService {
|
|
|
936
965
|
query: {
|
|
937
966
|
Ids: ids,
|
|
938
967
|
VenueId: venueId,
|
|
968
|
+
ProviderId: providerId,
|
|
939
969
|
Online: online,
|
|
940
970
|
Archived: archived,
|
|
941
971
|
Deleted: deleted,
|