@bitblit/ratchet-epsilon-common 4.0.246-alpha → 4.0.253-alpha

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.
@@ -1,7 +1,8 @@
1
- export declare enum BackgroundExecutionEventType {
2
- ProcessStarting = "ProcessStarting",
3
- DataValidationError = "DataValidationError",
4
- ExecutionSuccessfullyComplete = "ExecutionSuccessfullyComplete",
5
- ExecutionFailedError = "ExecutionRuntimeError",
6
- NoMatchProcessorName = "NoMatchProcessorName"
7
- }
1
+ export declare const BackgroundExecutionEventType: {
2
+ ProcessStarting: string;
3
+ DataValidationError: string;
4
+ ExecutionSuccessfullyComplete: string;
5
+ ExecutionFailedError: string;
6
+ NoMatchProcessorName: string;
7
+ };
8
+ export type BackgroundExecutionEventType = (typeof BackgroundExecutionEventType)[keyof typeof BackgroundExecutionEventType];
@@ -1,4 +1,5 @@
1
- export declare enum BackgroundProcessHandling {
2
- Queued = "Queued",
3
- Immediate = "Immediate"
4
- }
1
+ export declare const BackgroundProcessHandling: {
2
+ Queued: string;
3
+ Immediate: string;
4
+ };
5
+ export type BackgroundProcessHandling = (typeof BackgroundProcessHandling)[keyof typeof BackgroundProcessHandling];
@@ -1,5 +1,6 @@
1
- export declare enum EpsilonApolloCorsMethod {
2
- None = "None",
3
- All = "All",
4
- Reflective = "Reflective"
5
- }
1
+ export declare const EpsilonApolloCorsMethod: {
2
+ None: string;
3
+ All: string;
4
+ Reflective: string;
5
+ };
6
+ export type EpsilonApolloCorsMethod = (typeof EpsilonApolloCorsMethod)[keyof typeof EpsilonApolloCorsMethod];
@@ -1,5 +1,6 @@
1
- export declare enum NullReturnedObjectHandling {
2
- Error = "Error",
3
- ConvertToEmptyString = "ConvertToEmptyString",
4
- Return404NotFoundResponse = "Return404NotFoundResponse"
5
- }
1
+ export declare const NullReturnedObjectHandling: {
2
+ Error: string;
3
+ ConvertToEmptyString: string;
4
+ Return404NotFoundResponse: string;
5
+ };
6
+ export type NullReturnedObjectHandling = (typeof NullReturnedObjectHandling)[keyof typeof NullReturnedObjectHandling];