Skip to content

Commit

Permalink
Regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
einari committed Aug 15, 2024
1 parent e3616a3 commit 558928d
Show file tree
Hide file tree
Showing 32 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Compliance/GDPR/DeletePIIForPerson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applic
import { Validator } from '@cratis/applications/validation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/compliance/gdpr/pii/delete/{person}');
const routeTemplate = Handlebars.compile('/api/compliance/gdpr/pii/delete/{{person}}');

export interface IDeletePIIForPerson {
person?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/Append.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Causation } from '../Auditing/Causation';
import { Identity } from '../Identities/Identity';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}');

export interface IAppend {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/AppendMany.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Causation } from '../Auditing/Causation';
import { Identity } from '../Identities/Identity';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/append-many');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/append-many');

export interface IAppendMany {
eventStore?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { AppendedEventWithJsonAsContent } from './AppendedEventWithJsonAsContent';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/all');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/all');

class GetAllAppendedEventsSortBy {
private _metadata: SortingActionsForQuery<AppendedEventWithJsonAsContent[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/GetAppendedEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { AppendedEventWithJsonAsContent } from './AppendedEventWithJsonAsContent';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}');

class GetAppendedEventsSortBy {
private _metadata: SortingActionsForQuery<AppendedEventWithJsonAsContent[]>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { AppendedEventWithJsonAsContent } from './AppendedEventWithJsonAsContent';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/range');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/range');

class GetAppendedEventsInRangeSortBy {
private _metadata: SortingActionsForQuery<AppendedEventWithJsonAsContent[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/Histogram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { EventHistogramEntry } from './EventHistogramEntry';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/histogram');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/histogram');

class HistogramSortBy {
private _date: SortingActionsForQuery<EventHistogramEntry[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/Next.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { QueryFor, QueryResultWithState } from '@cratis/applications/queries';
import { useQuery, PerformQuery } from '@cratis/applications.react/queries';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/next-sequence-number');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/next-sequence-number');


export interface NextArguments {
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/Redact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Causation } from '../Auditing/Causation';
import { Identity } from '../Identities/Identity';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/redact-event');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/redact-event');

export interface IRedact {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/RedactMany.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Causation } from '../Auditing/Causation';
import { Identity } from '../Identities/Identity';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/redact-events');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/redact-events');

export interface IRedactMany {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/Tail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { QueryFor, QueryResultWithState } from '@cratis/applications/queries';
import { useQuery, PerformQuery } from '@cratis/applications.react/queries';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/tail-sequence-number');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/tail-sequence-number');


export interface TailArguments {
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventSequences/TailForObserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { QueryFor, QueryResultWithState } from '@cratis/applications/queries';
import { useQuery, PerformQuery } from '@cratis/applications.react/queries';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/sequence/{eventSequenceId}/tail-sequence-number/observer/{observerId}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/sequence/{{eventSequenceId}}/tail-sequence-number/observer/{{observerId}}');


export interface TailForObserverArguments {
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/EventTypes/AllEventTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { EventType } from './EventType';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/types');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/types');

class AllEventTypesSortBy {
private _id: SortingActionsForQuery<EventType[]>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { EventTypeWithSchemas } from './EventTypeWithSchemas';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/types/schemas');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/types/schemas');

class AllEventTypesWithSchemasSortBy {
private _type: SortingActionsForQuery<EventTypeWithSchemas[]>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { QueryFor, QueryResultWithState, Sorting, SortingActions, SortingActions
import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPageSize } from '@cratis/applications.react/queries';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/types/schemas/{eventTypeId}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/types/schemas/{{eventTypeId}}');

class GenerationSchemasForTypeSortBy {

Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Events/Register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Validator } from '@cratis/applications/validation';
import { EventTypeRegistration } from '../Contracts/Events/EventTypeRegistration';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStoreName}/types');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStoreName}}/types');

export interface IRegister {
eventStoreName?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Jobs/AllJobSteps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useObservableQuery, useObservableQueryWithPaging, SetSorting, SetPage,
import { JobStepState } from './JobStepState';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/jobs/{jobId}/steps');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/jobs/{{jobId}}/steps');

class AllJobStepsSortBy {
private _id: SortingActionsForObservableQuery<JobStepState[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Jobs/AllJobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useObservableQuery, useObservableQueryWithPaging, SetSorting, SetPage,
import { JobState } from './JobState';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/jobs');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/jobs');

class AllJobsSortBy {
private _id: SortingActionsForObservableQuery<JobState[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Jobs/DeleteJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/jobs/{jobId}/delete');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/jobs/{{jobId}}/delete');

export interface IDeleteJob {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Jobs/ResumeJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/jobs/{jobId}/resume');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/jobs/{{jobId}}/resume');

export interface IResumeJob {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Jobs/StopJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/jobs/{jobId}/stop');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/jobs/{{jobId}}/stop');

export interface IStopJob {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Observation/AllFailedPartitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useObservableQuery, useObservableQueryWithPaging, SetSorting, SetPage,
import { FailedPartition } from '../Concepts/Observation/FailedPartition';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/failed-partitions/{observerId}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/failed-partitions/{{observerId}}');

class AllFailedPartitionsSortBy {
private _id: SortingActionsForObservableQuery<FailedPartition[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Observation/AllObservers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useObservableQuery, useObservableQueryWithPaging, SetSorting, SetPage,
import { ObserverInformation } from '../Contracts/Observation/ObserverInformation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/observers/observe');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/observers/observe');

class AllObserversSortBy {
private _observerId: SortingActionsForObservableQuery<ObserverInformation[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Observation/GetObservers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { ObserverInformation } from '../Contracts/Observation/ObserverInformation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/observers');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/observers');

class GetObserversSortBy {
private _observerId: SortingActionsForQuery<ObserverInformation[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Observation/Replay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applic
import { Validator } from '@cratis/applications/validation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/observers/{namespace}/replay/{observerId}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/observers/{{namespace}}/replay/{{observerId}}');

export interface IReplay {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Observation/ReplayPartition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applic
import { Validator } from '@cratis/applications/validation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/observers/{namespace}/replay/{observerId}/{partition}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/observers/{{namespace}}/replay/{{observerId}}/{{partition}}');

export interface IReplayPartition {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Observation/RetryPartition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useCommand, SetCommandValues, ClearCommandValues } from '@cratis/applic
import { Validator } from '@cratis/applications/validation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/observers/{namespace}/failed-partitions/{observerId}/retry/{partition}');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/observers/{{namespace}}/failed-partitions/{{observerId}}/retry/{{partition}}');

export interface IRetryPartition {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Projections/AllProjections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { Projection } from './Projection';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/projections');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/projections');

class AllProjectionsSortBy {
private _id: SortingActionsForQuery<Projection[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Recommendations/AllRecommendations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useObservableQuery, useObservableQueryWithPaging, SetSorting, SetPage,
import { RecommendationInformation } from '../Concepts/Recommendations/RecommendationInformation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/recommendations/observe');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/recommendations/observe');

class AllRecommendationsSortBy {
private _id: SortingActionsForObservableQuery<RecommendationInformation[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Recommendations/GetRecommendations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useQuery, useQueryWithPaging, PerformQuery, SetSorting, SetPage, SetPag
import { RecommendationInformation } from '../Concepts/Recommendations/RecommendationInformation';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/recommendations');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/recommendations');

class GetRecommendationsSortBy {
private _id: SortingActionsForQuery<RecommendationInformation[]>;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Recommendations/Ignore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/recommendations/{recommendationId}/ignore');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/recommendations/{{recommendationId}}/ignore');

export interface IIgnore {
eventStore?: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Workbench/Api/Recommendations/Perform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Validator } from '@cratis/applications/validation';
import { Guid } from '@cratis/fundamentals';
import Handlebars from 'handlebars';

const routeTemplate = Handlebars.compile('/api/events/store/{eventStore}/{namespace}/recommendations/{recommendationId}/perform');
const routeTemplate = Handlebars.compile('/api/events/store/{{eventStore}}/{{namespace}}/recommendations/{{recommendationId}}/perform');

export interface IPerform {
eventStore?: string;
Expand Down

0 comments on commit 558928d

Please sign in to comment.