@cinerino/sdk 8.0.0-alpha.1 → 8.0.0-alpha.2
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.
|
@@ -5,7 +5,7 @@ declare type IKeyOfProjection = keyof factory.seller.ISeller | '_id';
|
|
|
5
5
|
declare type IProjection = {
|
|
6
6
|
[key in IKeyOfProjection]?: 0 | 1;
|
|
7
7
|
};
|
|
8
|
-
declare type IUpdatingSeller = Pick<factory.seller.ISeller, 'additionalProperty' | 'branchCode' | 'hasMerchantReturnPolicy' | '
|
|
8
|
+
declare type IUpdatingSeller = Pick<factory.seller.ISeller, 'additionalProperty' | 'branchCode' | 'hasMerchantReturnPolicy' | 'makesOffer' | 'name' | 'telephone' | 'typeOf' | 'url'>;
|
|
9
9
|
/**
|
|
10
10
|
* 販売者サービス
|
|
11
11
|
*/
|
|
@@ -13,7 +13,9 @@ export declare class SellerService extends Service<IOptions> {
|
|
|
13
13
|
/**
|
|
14
14
|
* 販売者作成
|
|
15
15
|
*/
|
|
16
|
-
create(params: IUpdatingSeller): Promise<
|
|
16
|
+
create(params: IUpdatingSeller): Promise<{
|
|
17
|
+
id: string;
|
|
18
|
+
}>;
|
|
17
19
|
/**
|
|
18
20
|
* 販売者取得
|
|
19
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.2",
|
|
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.375.0-alpha.
|
|
95
|
+
"@chevre/factory": "4.375.0-alpha.24",
|
|
96
96
|
"debug": "^3.2.6",
|
|
97
97
|
"http-status": "^1.4.2",
|
|
98
98
|
"idtoken-verifier": "^2.0.3",
|