@coveo/platform-client 59.2.0 → 60.0.0
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.
|
@@ -24,6 +24,10 @@ export interface OrganizationMemberModel {
|
|
|
24
24
|
* The username of the member
|
|
25
25
|
*/
|
|
26
26
|
username: string;
|
|
27
|
+
/**
|
|
28
|
+
* The last used date of the member as a Unix timestamp (milliseconds)
|
|
29
|
+
*/
|
|
30
|
+
lastUsedDate?: number;
|
|
27
31
|
}
|
|
28
32
|
export interface OrganizationMemberGroupModel {
|
|
29
33
|
/**
|
|
@@ -9,7 +9,7 @@ export default class SecurityCache extends Ressource {
|
|
|
9
9
|
listEntities(providerId: string, options?: SecurityCacheListOptions): Promise<PageModel<SecurityCacheIdentityModel>>;
|
|
10
10
|
/** Checks if the organization supports filtering security identities by name and/or type. */
|
|
11
11
|
isListingSecurityIdentitiesSupported(): Promise<boolean>;
|
|
12
|
-
listSecurityProviderIdentities(providerId: string, { page, perPage, ...rest }?: SecurityProviderIdentitiesFilters): Promise<PageModel<
|
|
12
|
+
listSecurityProviderIdentities(providerId: string, { page, perPage, ...rest }?: SecurityProviderIdentitiesFilters): Promise<PageModel<DetailedSecurityCacheMemberModel>>;
|
|
13
13
|
listChildren(providerId: string, member: SecurityCacheMemberModel, options?: SecurityCacheListRelationshipsOptions): Promise<PageModel<DetailedSecurityCacheMemberModel>>;
|
|
14
14
|
listParents(providerId: string, member: SecurityCacheMemberModel, options?: SecurityCacheListRelationshipsOptions): Promise<PageModel<DetailedSecurityCacheMemberModel>>;
|
|
15
15
|
listSchedules(): Promise<ScheduleModel[]>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Paginated } from '../BaseInterfaces.js';
|
|
2
|
-
import { ExpansionScore, PermissionIdentityType, ScheduleType, SecurityCacheFilteringMode, SecurityCacheStateOptions, SecurityProviderReferenceType, SecurityProviderStatusType, SecurityProviderType } from '../Enums.js';
|
|
2
|
+
import { ExpansionScore, PermissionIdentityType, ScheduleType, SecurityCacheFilteringMode, SecurityCacheStateOptions, SecurityProviderReferenceType, SecurityProviderStatusType, SecurityProviderType, SinglePermissionResult, SinglePermissionState } from '../Enums.js';
|
|
3
3
|
import { DataFile, ParameterModel, UserIdentityModel } from '../Sources/index.js';
|
|
4
4
|
export interface ScheduleModel {
|
|
5
5
|
enabled: boolean;
|
|
@@ -160,8 +160,8 @@ export interface SecurityCacheMemberModel {
|
|
|
160
160
|
export interface DetailedSecurityCacheMemberModel extends SecurityCacheMemberModel {
|
|
161
161
|
lastUpdateDate?: number;
|
|
162
162
|
lastUpdateErrorDetail?: string;
|
|
163
|
-
lastUpdateResult?:
|
|
164
|
-
state?:
|
|
163
|
+
lastUpdateResult?: SinglePermissionResult;
|
|
164
|
+
state?: SinglePermissionState;
|
|
165
165
|
}
|
|
166
166
|
export interface SecurityCacheMemberInfoModel {
|
|
167
167
|
key: string;
|