@chevre/factory 7.0.0-alpha.1 → 7.0.0-alpha.3

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 (73) hide show
  1. package/lib/account/action/moneyTransfer.d.ts +6 -6
  2. package/lib/account/transaction.d.ts +3 -4
  3. package/lib/account.js +5 -5
  4. package/lib/action/accept/coaOffer.d.ts +5 -5
  5. package/lib/action/accept/pay.d.ts +4 -4
  6. package/lib/action/accept.d.ts +3 -3
  7. package/lib/action/authorize/invoice.d.ts +6 -6
  8. package/lib/action/authorize/offer/any.d.ts +3 -3
  9. package/lib/action/authorize/offer/eventService.d.ts +4 -4
  10. package/lib/action/authorize/offer/eventService.js +1 -1
  11. package/lib/action/authorize/offer/product.d.ts +4 -4
  12. package/lib/action/authorize/offer/product.js +1 -1
  13. package/lib/action/authorize/paymentMethod/any.d.ts +6 -6
  14. package/lib/action/authorize/ticketedObject.d.ts +4 -4
  15. package/lib/action/authorize.d.ts +4 -4
  16. package/lib/action/cancel/coaReserve.d.ts +4 -4
  17. package/lib/action/cancel/reservation.d.ts +4 -4
  18. package/lib/action/check/paymentMethod/movieTicket.d.ts +4 -4
  19. package/lib/action/check/thing.d.ts +5 -5
  20. package/lib/action/consume/use/reservation.d.ts +3 -3
  21. package/lib/action/consume/use.d.ts +3 -3
  22. package/lib/action/create.d.ts +3 -3
  23. package/lib/action/interact/confirm/pay.d.ts +3 -3
  24. package/lib/action/interact/confirm/registerService.d.ts +3 -3
  25. package/lib/action/interact/confirm/reservation.d.ts +3 -3
  26. package/lib/action/interact/confirm.d.ts +4 -4
  27. package/lib/action/interact/inform.d.ts +7 -7
  28. package/lib/action/interact/register/service.d.ts +3 -3
  29. package/lib/action/interact/register.d.ts +5 -5
  30. package/lib/action/reserve.d.ts +4 -4
  31. package/lib/action/trade/order.d.ts +5 -5
  32. package/lib/action/trade/pay.d.ts +5 -5
  33. package/lib/action/trade/refund.d.ts +5 -5
  34. package/lib/action/transfer/give/pointAward.d.ts +5 -5
  35. package/lib/action/transfer/give.d.ts +5 -5
  36. package/lib/action/transfer/moneyTransfer.d.ts +5 -5
  37. package/lib/action/transfer/return/invoice.d.ts +6 -6
  38. package/lib/action/transfer/return/order.d.ts +7 -7
  39. package/lib/action/transfer/return/pointAward.d.ts +6 -6
  40. package/lib/action/transfer/return/reserveTransaction.d.ts +6 -6
  41. package/lib/action/transfer/return.d.ts +3 -3
  42. package/lib/action/transfer/send/message/email.d.ts +3 -3
  43. package/lib/action/transfer/send/order.d.ts +3 -3
  44. package/lib/action/transfer/send.d.ts +6 -6
  45. package/lib/action/update/add.d.ts +4 -4
  46. package/lib/action/update/delete.d.ts +5 -5
  47. package/lib/action/update/replace.d.ts +4 -4
  48. package/lib/action/update/update.d.ts +4 -4
  49. package/lib/error/alreadyInUse.js +12 -31
  50. package/lib/error/argument.js +10 -30
  51. package/lib/error/argumentNull.js +10 -30
  52. package/lib/error/chevre.js +7 -26
  53. package/lib/error/forbidden.js +7 -28
  54. package/lib/error/gatewayTimeout.js +7 -28
  55. package/lib/error/internal.js +7 -28
  56. package/lib/error/notFound.js +10 -30
  57. package/lib/error/notImplemented.js +7 -28
  58. package/lib/error/rateLimitExceeded.js +7 -28
  59. package/lib/error/serviceUnavailable.js +7 -28
  60. package/lib/error/unauthorized.js +7 -28
  61. package/lib/error/unknown.js +7 -28
  62. package/lib/errors.js +13 -13
  63. package/lib/index.js +216 -216
  64. package/lib/invoice.d.ts +4 -4
  65. package/lib/offer.d.ts +2 -2
  66. package/lib/order.d.ts +19 -19
  67. package/lib/ownershipInfo.d.ts +7 -7
  68. package/lib/person.d.ts +3 -3
  69. package/lib/product.d.ts +3 -3
  70. package/lib/reservation.d.ts +1 -2
  71. package/lib/reservedCodeValues.js +24 -24
  72. package/lib/transaction.d.ts +4 -4
  73. package/package.json +3 -4
