@chevre/domain 24.0.0-alpha.18 → 24.0.0-alpha.19

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.
@@ -9,6 +9,7 @@ import type { AccountTitleRepo } from './repo/accountTitle';
9
9
  import type { AccountTransactionRepo } from './repo/accountTransaction';
10
10
  import type { ActionRepo } from './repo/action';
11
11
  import type { AcceptCOAOfferActionRepo } from './repo/action/acceptCOAOffer';
12
+ import type { AcceptPayActionRepo } from './repo/action/acceptPay';
12
13
  import type { AuthorizeOfferActionRepo } from './repo/action/authorizeOffer';
13
14
  import type { CheckMovieTicketActionRepo } from './repo/action/checkMovieTicket';
14
15
  import type { CheckThingActionRepo } from './repo/action/checkThing';
@@ -133,6 +134,10 @@ export declare namespace action {
133
134
  namespace AcceptCOAOffer {
134
135
  function createInstance(...params: ConstructorParameters<typeof AcceptCOAOfferActionRepo>): Promise<AcceptCOAOfferActionRepo>;
135
136
  }
137
+ type AcceptPay = AcceptPayActionRepo;
138
+ namespace AcceptPay {
139
+ function createInstance(...params: ConstructorParameters<typeof AcceptPayActionRepo>): Promise<AcceptPayActionRepo>;
140
+ }
136
141
  type AuthorizeOffer = AuthorizeOfferActionRepo;
137
142
  namespace AuthorizeOffer {
138
143
  function createInstance(...params: ConstructorParameters<typeof AuthorizeOfferActionRepo>): Promise<AuthorizeOfferActionRepo>;
@@ -115,6 +115,17 @@ var action;
115
115
  }
116
116
  AcceptCOAOffer.createInstance = createInstance;
117
117
  })(AcceptCOAOffer = action.AcceptCOAOffer || (action.AcceptCOAOffer = {}));
118
+ let AcceptPay;
119
+ (function (AcceptPay) {
120
+ let repo;
121
+ async function createInstance(...params) {
122
+ if (repo === undefined) {
123
+ repo = (await Promise.resolve().then(() => __importStar(require('./repo/action/acceptPay')))).AcceptPayActionRepo;
124
+ }
125
+ return new repo(...params);
126
+ }
127
+ AcceptPay.createInstance = createInstance;
128
+ })(AcceptPay = action.AcceptPay || (action.AcceptPay = {}));
118
129
  let AuthorizeOffer;
119
130
  (function (AuthorizeOffer) {
120
131
  let repo;
package/package.json CHANGED
@@ -99,5 +99,5 @@
99
99
  "postversion": "git push origin --tags",
100
100
  "prepublishOnly": "npm run clean && npm run build"
101
101
  },
102
- "version": "24.0.0-alpha.18"
102
+ "version": "24.0.0-alpha.19"
103
103
  }