@cinerino/sdk 12.3.0-alpha.8 → 12.3.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.
Files changed (32) hide show
  1. package/example/src/chevre/admin/adminProductOffersByIdentifier.ts +83 -0
  2. package/example/src/chevre/default/findProductOffers.ts +43 -0
  3. package/example/src/cloud/admin/adminProductOffersByIdentifier.ts +75 -0
  4. package/example/src/cloud/admin/adminUpsertManyEventsByAdditionalProperty.ts +3 -1
  5. package/example/src/cloud/search/findProductOffers.ts +30 -0
  6. package/example/src/cloud/transaction/processPlaceOrderUsingMemberProgramTier.ts +10 -2
  7. package/lib/abstract/chevre/productOffer.d.ts +33 -0
  8. package/lib/abstract/chevre/productOffer.js +84 -0
  9. package/lib/abstract/chevre.d.ts +9 -0
  10. package/lib/abstract/chevre.js +20 -0
  11. package/lib/abstract/chevreAdmin/noteAboutOrder.js +4 -3
  12. package/lib/abstract/chevreAdmin/productOffer.d.ts +70 -0
  13. package/lib/abstract/{chevreConsole/eventOffer.js → chevreAdmin/productOffer.js} +54 -63
  14. package/lib/abstract/chevreAdmin.d.ts +9 -0
  15. package/lib/abstract/chevreAdmin.js +20 -0
  16. package/lib/abstract/chevreAsset/order/factory.d.ts +5 -2
  17. package/lib/abstract/chevreAsset/order.d.ts +5 -5
  18. package/lib/abstract/chevreConsole.d.ts +0 -9
  19. package/lib/abstract/chevreConsole.js +0 -20
  20. package/lib/abstract/cloud/admin/order.d.ts +2 -2
  21. package/lib/abstract/cloud/admin/productOffer.d.ts +40 -0
  22. package/lib/abstract/cloud/admin/productOffer.js +153 -0
  23. package/lib/abstract/cloud/admin.d.ts +9 -0
  24. package/lib/abstract/cloud/admin.js +20 -0
  25. package/lib/abstract/cloud/asset/order.d.ts +5 -5
  26. package/lib/abstract/cloud/search/productOffer.d.ts +11 -0
  27. package/lib/abstract/cloud/search/productOffer.js +89 -0
  28. package/lib/abstract/cloud/search.d.ts +12 -0
  29. package/lib/abstract/cloud/search.js +23 -0
  30. package/lib/bundle.js +1435 -1004
  31. package/package.json +2 -2
  32. package/lib/abstract/chevreConsole/eventOffer.d.ts +0 -32
@@ -1,4 +1,4 @@
1
- import { IAcceptedOffer, IOptimizedOrder } from '../../chevreAsset/order/factory';
1
+ import { IAcceptedOffer, IOrderAsFindByConfirmationNumberResult } from '../../chevreAsset/order/factory';
2
2
  import { Service } from '../../service';
3
3
  /**
4
4
  * 注文サービス
@@ -40,7 +40,7 @@ export declare class OrderService extends Service {
40
40
  orderDateFrom?: Date;
41
41
  orderDateThrough?: Date;
42
42
  orderNumber?: string;
43
- }): Promise<IOptimizedOrder[]>;
43
+ }): Promise<IOrderAsFindByConfirmationNumberResult[]>;
44
44
  /**
45
45
  * イベントIDと確認番号で検索
46
46
  */
@@ -60,7 +60,7 @@ export declare class OrderService extends Service {
60
60
  $in: string[];
61
61
  };
62
62
  };
63
- }): Promise<IOptimizedOrder[]>;
63
+ }): Promise<IOrderAsFindByConfirmationNumberResult[]>;
64
64
  /**
65
65
  * 予約番号と電話番号で注文情報を取得する(sskts専用)
66
66
  */
@@ -74,7 +74,7 @@ export declare class OrderService extends Service {
74
74
  */
75
75
  confirmationNumber: string;
76
76
  telephone: string;
77
- }): Promise<IOptimizedOrder[]>;
77
+ }): Promise<IOrderAsFindByConfirmationNumberResult[]>;
78
78
  /**
79
79
  * 注文番号と何かしらで注文照会
80
80
  */
