UNPKG

@finbourne/lusid-sdk-angular18

Version:

An Angular (18) SDK for secure access to the LUSID® by FINBOURNE web API

442 lines (441 loc) 28.7 kB
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AccessMetadataOperation } from '../model/accessMetadataOperation'; import { AccessMetadataValue } from '../model/accessMetadataValue'; import { CustomEntityRequest } from '../model/customEntityRequest'; import { CustomEntityResponse } from '../model/customEntityResponse'; import { DeletedEntityResponse } from '../model/deletedEntityResponse'; import { PagedResourceListOfCustomEntityResponse } from '../model/pagedResourceListOfCustomEntityResponse'; import { ResourceListOfRelationship } from '../model/resourceListOfRelationship'; import { UpsertCustomEntitiesResponse } from '../model/upsertCustomEntitiesResponse'; import { UpsertCustomEntityAccessMetadataRequest } from '../model/upsertCustomEntityAccessMetadataRequest'; import { Configuration } from '../configuration'; import * as i0 from "@angular/core"; export interface DeleteCustomEntityRequestParams { /** The type of Custom Entity to remove. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** The identifier scope. */ identifierScope: string; } export interface DeleteCustomEntityAccessMetadataRequestParams { /** The type of the Custom Entity. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** Key of the metadata entry to delete. */ metadataKey: string; /** The identifier scope. */ identifierScope: string; /** The effectiveAt datetime at which to retrieve the Access Metadata. */ effectiveAt?: string; /** The effective datetime until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next \&#39;effectiveAt\&#39; datetime of the Access Metadata. */ effectiveUntil?: string; } export interface GetAllCustomEntityAccessMetadataRequestParams { /** The type of the Custom Entity. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** The identifier scope. */ identifierScope: string; /** The effective datetime or cut label at which to get the entities. Defaults to the current LUSID system datetime if not specified. */ effectiveAt?: string; /** The asAt datetime at which to retrieve the Access Metadata. Defaults to returning the latest version of the metadata if not specified. */ asAt?: string; } export interface GetCustomEntityRequestParams { /** The type of Custom Entity to retrieve. An entityType can be created using the \&quot;CreateCustomEntityDefinition\&quot; endpoint for CustomEntityDefinitions. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** The identifier scope. */ identifierScope: string; /** The AsAt datetime at which to retrieve the Custom Entity instance. */ asAt?: string; /** The effective datetime or cut label at which to get the Custom Entity instance. Defaults to the current LUSID system datetime if not specified. */ effectiveAt?: string; /** A list of property keys from any domain that supports relationships to decorate onto related entities. These must take the format {domain}/{scope}/{code}, for example \&#39;Portfolio/Manager/Id\&#39;. */ relatedEntityPropertyKeys?: Array<string>; /** A list of relationship definitions that are used to decorate related entities onto the entity in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}. */ relationshipDefinitionIds?: Array<string>; } export interface GetCustomEntityAccessMetadataByKeyRequestParams { /** The type of the Custom Entity. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** Key of the metadata entry to retrieve */ metadataKey: string; /** The identifier scope. */ identifierScope: string; /** The effective datetime or cut label at which to get the entities. Defaults to the current LUSID system datetime if not specified. */ effectiveAt?: string; /** The asAt datetime at which to retrieve the Access Metadata. Defaults to returning the latest version of the metadata if not specified. */ asAt?: string; } export interface GetCustomEntityRelationshipsRequestParams { /** The type of entity get relationships for. */ entityType: string; /** The identifier scope. */ identifierScope: string; /** An identifier type attached to the Custom Entity. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** The effective datetime or cut label at which to get relationships. Defaults to the current LUSID system datetime if not specified. */ effectiveAt?: string; /** The asAt datetime at which to retrieve relationships. Defaults to return the latest LUSID AsAt time if not specified. */ asAt?: string; /** Expression to filter relationships. Users should provide null or empty string for this field until further notice. */ filter?: string; /** Identifiers types (as property keys) used for referencing Persons or Legal Entities. These take the format {domain}/{scope}/{code} e.g. \&quot;Person/CompanyDetails/Role\&quot;. They must be from the \&quot;Person\&quot; or \&quot;LegalEntity\&quot; domain. Only identifier types stated will be used to look up relevant entities in relationships. If not applicable, provide an empty array. */ identifierTypes?: Array<string>; } export interface ListCustomEntitiesRequestParams { /** The type of Custom Entity to list. */ entityType: string; /** The effective datetime or cut label at which to list the entities. Defaults to the current LUSID system datetime if not specified. */ effectiveAt?: string; /** The asAt datetime at which to list the entities. Defaults to returning the latest version of each portfolio if not specified. */ asAt?: string; /** When paginating, limit the results to this number. Defaults to 100 if not specified. */ limit?: number; /** Expression to filter the results. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914. */ filter?: string; /** A list of field names or properties to sort by, each suffixed by \&quot; ASC\&quot; or \&quot; DESC\&quot;. */ sortBy?: Array<string>; /** The pagination token to use to continue listing entities; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request. */ page?: string; /** A list of property keys from any domain that supports relationships to decorate onto related entities. These must take the format {domain}/{scope}/{code}, for example \&#39;Portfolio/Manager/Id\&#39;. */ relatedEntityPropertyKeys?: Array<string>; /** A list of relationship definitions that are used to decorate related entities onto the entities in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}. */ relationshipDefinitionIds?: Array<string>; } export interface PatchCustomEntityAccessMetadataRequestParams { /** The type of the Custom Entity. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** The identifier scope. */ identifierScope: string; /** The Json Patch document */ accessMetadataOperation: Array<AccessMetadataOperation>; /** The effectiveAt datetime at which the Access Metadata will be effective from */ effectiveAt?: string; /** The effective datetime until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next \&#39;effectiveAt\&#39; datetime of the Access Metadata */ effectiveUntil?: string; } export interface UpsertCustomEntitiesRequestParams { /** The type of the Custom Entity to be created. An entityType can be created using the \&quot;CreateCustomEntityDefinition\&quot; endpoint for CustomEntityDefinitions. */ entityType: string; /** Whether the batch request should fail Atomically or in a Partial fashion - Allowed Values: Atomic, Partial */ successMode: string; /** The payload describing the Custom Entity instances */ requestBody: { [key: string]: CustomEntityRequest; }; } export interface UpsertCustomEntityRequestParams { /** The type of the Custom Entity to be created. An entityType can be created using the \&quot;CreateCustomEntityDefinition\&quot; endpoint for CustomEntityDefinitions. */ entityType: string; /** The payload describing the Custom Entity instance. */ customEntityRequest: CustomEntityRequest; } export interface UpsertCustomEntityAccessMetadataRequestParams { /** The type of the Custom Entity. */ entityType: string; /** An identifier type attached to the Custom Entity instance. */ identifierType: string; /** The identifier value. */ identifierValue: string; /** Key of the metadata entry to retrieve */ metadataKey: string; /** The identifier scope. */ identifierScope: string; /** The Custom Entity Access Metadata entry to upsert */ upsertCustomEntityAccessMetadataRequest: UpsertCustomEntityAccessMetadataRequest; /** The effectiveAt datetime at which the Access Metadata will be effective from */ effectiveAt?: string; /** The effective datetime until which the Access Metadata is valid. If not supplied this will be valid indefinitely, or until the next \&#39;effectiveAt\&#39; datetime of the Access Metadata */ effectiveUntil?: string; } export declare class CustomEntitiesService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration); private addToHttpParams; private addToHttpParamsRecursive; /** * DeleteCustomEntity: Delete a Custom Entity instance. * Delete a Custom Entity instance by a specific entity type. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ deleteCustomEntity(requestParameters?: DeleteCustomEntityRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<DeletedEntityResponse>; deleteCustomEntity(requestParameters?: DeleteCustomEntityRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<DeletedEntityResponse>>; deleteCustomEntity(requestParameters?: DeleteCustomEntityRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<DeletedEntityResponse>>; /** * [EARLY ACCESS] DeleteCustomEntityAccessMetadata: Delete a Custom Entity Access Metadata entry * Deletes the Custom Entity Access Metadata entry that exactly matches the provided identifier parts. It is important to always check to verify success (or failure). * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ deleteCustomEntityAccessMetadata(requestParameters?: DeleteCustomEntityAccessMetadataRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<DeletedEntityResponse>; deleteCustomEntityAccessMetadata(requestParameters?: DeleteCustomEntityAccessMetadataRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<DeletedEntityResponse>>; deleteCustomEntityAccessMetadata(requestParameters?: DeleteCustomEntityAccessMetadataRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<DeletedEntityResponse>>; /** * [EARLY ACCESS] GetAllCustomEntityAccessMetadata: Get all the Access Metadata rules for a Custom Entity * Get all the Custom Entity access metadata for the specified identifier scope, code and value * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getAllCustomEntityAccessMetadata(requestParameters?: GetAllCustomEntityAccessMetadataRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<{ [key: string]: Array<AccessMetadataValue>; }>; getAllCustomEntityAccessMetadata(requestParameters?: GetAllCustomEntityAccessMetadataRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<{ [key: string]: Array<AccessMetadataValue>; }>>; getAllCustomEntityAccessMetadata(requestParameters?: GetAllCustomEntityAccessMetadataRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<{ [key: string]: Array<AccessMetadataValue>; }>>; /** * GetCustomEntity: Get a Custom Entity instance. * Retrieve a Custom Entity instance by a specific entity type at a point in AsAt time. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getCustomEntity(requestParameters?: GetCustomEntityRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<CustomEntityResponse>; getCustomEntity(requestParameters?: GetCustomEntityRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<CustomEntityResponse>>; getCustomEntity(requestParameters?: GetCustomEntityRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<CustomEntityResponse>>; /** * [EARLY ACCESS] GetCustomEntityAccessMetadataByKey: Get an entry identified by a metadataKey in the Access Metadata of a Custom Entity * Get Custom Entity access metadata for the specified metadata key * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getCustomEntityAccessMetadataByKey(requestParameters?: GetCustomEntityAccessMetadataByKeyRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<Array<AccessMetadataValue>>; getCustomEntityAccessMetadataByKey(requestParameters?: GetCustomEntityAccessMetadataByKeyRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<Array<AccessMetadataValue>>>; getCustomEntityAccessMetadataByKey(requestParameters?: GetCustomEntityAccessMetadataByKeyRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<Array<AccessMetadataValue>>>; /** * [EARLY ACCESS] GetCustomEntityRelationships: Get Relationships for Custom Entity * Get relationships for the specified Custom Entity. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getCustomEntityRelationships(requestParameters?: GetCustomEntityRelationshipsRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<ResourceListOfRelationship>; getCustomEntityRelationships(requestParameters?: GetCustomEntityRelationshipsRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<ResourceListOfRelationship>>; getCustomEntityRelationships(requestParameters?: GetCustomEntityRelationshipsRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<ResourceListOfRelationship>>; /** * ListCustomEntities: List Custom Entities of the specified entityType. * List all the Custom Entities matching particular criteria. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ listCustomEntities(requestParameters?: ListCustomEntitiesRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<PagedResourceListOfCustomEntityResponse>; listCustomEntities(requestParameters?: ListCustomEntitiesRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<PagedResourceListOfCustomEntityResponse>>; listCustomEntities(requestParameters?: ListCustomEntitiesRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<PagedResourceListOfCustomEntityResponse>>; /** * [EARLY ACCESS] PatchCustomEntityAccessMetadata: Patch Access Metadata rules for a Custom Entity. * Patch Custom Entity Access Metadata Rules in a single scope. The behaviour is defined by the JSON Patch specification. Currently only \&#39;add\&#39; is a supported operation on the patch document Currently only valid metadata keys are supported paths on the patch document The response will return any affected Custom Entity Access Metadata rules or a failure message if unsuccessful. It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ patchCustomEntityAccessMetadata(requestParameters?: PatchCustomEntityAccessMetadataRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<{ [key: string]: Array<AccessMetadataValue>; }>; patchCustomEntityAccessMetadata(requestParameters?: PatchCustomEntityAccessMetadataRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<{ [key: string]: Array<AccessMetadataValue>; }>>; patchCustomEntityAccessMetadata(requestParameters?: PatchCustomEntityAccessMetadataRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<{ [key: string]: Array<AccessMetadataValue>; }>>; /** * [EARLY ACCESS] UpsertCustomEntities: Batch upsert instances of Custom Entities * Note: If using partial failure modes, then it is important to check the response body for failures as any failures will still return a 200 status code * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ upsertCustomEntities(requestParameters?: UpsertCustomEntitiesRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<UpsertCustomEntitiesResponse>; upsertCustomEntities(requestParameters?: UpsertCustomEntitiesRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<UpsertCustomEntitiesResponse>>; upsertCustomEntities(requestParameters?: UpsertCustomEntitiesRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<UpsertCustomEntitiesResponse>>; /** * UpsertCustomEntity: Upsert a Custom Entity instance * Insert the Custom Entity if it does not exist or update the Custom Entity with the supplied state if it does exist. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ upsertCustomEntity(requestParameters?: UpsertCustomEntityRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<CustomEntityResponse>; upsertCustomEntity(requestParameters?: UpsertCustomEntityRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<CustomEntityResponse>>; upsertCustomEntity(requestParameters?: UpsertCustomEntityRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<CustomEntityResponse>>; /** * [EARLY ACCESS] UpsertCustomEntityAccessMetadata: Upsert a Custom Entity Access Metadata entry associated with a specific metadataKey. This creates or updates the data in LUSID. * Update or insert one Custom Entity Access Metadata entry in a single scope. An item will be updated if it already exists and inserted if it does not. The response will return the successfully updated or inserted Custom Entity Access Metadata rule or failure message if unsuccessful. It is important to always check to verify success (or failure). Multiple rules for a metadataKey can exist with different effective at dates, when resources are accessed the rule that is active for the current time will be fetched. * @param requestParameters * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ upsertCustomEntityAccessMetadata(requestParameters?: UpsertCustomEntityAccessMetadataRequestParams, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<Array<AccessMetadataValue>>; upsertCustomEntityAccessMetadata(requestParameters?: UpsertCustomEntityAccessMetadataRequestParams, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpResponse<Array<AccessMetadataValue>>>; upsertCustomEntityAccessMetadata(requestParameters?: UpsertCustomEntityAccessMetadataRequestParams, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json'; context?: HttpContext; transferCache?: boolean; }): Observable<HttpEvent<Array<AccessMetadataValue>>>; static ɵfac: i0.ɵɵFactoryDeclaration<CustomEntitiesService, [null, { optional: true; }, { optional: true; }]>; static ɵprov: i0.ɵɵInjectableDeclaration<CustomEntitiesService>; }