@twin.org/web 0.0.1-next.10 → 0.0.1-next.12

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.
@@ -389,6 +389,10 @@ const MimeTypes = {
389
389
  * JSON-LD - application/ld+json
390
390
  */
391
391
  JsonLd: "application/ld+json",
392
+ /**
393
+ * JWT - application/jwt
394
+ */
395
+ Jwt: "application/jwt",
392
396
  /**
393
397
  * XML - application/xml
394
398
  */
@@ -994,12 +998,13 @@ class MimeTypeHelper {
994
998
  [MimeTypes.Javascript]: "js",
995
999
  [MimeTypes.Json]: "json",
996
1000
  [MimeTypes.JsonLd]: "jsonld",
1001
+ [MimeTypes.Jwt]: "jwt",
997
1002
  [MimeTypes.Xml]: "xml",
998
1003
  [MimeTypes.OctetStream]: "bin",
999
1004
  [MimeTypes.Gzip]: "gzip",
1000
1005
  [MimeTypes.Bzip2]: "bz2",
1001
1006
  [MimeTypes.Zip]: "zip",
1002
- [MimeTypes.Pdf]: "pfd",
1007
+ [MimeTypes.Pdf]: "pdf",
1003
1008
  [MimeTypes.Gif]: "gif",
1004
1009
  [MimeTypes.Bmp]: "bmp",
1005
1010
  [MimeTypes.Jpeg]: "jpeg",
@@ -387,6 +387,10 @@ const MimeTypes = {
387
387
  * JSON-LD - application/ld+json
388
388
  */
389
389
  JsonLd: "application/ld+json",
390
+ /**
391
+ * JWT - application/jwt
392
+ */
393
+ Jwt: "application/jwt",
390
394
  /**
391
395
  * XML - application/xml
392
396
  */
@@ -992,12 +996,13 @@ class MimeTypeHelper {
992
996
  [MimeTypes.Javascript]: "js",
993
997
  [MimeTypes.Json]: "json",
994
998
  [MimeTypes.JsonLd]: "jsonld",
999
+ [MimeTypes.Jwt]: "jwt",
995
1000
  [MimeTypes.Xml]: "xml",
996
1001
  [MimeTypes.OctetStream]: "bin",
997
1002
  [MimeTypes.Gzip]: "gzip",
998
1003
  [MimeTypes.Bzip2]: "bz2",
999
1004
  [MimeTypes.Zip]: "zip",
1000
- [MimeTypes.Pdf]: "pfd",
1005
+ [MimeTypes.Pdf]: "pdf",
1001
1006
  [MimeTypes.Gif]: "gif",
1002
1007
  [MimeTypes.Bmp]: "bmp",
1003
1008
  [MimeTypes.Jpeg]: "jpeg",
@@ -22,6 +22,10 @@ export declare const MimeTypes: {
22
22
  * JSON-LD - application/ld+json
23
23
  */
24
24
  readonly JsonLd: "application/ld+json";
25
+ /**
26
+ * JWT - application/jwt
27
+ */
28
+ readonly Jwt: "application/jwt";
25
29
  /**
26
30
  * XML - application/xml
27
31
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/web - Changelog
2
2
 
3
- ## 0.0.1-next.10
3
+ ## 0.0.1-next.12
4
4
 
5
5
  - Initial Release
@@ -36,6 +36,12 @@ JSON - application/json
36
36
 
37
37
  JSON-LD - application/ld+json
38
38
 
39
+ ### Jwt
40
+
41
+ > `readonly` **Jwt**: `"application/jwt"` = `"application/jwt"`
42
+
43
+ JWT - application/jwt
44
+
39
45
  ### Xml
40
46
 
41
47
  > `readonly` **Xml**: `"application/xml"` = `"application/xml"`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/web",
3
- "version": "0.0.1-next.10",
3
+ "version": "0.0.1-next.12",
4
4
  "description": "Contains classes for use with web operations",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,8 +14,8 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.1-next.10",
18
- "@twin.org/crypto": "0.0.1-next.10",
17
+ "@twin.org/core": "0.0.1-next.12",
18
+ "@twin.org/crypto": "0.0.1-next.12",
19
19
  "@twin.org/nameof": "next"
20
20
  },
21
21
  "main": "./dist/cjs/index.cjs",