@cardano-sdk/util-rxjs 0.5.14 → 0.6.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.
@@ -1,3 +1,5 @@
1
1
  import { Observable } from 'rxjs';
2
+ import { RetryBackoffConfig } from 'backoff-rxjs';
2
3
  export declare type ObservableType<O> = O extends Observable<infer T> ? T : unknown;
4
+ export declare type ReconnectionConfig = Omit<RetryBackoffConfig, 'shouldRetry'>;
3
5
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,oBAAY,cAAc,CAAC,CAAC,IAAI,CAAC,SAAS,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAElD,oBAAY,cAAc,CAAC,CAAC,IAAI,CAAC,SAAS,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC;AAE5E,oBAAY,kBAAkB,GAAG,IAAI,CAAC,kBAAkB,EAAE,aAAa,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cardano-sdk/util-rxjs",
3
- "version": "0.5.14",
3
+ "version": "0.6.1",
4
4
  "description": "RxJS extensions",
5
5
  "engines": {
6
6
  "node": ">=16.20.2"
@@ -24,33 +24,32 @@
24
24
  "build:cjs": "tsc --build src",
25
25
  "build": "run-s build:cjs build:esm module-fixup",
26
26
  "circular-deps:check": "madge --circular dist/cjs",
27
- "module-fixup": "shx cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
28
- "tscNoEmit": "shx echo typescript --noEmit command not implemented yet",
29
- "cleanup:dist": "shx rm -rf dist",
30
- "cleanup:nm": "shx rm -rf node_modules",
27
+ "module-fixup": "cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
28
+ "tscNoEmit": "echo typescript --noEmit command not implemented yet",
29
+ "cleanup:dist": "rm -rf dist",
30
+ "cleanup:nm": "rm -rf node_modules",
31
31
  "cleanup": "run-s cleanup:dist cleanup:nm",
32
32
  "lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
33
33
  "lint:fix": "yarn lint --fix",
34
34
  "test": "jest -c ./jest.config.js",
35
35
  "test:build:verify": "tsc --build ./test",
36
- "coverage": "yarn test --coverage",
36
+ "coverage": "yarn test --coverage || true",
37
37
  "prepack": "yarn build",
38
38
  "test:debug": "DEBUG=true yarn test",
39
- "test:e2e": "shx echo 'test:e2e' command not implemented yet"
39
+ "test:e2e": "echo 'test:e2e' command not implemented yet"
40
40
  },
41
41
  "dependencies": {
42
- "@cardano-sdk/util": "~0.14.2",
42
+ "@cardano-sdk/util": "~0.14.3",
43
43
  "backoff-rxjs": "^7.0.0",
44
44
  "rxjs": "^7.4.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@cardano-sdk/util-dev": "~0.17.2",
47
+ "@cardano-sdk/util-dev": "~0.18.0",
48
48
  "eslint": "^7.32.0",
49
49
  "jest": "^28.1.3",
50
50
  "madge": "^5.0.1",
51
51
  "npm-run-all": "^4.1.5",
52
52
  "rxjs": "^7.4.0",
53
- "shx": "^0.3.3",
54
53
  "ts-jest": "^28.0.7",
55
54
  "typescript": "^4.7.4"
56
55
  },
@@ -60,5 +59,5 @@
60
59
  "LICENSE",
61
60
  "NOTICE"
62
61
  ],
63
- "gitHead": "24b31813bb58d99263bdd13e881260089235f071"
62
+ "gitHead": "02a0eff7b7b7a3b98b42fd19b2ae85cfc4e7d87f"
64
63
  }