@cinerino/sdk 10.22.0-alpha.2 → 11.0.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.
Files changed (207) hide show
  1. package/example/playground/public/lib/bundle.js +8153 -6839
  2. package/example/src/chevre/{adminSearchTickets.ts → adminSearchOrderActions.ts} +7 -6
  3. package/example/src/findEventById.ts +2 -1
  4. package/example/src/st/processPlaceOrderByPOS.ts +1 -1
  5. package/example/src/st/v2/searchEventsByTokenGrant.ts +54 -0
  6. package/lib/abstract/chevre/event.d.ts +1 -1
  7. package/lib/abstract/chevreAdmin/assetTransaction/cancelReservation.d.ts +0 -3
  8. package/lib/abstract/chevreAdmin/assetTransaction/cancelReservation.js +0 -12
  9. package/lib/abstract/chevreAdmin/authorization.d.ts +0 -4
  10. package/lib/abstract/chevreAdmin/authorization.js +0 -19
  11. package/lib/abstract/chevreAdmin/creativeWork.d.ts +1 -16
  12. package/lib/abstract/chevreAdmin/creativeWork.js +0 -89
  13. package/lib/abstract/chevreAdmin/customer.d.ts +1 -20
  14. package/lib/abstract/chevreAdmin/customer.js +0 -58
  15. package/lib/abstract/chevreAdmin/event.d.ts +0 -35
  16. package/lib/abstract/chevreAdmin/event.js +0 -82
  17. package/lib/abstract/chevreAdmin/eventSeries.d.ts +0 -60
  18. package/lib/abstract/chevreAdmin/eventSeries.js +0 -112
  19. package/lib/abstract/chevreAdmin/me.d.ts +0 -8
  20. package/lib/abstract/chevreAdmin/me.js +0 -18
  21. package/lib/abstract/chevreAdmin/member.d.ts +0 -14
  22. package/lib/abstract/chevreAdmin/member.js +0 -66
  23. package/lib/abstract/chevreAdmin/offer.d.ts +0 -12
  24. package/lib/abstract/chevreAdmin/offer.js +0 -39
  25. package/lib/abstract/chevreAdmin/offerCatalog.d.ts +0 -70
  26. package/lib/abstract/chevreAdmin/offerCatalog.js +0 -160
  27. package/lib/abstract/chevreAdmin/offerCatalogItem.d.ts +0 -40
  28. package/lib/abstract/chevreAdmin/offerCatalogItem.js +0 -98
  29. package/lib/abstract/chevreAdmin/order.d.ts +1 -79
  30. package/lib/abstract/chevreAdmin/order.js +0 -125
  31. package/lib/abstract/chevreAdmin/product.d.ts +0 -36
  32. package/lib/abstract/chevreAdmin/product.js +0 -129
  33. package/lib/abstract/chevreAdmin/reservation.d.ts +1 -10
  34. package/lib/abstract/chevreAdmin/reservation.js +0 -20
  35. package/lib/abstract/chevreAdmin.d.ts +0 -504
  36. package/lib/abstract/chevreAdmin.js +60 -1177
  37. package/lib/abstract/chevreAuth/identity.d.ts +25 -0
  38. package/lib/abstract/chevreAuth/identity.js +152 -0
  39. package/lib/abstract/chevreAuth.d.ts +9 -0
  40. package/lib/abstract/chevreAuth.js +20 -0
  41. package/lib/abstract/chevreConsole/authorization.d.ts +72 -0
  42. package/lib/abstract/chevreConsole/authorization.js +86 -0
  43. package/lib/abstract/chevreConsole/creativeWork.d.ts +22 -0
  44. package/lib/abstract/chevreConsole/creativeWork.js +156 -0
  45. package/lib/abstract/chevreConsole/customer.d.ts +31 -0
  46. package/lib/abstract/chevreConsole/customer.js +125 -0
  47. package/lib/abstract/chevreConsole/event.d.ts +43 -0
  48. package/lib/abstract/chevreConsole/event.js +149 -0
  49. package/lib/abstract/chevreConsole/eventSeries.d.ts +67 -0
  50. package/lib/abstract/chevreConsole/eventSeries.js +180 -0
  51. package/lib/abstract/chevreConsole/me.d.ts +28 -0
  52. package/lib/abstract/chevreConsole/me.js +124 -0
  53. package/lib/abstract/chevreConsole/member.d.ts +22 -0
  54. package/lib/abstract/chevreConsole/member.js +134 -0
  55. package/lib/abstract/chevreConsole/offer.d.ts +34 -0
  56. package/lib/abstract/chevreConsole/offer.js +125 -0
  57. package/lib/abstract/chevreConsole/offerCatalog.d.ts +77 -0
  58. package/lib/abstract/chevreConsole/offerCatalog.js +227 -0
  59. package/lib/abstract/chevreConsole/offerCatalogItem.d.ts +63 -0
  60. package/lib/abstract/chevreConsole/offerCatalogItem.js +181 -0
  61. package/lib/abstract/chevreConsole/order.d.ts +86 -0
  62. package/lib/abstract/chevreConsole/order.js +192 -0
  63. package/lib/abstract/chevreConsole/product.d.ts +45 -0
  64. package/lib/abstract/chevreConsole/product.js +196 -0
  65. package/lib/abstract/chevreConsole/reservation.d.ts +15 -0
  66. package/lib/abstract/chevreConsole/reservation.js +87 -0
  67. package/lib/abstract/chevreConsole.d.ts +634 -0
  68. package/lib/abstract/chevreConsole.js +1445 -0
  69. package/lib/abstract/cinerino/service/event.d.ts +1 -1
  70. package/lib/abstract/cloud/admin/order.d.ts +1 -1
  71. package/lib/abstract/cloud/admin/reservation.d.ts +1 -1
  72. package/lib/abstract/index.d.ts +3 -1
  73. package/lib/abstract/index.js +24 -1
  74. package/lib/bundle.js +8365 -6877
  75. package/lib/index.d.ts +2 -2
  76. package/lib/index.js +2 -1
  77. package/package.json +2 -2
  78. package/example/src/chevre/adminMovies.ts +0 -45
  79. package/example/src/chevre/adminProjectHasMerchantReturnPolicy.ts +0 -30
  80. package/example/src/chevre/adminSearchIssuers.ts +0 -32
  81. package/example/src/chevre/adminSearchSellers.ts +0 -32
  82. package/example/src/chevre/assetTransaction/processMoneyTransfer.ts +0 -74
  83. package/example/src/chevre/assetTransaction/processRegisterService.ts +0 -70
  84. package/example/src/chevre/assetTransaction/processReserve.ts +0 -193
  85. package/example/src/chevre/findPerson.ts +0 -33
  86. package/example/src/chevre/searchMessages.ts +0 -34
  87. package/example/src/chevre/searchTransactions.ts +0 -36
  88. /package/lib/abstract/{chevreAdmin → chevreConsole}/account.d.ts +0 -0
  89. /package/lib/abstract/{chevreAdmin → chevreConsole}/account.js +0 -0
  90. /package/lib/abstract/{chevreAdmin → chevreConsole}/accountTitle.d.ts +0 -0
  91. /package/lib/abstract/{chevreAdmin → chevreConsole}/accountTitle.js +0 -0
  92. /package/lib/abstract/{chevreAdmin → chevreConsole}/accountTransaction.d.ts +0 -0
  93. /package/lib/abstract/{chevreAdmin → chevreConsole}/accountTransaction.js +0 -0
  94. /package/lib/abstract/{chevreAdmin → chevreConsole}/accountingReport.d.ts +0 -0
  95. /package/lib/abstract/{chevreAdmin → chevreConsole}/accountingReport.js +0 -0
  96. /package/lib/abstract/{chevreAdmin → chevreConsole}/action.d.ts +0 -0
  97. /package/lib/abstract/{chevreAdmin → chevreConsole}/action.js +0 -0
  98. /package/lib/abstract/{chevreAdmin → chevreConsole}/additionalProperty.d.ts +0 -0
  99. /package/lib/abstract/{chevreAdmin → chevreConsole}/additionalProperty.js +0 -0
  100. /package/lib/abstract/{chevreAdmin → chevreConsole}/advanceBookingRequirement.d.ts +0 -0
  101. /package/lib/abstract/{chevreAdmin → chevreConsole}/advanceBookingRequirement.js +0 -0
  102. /package/lib/abstract/{chevreAdmin → chevreConsole}/aggregateOffer.d.ts +0 -0
  103. /package/lib/abstract/{chevreAdmin → chevreConsole}/aggregateOffer.js +0 -0
  104. /package/lib/abstract/{chevreAdmin → chevreConsole}/aggregateReservation.d.ts +0 -0
  105. /package/lib/abstract/{chevreAdmin → chevreConsole}/aggregateReservation.js +0 -0
  106. /package/lib/abstract/{chevreAdmin → chevreConsole}/aggregation.d.ts +0 -0
  107. /package/lib/abstract/{chevreAdmin → chevreConsole}/aggregation.js +0 -0
  108. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/moneyTransfer.d.ts +0 -0
  109. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/moneyTransfer.js +0 -0
  110. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/pay.d.ts +0 -0
  111. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/pay.js +0 -0
  112. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/registerService.d.ts +0 -0
  113. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/registerService.js +0 -0
  114. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/reserve.d.ts +0 -0
  115. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction/reserve.js +0 -0
  116. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction.d.ts +0 -0
  117. /package/lib/abstract/{chevreAdmin → chevreConsole}/assetTransaction.js +0 -0
  118. /package/lib/abstract/{chevreAdmin → chevreConsole}/categoryCode.d.ts +0 -0
  119. /package/lib/abstract/{chevreAdmin → chevreConsole}/categoryCode.js +0 -0
  120. /package/lib/abstract/{chevreAdmin → chevreConsole}/comment.d.ts +0 -0
  121. /package/lib/abstract/{chevreAdmin → chevreConsole}/comment.js +0 -0
  122. /package/lib/abstract/{chevreAdmin → chevreConsole}/customerType.d.ts +0 -0
  123. /package/lib/abstract/{chevreAdmin → chevreConsole}/customerType.js +0 -0
  124. /package/lib/abstract/{chevreAdmin → chevreConsole}/emailMessage.d.ts +0 -0
  125. /package/lib/abstract/{chevreAdmin → chevreConsole}/emailMessage.js +0 -0
  126. /package/lib/abstract/{chevreAdmin → chevreConsole}/event/factory.d.ts +0 -0
  127. /package/lib/abstract/{chevreAdmin → chevreConsole}/event/factory.js +0 -0
  128. /package/lib/abstract/{chevreAdmin → chevreConsole}/eventOffer.d.ts +0 -0
  129. /package/lib/abstract/{chevreAdmin → chevreConsole}/eventOffer.js +0 -0
  130. /package/lib/abstract/{chevreAdmin → chevreConsole}/hasMerchantReturnPolicy.d.ts +0 -0
  131. /package/lib/abstract/{chevreAdmin → chevreConsole}/hasMerchantReturnPolicy.js +0 -0
  132. /package/lib/abstract/{chevreAdmin → chevreConsole}/iam.d.ts +0 -0
  133. /package/lib/abstract/{chevreAdmin → chevreConsole}/iam.js +0 -0
  134. /package/lib/abstract/{chevreAdmin → chevreConsole}/identity.d.ts +0 -0
  135. /package/lib/abstract/{chevreAdmin → chevreConsole}/identity.js +0 -0
  136. /package/lib/abstract/{chevreAdmin → chevreConsole}/identityProvider.d.ts +0 -0
  137. /package/lib/abstract/{chevreAdmin → chevreConsole}/identityProvider.js +0 -0
  138. /package/lib/abstract/{chevreAdmin → chevreConsole}/issuer.d.ts +0 -0
  139. /package/lib/abstract/{chevreAdmin → chevreConsole}/issuer.js +0 -0
  140. /package/lib/abstract/{chevreAdmin → chevreConsole}/memberProgram.d.ts +0 -0
  141. /package/lib/abstract/{chevreAdmin → chevreConsole}/memberProgram.js +0 -0
  142. /package/lib/abstract/{chevreAdmin → chevreConsole}/merchantReturnPolicy.d.ts +0 -0
  143. /package/lib/abstract/{chevreAdmin → chevreConsole}/merchantReturnPolicy.js +0 -0
  144. /package/lib/abstract/{chevreAdmin → chevreConsole}/message.d.ts +0 -0
  145. /package/lib/abstract/{chevreAdmin → chevreConsole}/message.js +0 -0
  146. /package/lib/abstract/{chevreAdmin → chevreConsole}/offerItemCondition.d.ts +0 -0
  147. /package/lib/abstract/{chevreAdmin → chevreConsole}/offerItemCondition.js +0 -0
  148. /package/lib/abstract/{chevreAdmin → chevreConsole}/order/factory.d.ts +0 -0
  149. /package/lib/abstract/{chevreAdmin → chevreConsole}/order/factory.js +0 -0
  150. /package/lib/abstract/{chevreAdmin → chevreConsole}/ownershipInfo.d.ts +0 -0
  151. /package/lib/abstract/{chevreAdmin → chevreConsole}/ownershipInfo.js +0 -0
  152. /package/lib/abstract/{chevreAdmin → chevreConsole}/paymentService.d.ts +0 -0
  153. /package/lib/abstract/{chevreAdmin → chevreConsole}/paymentService.js +0 -0
  154. /package/lib/abstract/{chevreAdmin → chevreConsole}/paymentServiceChannel.d.ts +0 -0
  155. /package/lib/abstract/{chevreAdmin → chevreConsole}/paymentServiceChannel.js +0 -0
  156. /package/lib/abstract/{chevreAdmin → chevreConsole}/pendingReservation.d.ts +0 -0
  157. /package/lib/abstract/{chevreAdmin → chevreConsole}/pendingReservation.js +0 -0
  158. /package/lib/abstract/{chevreAdmin → chevreConsole}/permission.d.ts +0 -0
  159. /package/lib/abstract/{chevreAdmin → chevreConsole}/permission.js +0 -0
  160. /package/lib/abstract/{chevreAdmin → chevreConsole}/permit.d.ts +0 -0
  161. /package/lib/abstract/{chevreAdmin → chevreConsole}/permit.js +0 -0
  162. /package/lib/abstract/{chevreAdmin → chevreConsole}/person/ownershipInfo.d.ts +0 -0
  163. /package/lib/abstract/{chevreAdmin → chevreConsole}/person/ownershipInfo.js +0 -0
  164. /package/lib/abstract/{chevreAdmin → chevreConsole}/person.d.ts +0 -0
  165. /package/lib/abstract/{chevreAdmin → chevreConsole}/person.js +0 -0
  166. /package/lib/abstract/{chevreAdmin → chevreConsole}/place/hasPOS.d.ts +0 -0
  167. /package/lib/abstract/{chevreAdmin → chevreConsole}/place/hasPOS.js +0 -0
  168. /package/lib/abstract/{chevreAdmin → chevreConsole}/place.d.ts +0 -0
  169. /package/lib/abstract/{chevreAdmin → chevreConsole}/place.js +0 -0
  170. /package/lib/abstract/{chevreAdmin → chevreConsole}/priceSpecification.d.ts +0 -0
  171. /package/lib/abstract/{chevreAdmin → chevreConsole}/priceSpecification.js +0 -0
  172. /package/lib/abstract/{chevreAdmin → chevreConsole}/productModel.d.ts +0 -0
  173. /package/lib/abstract/{chevreAdmin → chevreConsole}/productModel.js +0 -0
  174. /package/lib/abstract/{chevreAdmin → chevreConsole}/project.d.ts +0 -0
  175. /package/lib/abstract/{chevreAdmin → chevreConsole}/project.js +0 -0
  176. /package/lib/abstract/{chevreAdmin → chevreConsole}/projectMakesOffer.d.ts +0 -0
  177. /package/lib/abstract/{chevreAdmin → chevreConsole}/projectMakesOffer.js +0 -0
  178. /package/lib/abstract/{chevreAdmin → chevreConsole}/reservation/factory.d.ts +0 -0
  179. /package/lib/abstract/{chevreAdmin → chevreConsole}/reservation/factory.js +0 -0
  180. /package/lib/abstract/{chevreAdmin → chevreConsole}/seller/factory.d.ts +0 -0
  181. /package/lib/abstract/{chevreAdmin → chevreConsole}/seller/factory.js +0 -0
  182. /package/lib/abstract/{chevreAdmin → chevreConsole}/seller.d.ts +0 -0
  183. /package/lib/abstract/{chevreAdmin → chevreConsole}/seller.js +0 -0
  184. /package/lib/abstract/{chevreAdmin → chevreConsole}/sellerReturnPolicy.d.ts +0 -0
  185. /package/lib/abstract/{chevreAdmin → chevreConsole}/sellerReturnPolicy.js +0 -0
  186. /package/lib/abstract/{chevreAdmin → chevreConsole}/task.d.ts +0 -0
  187. /package/lib/abstract/{chevreAdmin → chevreConsole}/task.js +0 -0
  188. /package/lib/abstract/{chevreAdmin → chevreConsole}/ticket.d.ts +0 -0
  189. /package/lib/abstract/{chevreAdmin → chevreConsole}/ticket.js +0 -0
  190. /package/lib/abstract/{chevreAdmin → chevreConsole}/token.d.ts +0 -0
  191. /package/lib/abstract/{chevreAdmin → chevreConsole}/token.js +0 -0
  192. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction/moneyTransfer.d.ts +0 -0
  193. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction/moneyTransfer.js +0 -0
  194. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction/placeOrder.d.ts +0 -0
  195. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction/placeOrder.js +0 -0
  196. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction/returnOrder.d.ts +0 -0
  197. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction/returnOrder.js +0 -0
  198. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction.d.ts +0 -0
  199. /package/lib/abstract/{chevreAdmin → chevreConsole}/transaction.js +0 -0
  200. /package/lib/abstract/{chevreAdmin → chevreConsole}/transactionNumber.d.ts +0 -0
  201. /package/lib/abstract/{chevreAdmin → chevreConsole}/transactionNumber.js +0 -0
  202. /package/lib/abstract/{chevreAdmin → chevreConsole}/trip.d.ts +0 -0
  203. /package/lib/abstract/{chevreAdmin → chevreConsole}/trip.js +0 -0
  204. /package/lib/abstract/{chevreAdmin → chevreConsole}/userPool.d.ts +0 -0
  205. /package/lib/abstract/{chevreAdmin → chevreConsole}/userPool.js +0 -0
  206. /package/lib/abstract/{chevreAdmin → chevreConsole}/webSite.d.ts +0 -0
  207. /package/lib/abstract/{chevreAdmin → chevreConsole}/webSite.js +0 -0
