@edge-zuq/core 1.4.0 → 1.4.1

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.
@@ -3,4 +3,5 @@
3
3
  export * from "./remote-get-image-list-factory.js";
4
4
  export * from "./remote-get-comment-list-factory.js";
5
5
  export * from "./remote-send-diagnostics-factory.js";
6
+ export * from "./remote-get-app-config-factory.js";
6
7
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["main/factories/use-cases/index.ts"],"mappings":";;AAAA,cAAc,oCAAiC;AAC/C,cAAc,sCAAmC;AACjD,cAAc,sCAAmC","ignoreList":[]}
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["main/factories/use-cases/index.ts"],"mappings":";;AAAA,cAAc,oCAAiC;AAC/C,cAAc,sCAAmC;AACjD,cAAc,sCAAmC;AACjD,cAAc,oCAAiC","ignoreList":[]}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+
3
+ import { RemoteGetAppConfig } from "../../../data/use-cases/index.js";
4
+ export const makeRemoteGetAppConfig = (url, httpClient) => {
5
+ return new RemoteGetAppConfig(url, httpClient);
6
+ };
7
+ //# sourceMappingURL=remote-get-app-config-factory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["RemoteGetAppConfig","makeRemoteGetAppConfig","url","httpClient"],"sourceRoot":"../../../../../src","sources":["main/factories/use-cases/remote-get-app-config-factory.ts"],"mappings":";;AACA,SAASA,kBAAkB,QAAQ,kCAAyB;AAE5D,OAAO,MAAMC,sBAAsB,GAAGA,CAACC,GAAW,EAAEC,UAAsB,KAAK;EAC7E,OAAO,IAAIH,kBAAkB,CAACE,GAAG,EAAEC,UAAU,CAAC;AAChD,CAAC","ignoreList":[]}
@@ -1,4 +1,5 @@
1
1
  export * from './remote-get-image-list-factory';
2
2
  export * from './remote-get-comment-list-factory';
3
3
  export * from './remote-send-diagnostics-factory';
4
+ export * from './remote-get-app-config-factory';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { HttpClient } from '../../../data/protocols';
2
+ import { RemoteGetAppConfig } from '../../../data/use-cases';
3
+ export declare const makeRemoteGetAppConfig: (url: string, httpClient: HttpClient) => RemoteGetAppConfig;
4
+ //# sourceMappingURL=remote-get-app-config-factory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remote-get-app-config-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/remote-get-app-config-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,sBAAsB,GAAI,KAAK,MAAM,EAAE,YAAY,UAAU,uBAEzE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edge-zuq/core",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "ZUQ App core components",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "start": "yarn workspace storybook start",
36
36
  "android": "yarn workspace storybook android",
37
37
  "ios": "yarn workspace storybook ios",
38
- "bundle": "yarn prepare && yarn pack --filename zuq-core-1.4.0-local.tgz",
38
+ "bundle": "yarn prepare && yarn pack --filename zuq-core-1.4.1-local.tgz",
39
39
  "clean": "del-cli lib",
40
40
  "prepare": "bob build",
41
41
  "typecheck": "tsc",
@@ -1,3 +1,4 @@
1
1
  export * from './remote-get-image-list-factory';
2
2
  export * from './remote-get-comment-list-factory';
3
3
  export * from './remote-send-diagnostics-factory';
4
+ export * from './remote-get-app-config-factory';
@@ -0,0 +1,6 @@
1
+ import type { HttpClient } from '../../../data/protocols';
2
+ import { RemoteGetAppConfig } from '../../../data/use-cases';
3
+
4
+ export const makeRemoteGetAppConfig = (url: string, httpClient: HttpClient) => {
5
+ return new RemoteGetAppConfig(url, httpClient);
6
+ };