@cinerino/sdk 18.0.0-alpha.0 → 18.0.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.
@@ -57,7 +57,6 @@ import type { TaskService } from './chevreConsole/task';
57
57
  import type { TicketService } from './chevreConsole/ticket';
58
58
  import type { TokenService } from './chevreConsole/token';
59
59
  import type { PlaceOrderTransactionService } from './chevreConsole/transaction/placeOrder';
60
- import type { ReturnOrderTransactionService } from './chevreConsole/transaction/returnOrder';
61
60
  import type { TransactionNumberService } from './chevreConsole/transactionNumber';
62
61
  import type { UserPoolService } from './chevreConsole/userPool';
63
62
  import type { WebSiteService } from './chevreConsole/webSite';
@@ -468,13 +467,6 @@ export declare namespace service {
468
467
  namespace PlaceOrder {
469
468
  let svc: typeof PlaceOrderTransactionService | undefined;
470
469
  }
471
- /**
472
- * 返品取引サービス
473
- */
474
- type ReturnOrder = ReturnOrderTransactionService;
475
- namespace ReturnOrder {
476
- let svc: typeof ReturnOrderTransactionService | undefined;
477
- }
478
470
  }
479
471
  /**
480
472
  * 取引番号サービス
@@ -562,7 +554,6 @@ export declare class ChevreConsole {
562
554
  createPayAssetTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PayAssetTransactionService>;
563
555
  createTokenInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<TokenService>;
564
556
  createPlaceOrderTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PlaceOrderTransactionService>;
565
- createReturnOrderTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ReturnOrderTransactionService>;
566
557
  createTransactionNumberInstance(params: Pick<IOptions, 'project'>): Promise<TransactionNumberService>;
567
558
  createUserPoolInstance(params: Pick<IOptions, 'project'>): Promise<UserPoolService>;
568
559
  createWebSiteInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<WebSiteService>;
@@ -221,9 +221,6 @@ var service;
221
221
  let PlaceOrder;
222
222
  (function (PlaceOrder) {
223
223
  })(PlaceOrder = transaction.PlaceOrder || (transaction.PlaceOrder = {}));
224
- let ReturnOrder;
225
- (function (ReturnOrder) {
226
- })(ReturnOrder = transaction.ReturnOrder || (transaction.ReturnOrder = {}));
227
224
  })(transaction = service.transaction || (service.transaction = {}));
228
225
  let TransactionNumber;
229
226
  (function (TransactionNumber) {
@@ -591,12 +588,6 @@ class ChevreConsole {
591
588
  }
592
589
  return new service.transaction.PlaceOrder.svc({ ...this.options, ...params, retryableStatusCodes: [] });
593
590
  }
594
- async createReturnOrderTransactionInstance(params) {
595
- if (service.transaction.ReturnOrder.svc === undefined) {
596
- service.transaction.ReturnOrder.svc = (await Promise.resolve().then(() => __importStar(require('./chevreConsole/transaction/returnOrder.js')))).ReturnOrderTransactionService;
597
- }
598
- return new service.transaction.ReturnOrder.svc({ ...this.options, ...params, retryableStatusCodes: [] });
599
- }
600
591
  async createTransactionNumberInstance(params) {
601
592
  if (service.TransactionNumber.svc === undefined) {
602
593
  service.TransactionNumber.svc = (await Promise.resolve().then(() => __importStar(require('./chevreConsole/transactionNumber.js')))).TransactionNumberService;