@cinerino/sdk 10.11.0 → 10.12.0-alpha.1
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.
|
@@ -20022,9 +20022,6 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
20022
20022
|
function ReservationService() {
|
|
20023
20023
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
20024
20024
|
}
|
|
20025
|
-
// constructor(options: IAdditionalOptions & Pick<IOptions, 'auth' | 'endpoint' | 'transporter' | 'project' | 'defaultPath'>) {
|
|
20026
|
-
// super({ ...options, retryableStatusCodes: [BAD_GATEWAY, FORBIDDEN, UNAUTHORIZED] });
|
|
20027
|
-
// }
|
|
20028
20025
|
/**
|
|
20029
20026
|
* コードによる予約照会
|
|
20030
20027
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as factory from '../factory';
|
|
2
2
|
import { Service } from '../service';
|
|
3
|
-
export declare type IProductWithoutCredentials =
|
|
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]?:
|
|
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]?:
|
|
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.
|
|
3
|
+
"version": "10.12.0-alpha.1",
|
|
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.386.0-alpha.1",
|
|
96
96
|
"debug": "3.2.7",
|
|
97
97
|
"http-status": "1.7.4",
|
|
98
98
|
"idtoken-verifier": "2.0.3",
|