@cinerino/sdk 10.11.0 → 10.12.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.
@@ -1,6 +1,6 @@
1
1
  import * as factory from '../factory';
2
2
  import { Service } from '../service';
3
- export declare type IProductWithoutCredentials = Omit<factory.product.IProduct, 'availableChannel' | 'project'> & {
3
+ export declare type IProductWithoutCredentials = Pick<factory.product.IProduct, 'description' | 'name' | 'productID' | 'serviceType' | 'typeOf'> & {
4
4
  id: string;
5
5
  };
6
6
  export declare type IPaymentServiceWithoutCredentials = Omit<factory.service.paymentService.IService, 'availableChannel' | 'project'> & {
@@ -9,7 +9,7 @@ export declare type IPaymentServiceWithoutCredentials = Omit<factory.service.pay
9
9
  export declare type ISearchProductsResult = IProductWithoutCredentials | IPaymentServiceWithoutCredentials;
10
10
  declare type IKeyOfProjection = keyof factory.product.IProduct | keyof factory.service.paymentService.IService | '_id';
11
11
  declare type IProjection = {
12
- [key in IKeyOfProjection]?: 0 | 1;
12
+ [key in IKeyOfProjection]?: 1;
13
13
  };
14
14
  interface IProjectionSearchConditions {
15
15
  $projection?: IProjection;
@@ -4,7 +4,7 @@ export declare type IProductWithoutCredentials = Omit<factory.product.IProduct,
4
4
  export declare type ISearchProductsResult = IProductWithoutCredentials;
5
5
  declare type IKeyOfProjection = keyof factory.product.IProduct | '_id';
6
6
  declare type IProjection = {
7
- [key in IKeyOfProjection]?: 0 | 1;
7
+ [key in IKeyOfProjection]?: 1;
8
8
  };
9
9
  /**
10
10
  * プロダクトサービス
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "10.11.0",
3
+ "version": "10.12.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.384.0",
95
+ "@chevre/factory": "4.386.0-alpha.0",
96
96
  "debug": "3.2.7",
97
97
  "http-status": "1.7.4",
98
98
  "idtoken-verifier": "2.0.3",