@chevre/domain 22.13.0-alpha.8 → 22.13.0-alpha.9
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.
|
@@ -18,12 +18,11 @@ async function main() {
|
|
|
18
18
|
.format('YYYY-MM-DD');
|
|
19
19
|
const identifier = `fromSamples:${moment()
|
|
20
20
|
.format('YYYY-MM-DD HH:mm')}`;
|
|
21
|
-
const settingEvent: chevre.factory.event.screeningEvent.
|
|
21
|
+
const settingEvent: chevre.factory.event.screeningEvent.IAttributes = {
|
|
22
22
|
identifier,
|
|
23
23
|
additionalProperty: [
|
|
24
24
|
{ name: ADDITIONAL_PROPERTY_NAME, value: identifier }
|
|
25
25
|
],
|
|
26
|
-
id: 'bmcvkft5g',
|
|
27
26
|
project: {
|
|
28
27
|
id: project.id,
|
|
29
28
|
typeOf: chevre.factory.organizationType.Project
|
|
@@ -111,7 +111,9 @@ export declare class EventRepo {
|
|
|
111
111
|
* イベントコードをキーにして冪等置換
|
|
112
112
|
*/
|
|
113
113
|
upsertManyScreeningEventByIdentifier(params: {
|
|
114
|
-
$set: factory.event.screeningEvent.
|
|
114
|
+
$set: factory.event.screeningEvent.IAttributes & {
|
|
115
|
+
id?: never;
|
|
116
|
+
};
|
|
115
117
|
$unset: IUnset<factory.eventType.ScreeningEvent>;
|
|
116
118
|
}[], options: {
|
|
117
119
|
/**
|
package/package.json
CHANGED