@chevre/factory 5.0.0-alpha.0 → 5.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.
- package/lib/index.d.ts +0 -5
- package/lib/index.js +15 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -377,11 +377,6 @@ export declare namespace creativeWork {
|
|
|
377
377
|
export import creativeWorkType = CreativeWorkType;
|
|
378
378
|
export import customer = CustomerFactory;
|
|
379
379
|
export declare namespace event {
|
|
380
|
-
type ISearchConditions<T extends EventType.ScreeningEvent> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.ISearchConditions : never;
|
|
381
|
-
type IAttributes<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IAttributes : never;
|
|
382
|
-
type IEvent<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IEvent : never;
|
|
383
|
-
type ICreateParams<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.ICreateParams : never;
|
|
384
|
-
type IUpdateParams<T extends EventType> = T extends EventType.ScreeningEvent ? ScreeningEventFactory.IUpdateParams : never;
|
|
385
380
|
export import screeningEvent = ScreeningEventFactory;
|
|
386
381
|
}
|
|
387
382
|
export import eventSeries = ScreeningEventSeriesFactory;
|
package/lib/index.js
CHANGED
|
@@ -370,6 +370,21 @@ exports.creativeWorkType = creativeWorkType_1.CreativeWorkType;
|
|
|
370
370
|
exports.customer = CustomerFactory;
|
|
371
371
|
var event;
|
|
372
372
|
(function (event) {
|
|
373
|
+
// export type ISearchConditions<T extends EventType.ScreeningEvent> =
|
|
374
|
+
// T extends EventType.ScreeningEvent ? ScreeningEventFactory.ISearchConditions :
|
|
375
|
+
// never;
|
|
376
|
+
// export type IAttributes<T extends EventType> =
|
|
377
|
+
// T extends EventType.ScreeningEvent ? ScreeningEventFactory.IAttributes :
|
|
378
|
+
// never;
|
|
379
|
+
// export type IEvent<T extends EventType> =
|
|
380
|
+
// T extends EventType.ScreeningEvent ? ScreeningEventFactory.IEvent :
|
|
381
|
+
// never;
|
|
382
|
+
// export type ICreateParams<T extends EventType> =
|
|
383
|
+
// T extends EventType.ScreeningEvent ? ScreeningEventFactory.ICreateParams :
|
|
384
|
+
// never;
|
|
385
|
+
// export type IUpdateParams<T extends EventType> =
|
|
386
|
+
// T extends EventType.ScreeningEvent ? ScreeningEventFactory.IUpdateParams :
|
|
387
|
+
// never;
|
|
373
388
|
event.screeningEvent = ScreeningEventFactory;
|
|
374
389
|
// export import screeningEventSeries = ScreeningEventSeriesFactory;
|
|
375
390
|
})(event = exports.event || (exports.event = {}));
|