@breakside/jskit 2024.34.0 → 2024.41.0

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.
Files changed (94) hide show
  1. package/Frameworks/DOM.jsframework/Info.json +2 -2
  2. package/Frameworks/DOM.jsframework/io.breakside.JSKit.DOM-bundle.js +2 -2
  3. package/Frameworks/FontKit.jsframework/Info.json +2 -2
  4. package/Frameworks/FontKit.jsframework/io.breakside.JSKit.FontKit-bundle.js +2 -2
  5. package/Frameworks/Foundation.jsframework/Info.json +2 -2
  6. package/Frameworks/Foundation.jsframework/JS/Foundation+HTML.js +3 -1
  7. package/Frameworks/Foundation.jsframework/JS/JSClass.js +4 -1
  8. package/Frameworks/Foundation.jsframework/JS/JSHTMLUserAgent.js +130 -0
  9. package/Frameworks/Foundation.jsframework/JS/JSNodeURLSessionStreamTask.js +1 -1
  10. package/Frameworks/Foundation.jsframework/io.breakside.JSKit.Foundation-bundle.js +2 -2
  11. package/Frameworks/Foundation.jsframework/sources.json +3 -1
  12. package/Frameworks/SecurityKit.jsframework/Info.json +2 -2
  13. package/Frameworks/SecurityKit.jsframework/JS/SECCBOR.js +4 -0
  14. package/Frameworks/SecurityKit.jsframework/JS/SECCOSE.js +135 -0
  15. package/Frameworks/SecurityKit.jsframework/JS/SECCipher+HTML.js +231 -70
  16. package/Frameworks/SecurityKit.jsframework/JS/SECCipher+Node.js +155 -60
  17. package/Frameworks/SecurityKit.jsframework/JS/SECCipher.js +125 -54
  18. package/Frameworks/SecurityKit.jsframework/JS/SECDataKey.js +5 -4
  19. package/Frameworks/SecurityKit.jsframework/JS/SECHMAC+HTML.js +15 -11
  20. package/Frameworks/SecurityKit.jsframework/JS/SECHMAC+Node.js +17 -3
  21. package/Frameworks/SecurityKit.jsframework/JS/SECHTMLDeviceAuthentication.js +206 -120
  22. package/Frameworks/SecurityKit.jsframework/JS/SECHTMLKey.js +17 -0
  23. package/Frameworks/SecurityKit.jsframework/JS/SECHash.js +1 -0
  24. package/Frameworks/SecurityKit.jsframework/JS/SECJSONWebAlgorithms.js +9 -1
  25. package/Frameworks/SecurityKit.jsframework/JS/SECJSONWebEncryption.js +391 -0
  26. package/Frameworks/SecurityKit.jsframework/JS/SECJSONWebToken.js +1 -1
  27. package/Frameworks/SecurityKit.jsframework/JS/SECKey.js +14 -1
  28. package/Frameworks/SecurityKit.jsframework/JS/SECNodeKey.js +66 -1
  29. package/Frameworks/SecurityKit.jsframework/JS/SECSign+HTML.js +2 -27
  30. package/Frameworks/SecurityKit.jsframework/JS/SECSign+Node.js +103 -278
  31. package/Frameworks/SecurityKit.jsframework/JS/SECSign.js +27 -0
  32. package/Frameworks/SecurityKit.jsframework/JS/SECVerify+Node.js +60 -57
  33. package/Frameworks/SecurityKit.jsframework/JS/SecurityKit.js +1 -0
  34. package/Frameworks/SecurityKit.jsframework/io.breakside.JSKit.SecurityKit-bundle.js +2 -2
  35. package/Frameworks/SecurityKit.jsframework/sources.json +6 -0
  36. package/Info.json +2 -2
  37. package/Node/KeyCommand.js +8 -1
  38. package/Node/io.breakside.jskit-bundle.js +2 -2
  39. package/Node/jskit +1 -0
  40. package/Root/Frameworks/APIKit/Info.yaml +1 -1
  41. package/Root/Frameworks/APIKitTesting/Info.yaml +1 -1
  42. package/Root/Frameworks/AuthKit/Info.yaml +1 -1
  43. package/Root/Frameworks/CSSOM/Info.yaml +1 -1
  44. package/Root/Frameworks/ChartKit/Info.yaml +1 -1
  45. package/Root/Frameworks/ConferenceKit/Info.yaml +1 -1
  46. package/Root/Frameworks/DBKit/DBEncryptedObject.js +2 -2
  47. package/Root/Frameworks/DBKit/Info.yaml +1 -1
  48. package/Root/Frameworks/DOM/Info.yaml +1 -1
  49. package/Root/Frameworks/Dispatch/Info.yaml +1 -1
  50. package/Root/Frameworks/FontKit/Info.yaml +1 -1
  51. package/Root/Frameworks/Foundation/Foundation+HTML.js +3 -1
  52. package/Root/Frameworks/Foundation/Info.yaml +1 -1
  53. package/Root/Frameworks/Foundation/JSClass.js +4 -1
  54. package/Root/Frameworks/Foundation/JSHTMLUserAgent.js +130 -0
  55. package/Root/Frameworks/Foundation/JSNodeURLSessionStreamTask.js +1 -1
  56. package/Root/Frameworks/ImageKit/Info.yaml +1 -1
  57. package/Root/Frameworks/MediaKit/Info.yaml +1 -1
  58. package/Root/Frameworks/MediaKitUI/Info.yaml +1 -1
  59. package/Root/Frameworks/NotificationKit/Info.yaml +1 -1
  60. package/Root/Frameworks/NotificationKit/NKWebPushService.js +2 -2
  61. package/Root/Frameworks/PDFKit/Info.yaml +1 -1
  62. package/Root/Frameworks/PDFKit/PDFEncryption.js +1 -1
  63. package/Root/Frameworks/QRKit/Info.yaml +1 -1
  64. package/Root/Frameworks/SearchKit/Info.yaml +1 -1
  65. package/Root/Frameworks/SecurityKit/Info.yaml +1 -1
  66. package/Root/Frameworks/SecurityKit/SECCBOR.js +4 -0
  67. package/Root/Frameworks/SecurityKit/SECCOSE.js +135 -0
  68. package/Root/Frameworks/SecurityKit/SECCipher+HTML.js +231 -70
  69. package/Root/Frameworks/SecurityKit/SECCipher+Node.js +155 -60
  70. package/Root/Frameworks/SecurityKit/SECCipher.js +125 -54
  71. package/Root/Frameworks/SecurityKit/SECDataKey.js +5 -4
  72. package/Root/Frameworks/SecurityKit/SECHMAC+HTML.js +15 -11
  73. package/Root/Frameworks/SecurityKit/SECHMAC+Node.js +17 -3
  74. package/Root/Frameworks/SecurityKit/SECHTMLDeviceAuthentication.js +206 -120
  75. package/Root/Frameworks/SecurityKit/SECHTMLKey.js +17 -0
  76. package/Root/Frameworks/SecurityKit/SECHash.js +1 -0
  77. package/Root/Frameworks/SecurityKit/SECJSONWebAlgorithms.js +9 -1
  78. package/Root/Frameworks/SecurityKit/SECJSONWebEncryption.js +391 -0
  79. package/Root/Frameworks/SecurityKit/SECJSONWebToken.js +1 -1
  80. package/Root/Frameworks/SecurityKit/SECKey.js +14 -1
  81. package/Root/Frameworks/SecurityKit/SECNodeKey.js +66 -1
  82. package/Root/Frameworks/SecurityKit/SECSign+HTML.js +2 -27
  83. package/Root/Frameworks/SecurityKit/SECSign+Node.js +103 -278
  84. package/Root/Frameworks/SecurityKit/SECSign.js +27 -0
  85. package/Root/Frameworks/SecurityKit/SECVerify+Node.js +60 -57
  86. package/Root/Frameworks/SecurityKit/SecurityKit.js +1 -0
  87. package/Root/Frameworks/ServerKit/Info.yaml +1 -1
  88. package/Root/Frameworks/ServerKitTesting/Info.yaml +1 -1
  89. package/Root/Frameworks/TestKit/Info.yaml +1 -1
  90. package/Root/Frameworks/UIKit/Info.yaml +1 -1
  91. package/Root/Frameworks/UIKit/UIPlatform+HTML.js +2 -1
  92. package/Root/Frameworks/UIKitTesting/Info.yaml +1 -1
  93. package/package.json +1 -1
  94. package/Root/Templates/workspace/.gitignore +0 -4
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "node": ">=10.10.0"
10
10
  },
11
11
  "name": "@breakside/jskit",
12
- "version": "2024.34.0",
12
+ "version": "2024.41.0",
13
13
  "license": "SEE LICENSE IN LICENSE.txt",
14
14
  "files": [
15
15
  "*"
@@ -1,4 +0,0 @@
1
- .DS_Store
2
- builds/*
3
- node_modules
4
- *.sublime-workspace