@cinerino/sdk 3.160.0-alpha.2 → 3.160.0-alpha.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,10 +1,10 @@
1
1
  import * as factory from '../factory';
2
2
  import { ISearchedEvent } from './event/factory';
3
- import { IProjectionSearchConditions, ISearchResult, IUnset, Service } from '../service';
3
+ import { IAdditionalOptions, IOptions, IProjectionSearchConditions, ISearchResult, IUnset, Service } from '../service';
4
4
  /**
5
5
  * イベントサービス
6
6
  */
7
- export declare class EventService extends Service {
7
+ export declare class EventService extends Service<IOptions & IAdditionalOptions> {
8
8
  /**
9
9
  * イベント作成
10
10
  */
@@ -45,7 +45,7 @@ export declare class EventService extends Service {
45
45
  /**
46
46
  * イベント検索
47
47
  */
48
- search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project'> & IProjectionSearchConditions): Promise<ISearchResult<ISearchedEvent<T>[]>>;
48
+ search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project' | 'organizer'> & IProjectionSearchConditions): Promise<ISearchResult<ISearchedEvent<T>[]>>;
49
49
  /**
50
50
  * イベント取得
51
51
  */
@@ -105,7 +105,7 @@ export declare class EventService extends Service {
105
105
  /**
106
106
  * イベント検索
107
107
  */
108
- search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project'>): Promise<ISearchResult<ISearchedEvent<T>[]>>;
108
+ search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project' | 'organizer'>): Promise<ISearchResult<ISearchedEvent<T>[]>>;
109
109
  /**
110
110
  * イベント取得
111
111
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "3.160.0-alpha.2",
3
+ "version": "3.160.0-alpha.3",
4
4
  "description": "Cinerino SDK",
5
5
  "main": "./lib/index.js",
6
6
  "browser": {
@@ -97,7 +97,7 @@
97
97
  "watchify": "^3.11.1"
98
98
  },
99
99
  "dependencies": {
100
- "@chevre/factory": "4.314.0",
100
+ "@chevre/factory": "4.315.0-alpha.0",
101
101
  "debug": "^3.2.6",
102
102
  "http-status": "^1.4.2",
103
103
  "idtoken-verifier": "^2.0.3",