@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 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.4-b7e0ea82
4476
+ // engine version: 0.160.5-e6ada846
@@ -72,7 +72,9 @@ export declare enum HttpStatusCode {
72
72
  Unauthorized = 401,
73
73
  Forbidden = 403,
74
74
  NotFound = 404,
75
+ TooManyRequests = 429,
75
76
  ServerError = 500,
77
+ ServiceUnavailable = 503,
76
78
  GatewayTimeout = 504
77
79
  }
78
80
  export interface FetchResponse<T> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luvio/engine",
3
- "version": "0.160.4",
3
+ "version": "0.160.5",
4
4
  "description": "Luvio Runtime Engine",
5
5
  "repository": {
6
6
  "type": "git",