reach-api-sdk 1.0.225 → 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 +30 -6
- package/dist/reach-sdk.js +12 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +30 -0
- package/src/services/UsersService.ts +36 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -65890,7 +65890,7 @@ declare class UsersService {
|
|
|
65890
65890
|
* @returns boolean OK
|
|
65891
65891
|
* @throws ApiError
|
|
65892
65892
|
*/
|
|
65893
|
-
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, }: {
|
|
65894
65894
|
/**
|
|
65895
65895
|
* Gets or sets the queryable user ids.
|
|
65896
65896
|
*/
|
|
@@ -65915,6 +65915,10 @@ declare class UsersService {
|
|
|
65915
65915
|
* Gets or sets the team member invite status for use in a query search.
|
|
65916
65916
|
*/
|
|
65917
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;
|
|
65918
65922
|
/**
|
|
65919
65923
|
* Gets or sets the page number for paged queries.
|
|
65920
65924
|
*/
|
|
@@ -66043,7 +66047,7 @@ declare class UsersService {
|
|
|
66043
66047
|
* @returns UserPage OK
|
|
66044
66048
|
* @throws ApiError
|
|
66045
66049
|
*/
|
|
66046
|
-
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, }: {
|
|
66047
66051
|
/**
|
|
66048
66052
|
* Gets or sets the queryable user ids.
|
|
66049
66053
|
*/
|
|
@@ -66068,6 +66072,10 @@ declare class UsersService {
|
|
|
66068
66072
|
* Gets or sets the team member invite status for use in a query search.
|
|
66069
66073
|
*/
|
|
66070
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;
|
|
66071
66079
|
/**
|
|
66072
66080
|
* Gets or sets the page number for paged queries.
|
|
66073
66081
|
*/
|
|
@@ -66151,7 +66159,7 @@ declare class UsersService {
|
|
|
66151
66159
|
* @returns boolean OK
|
|
66152
66160
|
* @throws ApiError
|
|
66153
66161
|
*/
|
|
66154
|
-
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, }: {
|
|
66155
66163
|
/**
|
|
66156
66164
|
* Gets or sets the queryable user ids.
|
|
66157
66165
|
*/
|
|
@@ -66176,6 +66184,10 @@ declare class UsersService {
|
|
|
66176
66184
|
* Gets or sets the team member invite status for use in a query search.
|
|
66177
66185
|
*/
|
|
66178
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;
|
|
66179
66191
|
/**
|
|
66180
66192
|
* Gets or sets the page number for paged queries.
|
|
66181
66193
|
*/
|
|
@@ -66226,7 +66238,7 @@ declare class UsersService {
|
|
|
66226
66238
|
* @returns number OK
|
|
66227
66239
|
* @throws ApiError
|
|
66228
66240
|
*/
|
|
66229
|
-
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, }: {
|
|
66230
66242
|
/**
|
|
66231
66243
|
* Gets or sets the queryable user ids.
|
|
66232
66244
|
*/
|
|
@@ -66251,6 +66263,10 @@ declare class UsersService {
|
|
|
66251
66263
|
* Gets or sets the team member invite status for use in a query search.
|
|
66252
66264
|
*/
|
|
66253
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;
|
|
66254
66270
|
/**
|
|
66255
66271
|
* Gets or sets the page number for paged queries.
|
|
66256
66272
|
*/
|
|
@@ -66301,7 +66317,7 @@ declare class UsersService {
|
|
|
66301
66317
|
* @returns User OK
|
|
66302
66318
|
* @throws ApiError
|
|
66303
66319
|
*/
|
|
66304
|
-
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, }: {
|
|
66305
66321
|
/**
|
|
66306
66322
|
* Gets or sets the queryable user ids.
|
|
66307
66323
|
*/
|
|
@@ -66326,6 +66342,10 @@ declare class UsersService {
|
|
|
66326
66342
|
* Gets or sets the team member invite status for use in a query search.
|
|
66327
66343
|
*/
|
|
66328
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;
|
|
66329
66349
|
/**
|
|
66330
66350
|
* Gets or sets the page number for paged queries.
|
|
66331
66351
|
*/
|
|
@@ -66376,7 +66396,7 @@ declare class UsersService {
|
|
|
66376
66396
|
* @returns User OK
|
|
66377
66397
|
* @throws ApiError
|
|
66378
66398
|
*/
|
|
66379
|
-
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, }: {
|
|
66380
66400
|
/**
|
|
66381
66401
|
* Gets or sets the queryable user ids.
|
|
66382
66402
|
*/
|
|
@@ -66401,6 +66421,10 @@ declare class UsersService {
|
|
|
66401
66421
|
* Gets or sets the team member invite status for use in a query search.
|
|
66402
66422
|
*/
|
|
66403
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;
|
|
66404
66428
|
/**
|
|
66405
66429
|
* Gets or sets the page number for paged queries.
|
|
66406
66430
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -47138,6 +47138,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47138
47138
|
nameLike,
|
|
47139
47139
|
email,
|
|
47140
47140
|
inviteStatus,
|
|
47141
|
+
isPlatformAccount,
|
|
47141
47142
|
pageNumber,
|
|
47142
47143
|
take,
|
|
47143
47144
|
skip,
|
|
@@ -47160,6 +47161,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47160
47161
|
NameLike: nameLike,
|
|
47161
47162
|
Email: email,
|
|
47162
47163
|
InviteStatus: inviteStatus,
|
|
47164
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47163
47165
|
PageNumber: pageNumber,
|
|
47164
47166
|
Take: take,
|
|
47165
47167
|
Skip: skip,
|
|
@@ -47344,6 +47346,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47344
47346
|
nameLike,
|
|
47345
47347
|
email,
|
|
47346
47348
|
inviteStatus,
|
|
47349
|
+
isPlatformAccount,
|
|
47347
47350
|
pageNumber,
|
|
47348
47351
|
take,
|
|
47349
47352
|
skip,
|
|
@@ -47366,6 +47369,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47366
47369
|
NameLike: nameLike,
|
|
47367
47370
|
Email: email,
|
|
47368
47371
|
InviteStatus: inviteStatus,
|
|
47372
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47369
47373
|
PageNumber: pageNumber,
|
|
47370
47374
|
Take: take,
|
|
47371
47375
|
Skip: skip,
|
|
@@ -47460,6 +47464,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47460
47464
|
nameLike,
|
|
47461
47465
|
email,
|
|
47462
47466
|
inviteStatus,
|
|
47467
|
+
isPlatformAccount,
|
|
47463
47468
|
pageNumber,
|
|
47464
47469
|
take,
|
|
47465
47470
|
skip,
|
|
@@ -47482,6 +47487,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47482
47487
|
NameLike: nameLike,
|
|
47483
47488
|
Email: email,
|
|
47484
47489
|
InviteStatus: inviteStatus,
|
|
47490
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47485
47491
|
PageNumber: pageNumber,
|
|
47486
47492
|
Take: take,
|
|
47487
47493
|
Skip: skip,
|
|
@@ -47513,6 +47519,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47513
47519
|
nameLike,
|
|
47514
47520
|
email,
|
|
47515
47521
|
inviteStatus,
|
|
47522
|
+
isPlatformAccount,
|
|
47516
47523
|
pageNumber,
|
|
47517
47524
|
take,
|
|
47518
47525
|
skip,
|
|
@@ -47535,6 +47542,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47535
47542
|
NameLike: nameLike,
|
|
47536
47543
|
Email: email,
|
|
47537
47544
|
InviteStatus: inviteStatus,
|
|
47545
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47538
47546
|
PageNumber: pageNumber,
|
|
47539
47547
|
Take: take,
|
|
47540
47548
|
Skip: skip,
|
|
@@ -47566,6 +47574,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47566
47574
|
nameLike,
|
|
47567
47575
|
email,
|
|
47568
47576
|
inviteStatus,
|
|
47577
|
+
isPlatformAccount,
|
|
47569
47578
|
pageNumber,
|
|
47570
47579
|
take,
|
|
47571
47580
|
skip,
|
|
@@ -47588,6 +47597,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47588
47597
|
NameLike: nameLike,
|
|
47589
47598
|
Email: email,
|
|
47590
47599
|
InviteStatus: inviteStatus,
|
|
47600
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47591
47601
|
PageNumber: pageNumber,
|
|
47592
47602
|
Take: take,
|
|
47593
47603
|
Skip: skip,
|
|
@@ -47619,6 +47629,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47619
47629
|
nameLike,
|
|
47620
47630
|
email,
|
|
47621
47631
|
inviteStatus,
|
|
47632
|
+
isPlatformAccount,
|
|
47622
47633
|
pageNumber,
|
|
47623
47634
|
take,
|
|
47624
47635
|
skip,
|
|
@@ -47641,6 +47652,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
47641
47652
|
NameLike: nameLike,
|
|
47642
47653
|
Email: email,
|
|
47643
47654
|
InviteStatus: inviteStatus,
|
|
47655
|
+
IsPlatformAccount: isPlatformAccount,
|
|
47644
47656
|
PageNumber: pageNumber,
|
|
47645
47657
|
Take: take,
|
|
47646
47658
|
Skip: skip,
|
package/package.json
CHANGED
|
@@ -139247,6 +139247,11 @@ paths:
|
|
|
139247
139247
|
description: Gets or sets the team member invite status for use in a query search.
|
|
139248
139248
|
schema:
|
|
139249
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
|
|
139250
139255
|
- name: PageNumber
|
|
139251
139256
|
in: query
|
|
139252
139257
|
description: Gets or sets the page number for paged queries.
|
|
@@ -139909,6 +139914,11 @@ paths:
|
|
|
139909
139914
|
description: Gets or sets the team member invite status for use in a query search.
|
|
139910
139915
|
schema:
|
|
139911
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
|
|
139912
139922
|
- name: PageNumber
|
|
139913
139923
|
in: query
|
|
139914
139924
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140243,6 +140253,11 @@ paths:
|
|
|
140243
140253
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140244
140254
|
schema:
|
|
140245
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
|
|
140246
140261
|
- name: PageNumber
|
|
140247
140262
|
in: query
|
|
140248
140263
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140399,6 +140414,11 @@ paths:
|
|
|
140399
140414
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140400
140415
|
schema:
|
|
140401
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
|
|
140402
140422
|
- name: PageNumber
|
|
140403
140423
|
in: query
|
|
140404
140424
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140558,6 +140578,11 @@ paths:
|
|
|
140558
140578
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140559
140579
|
schema:
|
|
140560
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
|
|
140561
140586
|
- name: PageNumber
|
|
140562
140587
|
in: query
|
|
140563
140588
|
description: Gets or sets the page number for paged queries.
|
|
@@ -140720,6 +140745,11 @@ paths:
|
|
|
140720
140745
|
description: Gets or sets the team member invite status for use in a query search.
|
|
140721
140746
|
schema:
|
|
140722
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
|
|
140723
140753
|
- name: PageNumber
|
|
140724
140754
|
in: query
|
|
140725
140755
|
description: Gets or sets the page number for paged queries.
|
|
@@ -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,
|