reach-api-sdk 1.0.221 → 1.0.222
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 +681 -1
- package/dist/reach-sdk.js +536 -1
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +2553 -833
- package/src/index.ts +6 -0
- package/src/models/TenantFaq.ts +54 -0
- package/src/models/TenantFaqPage.ts +12 -0
- package/src/models/TenantFaqPatch.ts +42 -0
- package/src/models/TenantFaqPost.ts +38 -0
- package/src/services/PublicTenantFaqsService.ts +264 -0
- package/src/services/TenantFaqsService.ts +752 -0
package/dist/reach-sdk.js
CHANGED
|
@@ -31337,6 +31337,135 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31337
31337
|
}
|
|
31338
31338
|
});
|
|
31339
31339
|
}
|
|
31340
|
+
}class PublicTenantFaqsService {
|
|
31341
|
+
constructor(httpRequest) {
|
|
31342
|
+
this.httpRequest = httpRequest;
|
|
31343
|
+
}
|
|
31344
|
+
/**
|
|
31345
|
+
* @returns TenantFaq OK
|
|
31346
|
+
* @throws ApiError
|
|
31347
|
+
*/
|
|
31348
|
+
getObject({
|
|
31349
|
+
id,
|
|
31350
|
+
xTenantSubdomain
|
|
31351
|
+
}) {
|
|
31352
|
+
return this.httpRequest.request({
|
|
31353
|
+
method: "GET",
|
|
31354
|
+
url: "/api/public/tenant-faqs/{id}",
|
|
31355
|
+
path: {
|
|
31356
|
+
id
|
|
31357
|
+
},
|
|
31358
|
+
headers: {
|
|
31359
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
31360
|
+
},
|
|
31361
|
+
errors: {
|
|
31362
|
+
400: `Bad Request`,
|
|
31363
|
+
422: `Unprocessable Content`,
|
|
31364
|
+
500: `Internal Server Error`
|
|
31365
|
+
}
|
|
31366
|
+
});
|
|
31367
|
+
}
|
|
31368
|
+
/**
|
|
31369
|
+
* @returns TenantFaqPage OK
|
|
31370
|
+
* @throws ApiError
|
|
31371
|
+
*/
|
|
31372
|
+
getPage({
|
|
31373
|
+
xTenantSubdomain,
|
|
31374
|
+
ids,
|
|
31375
|
+
showOnStorefront,
|
|
31376
|
+
showOnCustomerPortal,
|
|
31377
|
+
pageNumber,
|
|
31378
|
+
take,
|
|
31379
|
+
skip,
|
|
31380
|
+
limitListRequests,
|
|
31381
|
+
tenantId,
|
|
31382
|
+
modifiedById,
|
|
31383
|
+
modifiedByIds,
|
|
31384
|
+
dateCreatedGte,
|
|
31385
|
+
dateCreatedLte,
|
|
31386
|
+
isLive,
|
|
31387
|
+
sortOrderDirection
|
|
31388
|
+
}) {
|
|
31389
|
+
return this.httpRequest.request({
|
|
31390
|
+
method: "GET",
|
|
31391
|
+
url: "/api/public/tenant-faqs",
|
|
31392
|
+
headers: {
|
|
31393
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
31394
|
+
},
|
|
31395
|
+
query: {
|
|
31396
|
+
Ids: ids,
|
|
31397
|
+
ShowOnStorefront: showOnStorefront,
|
|
31398
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
31399
|
+
PageNumber: pageNumber,
|
|
31400
|
+
Take: take,
|
|
31401
|
+
Skip: skip,
|
|
31402
|
+
LimitListRequests: limitListRequests,
|
|
31403
|
+
TenantId: tenantId,
|
|
31404
|
+
ModifiedById: modifiedById,
|
|
31405
|
+
ModifiedByIds: modifiedByIds,
|
|
31406
|
+
DateCreatedGTE: dateCreatedGte,
|
|
31407
|
+
DateCreatedLTE: dateCreatedLte,
|
|
31408
|
+
IsLive: isLive,
|
|
31409
|
+
SortOrderDirection: sortOrderDirection
|
|
31410
|
+
},
|
|
31411
|
+
errors: {
|
|
31412
|
+
400: `Bad Request`,
|
|
31413
|
+
422: `Unprocessable Content`,
|
|
31414
|
+
500: `Internal Server Error`
|
|
31415
|
+
}
|
|
31416
|
+
});
|
|
31417
|
+
}
|
|
31418
|
+
/**
|
|
31419
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
31420
|
+
* @returns boolean OK
|
|
31421
|
+
* @throws ApiError
|
|
31422
|
+
*/
|
|
31423
|
+
exists({
|
|
31424
|
+
xTenantSubdomain,
|
|
31425
|
+
ids,
|
|
31426
|
+
showOnStorefront,
|
|
31427
|
+
showOnCustomerPortal,
|
|
31428
|
+
pageNumber,
|
|
31429
|
+
take,
|
|
31430
|
+
skip,
|
|
31431
|
+
limitListRequests,
|
|
31432
|
+
tenantId,
|
|
31433
|
+
modifiedById,
|
|
31434
|
+
modifiedByIds,
|
|
31435
|
+
dateCreatedGte,
|
|
31436
|
+
dateCreatedLte,
|
|
31437
|
+
isLive,
|
|
31438
|
+
sortOrderDirection
|
|
31439
|
+
}) {
|
|
31440
|
+
return this.httpRequest.request({
|
|
31441
|
+
method: "GET",
|
|
31442
|
+
url: "/api/public/tenant-faqs/exists",
|
|
31443
|
+
headers: {
|
|
31444
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
31445
|
+
},
|
|
31446
|
+
query: {
|
|
31447
|
+
Ids: ids,
|
|
31448
|
+
ShowOnStorefront: showOnStorefront,
|
|
31449
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
31450
|
+
PageNumber: pageNumber,
|
|
31451
|
+
Take: take,
|
|
31452
|
+
Skip: skip,
|
|
31453
|
+
LimitListRequests: limitListRequests,
|
|
31454
|
+
TenantId: tenantId,
|
|
31455
|
+
ModifiedById: modifiedById,
|
|
31456
|
+
ModifiedByIds: modifiedByIds,
|
|
31457
|
+
DateCreatedGTE: dateCreatedGte,
|
|
31458
|
+
DateCreatedLTE: dateCreatedLte,
|
|
31459
|
+
IsLive: isLive,
|
|
31460
|
+
SortOrderDirection: sortOrderDirection
|
|
31461
|
+
},
|
|
31462
|
+
errors: {
|
|
31463
|
+
400: `Bad Request`,
|
|
31464
|
+
422: `Unprocessable Content`,
|
|
31465
|
+
500: `Internal Server Error`
|
|
31466
|
+
}
|
|
31467
|
+
});
|
|
31468
|
+
}
|
|
31340
31469
|
}class PublicTenantsService {
|
|
31341
31470
|
constructor(httpRequest) {
|
|
31342
31471
|
this.httpRequest = httpRequest;
|
|
@@ -43579,6 +43708,408 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43579
43708
|
}
|
|
43580
43709
|
});
|
|
43581
43710
|
}
|
|
43711
|
+
}class TenantFaqsService {
|
|
43712
|
+
constructor(httpRequest) {
|
|
43713
|
+
this.httpRequest = httpRequest;
|
|
43714
|
+
}
|
|
43715
|
+
/**
|
|
43716
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
43717
|
+
* @returns TenantFaq OK
|
|
43718
|
+
* @throws ApiError
|
|
43719
|
+
*/
|
|
43720
|
+
post({
|
|
43721
|
+
requestBody
|
|
43722
|
+
}) {
|
|
43723
|
+
return this.httpRequest.request({
|
|
43724
|
+
method: "POST",
|
|
43725
|
+
url: "/api/tenant-faqs/v2-temporary-route",
|
|
43726
|
+
body: requestBody,
|
|
43727
|
+
mediaType: "application/json",
|
|
43728
|
+
errors: {
|
|
43729
|
+
400: `Bad Request`,
|
|
43730
|
+
422: `Unprocessable Content`,
|
|
43731
|
+
500: `Internal Server Error`
|
|
43732
|
+
}
|
|
43733
|
+
});
|
|
43734
|
+
}
|
|
43735
|
+
/**
|
|
43736
|
+
* Patches the resource.
|
|
43737
|
+
* @returns TenantFaq OK
|
|
43738
|
+
* @throws ApiError
|
|
43739
|
+
*/
|
|
43740
|
+
patch({
|
|
43741
|
+
requestBody
|
|
43742
|
+
}) {
|
|
43743
|
+
return this.httpRequest.request({
|
|
43744
|
+
method: "PATCH",
|
|
43745
|
+
url: "/api/tenant-faqs/v2-temporary-route",
|
|
43746
|
+
body: requestBody,
|
|
43747
|
+
mediaType: "application/json",
|
|
43748
|
+
errors: {
|
|
43749
|
+
400: `Bad Request`,
|
|
43750
|
+
422: `Unprocessable Content`,
|
|
43751
|
+
500: `Internal Server Error`
|
|
43752
|
+
}
|
|
43753
|
+
});
|
|
43754
|
+
}
|
|
43755
|
+
/**
|
|
43756
|
+
* Inserts a list of resources.
|
|
43757
|
+
* @returns TenantFaq OK
|
|
43758
|
+
* @throws ApiError
|
|
43759
|
+
*/
|
|
43760
|
+
postList({
|
|
43761
|
+
requestBody
|
|
43762
|
+
}) {
|
|
43763
|
+
return this.httpRequest.request({
|
|
43764
|
+
method: "POST",
|
|
43765
|
+
url: "/api/tenant-faqs/v2-temporary-route/list",
|
|
43766
|
+
body: requestBody,
|
|
43767
|
+
mediaType: "application/json",
|
|
43768
|
+
errors: {
|
|
43769
|
+
400: `Bad Request`,
|
|
43770
|
+
422: `Unprocessable Content`,
|
|
43771
|
+
500: `Internal Server Error`
|
|
43772
|
+
}
|
|
43773
|
+
});
|
|
43774
|
+
}
|
|
43775
|
+
/**
|
|
43776
|
+
* Patches the resource.
|
|
43777
|
+
* @returns TenantFaq OK
|
|
43778
|
+
* @throws ApiError
|
|
43779
|
+
*/
|
|
43780
|
+
patchWithReferences({
|
|
43781
|
+
requestBody
|
|
43782
|
+
}) {
|
|
43783
|
+
return this.httpRequest.request({
|
|
43784
|
+
method: "PATCH",
|
|
43785
|
+
url: "/api/tenant-faqs/v2-temporary-route/with-references",
|
|
43786
|
+
body: requestBody,
|
|
43787
|
+
mediaType: "application/json",
|
|
43788
|
+
errors: {
|
|
43789
|
+
400: `Bad Request`,
|
|
43790
|
+
422: `Unprocessable Content`,
|
|
43791
|
+
500: `Internal Server Error`
|
|
43792
|
+
}
|
|
43793
|
+
});
|
|
43794
|
+
}
|
|
43795
|
+
/**
|
|
43796
|
+
* Deletes the resource.
|
|
43797
|
+
* @returns any OK
|
|
43798
|
+
* @throws ApiError
|
|
43799
|
+
*/
|
|
43800
|
+
deleteByObject({
|
|
43801
|
+
requestBody
|
|
43802
|
+
}) {
|
|
43803
|
+
return this.httpRequest.request({
|
|
43804
|
+
method: "DELETE",
|
|
43805
|
+
url: "/api/tenant-faqs",
|
|
43806
|
+
body: requestBody,
|
|
43807
|
+
mediaType: "application/json",
|
|
43808
|
+
errors: {
|
|
43809
|
+
400: `Bad Request`,
|
|
43810
|
+
422: `Unprocessable Content`,
|
|
43811
|
+
500: `Internal Server Error`
|
|
43812
|
+
}
|
|
43813
|
+
});
|
|
43814
|
+
}
|
|
43815
|
+
/**
|
|
43816
|
+
* Gets a list of resources.
|
|
43817
|
+
* @returns TenantFaqPage OK
|
|
43818
|
+
* @throws ApiError
|
|
43819
|
+
*/
|
|
43820
|
+
getPage({
|
|
43821
|
+
ids,
|
|
43822
|
+
showOnStorefront,
|
|
43823
|
+
showOnCustomerPortal,
|
|
43824
|
+
pageNumber,
|
|
43825
|
+
take,
|
|
43826
|
+
skip,
|
|
43827
|
+
limitListRequests,
|
|
43828
|
+
tenantId,
|
|
43829
|
+
modifiedById,
|
|
43830
|
+
modifiedByIds,
|
|
43831
|
+
dateCreatedGte,
|
|
43832
|
+
dateCreatedLte,
|
|
43833
|
+
isLive,
|
|
43834
|
+
sortOrderDirection
|
|
43835
|
+
}) {
|
|
43836
|
+
return this.httpRequest.request({
|
|
43837
|
+
method: "GET",
|
|
43838
|
+
url: "/api/tenant-faqs",
|
|
43839
|
+
query: {
|
|
43840
|
+
Ids: ids,
|
|
43841
|
+
ShowOnStorefront: showOnStorefront,
|
|
43842
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
43843
|
+
PageNumber: pageNumber,
|
|
43844
|
+
Take: take,
|
|
43845
|
+
Skip: skip,
|
|
43846
|
+
LimitListRequests: limitListRequests,
|
|
43847
|
+
TenantId: tenantId,
|
|
43848
|
+
ModifiedById: modifiedById,
|
|
43849
|
+
ModifiedByIds: modifiedByIds,
|
|
43850
|
+
DateCreatedGTE: dateCreatedGte,
|
|
43851
|
+
DateCreatedLTE: dateCreatedLte,
|
|
43852
|
+
IsLive: isLive,
|
|
43853
|
+
SortOrderDirection: sortOrderDirection
|
|
43854
|
+
},
|
|
43855
|
+
errors: {
|
|
43856
|
+
400: `Bad Request`,
|
|
43857
|
+
422: `Unprocessable Content`,
|
|
43858
|
+
500: `Internal Server Error`
|
|
43859
|
+
}
|
|
43860
|
+
});
|
|
43861
|
+
}
|
|
43862
|
+
/**
|
|
43863
|
+
* Deletes the resource.
|
|
43864
|
+
* @returns any OK
|
|
43865
|
+
* @throws ApiError
|
|
43866
|
+
*/
|
|
43867
|
+
deleteById({
|
|
43868
|
+
id
|
|
43869
|
+
}) {
|
|
43870
|
+
return this.httpRequest.request({
|
|
43871
|
+
method: "DELETE",
|
|
43872
|
+
url: "/api/tenant-faqs/{id}",
|
|
43873
|
+
path: {
|
|
43874
|
+
id
|
|
43875
|
+
},
|
|
43876
|
+
errors: {
|
|
43877
|
+
400: `Bad Request`,
|
|
43878
|
+
422: `Unprocessable Content`,
|
|
43879
|
+
500: `Internal Server Error`
|
|
43880
|
+
}
|
|
43881
|
+
});
|
|
43882
|
+
}
|
|
43883
|
+
/**
|
|
43884
|
+
* Gets the resource by its Id.
|
|
43885
|
+
* @returns TenantFaq OK
|
|
43886
|
+
* @throws ApiError
|
|
43887
|
+
*/
|
|
43888
|
+
getObject({
|
|
43889
|
+
id
|
|
43890
|
+
}) {
|
|
43891
|
+
return this.httpRequest.request({
|
|
43892
|
+
method: "GET",
|
|
43893
|
+
url: "/api/tenant-faqs/{id}",
|
|
43894
|
+
path: {
|
|
43895
|
+
id
|
|
43896
|
+
},
|
|
43897
|
+
errors: {
|
|
43898
|
+
400: `Bad Request`,
|
|
43899
|
+
422: `Unprocessable Content`,
|
|
43900
|
+
500: `Internal Server Error`
|
|
43901
|
+
}
|
|
43902
|
+
});
|
|
43903
|
+
}
|
|
43904
|
+
/**
|
|
43905
|
+
* Returns a value indicating whether the resource is deletable.
|
|
43906
|
+
* @returns boolean OK
|
|
43907
|
+
* @throws ApiError
|
|
43908
|
+
*/
|
|
43909
|
+
canDelete({
|
|
43910
|
+
id
|
|
43911
|
+
}) {
|
|
43912
|
+
return this.httpRequest.request({
|
|
43913
|
+
method: "GET",
|
|
43914
|
+
url: "/api/tenant-faqs/{id}/deletable",
|
|
43915
|
+
path: {
|
|
43916
|
+
id
|
|
43917
|
+
},
|
|
43918
|
+
errors: {
|
|
43919
|
+
400: `Bad Request`,
|
|
43920
|
+
422: `Unprocessable Content`,
|
|
43921
|
+
500: `Internal Server Error`
|
|
43922
|
+
}
|
|
43923
|
+
});
|
|
43924
|
+
}
|
|
43925
|
+
/**
|
|
43926
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
43927
|
+
* @returns boolean OK
|
|
43928
|
+
* @throws ApiError
|
|
43929
|
+
*/
|
|
43930
|
+
exists({
|
|
43931
|
+
ids,
|
|
43932
|
+
showOnStorefront,
|
|
43933
|
+
showOnCustomerPortal,
|
|
43934
|
+
pageNumber,
|
|
43935
|
+
take,
|
|
43936
|
+
skip,
|
|
43937
|
+
limitListRequests,
|
|
43938
|
+
tenantId,
|
|
43939
|
+
modifiedById,
|
|
43940
|
+
modifiedByIds,
|
|
43941
|
+
dateCreatedGte,
|
|
43942
|
+
dateCreatedLte,
|
|
43943
|
+
isLive,
|
|
43944
|
+
sortOrderDirection
|
|
43945
|
+
}) {
|
|
43946
|
+
return this.httpRequest.request({
|
|
43947
|
+
method: "GET",
|
|
43948
|
+
url: "/api/tenant-faqs/exists",
|
|
43949
|
+
query: {
|
|
43950
|
+
Ids: ids,
|
|
43951
|
+
ShowOnStorefront: showOnStorefront,
|
|
43952
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
43953
|
+
PageNumber: pageNumber,
|
|
43954
|
+
Take: take,
|
|
43955
|
+
Skip: skip,
|
|
43956
|
+
LimitListRequests: limitListRequests,
|
|
43957
|
+
TenantId: tenantId,
|
|
43958
|
+
ModifiedById: modifiedById,
|
|
43959
|
+
ModifiedByIds: modifiedByIds,
|
|
43960
|
+
DateCreatedGTE: dateCreatedGte,
|
|
43961
|
+
DateCreatedLTE: dateCreatedLte,
|
|
43962
|
+
IsLive: isLive,
|
|
43963
|
+
SortOrderDirection: sortOrderDirection
|
|
43964
|
+
},
|
|
43965
|
+
errors: {
|
|
43966
|
+
400: `Bad Request`,
|
|
43967
|
+
422: `Unprocessable Content`,
|
|
43968
|
+
500: `Internal Server Error`
|
|
43969
|
+
}
|
|
43970
|
+
});
|
|
43971
|
+
}
|
|
43972
|
+
/**
|
|
43973
|
+
* Returns the number of results in the database given the provided search params.
|
|
43974
|
+
* @returns number OK
|
|
43975
|
+
* @throws ApiError
|
|
43976
|
+
*/
|
|
43977
|
+
count({
|
|
43978
|
+
ids,
|
|
43979
|
+
showOnStorefront,
|
|
43980
|
+
showOnCustomerPortal,
|
|
43981
|
+
pageNumber,
|
|
43982
|
+
take,
|
|
43983
|
+
skip,
|
|
43984
|
+
limitListRequests,
|
|
43985
|
+
tenantId,
|
|
43986
|
+
modifiedById,
|
|
43987
|
+
modifiedByIds,
|
|
43988
|
+
dateCreatedGte,
|
|
43989
|
+
dateCreatedLte,
|
|
43990
|
+
isLive,
|
|
43991
|
+
sortOrderDirection
|
|
43992
|
+
}) {
|
|
43993
|
+
return this.httpRequest.request({
|
|
43994
|
+
method: "GET",
|
|
43995
|
+
url: "/api/tenant-faqs/count",
|
|
43996
|
+
query: {
|
|
43997
|
+
Ids: ids,
|
|
43998
|
+
ShowOnStorefront: showOnStorefront,
|
|
43999
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
44000
|
+
PageNumber: pageNumber,
|
|
44001
|
+
Take: take,
|
|
44002
|
+
Skip: skip,
|
|
44003
|
+
LimitListRequests: limitListRequests,
|
|
44004
|
+
TenantId: tenantId,
|
|
44005
|
+
ModifiedById: modifiedById,
|
|
44006
|
+
ModifiedByIds: modifiedByIds,
|
|
44007
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44008
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44009
|
+
IsLive: isLive,
|
|
44010
|
+
SortOrderDirection: sortOrderDirection
|
|
44011
|
+
},
|
|
44012
|
+
errors: {
|
|
44013
|
+
400: `Bad Request`,
|
|
44014
|
+
422: `Unprocessable Content`,
|
|
44015
|
+
500: `Internal Server Error`
|
|
44016
|
+
}
|
|
44017
|
+
});
|
|
44018
|
+
}
|
|
44019
|
+
/**
|
|
44020
|
+
* Gets a list of resources unpaged and without references.
|
|
44021
|
+
* @returns TenantFaq OK
|
|
44022
|
+
* @throws ApiError
|
|
44023
|
+
*/
|
|
44024
|
+
getListWithoutReferences({
|
|
44025
|
+
ids,
|
|
44026
|
+
showOnStorefront,
|
|
44027
|
+
showOnCustomerPortal,
|
|
44028
|
+
pageNumber,
|
|
44029
|
+
take,
|
|
44030
|
+
skip,
|
|
44031
|
+
limitListRequests,
|
|
44032
|
+
tenantId,
|
|
44033
|
+
modifiedById,
|
|
44034
|
+
modifiedByIds,
|
|
44035
|
+
dateCreatedGte,
|
|
44036
|
+
dateCreatedLte,
|
|
44037
|
+
isLive,
|
|
44038
|
+
sortOrderDirection
|
|
44039
|
+
}) {
|
|
44040
|
+
return this.httpRequest.request({
|
|
44041
|
+
method: "GET",
|
|
44042
|
+
url: "/api/tenant-faqs/without-references",
|
|
44043
|
+
query: {
|
|
44044
|
+
Ids: ids,
|
|
44045
|
+
ShowOnStorefront: showOnStorefront,
|
|
44046
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
44047
|
+
PageNumber: pageNumber,
|
|
44048
|
+
Take: take,
|
|
44049
|
+
Skip: skip,
|
|
44050
|
+
LimitListRequests: limitListRequests,
|
|
44051
|
+
TenantId: tenantId,
|
|
44052
|
+
ModifiedById: modifiedById,
|
|
44053
|
+
ModifiedByIds: modifiedByIds,
|
|
44054
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44055
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44056
|
+
IsLive: isLive,
|
|
44057
|
+
SortOrderDirection: sortOrderDirection
|
|
44058
|
+
},
|
|
44059
|
+
errors: {
|
|
44060
|
+
400: `Bad Request`,
|
|
44061
|
+
422: `Unprocessable Content`,
|
|
44062
|
+
500: `Internal Server Error`
|
|
44063
|
+
}
|
|
44064
|
+
});
|
|
44065
|
+
}
|
|
44066
|
+
/**
|
|
44067
|
+
* Gets a list of resources.
|
|
44068
|
+
* @returns TenantFaq OK
|
|
44069
|
+
* @throws ApiError
|
|
44070
|
+
*/
|
|
44071
|
+
getListIdName({
|
|
44072
|
+
ids,
|
|
44073
|
+
showOnStorefront,
|
|
44074
|
+
showOnCustomerPortal,
|
|
44075
|
+
pageNumber,
|
|
44076
|
+
take,
|
|
44077
|
+
skip,
|
|
44078
|
+
limitListRequests,
|
|
44079
|
+
tenantId,
|
|
44080
|
+
modifiedById,
|
|
44081
|
+
modifiedByIds,
|
|
44082
|
+
dateCreatedGte,
|
|
44083
|
+
dateCreatedLte,
|
|
44084
|
+
isLive,
|
|
44085
|
+
sortOrderDirection
|
|
44086
|
+
}) {
|
|
44087
|
+
return this.httpRequest.request({
|
|
44088
|
+
method: "GET",
|
|
44089
|
+
url: "/api/tenant-faqs/id-name",
|
|
44090
|
+
query: {
|
|
44091
|
+
Ids: ids,
|
|
44092
|
+
ShowOnStorefront: showOnStorefront,
|
|
44093
|
+
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
44094
|
+
PageNumber: pageNumber,
|
|
44095
|
+
Take: take,
|
|
44096
|
+
Skip: skip,
|
|
44097
|
+
LimitListRequests: limitListRequests,
|
|
44098
|
+
TenantId: tenantId,
|
|
44099
|
+
ModifiedById: modifiedById,
|
|
44100
|
+
ModifiedByIds: modifiedByIds,
|
|
44101
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44102
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44103
|
+
IsLive: isLive,
|
|
44104
|
+
SortOrderDirection: sortOrderDirection
|
|
44105
|
+
},
|
|
44106
|
+
errors: {
|
|
44107
|
+
400: `Bad Request`,
|
|
44108
|
+
422: `Unprocessable Content`,
|
|
44109
|
+
500: `Internal Server Error`
|
|
44110
|
+
}
|
|
44111
|
+
});
|
|
44112
|
+
}
|
|
43582
44113
|
}class TenantsService {
|
|
43583
44114
|
constructor(httpRequest) {
|
|
43584
44115
|
this.httpRequest = httpRequest;
|
|
@@ -52624,6 +53155,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
52624
53155
|
publicSurveyCompletionLogs;
|
|
52625
53156
|
publicSurveyQuestions;
|
|
52626
53157
|
publicSurveys;
|
|
53158
|
+
publicTenantFaqs;
|
|
52627
53159
|
publicTenants;
|
|
52628
53160
|
publicVenues;
|
|
52629
53161
|
publicVenueTypes;
|
|
@@ -52652,6 +53184,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
52652
53184
|
templateFieldPermissions;
|
|
52653
53185
|
templateOffers;
|
|
52654
53186
|
templates;
|
|
53187
|
+
tenantFaqs;
|
|
52655
53188
|
tenants;
|
|
52656
53189
|
tenantWebsiteSettings;
|
|
52657
53190
|
timezone;
|
|
@@ -52775,6 +53308,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
52775
53308
|
this.publicSurveyCompletionLogs = new PublicSurveyCompletionLogsService(this.request);
|
|
52776
53309
|
this.publicSurveyQuestions = new PublicSurveyQuestionsService(this.request);
|
|
52777
53310
|
this.publicSurveys = new PublicSurveysService(this.request);
|
|
53311
|
+
this.publicTenantFaqs = new PublicTenantFaqsService(this.request);
|
|
52778
53312
|
this.publicTenants = new PublicTenantsService(this.request);
|
|
52779
53313
|
this.publicVenues = new PublicVenuesService(this.request);
|
|
52780
53314
|
this.publicVenueTypes = new PublicVenueTypesService(this.request);
|
|
@@ -52803,6 +53337,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
52803
53337
|
this.templateFieldPermissions = new TemplateFieldPermissionsService(this.request);
|
|
52804
53338
|
this.templateOffers = new TemplateOffersService(this.request);
|
|
52805
53339
|
this.templates = new TemplatesService(this.request);
|
|
53340
|
+
this.tenantFaqs = new TenantFaqsService(this.request);
|
|
52806
53341
|
this.tenants = new TenantsService(this.request);
|
|
52807
53342
|
this.tenantWebsiteSettings = new TenantWebsiteSettingsService(this.request);
|
|
52808
53343
|
this.timezone = new TimezoneService(this.request);
|
|
@@ -53289,4 +53824,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
53289
53824
|
WebsiteHomepage2["DEFAULT"] = "Default";
|
|
53290
53825
|
WebsiteHomepage2["MAP"] = "Map";
|
|
53291
53826
|
return WebsiteHomepage2;
|
|
53292
|
-
})(WebsiteHomepage || {});export{AccessCredentialsService,ActivityPerformanceService,ActivityService,ActivityType,ActivityTypeCategoryService,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,CodelocksLocksService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomFieldDataType,CustomFieldValueEntityType,CustomFieldsService,CustomerAuthService,CustomerCancellationOption,CustomerPortalService,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,DotdigitalCanonicalField,DotdigitalService,DotdigitalSourceType,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,EventTiming,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FeatureAnnouncementsService,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,IntegrationCodelocksSettingsService,IntegrationDotDigitalSettingsService,IntegrationDotdigitalFieldMapService,IntegrationDotdigitalLogService,IntegrationDotdigitalLogStatus,IntegrationQueueService,IntegrationType,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,ProviderTypesService,ProvidersService,PublicBookingService,PublicCalendarService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSellableItemsService,PublicSessionsService,PublicSlotsService,PublicStorefrontStaffPreviewService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenueTypesService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SellableItemsService,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StorefrontStaffPreviewService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantStatus,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenueTypeService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService,WalletTrackingLevel,WalletTransactionType,WalletTransactionsService,WalletsService,WebsiteHomepage};
|
|
53827
|
+
})(WebsiteHomepage || {});export{AccessCredentialsService,ActivityPerformanceService,ActivityService,ActivityType,ActivityTypeCategoryService,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,CodelocksLocksService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomFieldDataType,CustomFieldValueEntityType,CustomFieldsService,CustomerAuthService,CustomerCancellationOption,CustomerPortalService,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,DotdigitalCanonicalField,DotdigitalService,DotdigitalSourceType,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,EventTiming,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FeatureAnnouncementsService,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,IntegrationCodelocksSettingsService,IntegrationDotDigitalSettingsService,IntegrationDotdigitalFieldMapService,IntegrationDotdigitalLogService,IntegrationDotdigitalLogStatus,IntegrationQueueService,IntegrationType,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,ProviderTypesService,ProvidersService,PublicBookingService,PublicCalendarService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSellableItemsService,PublicSessionsService,PublicSlotsService,PublicStorefrontStaffPreviewService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantFaqsService,PublicTenantsService,PublicVenueTypesService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SellableItemsService,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StorefrontStaffPreviewService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantFaqsService,TenantStatus,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenueTypeService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService,WalletTrackingLevel,WalletTransactionType,WalletTransactionsService,WalletsService,WebsiteHomepage};
|
package/package.json
CHANGED
package/src/apiClient.ts
CHANGED
|
@@ -96,6 +96,7 @@ import { PublicStripeWebhookService } from './services/PublicStripeWebhookServic
|
|
|
96
96
|
import { PublicSurveyCompletionLogsService } from './services/PublicSurveyCompletionLogsService';
|
|
97
97
|
import { PublicSurveyQuestionsService } from './services/PublicSurveyQuestionsService';
|
|
98
98
|
import { PublicSurveysService } from './services/PublicSurveysService';
|
|
99
|
+
import { PublicTenantFaqsService } from './services/PublicTenantFaqsService';
|
|
99
100
|
import { PublicTenantsService } from './services/PublicTenantsService';
|
|
100
101
|
import { PublicVenuesService } from './services/PublicVenuesService';
|
|
101
102
|
import { PublicVenueTypesService } from './services/PublicVenueTypesService';
|
|
@@ -124,6 +125,7 @@ import { TemplateDetailsService } from './services/TemplateDetailsService';
|
|
|
124
125
|
import { TemplateFieldPermissionsService } from './services/TemplateFieldPermissionsService';
|
|
125
126
|
import { TemplateOffersService } from './services/TemplateOffersService';
|
|
126
127
|
import { TemplatesService } from './services/TemplatesService';
|
|
128
|
+
import { TenantFaqsService } from './services/TenantFaqsService';
|
|
127
129
|
import { TenantsService } from './services/TenantsService';
|
|
128
130
|
import { TenantWebsiteSettingsService } from './services/TenantWebsiteSettingsService';
|
|
129
131
|
import { TimezoneService } from './services/TimezoneService';
|
|
@@ -238,6 +240,7 @@ export class ApiClient {
|
|
|
238
240
|
public readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
239
241
|
public readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
240
242
|
public readonly publicSurveys: PublicSurveysService;
|
|
243
|
+
public readonly publicTenantFaqs: PublicTenantFaqsService;
|
|
241
244
|
public readonly publicTenants: PublicTenantsService;
|
|
242
245
|
public readonly publicVenues: PublicVenuesService;
|
|
243
246
|
public readonly publicVenueTypes: PublicVenueTypesService;
|
|
@@ -266,6 +269,7 @@ export class ApiClient {
|
|
|
266
269
|
public readonly templateFieldPermissions: TemplateFieldPermissionsService;
|
|
267
270
|
public readonly templateOffers: TemplateOffersService;
|
|
268
271
|
public readonly templates: TemplatesService;
|
|
272
|
+
public readonly tenantFaqs: TenantFaqsService;
|
|
269
273
|
public readonly tenants: TenantsService;
|
|
270
274
|
public readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
|
|
271
275
|
public readonly timezone: TimezoneService;
|
|
@@ -395,6 +399,7 @@ export class ApiClient {
|
|
|
395
399
|
this.publicSurveyCompletionLogs = new PublicSurveyCompletionLogsService(this.request);
|
|
396
400
|
this.publicSurveyQuestions = new PublicSurveyQuestionsService(this.request);
|
|
397
401
|
this.publicSurveys = new PublicSurveysService(this.request);
|
|
402
|
+
this.publicTenantFaqs = new PublicTenantFaqsService(this.request);
|
|
398
403
|
this.publicTenants = new PublicTenantsService(this.request);
|
|
399
404
|
this.publicVenues = new PublicVenuesService(this.request);
|
|
400
405
|
this.publicVenueTypes = new PublicVenueTypesService(this.request);
|
|
@@ -423,6 +428,7 @@ export class ApiClient {
|
|
|
423
428
|
this.templateFieldPermissions = new TemplateFieldPermissionsService(this.request);
|
|
424
429
|
this.templateOffers = new TemplateOffersService(this.request);
|
|
425
430
|
this.templates = new TemplatesService(this.request);
|
|
431
|
+
this.tenantFaqs = new TenantFaqsService(this.request);
|
|
426
432
|
this.tenants = new TenantsService(this.request);
|
|
427
433
|
this.tenantWebsiteSettings = new TenantWebsiteSettingsService(this.request);
|
|
428
434
|
this.timezone = new TimezoneService(this.request);
|