@cinerino/sdk 5.11.0-alpha.0 → 5.11.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.
@@ -0,0 +1,16 @@
1
+ import * as factory from '../factory';
2
+ import { Service } from '../service';
3
+ declare type INoteDigitalDocument = factory.creativeWork.noteDigitalDocument.INoteDigitalDocument;
4
+ declare type IProjection = {
5
+ [key in keyof INoteDigitalDocument]?: 0;
6
+ };
7
+ /**
8
+ * ノートサービス
9
+ */
10
+ export declare class NoteService extends Service {
11
+ upsertByIdentifier(params: Pick<INoteDigitalDocument, 'about' | 'identifier' | 'text'>[]): Promise<void>;
12
+ search(params: Omit<factory.creativeWork.noteDigitalDocument.ISearchConditions, 'project'> & {
13
+ $projection?: IProjection;
14
+ }): Promise<INoteDigitalDocument[]>;
15
+ }
16
+ export {};
@@ -0,0 +1,100 @@
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.NoteService = void 0;
55
+ var http_status_1 = require("http-status");
56
+ var service_1 = require("../service");
57
+ /**
58
+ * ノートサービス
59
+ */
60
+ var NoteService = /** @class */ (function (_super) {
61
+ __extends(NoteService, _super);
62
+ function NoteService() {
63
+ return _super !== null && _super.apply(this, arguments) || this;
64
+ }
65
+ NoteService.prototype.upsertByIdentifier = function (params) {
66
+ return __awaiter(this, void 0, void 0, function () {
67
+ return __generator(this, function (_a) {
68
+ switch (_a.label) {
69
+ case 0: return [4 /*yield*/, this.fetch({
70
+ uri: '/notes',
71
+ method: 'PUT',
72
+ body: params,
73
+ expectedStatusCodes: [http_status_1.NO_CONTENT]
74
+ })];
75
+ case 1:
76
+ _a.sent();
77
+ return [2 /*return*/];
78
+ }
79
+ });
80
+ });
81
+ };
82
+ NoteService.prototype.search = function (params) {
83
+ return __awaiter(this, void 0, void 0, function () {
84
+ var _this = this;
85
+ return __generator(this, function (_a) {
86
+ return [2 /*return*/, this.fetch({
87
+ uri: '/notes',
88
+ method: 'GET',
89
+ qs: params,
90
+ expectedStatusCodes: [http_status_1.OK]
91
+ })
92
+ .then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
93
+ return [2 /*return*/, response.json()];
94
+ }); }); })];
95
+ });
96
+ });
97
+ };
98
+ return NoteService;
99
+ }(service_1.Service));
100
+ exports.NoteService = NoteService;
@@ -24,6 +24,7 @@ import type { EventService } from './chevreAdmin/event';
24
24
  import type { IAMService } from './chevreAdmin/iam';
25
25
  import type { MeService } from './chevreAdmin/me';
26
26
  import type { MerchantReturnPolicyService } from './chevreAdmin/merchantReturnPolicy';
27
+ import type { NoteService } from './chevreAdmin/note';
27
28
  import type { OfferService } from './chevreAdmin/offer';
28
29
  import type { OfferCatalogService } from './chevreAdmin/offerCatalog';
29
30
  import type { OfferCatalogItemService } from './chevreAdmin/offerCatalogItem';
@@ -178,6 +179,13 @@ export declare namespace service {
178
179
  namespace MerchantReturnPolicy {
179
180
  let svc: typeof MerchantReturnPolicyService | undefined;
180
181
  }
182
+ /**
183
+ * ノートサービス
184
+ */
185
+ type Note = NoteService;
186
+ namespace Note {
187
+ let svc: typeof NoteService | undefined;
188
+ }
181
189
  /**
182
190
  * 注文サービス
183
191
  */
@@ -445,6 +453,7 @@ export declare class ChevreAdmin {
445
453
  createIAMInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<IAMService>;
446
454
  createMeInstance(): Promise<MeService>;
447
455
  createMerchantReturnPolicyInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MerchantReturnPolicyService>;
456
+ createNoteInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<NoteService>;
448
457
  createOrderInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OrderService>;
449
458
  createOwnershipInfoInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OwnershipInfoService>;
450
459
  createPaymentProductInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PaymentProductService>;
@@ -104,6 +104,9 @@ var service;
104
104
  var MerchantReturnPolicy;
105
105
  (function (MerchantReturnPolicy) {
106
106
  })(MerchantReturnPolicy = service.MerchantReturnPolicy || (service.MerchantReturnPolicy = {}));
107
+ var Note;
108
+ (function (Note) {
109
+ })(Note = service.Note || (service.Note = {}));
107
110
  var Order;
108
111
  (function (Order) {
109
112
  })(Order = service.Order || (service.Order = {}));
@@ -533,6 +536,23 @@ var ChevreAdmin = /** @class */ (function () {
533
536
  });
534
537
  });
535
538
  };
539
+ ChevreAdmin.prototype.createNoteInstance = function (params) {
540
+ return __awaiter(this, void 0, void 0, function () {
541
+ var _a;
542
+ return __generator(this, function (_b) {
543
+ switch (_b.label) {
544
+ case 0:
545
+ if (!(service.Note.svc === undefined)) return [3 /*break*/, 2];
546
+ _a = service.Note;
547
+ return [4 /*yield*/, Promise.resolve().then(function () { return require('./chevreAdmin/note'); })];
548
+ case 1:
549
+ _a.svc = (_b.sent()).NoteService;
550
+ _b.label = 2;
551
+ case 2: return [2 /*return*/, new service.Note.svc(__assign(__assign({}, this.options), params))];
552
+ }
553
+ });
554
+ });
555
+ };
536
556
  ChevreAdmin.prototype.createOrderInstance = function (params) {
537
557
  return __awaiter(this, void 0, void 0, function () {
538
558
  var _a;