Skip to content

Commit 1601c5a

Browse files
authored
Merge pull request #123 from dolittle/projection-alias
Projection alias
2 parents 296acdc + 8d262fe commit 1601c5a

31 files changed

+145
-41
lines changed

Source/artifacts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
"@dolittle/concepts": "6.0.0",
4848
"@dolittle/rudiments": "6.0.0",
4949
"@dolittle/types": "6.0.0",
50-
"@dolittle/runtime.contracts": "6.7.0"
50+
"@dolittle/runtime.contracts": "6.8.0"
5151
},
5252
"devDependencies": {
5353
"@types/is-natural-number": "^4.0.0"
5454
}
55-
}
55+
}

Source/embeddings/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
},
4646
"dependencies": {
4747
"@dolittle/concepts": "6.0.0",
48-
"@dolittle/contracts": "6.7.0",
48+
"@dolittle/contracts": "6.8.0",
4949
"@dolittle/rudiments": "6.0.0",
50-
"@dolittle/runtime.contracts": "6.7.0",
50+
"@dolittle/runtime.contracts": "6.8.0",
5151
"@dolittle/sdk.artifacts": "23.1.0",
5252
"@dolittle/sdk.common": "23.1.0",
5353
"@dolittle/sdk.dependencyinversion": "23.1.0",
@@ -63,4 +63,4 @@
6363
"@types/luxon": "1.24.1"
6464
},
6565
"devDependencies": {}
66-
}
66+
}

Source/eventHorizon/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"dependencies": {
4747
"@dolittle/concepts": "6.0.0",
4848
"@dolittle/rudiments": "6.0.0",
49-
"@dolittle/runtime.contracts": "6.7.0",
49+
"@dolittle/runtime.contracts": "6.8.0",
5050
"@dolittle/sdk.events": "23.1.0",
5151
"@dolittle/sdk.execution": "23.1.0",
5252
"@dolittle/sdk.protobuf": "23.1.0",
@@ -58,4 +58,4 @@
5858
"@types/luxon": "1.24.1"
5959
},
6060
"devDependencies": {}
61-
}
61+
}

Source/events.filtering/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
},
4646
"dependencies": {
4747
"@dolittle/concepts": "6.0.0",
48-
"@dolittle/contracts": "6.7.0",
48+
"@dolittle/contracts": "6.8.0",
4949
"@dolittle/rudiments": "6.0.0",
50-
"@dolittle/runtime.contracts": "6.7.0",
50+
"@dolittle/runtime.contracts": "6.8.0",
5151
"@dolittle/sdk.common": "23.1.0",
5252
"@dolittle/sdk.dependencyinversion": "23.1.0",
5353
"@dolittle/sdk.events": "23.1.0",
@@ -61,4 +61,4 @@
6161
"winston": "3.3.2",
6262
"@types/luxon": "1.24.1"
6363
}
64-
}
64+
}

Source/events.handling/Builders/EventHandlerOptions.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ import { EventHandlerAliasLike } from '../EventHandlerAlias';
1010
/**
1111
* Defines the options that can be defined in a {@link eventHandler} decorator.
1212
*/
13-
export type EventHandlerOptions = { inScope?: ScopeId | Guid | string, partitioned?: boolean, alias?: EventHandlerAliasLike };
13+
export type EventHandlerOptions = {
14+
inScope?: ScopeId | Guid | string,
15+
partitioned?: boolean,
16+
alias?: EventHandlerAliasLike,
17+
};

Source/events.handling/Builders/IEventHandlerBuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export abstract class IEventHandlerBuilder {
3232
abstract inScope(scopeId: ScopeId | Guid | string): IEventHandlerBuilder;
3333

3434
/**
35-
* Defines and alias for the event handler.
35+
* Defines an alias for the event handler.
3636
* @param {EventHandlerAliasLike} alias - The event handler alias.
3737
* @returns {IEventHandlerBuilder} The builder for continuation.
3838
*/

Source/events.handling/EventHandler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { MissingEventHandlerForType } from './MissingEventHandlerForType';
1616
* Represents an implementation of {@link IEventHandler}.
1717
*/
1818
export class EventHandler extends IEventHandler {
19+
/** @inheritdoc */
1920
readonly hasAlias: boolean;
2021

2122
/**

Source/events.handling/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
},
4646
"dependencies": {
4747
"@dolittle/concepts": "6.0.0",
48-
"@dolittle/contracts": "6.7.0",
48+
"@dolittle/contracts": "6.8.0",
4949
"@dolittle/rudiments": "6.0.0",
50-
"@dolittle/runtime.contracts": "6.7.0",
50+
"@dolittle/runtime.contracts": "6.8.0",
5151
"@dolittle/sdk.artifacts": "23.1.0",
5252
"@dolittle/sdk.common": "23.1.0",
5353
"@dolittle/sdk.dependencyinversion": "23.1.0",
@@ -65,4 +65,4 @@
6565
"devDependencies": {
6666
"@types/luxon": "1.24.1"
6767
}
68-
}
68+
}

Source/events.processing/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
},
4646
"dependencies": {
4747
"@dolittle/concepts": "6.0.0",
48-
"@dolittle/contracts": "6.7.0",
48+
"@dolittle/contracts": "6.8.0",
4949
"@dolittle/rudiments": "6.0.0",
50-
"@dolittle/runtime.contracts": "6.7.0",
50+
"@dolittle/runtime.contracts": "6.8.0",
5151
"@dolittle/sdk.common": "23.1.0",
5252
"@dolittle/sdk.dependencyinversion": "23.1.0",
5353
"@dolittle/sdk.execution": "23.1.0",
@@ -57,4 +57,4 @@
5757
"rxjs": "6.6.0",
5858
"winston": "3.3.2"
5959
}
60-
}
60+
}

Source/events/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
},
4646
"dependencies": {
4747
"@dolittle/concepts": "6.0.0",
48-
"@dolittle/contracts": "6.7.0",
48+
"@dolittle/contracts": "6.8.0",
4949
"@dolittle/rudiments": "6.0.0",
50-
"@dolittle/runtime.contracts": "6.7.0",
50+
"@dolittle/runtime.contracts": "6.8.0",
5151
"@dolittle/sdk.artifacts": "23.1.0",
5252
"@dolittle/sdk.execution": "23.1.0",
5353
"@dolittle/sdk.protobuf": "23.1.0",
@@ -61,4 +61,4 @@
6161
"devDependencies": {
6262
"@types/luxon": "1.24.1"
6363
}
64-
}
64+
}

0 commit comments

Comments
 (0)