@jealous-robot-dev/shared-types-responses 1.20.27 → 1.20.28

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/build/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './services/media';
1
2
  export * from './services/errors';
2
3
  export * from './services/common';
3
4
  export * from './services/cookies';
package/build/index.js CHANGED
@@ -10,6 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./services/media"), exports);
13
14
  __exportStar(require("./services/errors"), exports);
14
15
  __exportStar(require("./services/common"), exports);
15
16
  __exportStar(require("./services/cookies"), exports);
@@ -0,0 +1,11 @@
1
+ export declare enum PPUSizes {
2
+ LARGE = "large",
3
+ SMALL = "small",
4
+ MEDIUM = "medium"
5
+ }
6
+ export declare const ppusizeslist: PPUSizes[];
7
+ export declare const pputresholds: {
8
+ size: PPUSizes;
9
+ width: number;
10
+ quality: number;
11
+ }[];
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.pputresholds = exports.ppusizeslist = exports.PPUSizes = void 0;
4
+ var PPUSizes;
5
+ (function (PPUSizes) {
6
+ PPUSizes["LARGE"] = "large";
7
+ PPUSizes["SMALL"] = "small";
8
+ PPUSizes["MEDIUM"] = "medium";
9
+ })(PPUSizes = exports.PPUSizes || (exports.PPUSizes = {}));
10
+ exports.ppusizeslist = [
11
+ PPUSizes.LARGE, PPUSizes.MEDIUM, PPUSizes.SMALL
12
+ ];
13
+ exports.pputresholds = [
14
+ {
15
+ size: PPUSizes.LARGE,
16
+ width: 264,
17
+ quality: 20
18
+ },
19
+ {
20
+ size: PPUSizes.MEDIUM,
21
+ width: 132,
22
+ quality: 212
23
+ },
24
+ {
25
+ size: PPUSizes.SMALL,
26
+ width: 68,
27
+ quality: 10
28
+ },
29
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.20.27",
3
+ "version": "1.20.28",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",