swoop-common 2.2.199 → 2.2.201
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.
|
@@ -310,10 +310,11 @@ export declare class SwoopService {
|
|
|
310
310
|
* @param region antarctica, arctic, patagonia
|
|
311
311
|
* @param all 1,0 - include all records or just the active ones - default 0
|
|
312
312
|
* @param groupsArray Filter by group names, e.g. groups[]=manager&groups[]=sales. Valid values: superadmin, admin, sales, customer, partner, flight-specialist, bookings, accounts, other, has-sales-targets, manager, avatar-content-enabled
|
|
313
|
+
* @param email Filter by exact email address
|
|
313
314
|
* @returns any Successful response
|
|
314
315
|
* @throws ApiError
|
|
315
316
|
*/
|
|
316
|
-
peopleGetCollection(region?: string, all?: string, groupsArray?: string): CancelablePromise<{
|
|
317
|
+
peopleGetCollection(region?: string, all?: string, groupsArray?: string, email?: string): CancelablePromise<{
|
|
317
318
|
people?: Array<Person>;
|
|
318
319
|
}>;
|
|
319
320
|
/**
|
|
@@ -495,10 +495,11 @@ export class SwoopService {
|
|
|
495
495
|
* @param region antarctica, arctic, patagonia
|
|
496
496
|
* @param all 1,0 - include all records or just the active ones - default 0
|
|
497
497
|
* @param groupsArray Filter by group names, e.g. groups[]=manager&groups[]=sales. Valid values: superadmin, admin, sales, customer, partner, flight-specialist, bookings, accounts, other, has-sales-targets, manager, avatar-content-enabled
|
|
498
|
+
* @param email Filter by exact email address
|
|
498
499
|
* @returns any Successful response
|
|
499
500
|
* @throws ApiError
|
|
500
501
|
*/
|
|
501
|
-
peopleGetCollection(region, all, groupsArray) {
|
|
502
|
+
peopleGetCollection(region, all, groupsArray, email) {
|
|
502
503
|
return __request(OpenAPI, {
|
|
503
504
|
method: 'GET',
|
|
504
505
|
url: '/api/people',
|
|
@@ -506,6 +507,7 @@ export class SwoopService {
|
|
|
506
507
|
'region': region,
|
|
507
508
|
'all': all,
|
|
508
509
|
'groups[]': groupsArray,
|
|
510
|
+
'email': email,
|
|
509
511
|
},
|
|
510
512
|
});
|
|
511
513
|
}
|