@e-mc/types 0.10.12 → 0.10.14

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/LICENSE CHANGED
@@ -1,11 +1,7 @@
1
1
  Copyright 2024 An Pham
2
2
 
3
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
5
- 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
6
 
7
- 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
-
9
- 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
-
11
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  ## Interface
11
11
 
12
- * [View Source](https://www.unpkg.com/@e-mc/types@0.10.12/index.d.ts)
12
+ * [View Source](https://www.unpkg.com/@e-mc/types@0.10.14/index.d.ts)
13
13
 
14
14
  ```typescript
15
15
  import type { LogArguments } from "./lib/logger";
@@ -197,14 +197,14 @@ const IMPORT_MAP: Record<string, string | undefined>;
197
197
 
198
198
  ## References
199
199
 
200
- - https://www.unpkg.com/@e-mc/types@0.10.12/index.d.ts
201
- - https://www.unpkg.com/@e-mc/types@0.10.12/lib/logger.d.ts
202
- - https://www.unpkg.com/@e-mc/types@0.10.12/lib/module.d.ts
203
- - https://www.unpkg.com/@e-mc/types@0.10.12/lib/object.d.ts
200
+ - https://www.unpkg.com/@e-mc/types@0.10.14/index.d.ts
201
+ - https://www.unpkg.com/@e-mc/types@0.10.14/lib/logger.d.ts
202
+ - https://www.unpkg.com/@e-mc/types@0.10.14/lib/module.d.ts
203
+ - https://www.unpkg.com/@e-mc/types@0.10.14/lib/object.d.ts
204
204
 
205
205
  * https://developer.mozilla.org/en-US/docs/Web/API/DOMException
206
206
  * https://www.npmjs.com/package/@types/bytes
207
207
 
208
208
  ## LICENSE
209
209
 
210
- BSD 3-Clause
210
+ MIT
package/constant.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export const enum INTERNAL {
2
- VERSION = '0.10.12',
2
+ VERSION = '0.10.14',
3
3
  TEMP_DIR = 'tmp',
4
4
  CJS = '__cjs__'
5
5
  }
@@ -73,6 +73,7 @@ export const enum ERR_MESSAGE {
73
73
  UNSUPPORTED_MIME = 'Unsupported MIME',
74
74
  UNSUPPORTED_READ = 'Not permitted to read file',
75
75
  UNSUPPORTED_WRITE = 'Not permitted to write file',
76
+ UNSUPPORTED_PATH = 'Not permitted to set absolute path',
76
77
  NOTFOUND_PATH = 'Path not found',
77
78
  NOTFOUND_FILE = 'File not found',
78
79
  NOTFOUND_BINARY = 'Binary not found',
package/index.js CHANGED
@@ -639,18 +639,15 @@ function parseTime(value, start = 0) {
639
639
  const seconds = +value;
640
640
  if (isNaN(seconds) && isString(value)) {
641
641
  let result = 0;
642
- for (const match of value.toLowerCase().matchAll(/\b([\d.]+)\s*(y|M|w|d|h|ms?|s)\b/g)) {
642
+ for (const match of value.matchAll(/\b([\d.]+)\s*(y|w|d|h|ms?|s)\b/gi)) {
643
643
  const n = +match[1];
644
644
  if (isNaN(n)) {
645
645
  continue;
646
646
  }
647
- switch (match[2]) {
647
+ switch (match[2].toLowerCase()) {
648
648
  case 'y':
649
649
  result += n * 31449600000;
650
650
  break;
651
- case 'M':
652
- result += n * 2592000000;
653
- break;
654
651
  case 'w':
655
652
  result += n * 604800000;
656
653
  break;
@@ -660,15 +657,15 @@ function parseTime(value, start = 0) {
660
657
  case 'h':
661
658
  result += n * 3600000;
662
659
  break;
663
- case 'm':
664
- result += n * 60000;
665
- break;
666
660
  case 's':
667
661
  result += n * 1000;
668
662
  break;
669
663
  case 'ms':
670
664
  result += Math.ceil(n);
671
665
  break;
666
+ default:
667
+ result += n * (match[2] === 'M' ? 2592000000 : 60000);
668
+ break;
672
669
  }
673
670
  }
674
671
  if (result > 0) {
@@ -703,10 +700,10 @@ function formatTime(value, elapsed, char = ' ') {
703
700
  if (value >= 60000) {
704
701
  const m = Math.floor(value / 60000);
705
702
  value -= m * 60000;
706
- result += padStart(m, result ? '0' : ' ') + ':';
703
+ result += (result ? padStart(m, '0') : m) + ':';
707
704
  }
708
705
  else {
709
- result += '0:';
706
+ result += result ? '00:' : '0:';
710
707
  }
711
708
  if (value >= 1000) {
712
709
  const s = Math.floor(value / 1000);
package/lib/index.d.ts CHANGED
@@ -144,7 +144,7 @@ declare namespace functions {
144
144
  executeBatchQuery(batch: V[], sessionKey: string, outResult?: BatchQueryResult): Promise<BatchQueryResult>;
145
145
  executeBatchQuery(batch: V[], options?: ExecuteBatchQueryOptions | string, outResult?: BatchQueryResult): Promise<BatchQueryResult>;
146
146
  processRows(batch: V[], tasks: Promise<Null<QueryResult>>[], parallel: boolean): Promise<BatchQueryResult>;
147
- processRows(batch: V[], tasks: Promise<Null<QueryResult>>[], options?: ProcessRowsOptions, outResult?: BatchQueryResult): Promise<BatchQueryResult>;
147
+ processRows(batch: V[], tasks: Promise<Null<QueryResult>>[], options?: ProcessRowsOptions | boolean, outResult?: BatchQueryResult): Promise<BatchQueryResult>;
148
148
  handleFail(err: unknown, item: V, options?: HandleFailOptions): boolean;
149
149
  readTLSCert(value: unknown, cache?: boolean): string;
150
150
  readTLSConfig(options: SecureContextOptions, cache?: boolean): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e-mc/types",
3
- "version": "0.10.12",
3
+ "version": "0.10.14",
4
4
  "description": "Type definitions for E-mc.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "squared-functions"
18
18
  ],
19
19
  "author": "An Pham <anpham6@gmail.com>",
20
- "license": "BSD-3-Clause",
20
+ "license": "MIT",
21
21
  "homepage": "https://github.com/anpham6/e-mc#readme",
22
22
  "dependencies": {
23
23
  "bytes": "^3.1.2",