@luvio/engine 0.160.4 → 0.160.5
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/dist/engine.js +3 -1
- package/dist/types/network.d.ts +2 -0
- package/package.json +1 -1
package/dist/engine.js
CHANGED
|
@@ -2019,7 +2019,9 @@ var HttpStatusCode;
|
|
|
2019
2019
|
HttpStatusCode[HttpStatusCode["Unauthorized"] = 401] = "Unauthorized";
|
|
2020
2020
|
HttpStatusCode[HttpStatusCode["Forbidden"] = 403] = "Forbidden";
|
|
2021
2021
|
HttpStatusCode[HttpStatusCode["NotFound"] = 404] = "NotFound";
|
|
2022
|
+
HttpStatusCode[HttpStatusCode["TooManyRequests"] = 429] = "TooManyRequests";
|
|
2022
2023
|
HttpStatusCode[HttpStatusCode["ServerError"] = 500] = "ServerError";
|
|
2024
|
+
HttpStatusCode[HttpStatusCode["ServiceUnavailable"] = 503] = "ServiceUnavailable";
|
|
2023
2025
|
HttpStatusCode[HttpStatusCode["GatewayTimeout"] = 504] = "GatewayTimeout";
|
|
2024
2026
|
})(HttpStatusCode || (HttpStatusCode = {}));
|
|
2025
2027
|
/**
|
|
@@ -4471,4 +4473,4 @@ function createResourceParamsImpl(config, configMetadata) {
|
|
|
4471
4473
|
}
|
|
4472
4474
|
|
|
4473
4475
|
export { Environment, GraphNode, HttpStatusCode, InMemoryStore, InMemoryStoreQueryEvaluator, Luvio, Reader, StoreKeyMap, StoreKeySet, StoreResolveResultState, StringKeyInMemoryStore, Wildcard, adapterToNetworkPriority, buildNetworkSnapshotCachePolicy, coerceAdapterRequestContext, coerceConfig, createCustomAdapterEventEmitter, createResourceParams, deepFreeze, emitAdapterEvent, ingestShape, isFileReference, isFormData, resolveLink, serializeStructuredKey, setBypassDeepFreeze, typeCheckConfig };
|
|
4474
|
-
// engine version: 0.160.
|
|
4476
|
+
// engine version: 0.160.5-e6ada846
|
package/dist/types/network.d.ts
CHANGED