@bitblit/ratchet-epsilon-common 4.0.246-alpha → 4.0.254-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.
- package/lib/background/background-execution-event-type.d.ts +8 -7
- package/lib/background/background-process-handling.d.ts +5 -4
- package/lib/built-in/http/apollo/epsilon-apollo-cors-method.d.ts +6 -5
- package/lib/config/http/null-returned-object-handling.d.ts +6 -5
- package/lib/index.mjs +1 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +15 -15
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
ProcessStarting
|
|
3
|
-
DataValidationError
|
|
4
|
-
ExecutionSuccessfullyComplete
|
|
5
|
-
ExecutionFailedError
|
|
6
|
-
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
|
|
2
|
-
Queued
|
|
3
|
-
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
|
|
2
|
-
None
|
|
3
|
-
All
|
|
4
|
-
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
|
|
2
|
-
Error
|
|
3
|
-
ConvertToEmptyString
|
|
4
|
-
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];
|