@coveo/platform-client 59.3.0 → 60.0.1

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.
@@ -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<SecurityCacheIdentityModel>>;
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?: string;
164
- state?: string;
163
+ lastUpdateResult?: SinglePermissionResult;
164
+ state?: SinglePermissionState;
165
165
  }
166
166
  export interface SecurityCacheMemberInfoModel {
167
167
  key: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coveo/platform-client",
3
- "version": "59.3.0",
3
+ "version": "60.0.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {