@cinerino/sdk 3.155.0-alpha.3 → 3.155.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/lib/abstract/service/categoryCode.d.ts +1 -1
- package/lib/abstract/service/creativeWork.d.ts +1 -1
- package/lib/abstract/service/customer.d.ts +1 -1
- package/lib/abstract/service/emailMessage.d.ts +0 -5
- package/lib/abstract/service/event.d.ts +1 -1
- package/lib/abstract/service/order.d.ts +1 -1
- package/lib/abstract/service/place.d.ts +2 -2
- package/lib/abstract/service/product.d.ts +1 -1
- package/lib/abstract/service/reservation.d.ts +1 -1
- package/lib/abstract/service/seller.d.ts +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ export declare class CategoryCodeService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 検索
|
|
9
9
|
*/
|
|
10
|
-
search(params: factory.categoryCode.ISearchConditions): Promise<{
|
|
10
|
+
search(params: Omit<factory.categoryCode.ISearchConditions, 'project'>): Promise<{
|
|
11
11
|
data: factory.categoryCode.ICategoryCode[];
|
|
12
12
|
}>;
|
|
13
13
|
}
|
|
@@ -7,5 +7,5 @@ export declare class CreativeWorkService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* コンテンツ検索
|
|
9
9
|
*/
|
|
10
|
-
searchMovies(params: factory.creativeWork.movie.ISearchConditions): Promise<ISearchResult<factory.creativeWork.movie.ICreativeWork[]>>;
|
|
10
|
+
searchMovies(params: Omit<factory.creativeWork.movie.ISearchConditions, 'project'>): Promise<ISearchResult<factory.creativeWork.movie.ICreativeWork[]>>;
|
|
11
11
|
}
|
|
@@ -13,5 +13,5 @@ export declare class CustomerService extends Service {
|
|
|
13
13
|
/**
|
|
14
14
|
* 顧客検索
|
|
15
15
|
*/
|
|
16
|
-
search(params: factory.customer.ISearchConditions): Promise<ISearchResult<factory.customer.ICustomer[]>>;
|
|
16
|
+
search(params: Omit<factory.customer.ISearchConditions, 'project'>): Promise<ISearchResult<factory.customer.ICustomer[]>>;
|
|
17
17
|
}
|
|
@@ -105,7 +105,7 @@ export declare class EventService extends Service {
|
|
|
105
105
|
/**
|
|
106
106
|
* イベント検索
|
|
107
107
|
*/
|
|
108
|
-
search<T extends factory.eventType>(params: factory.event.ISearchConditions<T>): Promise<ISearchResult<ISearchedEvent<T>[]>>;
|
|
108
|
+
search<T extends factory.eventType>(params: Omit<factory.event.ISearchConditions<T>, 'project'>): Promise<ISearchResult<ISearchedEvent<T>[]>>;
|
|
109
109
|
/**
|
|
110
110
|
* イベント取得
|
|
111
111
|
*/
|
|
@@ -121,7 +121,7 @@ export declare class OrderService extends Service {
|
|
|
121
121
|
/**
|
|
122
122
|
* 注文を検索する
|
|
123
123
|
*/
|
|
124
|
-
search(params: factory.order.ISearchConditions & ISearchOrdersOptions): Promise<ISearchResult<Omit<factory.order.IOrder, 'acceptedOffers' | 'discounts' | 'identifier' | 'isGift' | 'returner' | 'url'>[]>>;
|
|
124
|
+
search(params: Omit<factory.order.ISearchConditions, 'project'> & ISearchOrdersOptions): Promise<ISearchResult<Omit<factory.order.IOrder, 'acceptedOffers' | 'discounts' | 'identifier' | 'isGift' | 'returner' | 'url'>[]>>;
|
|
125
125
|
/**
|
|
126
126
|
* 返品者検索
|
|
127
127
|
*/
|
|
@@ -8,7 +8,7 @@ export declare class PlaceService extends Service {
|
|
|
8
8
|
/**
|
|
9
9
|
* 施設検索
|
|
10
10
|
*/
|
|
11
|
-
searchMovieTheaters(params: factory.place.movieTheater.ISearchConditions): Promise<ISearchResult<factory.place.movieTheater.IPlaceWithoutScreeningRoom[]>>;
|
|
11
|
+
searchMovieTheaters(params: Omit<factory.place.movieTheater.ISearchConditions, 'project'>): Promise<ISearchResult<factory.place.movieTheater.IPlaceWithoutScreeningRoom[]>>;
|
|
12
12
|
/**
|
|
13
13
|
* ルーム検索
|
|
14
14
|
*/
|
|
@@ -70,7 +70,7 @@ export declare class PlaceService extends Service {
|
|
|
70
70
|
/**
|
|
71
71
|
* ターミナル検索
|
|
72
72
|
*/
|
|
73
|
-
searchBusStops(params: factory.place.busStop.ISearchConditions): Promise<{
|
|
73
|
+
searchBusStops(params: Omit<factory.place.busStop.ISearchConditions, 'project'>): Promise<{
|
|
74
74
|
data: factory.place.busStop.IPlace[];
|
|
75
75
|
}>;
|
|
76
76
|
}
|
|
@@ -8,7 +8,7 @@ export declare class ProductService extends Service {
|
|
|
8
8
|
/**
|
|
9
9
|
* 検索
|
|
10
10
|
*/
|
|
11
|
-
search(params: factory.product.ISearchConditions): Promise<{
|
|
11
|
+
search(params: Omit<factory.product.ISearchConditions, 'project'>): Promise<{
|
|
12
12
|
data: ISearchProductsResult[];
|
|
13
13
|
}>;
|
|
14
14
|
/**
|
|
@@ -8,7 +8,7 @@ export declare class ReservationService extends Service {
|
|
|
8
8
|
/**
|
|
9
9
|
* 予約検索
|
|
10
10
|
*/
|
|
11
|
-
search<T extends factory.reservationType>(params: factory.reservation.ISearchConditions<T>): Promise<{
|
|
11
|
+
search<T extends factory.reservationType>(params: Omit<factory.reservation.ISearchConditions<T>, 'project'>): Promise<{
|
|
12
12
|
data: factory.reservation.IReservation<T>[];
|
|
13
13
|
}>;
|
|
14
14
|
/**
|
|
@@ -13,5 +13,5 @@ export declare class SellerService extends Service {
|
|
|
13
13
|
/**
|
|
14
14
|
* 販売者検索
|
|
15
15
|
*/
|
|
16
|
-
search(params: factory.seller.ISearchConditions): Promise<ISearchResult<Omit<factory.seller.ISeller, 'hasMerchantReturnPolicy' | 'makesOffer'>[]>>;
|
|
16
|
+
search(params: Omit<factory.seller.ISearchConditions, 'project'>): Promise<ISearchResult<Omit<factory.seller.ISeller, 'hasMerchantReturnPolicy' | 'makesOffer'>[]>>;
|
|
17
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "3.155.0
|
|
3
|
+
"version": "3.155.0",
|
|
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.
|
|
100
|
+
"@chevre/factory": "4.312.0",
|
|
101
101
|
"debug": "^3.2.6",
|
|
102
102
|
"http-status": "^1.4.2",
|
|
103
103
|
"idtoken-verifier": "^2.0.3",
|