@cinerino/sdk 10.9.0 → 10.10.0-alpha.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.
|
@@ -14,6 +14,7 @@ export declare class EventService extends Service {
|
|
|
14
14
|
* イベント検索
|
|
15
15
|
*/
|
|
16
16
|
search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project' | 'organizer'> & {
|
|
17
|
+
typeOf: T;
|
|
17
18
|
$projection?: IProjection<T>;
|
|
18
19
|
}): Promise<ISearchResult<ISearchedEvent<T>[]>>;
|
|
19
20
|
/**
|
|
@@ -35,6 +35,7 @@ export declare class EventService extends Service {
|
|
|
35
35
|
* イベント検索
|
|
36
36
|
*/
|
|
37
37
|
search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project' | 'organizer'> & {
|
|
38
|
+
typeOf: T;
|
|
38
39
|
$projection?: IProjection<T>;
|
|
39
40
|
}): Promise<ISearchResult<ISearchedEvent<T>[]>>;
|
|
40
41
|
/**
|
|
@@ -62,17 +62,6 @@ var EventService = /** @class */ (function (_super) {
|
|
|
62
62
|
function EventService() {
|
|
63
63
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
64
64
|
}
|
|
65
|
-
// public async create<T extends factory.eventType.ScreeningEvent | factory.eventType.Event>(
|
|
66
|
-
// params: factory.event.ICreateParams<T>[]
|
|
67
|
-
// ): Promise<{ id: string }[]> {
|
|
68
|
-
// return this.fetch({
|
|
69
|
-
// uri: '/events',
|
|
70
|
-
// method: 'POST',
|
|
71
|
-
// body: params,
|
|
72
|
-
// expectedStatusCodes: [CREATED, NO_CONTENT]
|
|
73
|
-
// })
|
|
74
|
-
// .then(async (response) => response.json());
|
|
75
|
-
// }
|
|
76
65
|
/**
|
|
77
66
|
* イベント作成(NO_CONTENT)
|
|
78
67
|
*/
|
|
@@ -99,7 +99,8 @@ export declare class EventService extends Service {
|
|
|
99
99
|
/**
|
|
100
100
|
* イベント検索
|
|
101
101
|
*/
|
|
102
|
-
search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project' | 'organizer'> & {
|
|
102
|
+
search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project' | 'organizer' | 'typeOfIn'> & {
|
|
103
|
+
typeOf: T;
|
|
103
104
|
$projection?: IProjection<T>;
|
|
104
105
|
}): Promise<ISearchResult<ISearchedEvent<T>[]>>;
|
|
105
106
|
/**
|
package/lib/bundle.js
CHANGED
|
@@ -6185,17 +6185,6 @@ var EventService = /** @class */ (function (_super) {
|
|
|
6185
6185
|
function EventService() {
|
|
6186
6186
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
6187
6187
|
}
|
|
6188
|
-
// public async create<T extends factory.eventType.ScreeningEvent | factory.eventType.Event>(
|
|
6189
|
-
// params: factory.event.ICreateParams<T>[]
|
|
6190
|
-
// ): Promise<{ id: string }[]> {
|
|
6191
|
-
// return this.fetch({
|
|
6192
|
-
// uri: '/events',
|
|
6193
|
-
// method: 'POST',
|
|
6194
|
-
// body: params,
|
|
6195
|
-
// expectedStatusCodes: [CREATED, NO_CONTENT]
|
|
6196
|
-
// })
|
|
6197
|
-
// .then(async (response) => response.json());
|
|
6198
|
-
// }
|
|
6199
6188
|
/**
|
|
6200
6189
|
* イベント作成(NO_CONTENT)
|
|
6201
6190
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.10.0-alpha.0",
|
|
4
4
|
"description": "Cinerino SDK",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"browser": {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"watchify": "^3.11.1"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@chevre/factory": "4.
|
|
95
|
+
"@chevre/factory": "4.384.0-alpha.0",
|
|
96
96
|
"debug": "3.2.7",
|
|
97
97
|
"http-status": "1.7.4",
|
|
98
98
|
"idtoken-verifier": "2.0.3",
|