reach-api-sdk 1.0.224 → 1.0.225
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 +43 -11
- package/dist/reach-sdk.js +14 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +43 -4
- package/src/models/TenantFaq.ts +4 -0
- package/src/models/TenantFaqPatch.ts +2 -2
- package/src/models/TenantFaqPost.ts +2 -2
- package/src/services/PublicTenantFaqsService.ts +12 -0
- package/src/services/TenantFaqsService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -46054,6 +46054,10 @@ type TenantFaq = {
|
|
|
46054
46054
|
* Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
46055
46055
|
*/
|
|
46056
46056
|
showOnCustomerPortal?: boolean;
|
|
46057
|
+
/**
|
|
46058
|
+
* Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
46059
|
+
*/
|
|
46060
|
+
isPublished?: boolean;
|
|
46057
46061
|
};
|
|
46058
46062
|
|
|
46059
46063
|
type TenantFaqPage = {
|
|
@@ -46076,7 +46080,7 @@ declare class PublicTenantFaqsService {
|
|
|
46076
46080
|
* @returns TenantFaqPage OK
|
|
46077
46081
|
* @throws ApiError
|
|
46078
46082
|
*/
|
|
46079
|
-
getPage({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46083
|
+
getPage({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46080
46084
|
xTenantSubdomain?: string;
|
|
46081
46085
|
/**
|
|
46082
46086
|
* Gets or sets the queryable tenant FAQ ids.
|
|
@@ -46090,6 +46094,10 @@ declare class PublicTenantFaqsService {
|
|
|
46090
46094
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
46091
46095
|
*/
|
|
46092
46096
|
showOnCustomerPortal?: boolean;
|
|
46097
|
+
/**
|
|
46098
|
+
* Gets or sets the queryable IsPublished value.
|
|
46099
|
+
*/
|
|
46100
|
+
isPublished?: boolean;
|
|
46093
46101
|
/**
|
|
46094
46102
|
* Gets or sets the page number for paged queries.
|
|
46095
46103
|
*/
|
|
@@ -46140,7 +46148,7 @@ declare class PublicTenantFaqsService {
|
|
|
46140
46148
|
* @returns boolean OK
|
|
46141
46149
|
* @throws ApiError
|
|
46142
46150
|
*/
|
|
46143
|
-
exists({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46151
|
+
exists({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46144
46152
|
/**
|
|
46145
46153
|
* The tenants subdomain.
|
|
46146
46154
|
*/
|
|
@@ -46157,6 +46165,10 @@ declare class PublicTenantFaqsService {
|
|
|
46157
46165
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
46158
46166
|
*/
|
|
46159
46167
|
showOnCustomerPortal?: boolean;
|
|
46168
|
+
/**
|
|
46169
|
+
* Gets or sets the queryable IsPublished value.
|
|
46170
|
+
*/
|
|
46171
|
+
isPublished?: boolean;
|
|
46160
46172
|
/**
|
|
46161
46173
|
* Gets or sets the page number for paged queries.
|
|
46162
46174
|
*/
|
|
@@ -61868,9 +61880,9 @@ type TenantFaqPatch = {
|
|
|
61868
61880
|
*/
|
|
61869
61881
|
showOnCustomerPortal?: boolean;
|
|
61870
61882
|
/**
|
|
61871
|
-
* Gets or sets a value indicating whether this FAQ is
|
|
61883
|
+
* Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
61872
61884
|
*/
|
|
61873
|
-
|
|
61885
|
+
isPublished?: boolean;
|
|
61874
61886
|
};
|
|
61875
61887
|
|
|
61876
61888
|
/**
|
|
@@ -61902,9 +61914,9 @@ type TenantFaqPost = {
|
|
|
61902
61914
|
*/
|
|
61903
61915
|
showOnCustomerPortal?: boolean;
|
|
61904
61916
|
/**
|
|
61905
|
-
* Gets or sets a value indicating whether this FAQ is
|
|
61917
|
+
* Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
61906
61918
|
*/
|
|
61907
|
-
|
|
61919
|
+
isPublished?: boolean;
|
|
61908
61920
|
};
|
|
61909
61921
|
|
|
61910
61922
|
declare class TenantFaqsService {
|
|
@@ -61981,7 +61993,7 @@ declare class TenantFaqsService {
|
|
|
61981
61993
|
* @returns TenantFaqPage OK
|
|
61982
61994
|
* @throws ApiError
|
|
61983
61995
|
*/
|
|
61984
|
-
getPage({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61996
|
+
getPage({ ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61985
61997
|
/**
|
|
61986
61998
|
* Gets or sets the queryable tenant FAQ ids.
|
|
61987
61999
|
*/
|
|
@@ -61994,6 +62006,10 @@ declare class TenantFaqsService {
|
|
|
61994
62006
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
61995
62007
|
*/
|
|
61996
62008
|
showOnCustomerPortal?: boolean;
|
|
62009
|
+
/**
|
|
62010
|
+
* Gets or sets the queryable IsPublished value.
|
|
62011
|
+
*/
|
|
62012
|
+
isPublished?: boolean;
|
|
61997
62013
|
/**
|
|
61998
62014
|
* Gets or sets the page number for paged queries.
|
|
61999
62015
|
*/
|
|
@@ -62077,7 +62093,7 @@ declare class TenantFaqsService {
|
|
|
62077
62093
|
* @returns boolean OK
|
|
62078
62094
|
* @throws ApiError
|
|
62079
62095
|
*/
|
|
62080
|
-
exists({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62096
|
+
exists({ ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62081
62097
|
/**
|
|
62082
62098
|
* Gets or sets the queryable tenant FAQ ids.
|
|
62083
62099
|
*/
|
|
@@ -62090,6 +62106,10 @@ declare class TenantFaqsService {
|
|
|
62090
62106
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62091
62107
|
*/
|
|
62092
62108
|
showOnCustomerPortal?: boolean;
|
|
62109
|
+
/**
|
|
62110
|
+
* Gets or sets the queryable IsPublished value.
|
|
62111
|
+
*/
|
|
62112
|
+
isPublished?: boolean;
|
|
62093
62113
|
/**
|
|
62094
62114
|
* Gets or sets the page number for paged queries.
|
|
62095
62115
|
*/
|
|
@@ -62140,7 +62160,7 @@ declare class TenantFaqsService {
|
|
|
62140
62160
|
* @returns number OK
|
|
62141
62161
|
* @throws ApiError
|
|
62142
62162
|
*/
|
|
62143
|
-
count({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62163
|
+
count({ ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62144
62164
|
/**
|
|
62145
62165
|
* Gets or sets the queryable tenant FAQ ids.
|
|
62146
62166
|
*/
|
|
@@ -62153,6 +62173,10 @@ declare class TenantFaqsService {
|
|
|
62153
62173
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62154
62174
|
*/
|
|
62155
62175
|
showOnCustomerPortal?: boolean;
|
|
62176
|
+
/**
|
|
62177
|
+
* Gets or sets the queryable IsPublished value.
|
|
62178
|
+
*/
|
|
62179
|
+
isPublished?: boolean;
|
|
62156
62180
|
/**
|
|
62157
62181
|
* Gets or sets the page number for paged queries.
|
|
62158
62182
|
*/
|
|
@@ -62203,7 +62227,7 @@ declare class TenantFaqsService {
|
|
|
62203
62227
|
* @returns TenantFaq OK
|
|
62204
62228
|
* @throws ApiError
|
|
62205
62229
|
*/
|
|
62206
|
-
getListWithoutReferences({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62230
|
+
getListWithoutReferences({ ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62207
62231
|
/**
|
|
62208
62232
|
* Gets or sets the queryable tenant FAQ ids.
|
|
62209
62233
|
*/
|
|
@@ -62216,6 +62240,10 @@ declare class TenantFaqsService {
|
|
|
62216
62240
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62217
62241
|
*/
|
|
62218
62242
|
showOnCustomerPortal?: boolean;
|
|
62243
|
+
/**
|
|
62244
|
+
* Gets or sets the queryable IsPublished value.
|
|
62245
|
+
*/
|
|
62246
|
+
isPublished?: boolean;
|
|
62219
62247
|
/**
|
|
62220
62248
|
* Gets or sets the page number for paged queries.
|
|
62221
62249
|
*/
|
|
@@ -62266,7 +62294,7 @@ declare class TenantFaqsService {
|
|
|
62266
62294
|
* @returns TenantFaq OK
|
|
62267
62295
|
* @throws ApiError
|
|
62268
62296
|
*/
|
|
62269
|
-
getListIdName({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62297
|
+
getListIdName({ ids, showOnStorefront, showOnCustomerPortal, isPublished, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62270
62298
|
/**
|
|
62271
62299
|
* Gets or sets the queryable tenant FAQ ids.
|
|
62272
62300
|
*/
|
|
@@ -62279,6 +62307,10 @@ declare class TenantFaqsService {
|
|
|
62279
62307
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62280
62308
|
*/
|
|
62281
62309
|
showOnCustomerPortal?: boolean;
|
|
62310
|
+
/**
|
|
62311
|
+
* Gets or sets the queryable IsPublished value.
|
|
62312
|
+
*/
|
|
62313
|
+
isPublished?: boolean;
|
|
62282
62314
|
/**
|
|
62283
62315
|
* Gets or sets the page number for paged queries.
|
|
62284
62316
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -31374,6 +31374,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31374
31374
|
ids,
|
|
31375
31375
|
showOnStorefront,
|
|
31376
31376
|
showOnCustomerPortal,
|
|
31377
|
+
isPublished,
|
|
31377
31378
|
pageNumber,
|
|
31378
31379
|
take,
|
|
31379
31380
|
skip,
|
|
@@ -31396,6 +31397,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31396
31397
|
Ids: ids,
|
|
31397
31398
|
ShowOnStorefront: showOnStorefront,
|
|
31398
31399
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
31400
|
+
IsPublished: isPublished,
|
|
31399
31401
|
PageNumber: pageNumber,
|
|
31400
31402
|
Take: take,
|
|
31401
31403
|
Skip: skip,
|
|
@@ -31425,6 +31427,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31425
31427
|
ids,
|
|
31426
31428
|
showOnStorefront,
|
|
31427
31429
|
showOnCustomerPortal,
|
|
31430
|
+
isPublished,
|
|
31428
31431
|
pageNumber,
|
|
31429
31432
|
take,
|
|
31430
31433
|
skip,
|
|
@@ -31447,6 +31450,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31447
31450
|
Ids: ids,
|
|
31448
31451
|
ShowOnStorefront: showOnStorefront,
|
|
31449
31452
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
31453
|
+
IsPublished: isPublished,
|
|
31450
31454
|
PageNumber: pageNumber,
|
|
31451
31455
|
Take: take,
|
|
31452
31456
|
Skip: skip,
|
|
@@ -43841,6 +43845,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43841
43845
|
ids,
|
|
43842
43846
|
showOnStorefront,
|
|
43843
43847
|
showOnCustomerPortal,
|
|
43848
|
+
isPublished,
|
|
43844
43849
|
pageNumber,
|
|
43845
43850
|
take,
|
|
43846
43851
|
skip,
|
|
@@ -43860,6 +43865,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43860
43865
|
Ids: ids,
|
|
43861
43866
|
ShowOnStorefront: showOnStorefront,
|
|
43862
43867
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
43868
|
+
IsPublished: isPublished,
|
|
43863
43869
|
PageNumber: pageNumber,
|
|
43864
43870
|
Take: take,
|
|
43865
43871
|
Skip: skip,
|
|
@@ -43951,6 +43957,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43951
43957
|
ids,
|
|
43952
43958
|
showOnStorefront,
|
|
43953
43959
|
showOnCustomerPortal,
|
|
43960
|
+
isPublished,
|
|
43954
43961
|
pageNumber,
|
|
43955
43962
|
take,
|
|
43956
43963
|
skip,
|
|
@@ -43970,6 +43977,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43970
43977
|
Ids: ids,
|
|
43971
43978
|
ShowOnStorefront: showOnStorefront,
|
|
43972
43979
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
43980
|
+
IsPublished: isPublished,
|
|
43973
43981
|
PageNumber: pageNumber,
|
|
43974
43982
|
Take: take,
|
|
43975
43983
|
Skip: skip,
|
|
@@ -43998,6 +44006,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43998
44006
|
ids,
|
|
43999
44007
|
showOnStorefront,
|
|
44000
44008
|
showOnCustomerPortal,
|
|
44009
|
+
isPublished,
|
|
44001
44010
|
pageNumber,
|
|
44002
44011
|
take,
|
|
44003
44012
|
skip,
|
|
@@ -44017,6 +44026,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44017
44026
|
Ids: ids,
|
|
44018
44027
|
ShowOnStorefront: showOnStorefront,
|
|
44019
44028
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
44029
|
+
IsPublished: isPublished,
|
|
44020
44030
|
PageNumber: pageNumber,
|
|
44021
44031
|
Take: take,
|
|
44022
44032
|
Skip: skip,
|
|
@@ -44045,6 +44055,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44045
44055
|
ids,
|
|
44046
44056
|
showOnStorefront,
|
|
44047
44057
|
showOnCustomerPortal,
|
|
44058
|
+
isPublished,
|
|
44048
44059
|
pageNumber,
|
|
44049
44060
|
take,
|
|
44050
44061
|
skip,
|
|
@@ -44064,6 +44075,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44064
44075
|
Ids: ids,
|
|
44065
44076
|
ShowOnStorefront: showOnStorefront,
|
|
44066
44077
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
44078
|
+
IsPublished: isPublished,
|
|
44067
44079
|
PageNumber: pageNumber,
|
|
44068
44080
|
Take: take,
|
|
44069
44081
|
Skip: skip,
|
|
@@ -44092,6 +44104,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44092
44104
|
ids,
|
|
44093
44105
|
showOnStorefront,
|
|
44094
44106
|
showOnCustomerPortal,
|
|
44107
|
+
isPublished,
|
|
44095
44108
|
pageNumber,
|
|
44096
44109
|
take,
|
|
44097
44110
|
skip,
|
|
@@ -44111,6 +44124,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44111
44124
|
Ids: ids,
|
|
44112
44125
|
ShowOnStorefront: showOnStorefront,
|
|
44113
44126
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
44127
|
+
IsPublished: isPublished,
|
|
44114
44128
|
PageNumber: pageNumber,
|
|
44115
44129
|
Take: take,
|
|
44116
44130
|
Skip: skip,
|
package/package.json
CHANGED
|
@@ -91754,6 +91754,11 @@ paths:
|
|
|
91754
91754
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
91755
91755
|
schema:
|
|
91756
91756
|
type: boolean
|
|
91757
|
+
- name: IsPublished
|
|
91758
|
+
in: query
|
|
91759
|
+
description: Gets or sets the queryable IsPublished value.
|
|
91760
|
+
schema:
|
|
91761
|
+
type: boolean
|
|
91757
91762
|
- name: PageNumber
|
|
91758
91763
|
in: query
|
|
91759
91764
|
description: Gets or sets the page number for paged queries.
|
|
@@ -91898,6 +91903,11 @@ paths:
|
|
|
91898
91903
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
91899
91904
|
schema:
|
|
91900
91905
|
type: boolean
|
|
91906
|
+
- name: IsPublished
|
|
91907
|
+
in: query
|
|
91908
|
+
description: Gets or sets the queryable IsPublished value.
|
|
91909
|
+
schema:
|
|
91910
|
+
type: boolean
|
|
91901
91911
|
- name: PageNumber
|
|
91902
91912
|
in: query
|
|
91903
91913
|
description: Gets or sets the page number for paged queries.
|
|
@@ -129196,6 +129206,11 @@ paths:
|
|
|
129196
129206
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129197
129207
|
schema:
|
|
129198
129208
|
type: boolean
|
|
129209
|
+
- name: IsPublished
|
|
129210
|
+
in: query
|
|
129211
|
+
description: Gets or sets the queryable IsPublished value.
|
|
129212
|
+
schema:
|
|
129213
|
+
type: boolean
|
|
129199
129214
|
- name: PageNumber
|
|
129200
129215
|
in: query
|
|
129201
129216
|
description: Gets or sets the page number for paged queries.
|
|
@@ -129513,6 +129528,11 @@ paths:
|
|
|
129513
129528
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129514
129529
|
schema:
|
|
129515
129530
|
type: boolean
|
|
129531
|
+
- name: IsPublished
|
|
129532
|
+
in: query
|
|
129533
|
+
description: Gets or sets the queryable IsPublished value.
|
|
129534
|
+
schema:
|
|
129535
|
+
type: boolean
|
|
129516
129536
|
- name: PageNumber
|
|
129517
129537
|
in: query
|
|
129518
129538
|
description: Gets or sets the page number for paged queries.
|
|
@@ -129652,6 +129672,11 @@ paths:
|
|
|
129652
129672
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129653
129673
|
schema:
|
|
129654
129674
|
type: boolean
|
|
129675
|
+
- name: IsPublished
|
|
129676
|
+
in: query
|
|
129677
|
+
description: Gets or sets the queryable IsPublished value.
|
|
129678
|
+
schema:
|
|
129679
|
+
type: boolean
|
|
129655
129680
|
- name: PageNumber
|
|
129656
129681
|
in: query
|
|
129657
129682
|
description: Gets or sets the page number for paged queries.
|
|
@@ -129794,6 +129819,11 @@ paths:
|
|
|
129794
129819
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129795
129820
|
schema:
|
|
129796
129821
|
type: boolean
|
|
129822
|
+
- name: IsPublished
|
|
129823
|
+
in: query
|
|
129824
|
+
description: Gets or sets the queryable IsPublished value.
|
|
129825
|
+
schema:
|
|
129826
|
+
type: boolean
|
|
129797
129827
|
- name: PageNumber
|
|
129798
129828
|
in: query
|
|
129799
129829
|
description: Gets or sets the page number for paged queries.
|
|
@@ -129939,6 +129969,11 @@ paths:
|
|
|
129939
129969
|
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129940
129970
|
schema:
|
|
129941
129971
|
type: boolean
|
|
129972
|
+
- name: IsPublished
|
|
129973
|
+
in: query
|
|
129974
|
+
description: Gets or sets the queryable IsPublished value.
|
|
129975
|
+
schema:
|
|
129976
|
+
type: boolean
|
|
129942
129977
|
- name: PageNumber
|
|
129943
129978
|
in: query
|
|
129944
129979
|
description: Gets or sets the page number for paged queries.
|
|
@@ -173500,6 +173535,10 @@ components:
|
|
|
173500
173535
|
type: boolean
|
|
173501
173536
|
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173502
173537
|
default: false
|
|
173538
|
+
isPublished:
|
|
173539
|
+
type: boolean
|
|
173540
|
+
description: Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
173541
|
+
default: false
|
|
173503
173542
|
additionalProperties: false
|
|
173504
173543
|
description: Represents a single Frequently Asked Question entry owned by a tenant.
|
|
173505
173544
|
TenantFaqPage:
|
|
@@ -173551,9 +173590,9 @@ components:
|
|
|
173551
173590
|
type: boolean
|
|
173552
173591
|
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173553
173592
|
default: false
|
|
173554
|
-
|
|
173593
|
+
isPublished:
|
|
173555
173594
|
type: boolean
|
|
173556
|
-
description: Gets or sets a value indicating whether this FAQ is
|
|
173595
|
+
description: Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
173557
173596
|
default: false
|
|
173558
173597
|
additionalProperties: false
|
|
173559
173598
|
description: Patch model for a tenant FAQ entry.
|
|
@@ -173587,9 +173626,9 @@ components:
|
|
|
173587
173626
|
type: boolean
|
|
173588
173627
|
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173589
173628
|
default: false
|
|
173590
|
-
|
|
173629
|
+
isPublished:
|
|
173591
173630
|
type: boolean
|
|
173592
|
-
description: Gets or sets a value indicating whether this FAQ is
|
|
173631
|
+
description: Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
173593
173632
|
default: false
|
|
173594
173633
|
additionalProperties: false
|
|
173595
173634
|
description: Post model for a tenant FAQ entry.
|
package/src/models/TenantFaq.ts
CHANGED
|
@@ -51,4 +51,8 @@ export type TenantFaq = {
|
|
|
51
51
|
* Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
52
52
|
*/
|
|
53
53
|
showOnCustomerPortal?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
56
|
+
*/
|
|
57
|
+
isPublished?: boolean;
|
|
54
58
|
};
|
|
@@ -36,7 +36,7 @@ export type TenantFaqPatch = {
|
|
|
36
36
|
*/
|
|
37
37
|
showOnCustomerPortal?: boolean;
|
|
38
38
|
/**
|
|
39
|
-
* Gets or sets a value indicating whether this FAQ is
|
|
39
|
+
* Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
isPublished?: boolean;
|
|
42
42
|
};
|
|
@@ -32,7 +32,7 @@ export type TenantFaqPost = {
|
|
|
32
32
|
*/
|
|
33
33
|
showOnCustomerPortal?: boolean;
|
|
34
34
|
/**
|
|
35
|
-
* Gets or sets a value indicating whether this FAQ is
|
|
35
|
+
* Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
isPublished?: boolean;
|
|
38
38
|
};
|
|
@@ -49,6 +49,7 @@ export class PublicTenantFaqsService {
|
|
|
49
49
|
ids,
|
|
50
50
|
showOnStorefront,
|
|
51
51
|
showOnCustomerPortal,
|
|
52
|
+
isPublished,
|
|
52
53
|
pageNumber,
|
|
53
54
|
take,
|
|
54
55
|
skip,
|
|
@@ -74,6 +75,10 @@ export class PublicTenantFaqsService {
|
|
|
74
75
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
75
76
|
*/
|
|
76
77
|
showOnCustomerPortal?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Gets or sets the queryable IsPublished value.
|
|
80
|
+
*/
|
|
81
|
+
isPublished?: boolean;
|
|
77
82
|
/**
|
|
78
83
|
* Gets or sets the page number for paged queries.
|
|
79
84
|
*/
|
|
@@ -129,6 +134,7 @@ export class PublicTenantFaqsService {
|
|
|
129
134
|
Ids: ids,
|
|
130
135
|
ShowOnStorefront: showOnStorefront,
|
|
131
136
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
137
|
+
IsPublished: isPublished,
|
|
132
138
|
PageNumber: pageNumber,
|
|
133
139
|
Take: take,
|
|
134
140
|
Skip: skip,
|
|
@@ -159,6 +165,7 @@ export class PublicTenantFaqsService {
|
|
|
159
165
|
ids,
|
|
160
166
|
showOnStorefront,
|
|
161
167
|
showOnCustomerPortal,
|
|
168
|
+
isPublished,
|
|
162
169
|
pageNumber,
|
|
163
170
|
take,
|
|
164
171
|
skip,
|
|
@@ -187,6 +194,10 @@ export class PublicTenantFaqsService {
|
|
|
187
194
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
188
195
|
*/
|
|
189
196
|
showOnCustomerPortal?: boolean;
|
|
197
|
+
/**
|
|
198
|
+
* Gets or sets the queryable IsPublished value.
|
|
199
|
+
*/
|
|
200
|
+
isPublished?: boolean;
|
|
190
201
|
/**
|
|
191
202
|
* Gets or sets the page number for paged queries.
|
|
192
203
|
*/
|
|
@@ -242,6 +253,7 @@ export class PublicTenantFaqsService {
|
|
|
242
253
|
Ids: ids,
|
|
243
254
|
ShowOnStorefront: showOnStorefront,
|
|
244
255
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
256
|
+
IsPublished: isPublished,
|
|
245
257
|
PageNumber: pageNumber,
|
|
246
258
|
Take: take,
|
|
247
259
|
Skip: skip,
|
|
@@ -180,6 +180,7 @@ export class TenantFaqsService {
|
|
|
180
180
|
ids,
|
|
181
181
|
showOnStorefront,
|
|
182
182
|
showOnCustomerPortal,
|
|
183
|
+
isPublished,
|
|
183
184
|
pageNumber,
|
|
184
185
|
take,
|
|
185
186
|
skip,
|
|
@@ -204,6 +205,10 @@ export class TenantFaqsService {
|
|
|
204
205
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
205
206
|
*/
|
|
206
207
|
showOnCustomerPortal?: boolean;
|
|
208
|
+
/**
|
|
209
|
+
* Gets or sets the queryable IsPublished value.
|
|
210
|
+
*/
|
|
211
|
+
isPublished?: boolean;
|
|
207
212
|
/**
|
|
208
213
|
* Gets or sets the page number for paged queries.
|
|
209
214
|
*/
|
|
@@ -256,6 +261,7 @@ export class TenantFaqsService {
|
|
|
256
261
|
Ids: ids,
|
|
257
262
|
ShowOnStorefront: showOnStorefront,
|
|
258
263
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
264
|
+
IsPublished: isPublished,
|
|
259
265
|
PageNumber: pageNumber,
|
|
260
266
|
Take: take,
|
|
261
267
|
Skip: skip,
|
|
@@ -366,6 +372,7 @@ export class TenantFaqsService {
|
|
|
366
372
|
ids,
|
|
367
373
|
showOnStorefront,
|
|
368
374
|
showOnCustomerPortal,
|
|
375
|
+
isPublished,
|
|
369
376
|
pageNumber,
|
|
370
377
|
take,
|
|
371
378
|
skip,
|
|
@@ -390,6 +397,10 @@ export class TenantFaqsService {
|
|
|
390
397
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
391
398
|
*/
|
|
392
399
|
showOnCustomerPortal?: boolean;
|
|
400
|
+
/**
|
|
401
|
+
* Gets or sets the queryable IsPublished value.
|
|
402
|
+
*/
|
|
403
|
+
isPublished?: boolean;
|
|
393
404
|
/**
|
|
394
405
|
* Gets or sets the page number for paged queries.
|
|
395
406
|
*/
|
|
@@ -442,6 +453,7 @@ export class TenantFaqsService {
|
|
|
442
453
|
Ids: ids,
|
|
443
454
|
ShowOnStorefront: showOnStorefront,
|
|
444
455
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
456
|
+
IsPublished: isPublished,
|
|
445
457
|
PageNumber: pageNumber,
|
|
446
458
|
Take: take,
|
|
447
459
|
Skip: skip,
|
|
@@ -471,6 +483,7 @@ export class TenantFaqsService {
|
|
|
471
483
|
ids,
|
|
472
484
|
showOnStorefront,
|
|
473
485
|
showOnCustomerPortal,
|
|
486
|
+
isPublished,
|
|
474
487
|
pageNumber,
|
|
475
488
|
take,
|
|
476
489
|
skip,
|
|
@@ -495,6 +508,10 @@ export class TenantFaqsService {
|
|
|
495
508
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
496
509
|
*/
|
|
497
510
|
showOnCustomerPortal?: boolean;
|
|
511
|
+
/**
|
|
512
|
+
* Gets or sets the queryable IsPublished value.
|
|
513
|
+
*/
|
|
514
|
+
isPublished?: boolean;
|
|
498
515
|
/**
|
|
499
516
|
* Gets or sets the page number for paged queries.
|
|
500
517
|
*/
|
|
@@ -547,6 +564,7 @@ export class TenantFaqsService {
|
|
|
547
564
|
Ids: ids,
|
|
548
565
|
ShowOnStorefront: showOnStorefront,
|
|
549
566
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
567
|
+
IsPublished: isPublished,
|
|
550
568
|
PageNumber: pageNumber,
|
|
551
569
|
Take: take,
|
|
552
570
|
Skip: skip,
|
|
@@ -576,6 +594,7 @@ export class TenantFaqsService {
|
|
|
576
594
|
ids,
|
|
577
595
|
showOnStorefront,
|
|
578
596
|
showOnCustomerPortal,
|
|
597
|
+
isPublished,
|
|
579
598
|
pageNumber,
|
|
580
599
|
take,
|
|
581
600
|
skip,
|
|
@@ -600,6 +619,10 @@ export class TenantFaqsService {
|
|
|
600
619
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
601
620
|
*/
|
|
602
621
|
showOnCustomerPortal?: boolean;
|
|
622
|
+
/**
|
|
623
|
+
* Gets or sets the queryable IsPublished value.
|
|
624
|
+
*/
|
|
625
|
+
isPublished?: boolean;
|
|
603
626
|
/**
|
|
604
627
|
* Gets or sets the page number for paged queries.
|
|
605
628
|
*/
|
|
@@ -652,6 +675,7 @@ export class TenantFaqsService {
|
|
|
652
675
|
Ids: ids,
|
|
653
676
|
ShowOnStorefront: showOnStorefront,
|
|
654
677
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
678
|
+
IsPublished: isPublished,
|
|
655
679
|
PageNumber: pageNumber,
|
|
656
680
|
Take: take,
|
|
657
681
|
Skip: skip,
|
|
@@ -681,6 +705,7 @@ export class TenantFaqsService {
|
|
|
681
705
|
ids,
|
|
682
706
|
showOnStorefront,
|
|
683
707
|
showOnCustomerPortal,
|
|
708
|
+
isPublished,
|
|
684
709
|
pageNumber,
|
|
685
710
|
take,
|
|
686
711
|
skip,
|
|
@@ -705,6 +730,10 @@ export class TenantFaqsService {
|
|
|
705
730
|
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
706
731
|
*/
|
|
707
732
|
showOnCustomerPortal?: boolean;
|
|
733
|
+
/**
|
|
734
|
+
* Gets or sets the queryable IsPublished value.
|
|
735
|
+
*/
|
|
736
|
+
isPublished?: boolean;
|
|
708
737
|
/**
|
|
709
738
|
* Gets or sets the page number for paged queries.
|
|
710
739
|
*/
|
|
@@ -757,6 +786,7 @@ export class TenantFaqsService {
|
|
|
757
786
|
Ids: ids,
|
|
758
787
|
ShowOnStorefront: showOnStorefront,
|
|
759
788
|
ShowOnCustomerPortal: showOnCustomerPortal,
|
|
789
|
+
IsPublished: isPublished,
|
|
760
790
|
PageNumber: pageNumber,
|
|
761
791
|
Take: take,
|
|
762
792
|
Skip: skip,
|