package/lib/order.d.ts CHANGED
@@ -18,7 +18,7 @@ import { PriceCurrency } from './priceCurrency';
18
18
  import { IPriceSpecification as ICompoundPriceSpecification } from './priceSpecification/compoundPriceSpecification';
19
19
  import { IMembershipProduct, IPaymentCardProduct, ProductType } from './product';
20
20
  import { IPropertyValue } from './propertyValue';
21
- import * as EventReservationFactory from './reservation/event';
21
+ import { ICategoryChargePriceComponent, IIssuedThrough, IMovieTicketTypeChargePriceComponent, IOptimizedSuperEventLegacy, IOptimizedWorkPerformedLegacy, IProgramMembershipUsedSearchConditions, IReservation as IRawReservation, IReservationForLegacy, IReservedTicket as IRawReservedTicket, ITicketType, IUnitPriceComponent, IServiceTypeOfIssuedThrough } from './reservation/event';
22
22
  import { ReservationType } from './reservationType';
23
23
  import { ISeller as IBaseSeller } from './seller';
24
24
  import { IPaymentMethodAsServiceOutput, PaymentServiceType } from './service/paymentService';
@@ -84,8 +84,8 @@ export interface IReferencedInvoice {
84
84
  issuedThrough: IOrderPaymentMethodIssuedThrough;
85
85
  referencesOrder?: never;
86
86
  }
