@cinerino/sdk 5.9.0 → 5.10.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "5.9.0",
3
+ "version": "5.10.0",
4
4
  "description": "Cinerino SDK",
5
5
  "main": "./lib/index.js",
6
6
  "browser": {
@@ -1,27 +0,0 @@
1
- import * as factory from '../factory';
2
- import { IOptions, ISearchResult, Service } from '../service';
3
- export interface IGetHealthResult {
4
- version?: string;
5
- status?: number;
6
- message?: string;
7
- }
8
- /**
9
- * プロジェクトサービス
10
- */
11
- export declare class ProjectService extends Service<IOptions> {
12
- constructor(options: Pick<IOptions, 'auth' | 'endpoint' | 'transporter'>);
13
- /**
14
- * プロジェクト検索
15
- */
16
- search(params: factory.project.ISearchConditions): Promise<ISearchResult<factory.project.IProject[]>>;
17
- /**
18
- * プロジェクト取得
19
- */
20
- findById(params: {
21
- id: string;
22
- }): Promise<factory.project.IProject>;
23
- /**
24
- * ヘルスチェック
25
- */
26
- getHealth(_: any): Promise<IGetHealthResult>;
27
- }