@@ -0,0 +1,634 @@
1
+ import { IAdditionalOptions, IOptions, IUnset as IUnsetOnService } from './service';
2
+ import type { AccountService } from './chevreConsole/account';
3
+ import type { AccountingReportService } from './chevreConsole/accountingReport';
4
+ import type { AccountTitleService } from './chevreConsole/accountTitle';
5
+ import type { AccountTransactionService } from './chevreConsole/accountTransaction';
6
+ import type { ActionService } from './chevreConsole/action';
7
+ import type { AdditionalPropertyService } from './chevreConsole/additionalProperty';
8
+ import type { AdvanceBookingRequirementService } from './chevreConsole/advanceBookingRequirement';
9
+ import type { AggregateOfferService } from './chevreConsole/aggregateOffer';
10
+ import type { AggregateReservationService } from './chevreConsole/aggregateReservation';
11
+ import type { AggregationService } from './chevreConsole/aggregation';
12
+ import type { AssetTransactionService } from './chevreConsole/assetTransaction';
13
+ import type { MoneyTransferAssetTransactionService } from './chevreConsole/assetTransaction/moneyTransfer';
14
+ import type { PayAssetTransactionService } from './chevreConsole/assetTransaction/pay';
15
+ import type { RegisterServiceAssetTransactionService } from './chevreConsole/assetTransaction/registerService';
16
+ import type { ReserveAssetTransactionService } from './chevreConsole/assetTransaction/reserve';
17
+ import type { AuthorizationService } from './chevreConsole/authorization';
18
+ import type { CategoryCodeService } from './chevreConsole/categoryCode';
19
+ import type { CommentService } from './chevreConsole/comment';
20
+ import type { CreativeWorkService } from './chevreConsole/creativeWork';
21
+ import type { CustomerService } from './chevreConsole/customer';
22
+ import type { CustomerTypeService } from './chevreConsole/customerType';
23
+ import type { EmailMessageService } from './chevreConsole/emailMessage';
24
+ import type { EventService } from './chevreConsole/event';
25
+ import type { EventOfferService } from './chevreConsole/eventOffer';
26
+ import type { EventSeriesService } from './chevreConsole/eventSeries';
27
+ import type { HasMerchantReturnPolicyService } from './chevreConsole/hasMerchantReturnPolicy';
28
+ import type { IAMService } from './chevreConsole/iam';
29
+ import type { IdentityService } from './chevreConsole/identity';
30
+ import type { IdentityProviderService } from './chevreConsole/identityProvider';
31
+ import type { IssuerService } from './chevreConsole/issuer';
32
+ import type { MeService } from './chevreConsole/me';
33
+ import type { MemberService } from './chevreConsole/member';
34
+ import type { MemberProgramService } from './chevreConsole/memberProgram';
35
+ import type { MerchantReturnPolicyService } from './chevreConsole/merchantReturnPolicy';
36
+ import type { MessageService } from './chevreConsole/message';
37
+ import type { OfferService } from './chevreConsole/offer';
38
+ import type { OfferCatalogService } from './chevreConsole/offerCatalog';
39
+ import type { OfferCatalogItemService } from './chevreConsole/offerCatalogItem';
40
+ import type { OfferItemConditionService } from './chevreConsole/offerItemCondition';
41
+ import type { OrderService } from './chevreConsole/order';
42
+ import type { OwnershipInfoService } from './chevreConsole/ownershipInfo';
43
+ import type { PaymentProductService } from './chevreConsole/paymentService';
44
+ import type { PaymentServiceChannelService } from './chevreConsole/paymentServiceChannel';
45
+ import type { PendingReservationService } from './chevreConsole/pendingReservation';
46
+ import type { PermissionService } from './chevreConsole/permission';
47
+ import type { PermitService } from './chevreConsole/permit';
48
+ import type { PersonService } from './chevreConsole/person';
49
+ import type { PersonOwnershipInfoService } from './chevreConsole/person/ownershipInfo';
50
+ import type { PlaceService } from './chevreConsole/place';
51
+ import type { HasPOSService } from './chevreConsole/place/hasPOS';
52
+ import type { PriceSpecificationService } from './chevreConsole/priceSpecification';
53
+ import type { ProductService } from './chevreConsole/product';
54
+ import type { ProductModelService } from './chevreConsole/productModel';
55
+ import type { ProjectService } from './chevreConsole/project';
56
+ import type { ProjectMakesOfferService } from './chevreConsole/projectMakesOffer';
57
+ import type { ReservationService } from './chevreConsole/reservation';
58
+ import type { SellerService } from './chevreConsole/seller';
59
+ import type { SellerReturnPolicyService } from './chevreConsole/sellerReturnPolicy';
60
+ import type { TaskService } from './chevreConsole/task';
61
+ import type { TicketService } from './chevreConsole/ticket';
62
+ import type { TokenService } from './chevreConsole/token';
63
+ import type { MoneyTransferTransactionService } from './chevreConsole/transaction/moneyTransfer';
64
+ import type { PlaceOrderTransactionService } from './chevreConsole/transaction/placeOrder';
65
+ import type { ReturnOrderTransactionService } from './chevreConsole/transaction/returnOrder';
66
+ import type { TransactionNumberService } from './chevreConsole/transactionNumber';
67
+ import type { TripService } from './chevreConsole/trip';
68
+ import type { UserPoolService } from './chevreConsole/userPool';
69
+ import type { WebSiteService } from './chevreConsole/webSite';
70
+ export declare namespace service {
71
+ type IUnset = IUnsetOnService;
72
+ /**
73
+ * 口座サービス
74
+ */
75
+ type Account = AccountService;
76
+ namespace Account {
77
+ let svc: typeof AccountService | undefined;
78
+ }
79
+ /**
80
+ * 経理レポートサービス
81
+ */
82
+ type AccountingReport = AccountingReportService;
83
+ namespace AccountingReport {
84
+ let svc: typeof AccountingReportService | undefined;
85
+ }
86
+ /**
87
+ * 勘定科目サービス
88
+ */
89
+ type AccountTitle = AccountTitleService;
90
+ namespace AccountTitle {
91
+ let svc: typeof AccountTitleService | undefined;
92
+ }
93
+ /**
94
+ * 口座取引サービス
95
+ */
96
+ type AccountTransaction = AccountTransactionService;
97
+ namespace AccountTransaction {
98
+ let svc: typeof AccountTransactionService | undefined;
99
+ }
100
+ /**
101
+ * アクションサービス
102
+ */
103
+ type Action = ActionService;
104
+ namespace Action {
105
+ let svc: typeof ActionService | undefined;
106
+ }
107
+ /**
108
+ * 追加特性サービス
109
+ */
110
+ type AdditionalProperty = AdditionalPropertyService;
111
+ namespace AdditionalProperty {
112
+ let svc: typeof AdditionalPropertyService | undefined;
113
+ }
114
+ /**
115
+ * 事前予約要件サービス
116
+ */
117
+ type AdvanceBookingRequirement = AdvanceBookingRequirementService;
118
+ namespace AdvanceBookingRequirement {
119
+ let svc: typeof AdvanceBookingRequirementService | undefined;
120
+ }
121
+ /**
122
+ * 集計オファーサービス
123
+ */
124
+ type AggregateOffer = AggregateOfferService;
125
+ namespace AggregateOffer {
126
+ let svc: typeof AggregateOfferService | undefined;
127
+ }
128
+ /**
129
+ * 予約集計サービス
130
+ */
131
+ type AggregateReservation = AggregateReservationService;
132
+ namespace AggregateReservation {
133
+ let svc: typeof AggregateReservationService | undefined;
134
+ }
135
+ /**
136
+ * 集計サービス
137
+ */
138
+ type Aggregation = AggregationService;
139
+ namespace Aggregation {
140
+ let svc: typeof AggregationService | undefined;
141
+ }
142
+ /**
143
+ * 承認サービス
144
+ */
145
+ type Authorization = AuthorizationService;
146
+ namespace Authorization {
147
+ let svc: typeof AuthorizationService | undefined;
148
+ }
149
+ /**
150
+ * 区分サービス
151
+ */
152
+ type CategoryCode = CategoryCodeService;
153
+ namespace CategoryCode {
154
+ let svc: typeof CategoryCodeService | undefined;
155
+ }
156
+ /**
157
+ * コメントサービス
158
+ */
159
+ type Comment = CommentService;
160
+ namespace Comment {
161
+ let svc: typeof CommentService | undefined;
162
+ }
163
+ /**
164
+ * コンテンツサービス
165
+ */
166
+ type CreativeWork = CreativeWorkService;
167
+ namespace CreativeWork {
168
+ let svc: typeof CreativeWorkService | undefined;
169
+ }
170
+ /**
171
+ * 顧客サービス
172
+ */
173
+ type Customer = CustomerService;
174
+ namespace Customer {
175
+ let svc: typeof CustomerService | undefined;
176
+ }
177
+ /**
178
+ * カスタマータイプサービス
179
+ */
180
+ type CustomerType = CustomerTypeService;
181
+ namespace CustomerType {
182
+ let svc: typeof CustomerTypeService | undefined;
183
+ }
184
+ /**
185
+ * Eメールメッセージサービス
186
+ */
187
+ type EmailMessage = EmailMessageService;
188
+ namespace EmailMessage {
189
+ let svc: typeof EmailMessageService | undefined;
190
+ }
191
+ /**
192
+ * イベントサービス
193
+ */
194
+ type Event = EventService;
195
+ namespace Event {
196
+ let svc: typeof EventService | undefined;
197
+ }
198
+ /**
199
+ * イベントオファーサービス
200
+ */
201
+ type EventOffer = EventOfferService;
202
+ namespace EventOffer {
203
+ let svc: typeof EventOfferService | undefined;
204
+ }
205
+ /**
206
+ * 施設コンテンツサービス
207
+ */
208
+ type EventSeries = EventSeriesService;
209
+ namespace EventSeries {
210
+ let svc: typeof EventSeriesService | undefined;
211
+ }
212
+ /**
213
+ * プロジェクトのhasMerchantReturnPolicyサービス
214
+ */
215
+ type HasMerchantReturnPolicy = HasMerchantReturnPolicyService;
216
+ namespace HasMerchantReturnPolicy {
217
+ let svc: typeof HasMerchantReturnPolicyService | undefined;
218
+ }
219
+ /**
220
+ * IAMサービス
221
+ */
222
+ type IAM = IAMService;
223
+ namespace IAM {
224
+ let svc: typeof IAMService | undefined;
225
+ }
226
+ /**
227
+ * アイデンティティサービス
228
+ */
229
+ type Identity = IdentityService;
230
+ namespace Identity {
231
+ let svc: typeof IdentityService | undefined;
232
+ }
233
+ /**
234
+ * IDPサービス
235
+ */
236
+ type IdentityProvider = IdentityProviderService;
237
+ namespace IdentityProvider {
238
+ let svc: typeof IdentityProviderService | undefined;
239
+ }
240
+ /**
241
+ * 発行者サービス
242
+ */
243
+ type Issuer = IssuerService;
244
+ namespace Issuer {
245
+ let svc: typeof IssuerService | undefined;
246
+ }
247
+ /**
248
+ * 管理者サービス
249
+ */
250
+ type Me = MeService;
251
+ namespace Me {
252
+ let svc: typeof MeService | undefined;
253
+ }
254
+ /**
255
+ * メンバーサービス
256
+ */
257
+ type Member = MemberService;
258
+ namespace Member {
259
+ let svc: typeof MemberService | undefined;
260
+ }
261
+ /**
262
+ * メンバープログラムサービス
263
+ */
264
+ type MemberProgram = MemberProgramService;
265
+ namespace MemberProgram {
266
+ let svc: typeof MemberProgramService | undefined;
267
+ }
268
+ /**
269
+ * 返品ポリシーサービス
270
+ */
271
+ type MerchantReturnPolicy = MerchantReturnPolicyService;
272
+ namespace MerchantReturnPolicy {
273
+ let svc: typeof MerchantReturnPolicyService | undefined;
274
+ }
275
+ /**
276
+ * メッセージサービス
277
+ */
278
+ type Message = MessageService;
279
+ namespace Message {
280
+ let svc: typeof MessageService | undefined;
281
+ }
282
+ /**
283
+ * 注文サービス
284
+ */
285
+ type Order = OrderService;
286
+ namespace Order {
287
+ let svc: typeof OrderService | undefined;
288
+ }
289
+ /**
290
+ * 所有権サービス
291
+ */
292
+ type OwnershipInfo = OwnershipInfoService;
293
+ namespace OwnershipInfo {
294
+ let svc: typeof OwnershipInfoService | undefined;
295
+ }
296
+ /**
297
+ * 決済サービス
298
+ */
299
+ type PaymentProduct = PaymentProductService;
300
+ namespace PaymentProduct {
301
+ let svc: typeof PaymentProductService | undefined;
302
+ }
303
+ /**
304
+ * 決済サービスチャネルサービス
305
+ */
306
+ type PaymentServiceChannel = PaymentServiceChannelService;
307
+ namespace PaymentServiceChannel {
308
+ let svc: typeof PaymentServiceChannelService | undefined;
309
+ }
310
+ /**
311
+ * 保留予約サービス
312
+ */
313
+ type PendingReservation = PendingReservationService;
314
+ namespace PendingReservation {
315
+ let svc: typeof PendingReservationService | undefined;
316
+ }
317
+ /**
318
+ * 権限サービス
319
+ */
320
+ type Permission = PermissionService;
321
+ namespace Permission {
322
+ let svc: typeof PermissionService | undefined;
323
+ }
324
+ /**
325
+ * 許可証サービス
326
+ */
327
+ type Permit = PermitService;
328
+ namespace Permit {
329
+ let svc: typeof PermitService | undefined;
330
+ }
331
+ /**
332
+ * 会員サービス
333
+ */
334
+ type Person = PersonService;
335
+ namespace Person {
336
+ let svc: typeof PersonService | undefined;
337
+ }
338
+ namespace person {
339
+ /**
340
+ * 会員所有権サービス
341
+ */
342
+ type OwnershipInfo = PersonOwnershipInfoService;
343
+ namespace OwnershipInfo {
344
+ let svc: typeof PersonOwnershipInfoService | undefined;
345
+ }
346
+ }
347
+ /**
348
+ * 施設サービス
349
+ */
350
+ type Place = PlaceService;
351
+ namespace Place {
352
+ let svc: typeof PlaceService | undefined;
353
+ }
354
+ namespace place {
355
+ /**
356
+ * 施設のPoints-of-Salesサービス
357
+ */
358
+ type HasPOS = HasPOSService;
359
+ namespace HasPOS {
360
+ let svc: typeof HasPOSService | undefined;
361
+ }
362
+ }
363
+ /**
364
+ * 価格仕様サービス
365
+ */
366
+ type PriceSpecification = PriceSpecificationService;
367
+ namespace PriceSpecification {
368
+ let svc: typeof PriceSpecificationService | undefined;
369
+ }
370
+ /**
371
+ * プロダクトサービス
372
+ */
373
+ type Product = ProductService;
374
+ namespace Product {
375
+ let svc: typeof ProductService | undefined;
376
+ }
377
+ /**
378
+ * プロダクトモデルサービス
379
+ */
380
+ type ProductModel = ProductModelService;
381
+ namespace ProductModel {
382
+ let svc: typeof ProductModelService | undefined;
383
+ }
384
+ /**
385
+ * プロジェクトサービス
386
+ */
387
+ type Project = ProjectService;
388
+ namespace Project {
389
+ let svc: typeof ProjectService | undefined;
390
+ }
391
+ /**
392
+ * プロジェクト提供オファーサービス
393
+ */
394
+ type ProjectMakesOffer = ProjectMakesOfferService;
395
+ namespace ProjectMakesOffer {
396
+ let svc: typeof ProjectMakesOfferService | undefined;
397
+ }
398
+ /**
399
+ * 予約サービス
400
+ */
401
+ type Reservation = ReservationService;
402
+ namespace Reservation {
403
+ let svc: typeof ReservationService | undefined;
404
+ }
405
+ /**
406
+ * オファーサービス
407
+ */
408
+ type Offer = OfferService;
409
+ namespace Offer {
410
+ let svc: typeof OfferService | undefined;
411
+ }
412
+ /**
413
+ * カタログサービス
414
+ */
415
+ type OfferCatalog = OfferCatalogService;
416
+ namespace OfferCatalog {
417
+ let svc: typeof OfferCatalogService | undefined;
418
+ }
419
+ /**
420
+ * サブカタログサービス
421
+ */
422
+ type OfferCatalogItem = OfferCatalogItemService;
423
+ namespace OfferCatalogItem {
424
+ let svc: typeof OfferCatalogItemService | undefined;
425
+ }
426
+ /**
427
+ * アイテムコンディションサービス
428
+ */
429
+ type OfferItemCondition = OfferItemConditionService;
430
+ namespace OfferItemCondition {
431
+ let svc: typeof OfferItemConditionService | undefined;
432
+ }
433
+ /**
434
+ * 販売者サービス
435
+ */
436
+ type Seller = SellerService;
437
+ namespace Seller {
438
+ let svc: typeof SellerService | undefined;
439
+ }
440
+ /**
441
+ * 販売者返品ポリシーサービス
442
+ */
443
+ type SellerReturnPolicy = SellerReturnPolicyService;
444
+ namespace SellerReturnPolicy {
445
+ let svc: typeof SellerReturnPolicyService | undefined;
446
+ }
447
+ /**
448
+ * タスクサービス
449
+ */
450
+ type Task = TaskService;
451
+ namespace Task {
452
+ let svc: typeof TaskService | undefined;
453
+ }
454
+ /**
455
+ * チケットサービス
456
+ */
457
+ type Ticket = TicketService;
458
+ namespace Ticket {
459
+ let svc: typeof TicketService | undefined;
460
+ }
461
+ /**
462
+ * 取引サービス
463
+ */
464
+ type AssetTransaction = AssetTransactionService;
465
+ namespace AssetTransaction {
466
+ let svc: typeof AssetTransactionService | undefined;
467
+ }
468
+ namespace assetTransaction {
469
+ /**
470
+ * 通貨転送取引サービス
471
+ */
472
+ type MoneyTransfer = MoneyTransferAssetTransactionService;
473
+ namespace MoneyTransfer {
474
+ let svc: typeof MoneyTransferAssetTransactionService | undefined;
475
+ }
476
+ /**
477
+ * 決済取引サービス
478
+ */
479
+ type Pay = PayAssetTransactionService;
480
+ namespace Pay {
481
+ let svc: typeof PayAssetTransactionService | undefined;
482
+ }
483
+ /**
484
+ * サービス登録取引
485
+ */
486
+ type RegisterService = RegisterServiceAssetTransactionService;
487
+ namespace RegisterService {
488
+ let svc: typeof RegisterServiceAssetTransactionService | undefined;
489
+ }
490
+ /**
491
+ * 予約取引サービス
492
+ */
493
+ type Reserve = ReserveAssetTransactionService;
494
+ namespace Reserve {
495
+ let svc: typeof ReserveAssetTransactionService | undefined;
496
+ }
497
+ }
498
+ /**
499
+ * トークンサービス
500
+ */
501
+ type Token = TokenService;
502
+ namespace Token {
503
+ let svc: typeof TokenService | undefined;
504
+ }
505
+ /**
506
+ * 取引サービス
507
+ */
508
+ namespace transaction {
509
+ /**
510
+ * 通貨転送取引サービス
511
+ */
512
+ type MoneyTransfer = MoneyTransferTransactionService;
513
+ namespace MoneyTransfer {
514
+ let svc: typeof MoneyTransferTransactionService | undefined;
515
+ }
516
+ /**
517
+ * 注文取引サービス
518
+ */
519
+ type PlaceOrder = PlaceOrderTransactionService;
520
+ namespace PlaceOrder {
521
+ let svc: typeof PlaceOrderTransactionService | undefined;
522
+ }
523
+ /**
524
+ * 返品取引サービス
525
+ */
526
+ type ReturnOrder = ReturnOrderTransactionService;
527
+ namespace ReturnOrder {
528
+ let svc: typeof ReturnOrderTransactionService | undefined;
529
+ }
530
+ }
531
+ /**
532
+ * 取引番号サービス
533
+ */
534
+ type TransactionNumber = TransactionNumberService;
535
+ namespace TransactionNumber {
536
+ let svc: typeof TransactionNumberService | undefined;
537
+ }
538
+ /**
539
+ * トリップサービス
540
+ */
541
+ type Trip = TripService;
542
+ namespace Trip {
543
+ let svc: typeof TripService | undefined;
544
+ }
545
+ /**
546
+ * Cognitoユーザープールサービス
547
+ */
548
+ type UserPool = UserPoolService;
549
+ namespace UserPool {
550
+ let svc: typeof UserPoolService | undefined;
551
+ }
552
+ /**
553
+ * admin web site
554
+ */
555
+ type WebSite = WebSiteService;
556
+ namespace WebSite {
557
+ let svc: typeof WebSiteService | undefined;
558
+ }
559
+ }
560
+ /**
561
+ * コンソールサービス
562
+ */
563
+ export declare class ChevreConsole {
564
+ options: Pick<IOptions, 'auth' | 'endpoint'>;
565
+ constructor(options: Pick<IOptions, 'auth' | 'endpoint'>);
566
+ createAccountInstance(params: Pick<IOptions, 'project'>): Promise<AccountService>;
567
+ createAccountingReportInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AccountingReportService>;
568
+ createAccountTitleInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AccountTitleService>;
569
+ createAccountTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AccountTransactionService>;
570
+ createActionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ActionService>;
571
+ createAdditionalPropertyInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AdditionalPropertyService>;
572
+ createAdvanceBookingRequirementInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AdvanceBookingRequirementService>;
573
+ createAggregateOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AggregateOfferService>;
574
+ createAggregateReservationInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AggregateReservationService>;
575
+ createAggregationInstance(): Promise<AggregationService>;
576
+ createAuthorizationInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AuthorizationService>;
577
+ createCommentInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CommentService>;
578
+ createCreativeWorkInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CreativeWorkService>;
579
+ createCategoryCodeInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CategoryCodeService>;
580
+ createCustomerInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CustomerService>;
581
+ createCustomerTypeInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CustomerTypeService>;
582
+ createEmailMessageInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EmailMessageService>;
583
+ createEventInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventService>;
584
+ createEventOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventOfferService>;
585
+ createEventSeriesInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventSeriesService>;
586
+ createHasMerchantReturnPolicyInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<HasMerchantReturnPolicyService>;
587
+ createIAMInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<IAMService>;
588
+ createIdentityInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<IdentityService>;
589
+ createIdentityProviderInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<IdentityProviderService>;
590
+ createIssuerInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<IssuerService>;
591
+ createMeInstance(): Promise<MeService>;
592
+ createMemberInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MemberService>;
593
+ createMemberProgramInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MemberProgramService>;
594
+ createMerchantReturnPolicyInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MerchantReturnPolicyService>;
595
+ createMessageInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MessageService>;
596
+ createOrderInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OrderService>;
597
+ createOwnershipInfoInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OwnershipInfoService>;
598
+ createPaymentProductInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PaymentProductService>;
599
+ createPaymentServiceChannelInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PaymentServiceChannelService>;
600
+ createPendingReservationInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PendingReservationService>;
601
+ createPermissionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PermissionService>;
602
+ createPermitInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PermitService>;
603
+ createPersonInstance(params: Pick<IOptions, 'project'>): Promise<PersonService>;
604
+ createPersonOwnershipInfoInstance(params: Pick<IOptions, 'project'>): Promise<PersonOwnershipInfoService>;
605
+ createPlaceInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PlaceService>;
606
+ createHasPOSInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<HasPOSService>;
607
+ createPriceSpecificationInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PriceSpecificationService>;
608
+ createProductInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ProductService>;
609
+ createProductModelInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ProductModelService>;
610
+ createProjectInstance(): Promise<ProjectService>;
611
+ createProjectMakesOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ProjectMakesOfferService>;
612
+ createReservationInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ReservationService>;
613
+ createOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OfferService>;
614
+ createOfferCatalogInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OfferCatalogService>;
615
+ createOfferCatalogItemInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OfferCatalogItemService>;
616
+ createOfferItemConditionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<OfferItemConditionService>;
617
+ createSellerInstance(params: Pick<IOptions, 'project'>): Promise<SellerService>;
618
+ createSellerReturnPolicyInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<SellerReturnPolicyService>;
619
+ createTaskInstance(params: Pick<IOptions, 'project'>): Promise<TaskService>;
620
+ createTicketInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<TicketService>;
621
+ createAssetTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<AssetTransactionService>;
622
+ createMoneyTransferAssetTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MoneyTransferAssetTransactionService>;
623
+ createPayAssetTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PayAssetTransactionService>;
624
+ createRegisterServiceAssetTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<RegisterServiceAssetTransactionService>;
625
+ createReserveAssetTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ReserveAssetTransactionService>;
626
+ createTokenInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<TokenService>;
627
+ createMoneyTransferTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MoneyTransferTransactionService>;
628
+ createPlaceOrderTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<PlaceOrderTransactionService>;
629
+ createReturnOrderTransactionInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<ReturnOrderTransactionService>;
630
+ createTransactionNumberInstance(params: Pick<IOptions, 'project'>): Promise<TransactionNumberService>;
631
+ createTripInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<TripService>;
632
+ createUserPoolInstance(params: Pick<IOptions, 'project'>): Promise<UserPoolService>;
633
+ createWebSiteInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<WebSiteService>;
634
+ }