iom-sdk 0.2.1 → 0.2.3
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AxiosInstance } from 'axios';
|
|
2
2
|
import { ServiceConfig, ErrorHandlingConfig } from '../../config';
|
|
3
3
|
import { RegistryServiceClient } from '../registry/registry-client';
|
|
4
|
-
import { UUID, UUObjectDTO, UUPropertyDTO, UUPropertyValueDTO, UUStatementDTO, UUFileDTO, UUAddressDTO, QueryParams, NodeFindRequestDTO, UUStatementsAccessFindDTO, AggregateCreateDTO, AggregateEntity, AggregateFindDTO, PageAggregateEntity, ApiResponse, RequestOptions, GroupCreateDTO, GroupAddRecordsDTO, GroupListParams, PageImplGroupFullDTO, PageImplGroupRecord, UUMathFormulaDTO, UUMathFormulaCalcDTO,
|
|
4
|
+
import { UUID, UUObjectDTO, UUPropertyDTO, UUPropertyValueDTO, UUStatementDTO, UUFileDTO, UUAddressDTO, QueryParams, NodeFindRequestDTO, UUStatementsAccessFindDTO, AggregateCreateDTO, AggregateEntity, AggregateFindDTO, PageAggregateEntity, ApiResponse, RequestOptions, GroupCreateDTO, GroupAddRecordsDTO, GroupListParams, PageImplGroupFullDTO, PageImplGroupRecord, UUMathFormulaDTO, UUMathFormulaCalcDTO, UUMathFormulaCalcFindDTO, NodeFindDTO, PageUUMathFormula } from '../../types';
|
|
5
5
|
export declare class NodeServiceClient {
|
|
6
6
|
private errorHandling;
|
|
7
7
|
private axios;
|
|
@@ -137,7 +137,7 @@ export declare class NodeServiceClient {
|
|
|
137
137
|
* envelope. Access `result.content` for the rows; pagination + audit
|
|
138
138
|
* fields live alongside.
|
|
139
139
|
*/
|
|
140
|
-
searchMathFormulas(body:
|
|
140
|
+
searchMathFormulas(body: NodeFindDTO, params?: {
|
|
141
141
|
page?: number;
|
|
142
142
|
size?: number;
|
|
143
143
|
}, options?: RequestOptions): Promise<PageUUMathFormula>;
|
package/package.json
CHANGED