@shakerquiz/utilities 0.4.81 → 0.4.83

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "0.4.81",
4
+ "version": "0.4.83",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "scripts": {
@@ -9,7 +9,6 @@
9
9
  },
10
10
  "exports": {
11
11
  ".": {
12
- "types": "./source/index.d.ts",
13
12
  "default": "./source/index.js"
14
13
  },
15
14
  "./schemas/*.json": "./source/schemas/*.json"
package/source/index.js CHANGED
@@ -1,3 +1,8 @@
1
+ /// <reference path="./misc.d.ts" />
2
+ /// <reference path="./scope.d.ts" />
3
+ /// <reference path="./server.d.ts" />
4
+ /// <reference path="./tables.d.ts" />
5
+
1
6
  export * from './enumerations/core/features.js'
2
7
  export * from './enumerations/core/kinds.js'
3
8
  export * from './enumerations/core/methods.js'
@@ -1 +0,0 @@
1
- export const Kinds: readonly ["Unit", "Set"];
@@ -1,8 +0,0 @@
1
- /**
2
- * Related specifications:
3
- * - HTTP/1.1 (Core Methods): {@link https://datatracker.ietf.org/doc/html/rfc7231#section-4.3}
4
- * - PATCH: {@link https://datatracker.ietf.org/doc/html/rfc5789}
5
- * - CONNECT: {@link https://datatracker.ietf.org/doc/html/rfc9110}
6
- * - WebDAV Extensions {@link https://datatracker.ietf.org/doc/html/rfc4918}
7
- */
8
- export const Methods: readonly ["DELETE", "GET", "OPTIONS", "PATCH", "POST", "PUT"];
@@ -1 +0,0 @@
1
- export const Networks: readonly ["Docker", "Public"];
@@ -1 +0,0 @@
1
- export const Runtimes: readonly ["Next", "React"];
@@ -1,5 +0,0 @@
1
- /**
2
- * @type {Scope[]}
3
- */
4
- export const Scopes: Scope[];
5
- export function getScope(request: Request): Scope | "";
package/source/index.d.ts DELETED
@@ -1,16 +0,0 @@
1
- /// <reference path="./misc.d.ts" />
2
- /// <reference path="./scope.d.ts" />
3
- /// <reference path="./server.d.ts" />
4
- /// <reference path="./tables.d.ts" />
5
-
6
- export * from './enumerations/core/kinds.d.ts'
7
- export * from './enumerations/core/methods.d.ts'
8
- export * from './enumerations/core/networks.d.ts'
9
- export * from './enumerations/core/runtimes.d.ts'
10
- export * from './enumerations/core/scopes.d.ts'
11
-
12
- export * from './enumerations/misc/constants.d.ts'
13
- export * from './enumerations/misc/cookies.d.ts'
14
- export * from './enumerations/misc/icons.d.ts'
15
- export * from './enumerations/misc/phases.d.ts'
16
- export * from './enumerations/misc/regexps.d.ts'