@chevre/factory 4.280.0-alpha.5 → 4.280.0-alpha.6
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.
- package/lib/action/reserve.d.ts +0 -2
- package/lib/order.d.ts +0 -1
- package/lib/reservation.d.ts +1 -3
- package/package.json +1 -1
package/lib/action/reserve.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { ActionType } from '../actionType';
|
|
|
3
3
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
4
4
|
import { OrderType } from '../order';
|
|
5
5
|
import { IReservation as IEventReservation } from '../reservation/event';
|
|
6
|
-
import { IAttributes as IInformActionAttributes } from './interact/inform';
|
|
7
6
|
import { IAttributes as IMoneyTransferActionAttributes } from './transfer/moneyTransfer';
|
|
8
7
|
export declare type IAgent = ActionFactory.IParticipantAsProject;
|
|
9
8
|
/**
|
|
@@ -30,7 +29,6 @@ export interface IAssetTransactionAsReservePurpose {
|
|
|
30
29
|
id: string;
|
|
31
30
|
}
|
|
32
31
|
export declare type IPurpose = IOrderAsReservePurpose | IAssetTransactionAsReservePurpose;
|
|
33
|
-
export declare type IInformReservation = IInformActionAttributes<IObject, any>;
|
|
34
32
|
export interface IPotentialActions {
|
|
35
33
|
moneyTransfer?: IMoneyTransferActionAttributes[];
|
|
36
34
|
}
|
package/lib/order.d.ts
CHANGED
|
@@ -93,7 +93,6 @@ export declare type ISuperEvent = Omit<EventReservationFactory.IOptimizedSuperEv
|
|
|
93
93
|
export declare type IReservationFor = Omit<EventReservationFactory.IReservationFor, 'superEvent'> & {
|
|
94
94
|
superEvent: ISuperEvent;
|
|
95
95
|
};
|
|
96
|
-
export declare type IReservedTicketType = Pick<ITicketType, 'additionalProperty' | 'description' | 'id' | 'identifier' | 'name' | 'priceCurrency' | 'project' | 'typeOf'>;
|
|
97
96
|
export declare type IReservedTicket = Pick<ITicket, 'typeOf' | 'ticketedSeat' | 'dateIssued' | 'ticketNumber' | 'ticketToken' | 'coaTicketInfo' | 'coaReserveAmount'> & {
|
|
98
97
|
ticketType: ITicketType;
|
|
99
98
|
};
|
package/lib/reservation.d.ts
CHANGED
|
@@ -27,9 +27,7 @@ export interface ITicketType {
|
|
|
27
27
|
id?: string;
|
|
28
28
|
identifier: string;
|
|
29
29
|
name?: string | IMultilingualString;
|
|
30
|
-
|
|
31
|
-
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
32
|
-
typeOf: OfferType;
|
|
30
|
+
typeOf: OfferType.Offer;
|
|
33
31
|
validRateLimit?: OfferFactory.IValidRateLimit;
|
|
34
32
|
}
|
|
35
33
|
export declare type IPriceSpecification = IGenericPriceSpecification<PriceSpecificationType>;
|