@@ -83,7 +83,7 @@ export declare class OrderService extends Service {
83
83
  customer?: {
84
84
  telephone?: string;
85
85
  };
86
- }): Promise<IOptimizedOrder>;
86
+ }): Promise<IOrderAsFindByConfirmationNumberResult>;
87
87
  /**
88
88
  * 注文承認
89
89
  * 注文コードを発行する
@@ -0,0 +1,11 @@
1
+ import { IFindParams, IProductOfferAsFindResult } from '../../chevre/productOffer';
2
+ import { Service } from '../../service';
3
+ /**
4
+ * プロダクトオファーサービス
5
+ */
6
+ export declare class ProductOfferService extends Service {
7
+ /**
8
+ * プロダクトオファー(汎用的なオファー設定)を検索する
9
+ */
10
+ findProductOffers(params: IFindParams): Promise<IProductOfferAsFindResult[]>;
11
+ }
@@ -0,0 +1,89 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
18
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19
+ return new (P || (P = Promise))(function (resolve, reject) {
20
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
22
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
23
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
24
+ });
25
+ };
26
+ var __generator = (this && this.__generator) || function (thisArg, body) {
27
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29
+ function verb(n) { return function (v) { return step([n, v]); }; }
30
+ function step(op) {
31
+ if (f) throw new TypeError("Generator is already executing.");
32
+ while (_) try {
33
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34
+ if (y = 0, t) op = [op[0] & 2, t.value];
35
+ switch (op[0]) {
36
+ case 0: case 1: t = op; break;
37
+ case 4: _.label++; return { value: op[1], done: false };
38
+ case 5: _.label++; y = op[1]; op = [0]; continue;
39
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
40
+ default:
41
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45
+ if (t[2]) _.ops.pop();
46
+ _.trys.pop(); continue;
47
+ }
48
+ op = body.call(thisArg, _);
49
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51
+ }
52
+ };
53
+ Object.defineProperty(exports, "__esModule", { value: true });
54
+ exports.ProductOfferService = void 0;
55
+ var http_status_1 = require("http-status");
56
+ var service_1 = require("../../service");
57
+ var BASE_URI = '/productOffers';
58
+ /**
59
+ * プロダクトオファーサービス
60
+ */
61
+ var ProductOfferService = /** @class */ (function (_super) {
62
+ __extends(ProductOfferService, _super);
63
+ function ProductOfferService() {
64
+ return _super !== null && _super.apply(this, arguments) || this;
65
+ }
66
+ /**
67
+ * プロダクトオファー(汎用的なオファー設定)を検索する
68
+ */
69
+ ProductOfferService.prototype.findProductOffers = function (params) {
70
+ return __awaiter(this, void 0, void 0, function () {
71
+ var limit, page, itemOfferedIdentifiers, identifiers, id, validForMemberTierIdentifier;
72
+ var _this = this;
73
+ return __generator(this, function (_a) {
74
+ limit = params.limit, page = params.page, itemOfferedIdentifiers = params.itemOfferedIdentifiers, identifiers = params.identifiers, id = params.id, validForMemberTierIdentifier = params.validForMemberTierIdentifier;
75
+ return [2 /*return*/, this.fetch({
76
+ uri: BASE_URI,
77
+ method: 'GET',
78
+ qs: { limit: limit, page: page, itemOfferedIdentifiers: itemOfferedIdentifiers, identifiers: identifiers, id: id, validForMemberTierIdentifier: validForMemberTierIdentifier },
79
+ expectedStatusCodes: [http_status_1.OK]
80
+ })
81
+ .then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
82
+ return [2 /*return*/, response.json()];
83
+ }); }); })];
84
+ });
85
+ });
86
+ };
87
+ return ProductOfferService;
88
+ }(service_1.Service));
89
+ exports.ProductOfferService = ProductOfferService;
@@ -2,6 +2,7 @@ import { IAdditionalOptions, IOptions } from '../service';
2
2
  import type { CreativeWorkService } from './search/creativeWork';
3
3
  import type { PaymentProductService } from './search/paymentService';
4
4
  import type { ProductService } from './search/product';
5
+ import type { ProductOfferService } from './search/productOffer';
5
6
  /**
6
7
  * publicリソース検索サービス群
7
8
  */
@@ -27,6 +28,13 @@ export declare namespace service {
27
28
  namespace Product {
28
29
  let svc: typeof ProductService | undefined;
29
30
  }
31
+ /**
32
+ * プロダクトオファーサービス
33
+ */
34
+ type ProductOffer = ProductOfferService;
35
+ namespace ProductOffer {
36
+ let svc: typeof ProductOfferService | undefined;
37
+ }
30
38
  }
31
39
  /**
32
40
  * publicリソース検索サービス
@@ -46,4 +54,8 @@ export declare class CloudSearch {
46
54
  * プロダクトサービスインスタンス生成
47
55
  */
48
56
  createProductInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ProductService>;
57
+ /**
58
+ * プロダクトオファーサービスインスタンス生成
59
+ */
60
+ createProductOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ProductOfferService>;
49
61
  }
@@ -64,6 +64,9 @@ var service;
64
64
  var Product;
65
65
  (function (Product) {
66
66
  })(Product = service.Product || (service.Product = {}));
67
+ var ProductOffer;
68
+ (function (ProductOffer) {
69
+ })(ProductOffer = service.ProductOffer || (service.ProductOffer = {}));
67
70
  })(service = exports.service || (exports.service = {}));
68
71
  var defaultRetryableStatusCodes = [http_status_1.BAD_GATEWAY, http_status_1.FORBIDDEN, http_status_1.UNAUTHORIZED];
69
72
  /**
@@ -133,6 +136,26 @@ var CloudSearch = /** @class */ (function () {
133
136
  });
134
137
  });
135
138
  };
139
+ /**
140
+ * プロダクトオファーサービスインスタンス生成
141
+ */
142
+ CloudSearch.prototype.createProductOfferInstance = function (params) {
143
+ return __awaiter(this, void 0, void 0, function () {
144
+ var _a;
145
+ return __generator(this, function (_b) {
146
+ switch (_b.label) {
147
+ case 0:
148
+ if (!(service.ProductOffer.svc === undefined)) return [3 /*break*/, 2];
149
+ _a = service.ProductOffer;
150
+ return [4 /*yield*/, Promise.resolve().then(function () { return require('./search/productOffer'); })];
151
+ case 1:
152
+ _a.svc = (_b.sent()).ProductOfferService;
153
+ _b.label = 2;
154
+ case 2: return [2 /*return*/, new service.ProductOffer.svc(__assign(__assign(__assign({}, this.options), params), { retryableStatusCodes: defaultRetryableStatusCodes }))];
155
+ }
156
+ });
157
+ });
158
+ };
136
159
  return CloudSearch;
137
160
  }());
138
161
  exports.CloudSearch = CloudSearch;