@chevre/factory 6.0.0-alpha.5 → 6.0.0-alpha.7

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.
@@ -52,11 +52,7 @@ export interface IItemOffered {
52
52
  */
53
53
  serviceOutput?: IServiceOutput;
54
54
  typeOf: ProductType.EventService;
55
- /**
56
- * serviceLocationを追加(2023-01-06~)
57
- * @deprecated use location,superEvent
58
- */
59
- availableChannel?: ReservationFactory.IServiceChannel;
55
+ availableChannel?: never;
60
56
  }
61
57
  export import IOfferedThrough = AnyEventFactory.IOfferedThrough;
62
58
  export import ISeller = AnyEventFactory.ISeller;
package/lib/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * factory
3
3
  */
4
4
  export * as waiter from '@waiter/factory';
5
- export * as cognito from '@waiter/factory';
5
+ export * as cognito from './cognito';
6
6
  import * as AccountFactory from './account';
7
7
  import * as ActionFactory from './action';
8
8
  import * as AcceptCOAOfferActionFactory from './action/accept/coaOffer';
package/lib/index.js CHANGED
@@ -5,12 +5,8 @@ exports.unitPriceOffer = exports.unitCode = exports.assetTransactionType = expor
5
5
  /**
6
6
  * factory
7
7
  */
8
- // import * as waiter from '@waiter/factory';
9
8
  exports.waiter = require("@waiter/factory");
10
- // import * as cognito from './cognito';
11
- exports.cognito = require("@waiter/factory");
12
- // export import cognito = cognito;
13
- // export import waiter = waiter;
9
+ exports.cognito = require("./cognito");
14
10
  var AccountFactory = require("./account");
15
11
  var AcceptCOAOfferActionFactory = require("./action/accept/coaOffer");
16
12
  var AcceptPayActionFactory = require("./action/accept/pay");
@@ -40,7 +40,7 @@ export type IMovieTicketTypeChargePriceComponent = Pick<IMovieTicketTypeChargeSp
40
40
  export type IUnitPriceComponent = Pick<IUnitPriceOfferPriceSpecification, 'accounting' | 'appliesToMovieTicket' | 'appliesToAddOn' | 'name' | 'price' | 'priceCurrency' | 'referenceQuantity' | 'typeOf' | 'valueAddedTaxIncluded'>;
41
41
  export type ITicketPriceComponent = ICategoryChargePriceComponent | IMovieTicketTypeChargePriceComponent | IUnitPriceComponent;
42
42
  export type IPrice = Pick<ICompoundPriceSpecification<ITicketPriceComponent>, 'priceComponent' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
43
- export type IPriceSpecification = Pick<ICompoundPriceSpecification<ITicketPriceComponent>, 'priceComponent' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'> | never;
43
+ export type IPriceSpecification = never;
44
44
  export interface ISubReservation {
45
45
  reservedTicket: {
46
46
  typeOf: ReservationFactory.TicketType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "6.0.0-alpha.5",
3
+ "version": "6.0.0-alpha.7",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",