infinity-forge 14.3.4 → 14.3.6

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.
@@ -2,5 +2,5 @@ export type promisesType<T> = {
2
2
  [K in keyof T]: Promise<T[K]>;
3
3
  };
4
4
  export declare function settleRequests<T extends Record<string, unknown>>(promises: promisesType<T>): Promise<{
5
- [K in keyof T]: T[K] | undefined;
5
+ [K in keyof T]: T[K] | null;
6
6
  }>;
@@ -54,7 +54,7 @@ function settleRequests(promises) {
54
54
  entries.forEach(function (_a, index) {
55
55
  var key = _a[0];
56
56
  var result = results[index];
57
- output[key] = result.status === 'fulfilled' ? result.value : undefined;
57
+ output[key] = result.status === 'fulfilled' ? result.value : null;
58
58
  });
59
59
  return [2 /*return*/, output];
60
60
  }
@@ -1 +1 @@
1
- {"version":3,"file":"settle-requests.js","sourceRoot":"","sources":["../../../../src/ui/utils/http/settle-requests.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wCAeC;AAfD,SAAsB,cAAc,CAClC,QAAyB;;;;;;oBAEnB,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAqC,CAAA;oBAE5D,qBAAM,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,UAAC,EAAW;gCAAR,OAAO,QAAA;4BAAM,OAAA,OAAO;wBAAP,CAAO,CAAC,CAAC,EAAA;;oBAAzE,OAAO,GAAG,SAA+D;oBAEzE,MAAM,GAAG,EAA0C,CAAA;oBAEzD,OAAO,CAAC,OAAO,CAAC,UAAC,EAAK,EAAE,KAAK;4BAAX,GAAG,QAAA;wBACnB,IAAM,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAA;wBAC7B,MAAM,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,KAAK,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAA;oBACxE,CAAC,CAAC,CAAA;oBAEF,sBAAO,MAAM,EAAA;;;;CACd"}
1
+ {"version":3,"file":"settle-requests.js","sourceRoot":"","sources":["../../../../src/ui/utils/http/settle-requests.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wCAeC;AAfD,SAAsB,cAAc,CAClC,QAAyB;;;;;;oBAEnB,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAqC,CAAA;oBAE5D,qBAAM,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,UAAC,EAAW;gCAAR,OAAO,QAAA;4BAAM,OAAA,OAAO;wBAAP,CAAO,CAAC,CAAC,EAAA;;oBAAzE,OAAO,GAAG,SAA+D;oBAEzE,MAAM,GAAG,EAAqC,CAAA;oBAEpD,OAAO,CAAC,OAAO,CAAC,UAAC,EAAK,EAAE,KAAK;4BAAX,GAAG,QAAA;wBACnB,IAAM,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAA;wBAC7B,MAAM,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,KAAK,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAA;oBACnE,CAAC,CAAC,CAAA;oBAEF,sBAAO,MAAM,EAAA;;;;CACd"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-forge",
3
- "version": "14.3.4",
3
+ "version": "14.3.6",
4
4
  "description": "codie Library",
5
5
  "main": "./dist/index",
6
6
  "module": "./dist/index",