@qpoint/router
Advanced tools
Comparing version 0.1.12 to 0.1.13
@@ -7,2 +7,3 @@ /// <reference types="@cloudflare/workers-types" /> | ||
state: Object; | ||
tags: string[]; | ||
requestId: string; | ||
@@ -9,0 +10,0 @@ url: string; |
@@ -22,2 +22,3 @@ "use strict"; | ||
state; // generic object for sharing data between adapters | ||
tags; // adapters can extract context and add tags for downstream adapters | ||
requestId; // a unique id for this request | ||
@@ -60,2 +61,4 @@ url; // the URL object from the initial request | ||
this.state = state; | ||
// start with an empty list of tags | ||
this.tags = []; | ||
// create a random request ID | ||
@@ -62,0 +65,0 @@ this.requestId = generateId(24); |
{ | ||
"name": "@qpoint/router", | ||
"version": "0.1.12", | ||
"version": "0.1.13", | ||
"description": "Qpoint - an intelligent edge router framework", | ||
@@ -5,0 +5,0 @@ "author": "Tyler Flint <tyler@qpoint.io>", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29552
250