87
- export type IWorkPerformed = Pick<EventReservationFactory.IOptimizedWorkPerformedLegacy, 'typeOf' | 'id' | 'identifier' | 'name' | 'duration'>;
88
- export type ISuperEvent = Pick<EventReservationFactory.IOptimizedSuperEventLegacy, 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'headline'> & {
87
+ export type IWorkPerformed = Pick<IOptimizedWorkPerformedLegacy, 'typeOf' | 'id' | 'identifier' | 'name' | 'duration'>;
88
+ export type ISuperEvent = Pick<IOptimizedSuperEventLegacy, 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'headline'> & {
89
89
  workPerformed: IWorkPerformed;
90
90
  identifier?: never;
91
91
  alternativeHeadline?: never;
@@ -95,10 +95,10 @@ export type ISuperEvent = Pick<EventReservationFactory.IOptimizedSuperEventLegac
95
95
  /**
96
96
  * COAの場合の施設コンテンツ
97
97
  */
98
- export type ICOASuperEvent = Pick<EventReservationFactory.IOptimizedSuperEventLegacy, 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'headline'> & Pick<IEventSeries, 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
98
+ export type ICOASuperEvent = Pick<IOptimizedSuperEventLegacy, 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'headline'> & Pick<IEventSeries, 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
99
99
  workPerformed: IWorkPerformed;
100
100
  };
101
- export type IEventAsReservationFor = Omit<EventReservationFactory.IReservationForLegacy, 'superEvent' | 'identifier' | 'coaInfo'> & {
101
+ export type IEventAsReservationFor = Omit<IReservationForLegacy, 'superEvent' | 'identifier' | 'coaInfo'> & {
102
102
  superEvent: ISuperEvent;
103
103
  /**
104
104
  * COA予約でのみ使用されている
@@ -113,7 +113,7 @@ export type IEventAsReservationFor = Omit<EventReservationFactory.IReservationFo
113
113
  /**
114
114
  * COAの場合のイベント
115
115
  */
116
- export type ICOAEventAsReservationFor = Omit<EventReservationFactory.IReservationForLegacy, 'superEvent' | 'identifier' | 'coaInfo'> & {
116
+ export type ICOAEventAsReservationFor = Omit<IReservationForLegacy, 'superEvent' | 'identifier' | 'coaInfo'> & {
117
117
  superEvent: ICOASuperEvent;
118
118
  /**
119
119
  * COA予約でのみ使用されている
@@ -146,9 +146,9 @@ export type ICOATicketInfoWithDetails = COAFactory.reserve.IUpdReserveTicket & {
146
146
  */
147
147
  usePoint: number;
148
148
  };
149
- export type IReservedTicket = Pick<EventReservationFactory.IReservedTicket, 'typeOf' | 'ticketedSeat' | 'identifier' | // 追加(2024-04-15~)
149
+ export type IReservedTicket = Pick<IRawReservedTicket, 'typeOf' | 'ticketedSeat' | 'identifier' | // 追加(2024-04-15~)
150
150
  'ticketNumber'> & {
151
- ticketType: EventReservationFactory.ITicketType;
151
+ ticketType: ITicketType;
152
152
  dateIssued?: never;
153
153
  ticketToken?: never;
154
154
  coaTicketInfo?: never;
@@ -157,16 +157,16 @@ export type IReservedTicket = Pick<EventReservationFactory.IReservedTicket, 'typ
157
157
  /**
158
158
  * COAの場合の予約チケット
159
159
  */
160
- export type ICOAReservedTicket = Pick<EventReservationFactory.IReservedTicket, 'typeOf' | 'ticketedSeat' | 'identifier' | // 追加(2024-04-15~)
160
+ export type ICOAReservedTicket = Pick<IRawReservedTicket, 'typeOf' | 'ticketedSeat' | 'identifier' | // 追加(2024-04-15~)
161
161
  'ticketNumber' | 'dateIssued' | 'ticketToken'> & {
162
- ticketType: EventReservationFactory.ITicketType;
162
+ ticketType: ITicketType;
163
163
  /**
164
164
  * COA券種情報
165
165
  */
166
166
  coaTicketInfo?: ICOATicketInfoWithDetails;
167
167
  coaReserveAmount?: number;
168
168
  };
169
- export interface ICOAIssuedThrough extends Pick<EventReservationFactory.IIssuedThrough, 'typeOf' | 'availableChannel'> {
169
+ export interface ICOAIssuedThrough extends Pick<IIssuedThrough, 'typeOf' | 'availableChannel'> {
170
170
  typeOf: ProductType.EventService;
171
171
  serviceType?: never;
172
172
  /**
@@ -174,15 +174,15 @@ export interface ICOAIssuedThrough extends Pick<EventReservationFactory.IIssuedT
174
174
  */
175
175
  id?: never;
176
176
  }
177
- export type IEventReservation = Pick<EventReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
178
- issuedThrough: EventReservationFactory.IIssuedThrough;
177
+ export type IEventReservation = Pick<IRawReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
178
+ issuedThrough: IIssuedThrough;
179
179
  reservationFor: IEventAsReservationFor;
180
180
  reservedTicket: IReservedTicket;
181
181
  };
182
182
  /**
183
183
  * COAの場合の予約
184
184
  */
185
- export type ICOAEventReservation = Pick<EventReservationFactory.IReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
185
+ export type ICOAEventReservation = Pick<IRawReservation, 'additionalProperty' | 'additionalTicketText' | 'id' | 'programMembershipUsed' | 'reservationNumber' | 'typeOf'> & {
186
186
  issuedThrough: ICOAIssuedThrough;
187
187
  reservationFor: ICOAEventAsReservationFor;
188
188
  reservedTicket: ICOAReservedTicket;
@@ -199,9 +199,9 @@ export type IPermit = Pick<IBasePermit, 'amount' | 'identifier' | 'name' | 'type
199
199
  * 注文アイテム
200
200
  */
201
201
  export type IItemOffered = IReservation | IPermit;
202
- export type ICategoryChargePriceComponent = EventReservationFactory.ICategoryChargePriceComponent;
203
- export type IMovieTicketTypeChargePriceComponent = EventReservationFactory.IMovieTicketTypeChargePriceComponent;
204
- export type IUnitPriceComponent = EventReservationFactory.IUnitPriceComponent;
202
+ export { ICategoryChargePriceComponent };
203
+ export { IMovieTicketTypeChargePriceComponent };
204
+ export { IUnitPriceComponent };
205
205
  export type ITicketPriceComponent = ICategoryChargePriceComponent | IMovieTicketTypeChargePriceComponent | IUnitPriceComponent;
206
206
  /**
207
207
  * 注文オファーの価格仕様
@@ -281,7 +281,7 @@ export interface IEventServiceAsOrderedItem {
281
281
  typeOf: ReservationType.EventReservation | ReservationType.ReservationPackage;
282
282
  reservationFor: IReservationFor4EventServiceOrderedItem;
283
283
  };
284
- serviceType?: EventReservationFactory.IServiceTypeOfIssuedThrough;
284
+ serviceType?: IServiceTypeOfIssuedThrough;
285
285
  /**
286
286
  * 興行id
287
287
  * 興行管理をしていない場合id未定義
@@ -548,7 +548,7 @@ export interface IAcceptedOffersSearchConditions {
548
548
  /**
549
549
  * 使用メンバーシップ
550
550
  */
551
- programMembershipUsed?: EventReservationFactory.IProgramMembershipUsedSearchConditions;
551
+ programMembershipUsed?: IProgramMembershipUsedSearchConditions;
552
552
  reservedTicket?: {
553
553
  /**
554
554
  * 予約チケット識別子
@@ -1,8 +1,8 @@
1
1
  import { IInvoice } from './invoice';
2
2
  import { OrganizationType } from './organizationType';
3
- import * as PermitFactory from './permit';
3
+ import { IIssuedThroughAsCreditCard, IIssuedThroughAsFaceToFace, IIssuedThroughAsProduct, IPermit } from './permit';
4
4
  import { PersonType } from './personType';
5
- import * as ProductFactory from './product';
5
+ import { ProductType } from './product';
6
6
  import { IProject } from './project';
7
7
  import { ReservationType } from './reservationType';
8
8
  import { PaymentServiceType } from './service/paymentService';
@@ -14,7 +14,7 @@ export interface IEventReservationAsGood {
14
14
  */
15
15
  id?: string;
16
16
  issuedThrough?: {
17
- typeOf: ProductFactory.ProductType.EventService;
17
+ typeOf: ProductType.EventService;
18
18
  };
19
19
  /**
20
20
  * 予約番号
@@ -25,11 +25,11 @@ export interface IEventReservationAsGood {
25
25
  * 予約
26
26
  */
27
27
  export type IReservation = IEventReservationAsGood;
28
- export type IPermitIssuedThroughAsFaceToFace = Pick<PermitFactory.IIssuedThroughAsFaceToFace, 'typeOf'>;
29
- export type IPermitIssuedThroughAsCreditCard = Pick<PermitFactory.IIssuedThroughAsCreditCard, 'id' | 'typeOf'>;
30
- export type IPermitIssuedThroughAsProduct = Pick<PermitFactory.IIssuedThroughAsProduct, 'id' | 'typeOf' | 'serviceType'>;
28
+ export type IPermitIssuedThroughAsFaceToFace = Pick<IIssuedThroughAsFaceToFace, 'typeOf'>;
29
+ export type IPermitIssuedThroughAsCreditCard = Pick<IIssuedThroughAsCreditCard, 'id' | 'typeOf'>;
30
+ export type IPermitIssuedThroughAsProduct = Pick<IIssuedThroughAsProduct, 'id' | 'typeOf' | 'serviceType'>;
31
31
  export type IPermitIssuedThrough = IPermitIssuedThroughAsFaceToFace | IPermitIssuedThroughAsCreditCard | IPermitIssuedThroughAsProduct;
32
- export type IPermitAsGood = Pick<PermitFactory.IPermit, 'typeOf'> & {
32
+ export type IPermitAsGood = Pick<IPermit, 'typeOf'> & {
33
33
  identifier: string;
34
34
  issuedThrough?: IPermitIssuedThrough;
35
35
  name?: never;
package/lib/person.d.ts CHANGED
@@ -1,17 +1,17 @@
1
1
  import { PersonType } from './personType';
2
2
  import { IProgramMembership } from './programMembership';
3
3
  import { IPropertyValue } from './propertyValue';
4
- import * as ThingFactory from './thing';
4
+ import { IIdentifier, IThing } from './thing';
5
5
  /**
6
6
  * 追加特性
7
7
  */
8
8
  export type IAdditionalProperty = IPropertyValue<string>[];
9
- export import IIdentifier = ThingFactory.IIdentifier;
9
+ export { IIdentifier };
10
10
  export type IMemberOf = IProgramMembership;
11
11
  /**
12
12
  * プロフィール
13
13
  */
14
- export interface IProfile extends Pick<ThingFactory.IThing, 'image' | 'url'> {
14
+ export interface IProfile extends Pick<IThing, 'image' | 'url'> {
15
15
  additionalProperty?: IAdditionalProperty;
16
16
  /**
17
17
  * Physical address of the item.
package/lib/product.d.ts CHANGED
@@ -11,7 +11,7 @@ import { IProject } from './project';
11
11
  import { IPropertyValue } from './propertyValue';
12
12
  import { SortType } from './sortType';
13
13
  import { IThing } from './thing';
14
- import * as UnitPriceOfferFactory from './unitPriceOffer';
14
+ import { IAddOn4unitPriceOffer, IItemOffered } from './unitPriceOffer';
15
15
  /**
16
16
  * プロダクトタイプ
17
17
  */
@@ -331,7 +331,7 @@ export type ITicketPriceComponent = ICategoryCodeChargePriceComponent | IMovieTi
331
331
  * プロダクトオファーの価格仕様
332
332
  */
333
333
  export type ITicketPriceSpecification = Omit<ICompoundPriceSpecification<ITicketPriceComponent>, 'project'>;
334
- export import IMinimizedTicketAddOn = UnitPriceOfferFactory.IAddOn4unitPriceOffer;
334
+ export type IMinimizedTicketAddOn = IAddOn4unitPriceOffer;
335
335
  /**
336
336
  * プロダクトオファー
337
337
  */
@@ -341,7 +341,7 @@ export interface ITicketOffer extends Pick<IBaseOffer, 'acceptedPaymentMethod' |
341
341
  identifier: string;
342
342
  name: IOfferName;
343
343
  priceSpecification: ITicketPriceSpecification;
344
- itemOffered?: UnitPriceOfferFactory.IItemOffered;
344
+ itemOffered?: IItemOffered;
345
345
  offerIndex?: number;
346
346
  /**
347
347
  * カタログ内ソートインデックス
@@ -1,7 +1,7 @@
1
1
  import { CreativeWorkType } from './creativeWorkType';
2
2
  import { OrganizationType } from './organizationType';
3
3
  import { PersonType } from './personType';
4
- import * as SeatFactory from './place/seat';
4
+ import { ISeatingType } from './place/seat';
5
5
  import { PlaceType } from './placeType';
6
6
  import { PriceCurrency } from './priceCurrency';
7
7
  import { IPriceSpecification as IGenericPriceSpecification } from './priceSpecification';
@@ -15,7 +15,6 @@ import { ReservationType } from './reservationType';
15
15
  import { PaymentServiceType } from './service/paymentService';
16
16
  export type TicketType = 'Ticket';
17
17
  export type IPriceSpecification = IGenericPriceSpecification<PriceSpecificationType>;
18
- export type ISeatingType = SeatFactory.ISeatingType;
19
18
  export type IUnderNameType = CreativeWorkType.WebApplication | PersonType.Person | OrganizationType.Organization | OrganizationType.Corporation | OrganizationType.Project;
20
19
  /**
21
20
  * under name interface
@@ -1,30 +1,30 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RESERVED_CODE_VALUES = void 0;
4
- var account_1 = require("./account");
5
- var assetTransactionType_1 = require("./assetTransactionType");
6
- var certificationStatusEnumeration_1 = require("./certificationStatusEnumeration");
7
- var creativeWorkType_1 = require("./creativeWorkType");
8
- var eventStatusType_1 = require("./eventStatusType");
9
- var eventType_1 = require("./eventType");
10
- var merchantReturnPolicy_1 = require("./merchantReturnPolicy");
11
- var offerType_1 = require("./offerType");
12
- var order_1 = require("./order");
13
- var orderStatus_1 = require("./orderStatus");
14
- var organizationType_1 = require("./organizationType");
15
- var paymentStatusType_1 = require("./paymentStatusType");
16
- var personType_1 = require("./personType");
17
- var placeType_1 = require("./placeType");
18
- var priceCurrency_1 = require("./priceCurrency");
19
- var priceSpecificationType_1 = require("./priceSpecificationType");
20
- var product_1 = require("./product");
21
- var reservationStatusType_1 = require("./reservationStatusType");
22
- var reservationType_1 = require("./reservationType");
23
- var sortType_1 = require("./sortType");
24
- var taskStatus_1 = require("./taskStatus");
25
- var transactionStatusType_1 = require("./transactionStatusType");
26
- var transactionType_1 = require("./transactionType");
27
- var unitCode_1 = require("./unitCode");
4
+ const account_1 = require("./account");
5
+ const assetTransactionType_1 = require("./assetTransactionType");
6
+ const certificationStatusEnumeration_1 = require("./certificationStatusEnumeration");
7
+ const creativeWorkType_1 = require("./creativeWorkType");
8
+ const eventStatusType_1 = require("./eventStatusType");
9
+ const eventType_1 = require("./eventType");
10
+ const merchantReturnPolicy_1 = require("./merchantReturnPolicy");
11
+ const offerType_1 = require("./offerType");
12
+ const order_1 = require("./order");
13
+ const orderStatus_1 = require("./orderStatus");
14
+ const organizationType_1 = require("./organizationType");
15
+ const paymentStatusType_1 = require("./paymentStatusType");
16
+ const personType_1 = require("./personType");
17
+ const placeType_1 = require("./placeType");
18
+ const priceCurrency_1 = require("./priceCurrency");
19
+ const priceSpecificationType_1 = require("./priceSpecificationType");
20
+ const product_1 = require("./product");
21
+ const reservationStatusType_1 = require("./reservationStatusType");
22
+ const reservationType_1 = require("./reservationType");
23
+ const sortType_1 = require("./sortType");
24
+ const taskStatus_1 = require("./taskStatus");
25
+ const transactionStatusType_1 = require("./transactionStatusType");
26
+ const transactionType_1 = require("./transactionType");
27
+ const unitCode_1 = require("./unitCode");
28
28
  exports.RESERVED_CODE_VALUES = [
29
29
  'AccountTitle',
30
30
  assetTransactionType_1.AssetTransactionType.CancelReservation,
@@ -1,7 +1,7 @@
1
- import * as waiter from '@waiter/factory';
1
+ import { passport } from '@waiter/factory';
2
2
  import { ActionStatusType } from './actionStatusType';
3
3
  import { IExtendId } from './autoGenerated';
4
- import * as EmailFactory from './creativeWork/message/email';
4
+ import { ICustomization as IEmailICustomization } from './creativeWork/message/email';
5
5
  import { ICreativeWork as IWebApplication } from './creativeWork/softwareApplication/webApplication';
6
6
  import { IMultilingualString } from './multilingualString';
7
7
  import { OrganizationType } from './organizationType';
@@ -35,13 +35,13 @@ export interface ISendEmailMessageParams {
35
35
  * 挿入変数として`order`を使用できます
36
36
  * {@link https://pugjs.org/api/getting-started.html}
37
37
  */
38
- object?: EmailFactory.ICustomization;
38
+ object?: IEmailICustomization;
39
39
  }
40
40
  export interface IPassportBeforeStart {
41
41
  /**
42
42
  * 許可証トークン
43
43
  */
44
- token: waiter.passport.IEncodedPassport;
44
+ token: passport.IEncodedPassport;
45
45
  }
46
46
  export interface IProject {
47
47
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "7.0.0-alpha.1",
3
+ "version": "7.0.0-alpha.3",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -44,9 +44,8 @@
44
44
  "dependencies": {
45
45
  "@coasystems/factory": "1.0.0",
46
46
  "@gmopg/factory": "1.0.0",
47
- "@surfrock/factory": "1.0.0-alpha.1",
48
- "@waiter/factory": "2.2.0",
49
- "setprototypeof": "1.2.0"
47
+ "@surfrock/factory": "1.0.0",
48
+ "@waiter/factory": "2.2.0"
50
49
  },
51
50
  "repository": {
52
51
  "type": "git",