@cinerino/sdk 16.4.0-alpha.20 → 16.4.0-alpha.21

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,6 @@ import type { EmailMessageService } from './chevre/emailMessage';
5
5
  import type { EventService } from './chevre/event';
6
6
  import type { EventOfferService } from './chevre/eventOffer';
7
7
  import type { EventSeriesService } from './chevre/eventSeries';
8
- import type { NoteService } from './chevre/note';
9
8
  import type { PaymentProductService } from './chevre/paymentService';
10
9
  import type { PlaceService } from './chevre/place';
11
10
  import type { HasPOSService } from './chevre/place/hasPOS';
@@ -56,13 +55,6 @@ export declare namespace service {
56
55
  namespace EventSeries {
57
56
  let svc: typeof EventSeriesService | undefined;
58
57
  }
59
- /**
60
- * メモサービス
61
- */
62
- type Note = NoteService;
63
- namespace Note {
64
- let svc: typeof NoteService | undefined;
65
- }
66
58
  /**
67
59
  * 決済商品サービス
68
60
  */
@@ -120,7 +112,6 @@ export declare class Chevre {
120
112
  createEventInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventService>;
121
113
  createEventOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventOfferService>;
122
114
  createEventSeriesInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventSeriesService>;
123
- createNoteInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<NoteService>;
124
115
  createPaymentProductInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PaymentProductService>;
125
116
  createPlaceInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PlaceService>;
126
117
  createHasPOSInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<HasPOSService>;
@@ -54,9 +54,6 @@ var service;
54
54
  let EventSeries;
55
55
  (function (EventSeries) {
56
56
  })(EventSeries = service.EventSeries || (service.EventSeries = {}));
57
- let Note;
58
- (function (Note) {
59
- })(Note = service.Note || (service.Note = {}));
60
57
  let PaymentProduct;
61
58
  (function (PaymentProduct) {
62
59
  })(PaymentProduct = service.PaymentProduct || (service.PaymentProduct = {}));
@@ -123,12 +120,6 @@ class Chevre {
123
120
  }
124
121
  return new service.EventSeries.svc({ ...this.options, ...params, retryableStatusCodes: [] });
125
122
  }
126
- async createNoteInstance(params) {
127
- if (service.Note.svc === undefined) {
128
- service.Note.svc = (await Promise.resolve().then(() => __importStar(require('./chevre/note.js')))).NoteService;
129
- }
130
- return new service.Note.svc({ ...this.options, ...params, retryableStatusCodes: [] });
131
- }
132
123
  async createPaymentProductInstance(params) {
133
124
  if (service.PaymentProduct.svc === undefined) {
134
125
  service.PaymentProduct.svc = (await Promise.resolve().then(() => __importStar(require('./chevre/paymentService.js')))).PaymentProductService;