reach-api-sdk 1.0.224 → 1.0.227
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 +73 -17
- package/dist/reach-sdk.js +26 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +73 -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/src/services/UsersService.ts +36 -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
|
*/
|
|
@@ -65858,7 +65890,7 @@ declare class UsersService {
|
|
|
65858
65890
|
* @returns boolean OK
|
|
65859
65891
|
* @throws ApiError
|
|
65860
65892
|
*/
|
|
65861
|
-
globalExists({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
65893
|
+
globalExists({ ids, roles, name, nameLike, email, inviteStatus, isPlatformAccount, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
65862
65894
|
/**
|
|
65863
65895
|
* Gets or sets the queryable user ids.
|
|
65864
65896
|
*/
|
|
@@ -65883,6 +65915,10 @@ declare class UsersService {
|
|
|
65883
65915
|
* Gets or sets the team member invite status for use in a query search.
|
|
65884
65916
|
*/
|
|
65885
65917
|
inviteStatus?: InviteStatus;
|
|
65918
|
+
/**
|
|
65919
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
65920
|
+
*/
|
|
65921
|
+
isPlatformAccount?: boolean;
|
|
65886
65922
|
/**
|
|
65887
65923
|
* Gets or sets the page number for paged queries.
|
|
65888
65924
|
*/
|
|
@@ -66011,7 +66047,7 @@ declare class UsersService {
|
|
|
66011
66047
|
* @returns UserPage OK
|
|
66012
66048
|
* @throws ApiError
|
|
66013
66049
|
*/
|
|
66014
|
-
getPage({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66050
|
+
getPage({ ids, roles, name, nameLike, email, inviteStatus, isPlatformAccount, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66015
66051
|
/**
|
|
66016
66052
|
* Gets or sets the queryable user ids.
|
|
66017
66053
|
*/
|
|
@@ -66036,6 +66072,10 @@ declare class UsersService {
|
|
|
66036
66072
|
* Gets or sets the team member invite status for use in a query search.
|
|
66037
66073
|
*/
|
|
66038
66074
|
inviteStatus?: InviteStatus;
|
|
66075
|
+
/**
|
|
66076
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
66077
|
+
*/
|
|
66078
|
+
isPlatformAccount?: boolean;
|
|
66039
66079
|
/**
|
|
66040
66080
|
* Gets or sets the page number for paged queries.
|
|
66041
66081
|
*/
|
|
@@ -66119,7 +66159,7 @@ declare class UsersService {
|
|
|
66119
66159
|
* @returns boolean OK
|
|
66120
66160
|
* @throws ApiError
|
|
66121
66161
|
*/
|
|
66122
|
-
exists({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66162
|
+
exists({ ids, roles, name, nameLike, email, inviteStatus, isPlatformAccount, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66123
66163
|
/**
|
|
66124
66164
|
* Gets or sets the queryable user ids.
|
|
66125
66165
|
*/
|
|
@@ -66144,6 +66184,10 @@ declare class UsersService {
|
|
|
66144
66184
|
* Gets or sets the team member invite status for use in a query search.
|
|
66145
66185
|
*/
|
|
66146
66186
|
inviteStatus?: InviteStatus;
|
|
66187
|
+
/**
|
|
66188
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
66189
|
+
*/
|
|
66190
|
+
isPlatformAccount?: boolean;
|
|
66147
66191
|
/**
|
|
66148
66192
|
* Gets or sets the page number for paged queries.
|
|
66149
66193
|
*/
|
|
@@ -66194,7 +66238,7 @@ declare class UsersService {
|
|
|
66194
66238
|
* @returns number OK
|
|
66195
66239
|
* @throws ApiError
|
|
66196
66240
|
*/
|
|
66197
|
-
count({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66241
|
+
count({ ids, roles, name, nameLike, email, inviteStatus, isPlatformAccount, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66198
66242
|
/**
|
|
66199
66243
|
* Gets or sets the queryable user ids.
|
|
66200
66244
|
*/
|
|
@@ -66219,6 +66263,10 @@ declare class UsersService {
|
|
|
66219
66263
|
* Gets or sets the team member invite status for use in a query search.
|
|
66220
66264
|
*/
|
|
66221
66265
|
inviteStatus?: InviteStatus;
|
|
66266
|
+
/**
|
|
66267
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
66268
|
+
*/
|
|
66269
|
+
isPlatformAccount?: boolean;
|
|
66222
66270
|
/**
|
|
66223
66271
|
* Gets or sets the page number for paged queries.
|
|
66224
66272
|
*/
|
|
@@ -66269,7 +66317,7 @@ declare class UsersService {
|
|
|
66269
66317
|
* @returns User OK
|
|
66270
66318
|
* @throws ApiError
|
|
66271
66319
|
*/
|
|
66272
|
-
getListWithoutReferences({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66320
|
+
getListWithoutReferences({ ids, roles, name, nameLike, email, inviteStatus, isPlatformAccount, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66273
66321
|
/**
|
|
66274
66322
|
* Gets or sets the queryable user ids.
|
|
66275
66323
|
*/
|
|
@@ -66294,6 +66342,10 @@ declare class UsersService {
|
|
|
66294
66342
|
* Gets or sets the team member invite status for use in a query search.
|
|
66295
66343
|
*/
|
|
66296
66344
|
inviteStatus?: InviteStatus;
|
|
66345
|
+
/**
|
|
66346
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
66347
|
+
*/
|
|
66348
|
+
isPlatformAccount?: boolean;
|
|
66297
66349
|
/**
|
|
66298
66350
|
* Gets or sets the page number for paged queries.
|
|
66299
66351
|
*/
|
|
@@ -66344,7 +66396,7 @@ declare class UsersService {
|
|
|
66344
66396
|
* @returns User OK
|
|
66345
66397
|
* @throws ApiError
|
|
66346
66398
|
*/
|
|
66347
|
-
getListIdName({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66399
|
+
getListIdName({ ids, roles, name, nameLike, email, inviteStatus, isPlatformAccount, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
66348
66400
|
/**
|
|
66349
66401
|
* Gets or sets the queryable user ids.
|
|
66350
66402
|
*/
|
|
@@ -66369,6 +66421,10 @@ declare class UsersService {
|
|
|
66369
66421
|
* Gets or sets the team member invite status for use in a query search.
|
|
66370
66422
|
*/
|
|
66371
66423
|
inviteStatus?: InviteStatus;
|
|
66424
|
+
/**
|
|
66425
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
66426
|
+
*/
|
|
66427
|
+
isPlatformAccount?: boolean;
|
|
66372
66428
|
/**
|
|
66373
66429
|
* Gets or sets the page number for paged queries.
|
|
66374
66430
|
*/
|
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,
|
|
@@ -47124,6 +47138,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47124
47138
|
nameLike,
|
|
47125
47139
|
email,
|
|
47126
47140
|
inviteStatus,
|
|
47141
|
+
isPlatformAccount,
|
|
47127
47142
|
pageNumber,
|
|
47128
47143
|
take,
|
|
47129
47144
|
skip,
|
|
@@ -47146,6 +47161,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47146
47161
|
NameLike: nameLike,
|
|
47147
47162
|
Email: email,
|
|
47148
47163
|
InviteStatus: inviteStatus,
|
|
47164
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47149
47165
|
PageNumber: pageNumber,
|
|
47150
47166
|
Take: take,
|
|
47151
47167
|
Skip: skip,
|
|
@@ -47330,6 +47346,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47330
47346
|
nameLike,
|
|
47331
47347
|
email,
|
|
47332
47348
|
inviteStatus,
|
|
47349
|
+
isPlatformAccount,
|
|
47333
47350
|
pageNumber,
|
|
47334
47351
|
take,
|
|
47335
47352
|
skip,
|
|
@@ -47352,6 +47369,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47352
47369
|
NameLike: nameLike,
|
|
47353
47370
|
Email: email,
|
|
47354
47371
|
InviteStatus: inviteStatus,
|
|
47372
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47355
47373
|
PageNumber: pageNumber,
|
|
47356
47374
|
Take: take,
|
|
47357
47375
|
Skip: skip,
|
|
@@ -47446,6 +47464,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47446
47464
|
nameLike,
|
|
47447
47465
|
email,
|
|
47448
47466
|
inviteStatus,
|
|
47467
|
+
isPlatformAccount,
|
|
47449
47468
|
pageNumber,
|
|
47450
47469
|
take,
|
|
47451
47470
|
skip,
|
|
@@ -47468,6 +47487,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47468
47487
|
NameLike: nameLike,
|
|
47469
47488
|
Email: email,
|
|
47470
47489
|
InviteStatus: inviteStatus,
|
|
47490
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47471
47491
|
PageNumber: pageNumber,
|
|
47472
47492
|
Take: take,
|
|
47473
47493
|
Skip: skip,
|
|
@@ -47499,6 +47519,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47499
47519
|
nameLike,
|
|
47500
47520
|
email,
|
|
47501
47521
|
inviteStatus,
|
|
47522
|
+
isPlatformAccount,
|
|
47502
47523
|
pageNumber,
|
|
47503
47524
|
take,
|
|
47504
47525
|
skip,
|
|
@@ -47521,6 +47542,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47521
47542
|
NameLike: nameLike,
|
|
47522
47543
|
Email: email,
|
|
47523
47544
|
InviteStatus: inviteStatus,
|
|
47545
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47524
47546
|
PageNumber: pageNumber,
|
|
47525
47547
|
Take: take,
|
|
47526
47548
|
Skip: skip,
|
|
@@ -47552,6 +47574,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47552
47574
|
nameLike,
|
|
47553
47575
|
email,
|
|
47554
47576
|
inviteStatus,
|
|
47577
|
+
isPlatformAccount,
|
|
47555
47578
|
pageNumber,
|
|
47556
47579
|
take,
|
|
47557
47580
|
skip,
|
|
@@ -47574,6 +47597,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47574
47597
|
NameLike: nameLike,
|
|
47575
47598
|
Email: email,
|
|
47576
47599
|
InviteStatus: inviteStatus,
|
|
47600
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47577
47601
|
PageNumber: pageNumber,
|
|
47578
47602
|
Take: take,
|
|
47579
47603
|
Skip: skip,
|
|
@@ -47605,6 +47629,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47605
47629
|
nameLike,
|
|
47606
47630
|
email,
|
|
47607
47631
|
inviteStatus,
|
|
47632
|
+
isPlatformAccount,
|
|
47608
47633
|
pageNumber,
|
|
47609
47634
|
take,
|
|
47610
47635
|
skip,
|
|
@@ -47627,6 +47652,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47627
47652
|
NameLike: nameLike,
|
|
47628
47653
|
Email: email,
|
|
47629
47654
|
InviteStatus: inviteStatus,
|
|
47655
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47630
47656
|
PageNumber: pageNumber,
|
|
47631
47657
|
Take: take,
|
|
47632
47658
|
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.
|
|
@@ -139212,6 +139247,11 @@ paths:
|
|
|
139212
139247
|
description: Gets or sets the team member invite status for use in a query search.
|
|
139213
139248
|
schema:
|
|
139214
139249
|
$ref: '#/components/schemas/InviteStatus'
|
|
139250
|
+
- name: IsPlatformAccount
|
|
139251
|
+
in: query
|
|
139252
|
+
description: Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
139253
|
+
schema:
|
|
139254
|
+
type: boolean
|
|
139215
139255
|
- name: PageNumber
|
|
139216
139256
|
in: query
|
|
139217
139257
|
description: Gets or sets the page number for paged queries.
|
|
@@ -139874,6 +139914,11 @@ paths:
|
|
|
139874
139914
|
description: Gets or sets the team member invite status for use in a query search.
|
|
139875
139915
|
schema:
|
|
139876
139916
|
$ref: '#/components/schemas/InviteStatus'
|
|
139917
|
+
- name: IsPlatformAccount
|
|
139918
|
+
in: query
|
|
139919
|
+
description: Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
139920
|
+
schema:
|
|
139921
|
+
type: boolean
|
|
139877
139922
|
- name: PageNumber
|
|
139878
139923
|
in: query
|
|
139879
139924
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140208,6 +140253,11 @@ paths:
|
|
|
140208
140253
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140209
140254
|
schema:
|
|
140210
140255
|
$ref: '#/components/schemas/InviteStatus'
|
|
140256
|
+
- name: IsPlatformAccount
|
|
140257
|
+
in: query
|
|
140258
|
+
description: Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
140259
|
+
schema:
|
|
140260
|
+
type: boolean
|
|
140211
140261
|
- name: PageNumber
|
|
140212
140262
|
in: query
|
|
140213
140263
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140364,6 +140414,11 @@ paths:
|
|
|
140364
140414
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140365
140415
|
schema:
|
|
140366
140416
|
$ref: '#/components/schemas/InviteStatus'
|
|
140417
|
+
- name: IsPlatformAccount
|
|
140418
|
+
in: query
|
|
140419
|
+
description: Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
140420
|
+
schema:
|
|
140421
|
+
type: boolean
|
|
140367
140422
|
- name: PageNumber
|
|
140368
140423
|
in: query
|
|
140369
140424
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140523,6 +140578,11 @@ paths:
|
|
|
140523
140578
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140524
140579
|
schema:
|
|
140525
140580
|
$ref: '#/components/schemas/InviteStatus'
|
|
140581
|
+
- name: IsPlatformAccount
|
|
140582
|
+
in: query
|
|
140583
|
+
description: Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
140584
|
+
schema:
|
|
140585
|
+
type: boolean
|
|
140526
140586
|
- name: PageNumber
|
|
140527
140587
|
in: query
|
|
140528
140588
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140685,6 +140745,11 @@ paths:
|
|
|
140685
140745
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140686
140746
|
schema:
|
|
140687
140747
|
$ref: '#/components/schemas/InviteStatus'
|
|
140748
|
+
- name: IsPlatformAccount
|
|
140749
|
+
in: query
|
|
140750
|
+
description: Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
140751
|
+
schema:
|
|
140752
|
+
type: boolean
|
|
140688
140753
|
- name: PageNumber
|
|
140689
140754
|
in: query
|
|
140690
140755
|
description: Gets or sets the page number for paged queries.
|
|
@@ -173500,6 +173565,10 @@ components:
|
|
|
173500
173565
|
type: boolean
|
|
173501
173566
|
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173502
173567
|
default: false
|
|
173568
|
+
isPublished:
|
|
173569
|
+
type: boolean
|
|
173570
|
+
description: Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
173571
|
+
default: false
|
|
173503
173572
|
additionalProperties: false
|
|
173504
173573
|
description: Represents a single Frequently Asked Question entry owned by a tenant.
|
|
173505
173574
|
TenantFaqPage:
|
|
@@ -173551,9 +173620,9 @@ components:
|
|
|
173551
173620
|
type: boolean
|
|
173552
173621
|
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173553
173622
|
default: false
|
|
173554
|
-
|
|
173623
|
+
isPublished:
|
|
173555
173624
|
type: boolean
|
|
173556
|
-
description: Gets or sets a value indicating whether this FAQ is
|
|
173625
|
+
description: Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
173557
173626
|
default: false
|
|
173558
173627
|
additionalProperties: false
|
|
173559
173628
|
description: Patch model for a tenant FAQ entry.
|
|
@@ -173587,9 +173656,9 @@ components:
|
|
|
173587
173656
|
type: boolean
|
|
173588
173657
|
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173589
173658
|
default: false
|
|
173590
|
-
|
|
173659
|
+
isPublished:
|
|
173591
173660
|
type: boolean
|
|
173592
|
-
description: Gets or sets a value indicating whether this FAQ is
|
|
173661
|
+
description: Gets or sets a value indicating whether this FAQ is published and visible to customers.
|
|
173593
173662
|
default: false
|
|
173594
173663
|
additionalProperties: false
|
|
173595
173664
|
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,
|
|
@@ -108,6 +108,7 @@ export class UsersService {
|
|
|
108
108
|
nameLike,
|
|
109
109
|
email,
|
|
110
110
|
inviteStatus,
|
|
111
|
+
isPlatformAccount,
|
|
111
112
|
pageNumber,
|
|
112
113
|
take,
|
|
113
114
|
skip,
|
|
@@ -144,6 +145,10 @@ export class UsersService {
|
|
|
144
145
|
* Gets or sets the team member invite status for use in a query search.
|
|
145
146
|
*/
|
|
146
147
|
inviteStatus?: InviteStatus;
|
|
148
|
+
/**
|
|
149
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
150
|
+
*/
|
|
151
|
+
isPlatformAccount?: boolean;
|
|
147
152
|
/**
|
|
148
153
|
* Gets or sets the page number for paged queries.
|
|
149
154
|
*/
|
|
@@ -199,6 +204,7 @@ export class UsersService {
|
|
|
199
204
|
NameLike: nameLike,
|
|
200
205
|
Email: email,
|
|
201
206
|
InviteStatus: inviteStatus,
|
|
207
|
+
IsPlatformAccount: isPlatformAccount,
|
|
202
208
|
PageNumber: pageNumber,
|
|
203
209
|
Take: take,
|
|
204
210
|
Skip: skip,
|
|
@@ -422,6 +428,7 @@ export class UsersService {
|
|
|
422
428
|
nameLike,
|
|
423
429
|
email,
|
|
424
430
|
inviteStatus,
|
|
431
|
+
isPlatformAccount,
|
|
425
432
|
pageNumber,
|
|
426
433
|
take,
|
|
427
434
|
skip,
|
|
@@ -458,6 +465,10 @@ export class UsersService {
|
|
|
458
465
|
* Gets or sets the team member invite status for use in a query search.
|
|
459
466
|
*/
|
|
460
467
|
inviteStatus?: InviteStatus;
|
|
468
|
+
/**
|
|
469
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
470
|
+
*/
|
|
471
|
+
isPlatformAccount?: boolean;
|
|
461
472
|
/**
|
|
462
473
|
* Gets or sets the page number for paged queries.
|
|
463
474
|
*/
|
|
@@ -513,6 +524,7 @@ export class UsersService {
|
|
|
513
524
|
NameLike: nameLike,
|
|
514
525
|
Email: email,
|
|
515
526
|
InviteStatus: inviteStatus,
|
|
527
|
+
IsPlatformAccount: isPlatformAccount,
|
|
516
528
|
PageNumber: pageNumber,
|
|
517
529
|
Take: take,
|
|
518
530
|
Skip: skip,
|
|
@@ -626,6 +638,7 @@ export class UsersService {
|
|
|
626
638
|
nameLike,
|
|
627
639
|
email,
|
|
628
640
|
inviteStatus,
|
|
641
|
+
isPlatformAccount,
|
|
629
642
|
pageNumber,
|
|
630
643
|
take,
|
|
631
644
|
skip,
|
|
@@ -662,6 +675,10 @@ export class UsersService {
|
|
|
662
675
|
* Gets or sets the team member invite status for use in a query search.
|
|
663
676
|
*/
|
|
664
677
|
inviteStatus?: InviteStatus;
|
|
678
|
+
/**
|
|
679
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
680
|
+
*/
|
|
681
|
+
isPlatformAccount?: boolean;
|
|
665
682
|
/**
|
|
666
683
|
* Gets or sets the page number for paged queries.
|
|
667
684
|
*/
|
|
@@ -717,6 +734,7 @@ export class UsersService {
|
|
|
717
734
|
NameLike: nameLike,
|
|
718
735
|
Email: email,
|
|
719
736
|
InviteStatus: inviteStatus,
|
|
737
|
+
IsPlatformAccount: isPlatformAccount,
|
|
720
738
|
PageNumber: pageNumber,
|
|
721
739
|
Take: take,
|
|
722
740
|
Skip: skip,
|
|
@@ -749,6 +767,7 @@ export class UsersService {
|
|
|
749
767
|
nameLike,
|
|
750
768
|
email,
|
|
751
769
|
inviteStatus,
|
|
770
|
+
isPlatformAccount,
|
|
752
771
|
pageNumber,
|
|
753
772
|
take,
|
|
754
773
|
skip,
|
|
@@ -785,6 +804,10 @@ export class UsersService {
|
|
|
785
804
|
* Gets or sets the team member invite status for use in a query search.
|
|
786
805
|
*/
|
|
787
806
|
inviteStatus?: InviteStatus;
|
|
807
|
+
/**
|
|
808
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
809
|
+
*/
|
|
810
|
+
isPlatformAccount?: boolean;
|
|
788
811
|
/**
|
|
789
812
|
* Gets or sets the page number for paged queries.
|
|
790
813
|
*/
|
|
@@ -840,6 +863,7 @@ export class UsersService {
|
|
|
840
863
|
NameLike: nameLike,
|
|
841
864
|
Email: email,
|
|
842
865
|
InviteStatus: inviteStatus,
|
|
866
|
+
IsPlatformAccount: isPlatformAccount,
|
|
843
867
|
PageNumber: pageNumber,
|
|
844
868
|
Take: take,
|
|
845
869
|
Skip: skip,
|
|
@@ -872,6 +896,7 @@ export class UsersService {
|
|
|
872
896
|
nameLike,
|
|
873
897
|
email,
|
|
874
898
|
inviteStatus,
|
|
899
|
+
isPlatformAccount,
|
|
875
900
|
pageNumber,
|
|
876
901
|
take,
|
|
877
902
|
skip,
|
|
@@ -908,6 +933,10 @@ export class UsersService {
|
|
|
908
933
|
* Gets or sets the team member invite status for use in a query search.
|
|
909
934
|
*/
|
|
910
935
|
inviteStatus?: InviteStatus;
|
|
936
|
+
/**
|
|
937
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
938
|
+
*/
|
|
939
|
+
isPlatformAccount?: boolean;
|
|
911
940
|
/**
|
|
912
941
|
* Gets or sets the page number for paged queries.
|
|
913
942
|
*/
|
|
@@ -963,6 +992,7 @@ export class UsersService {
|
|
|
963
992
|
NameLike: nameLike,
|
|
964
993
|
Email: email,
|
|
965
994
|
InviteStatus: inviteStatus,
|
|
995
|
+
IsPlatformAccount: isPlatformAccount,
|
|
966
996
|
PageNumber: pageNumber,
|
|
967
997
|
Take: take,
|
|
968
998
|
Skip: skip,
|
|
@@ -995,6 +1025,7 @@ export class UsersService {
|
|
|
995
1025
|
nameLike,
|
|
996
1026
|
email,
|
|
997
1027
|
inviteStatus,
|
|
1028
|
+
isPlatformAccount,
|
|
998
1029
|
pageNumber,
|
|
999
1030
|
take,
|
|
1000
1031
|
skip,
|
|
@@ -1031,6 +1062,10 @@ export class UsersService {
|
|
|
1031
1062
|
* Gets or sets the team member invite status for use in a query search.
|
|
1032
1063
|
*/
|
|
1033
1064
|
inviteStatus?: InviteStatus;
|
|
1065
|
+
/**
|
|
1066
|
+
* Gets or sets a value indicating whether to return only users with a platform role in user_tenant_access for the current tenant.
|
|
1067
|
+
*/
|
|
1068
|
+
isPlatformAccount?: boolean;
|
|
1034
1069
|
/**
|
|
1035
1070
|
* Gets or sets the page number for paged queries.
|
|
1036
1071
|
*/
|
|
@@ -1086,6 +1121,7 @@ export class UsersService {
|
|
|
1086
1121
|
NameLike: nameLike,
|
|
1087
1122
|
Email: email,
|
|
1088
1123
|
InviteStatus: inviteStatus,
|
|
1124
|
+
IsPlatformAccount: isPlatformAccount,
|
|
1089
1125
|
PageNumber: pageNumber,
|
|
1090
1126
|
Take: take,
|
|
1091
1127
|
Skip: skip,
|