@spoosh/angular 0.6.1 → 0.6.2

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Angular signals integration for Spoosh - `injectRead`, `injectWrite`, and `injectInfiniteRead`.
4
4
 
5
- **[Documentation](https://spoosh.dev/docs/integrations/angular)** · **Requirements:** TypeScript >= 5.0, Angular >= 16.0
5
+ **[Documentation](https://spoosh.dev/docs/angular)** · **Requirements:** TypeScript >= 5.0, Angular >= 16.0
6
6
 
7
7
  ## Installation
8
8
 
package/dist/index.js CHANGED
@@ -283,7 +283,7 @@ function createInjectRead(options) {
283
283
  currentController?.abort();
284
284
  };
285
285
  const trigger = async (triggerOptions) => {
286
- const { force = false, ...overrideOptions } = triggerOptions ?? {};
286
+ const { force = true, ...overrideOptions } = triggerOptions ?? {};
287
287
  const hasOverrides = Object.keys(overrideOptions).length > 0;
288
288
  if (!hasOverrides) {
289
289
  if (!currentController) {
package/dist/index.mjs CHANGED
@@ -268,7 +268,7 @@ function createInjectRead(options) {
268
268
  currentController?.abort();
269
269
  };
270
270
  const trigger = async (triggerOptions) => {
271
- const { force = false, ...overrideOptions } = triggerOptions ?? {};
271
+ const { force = true, ...overrideOptions } = triggerOptions ?? {};
272
272
  const hasOverrides = Object.keys(overrideOptions).length > 0;
273
273
  if (!hasOverrides) {
274
274
  if (!currentController) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spoosh/angular",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "license": "MIT",
5
5
  "description": "Angular signals integration for Spoosh API client",
6
6
  "keywords": [
@@ -13,13 +13,13 @@
13
13
  ],
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "git+https://github.com/nxnom/spoosh.git",
16
+ "url": "git+https://github.com/spooshdev/spoosh.git",
17
17
  "directory": "packages/angular"
18
18
  },
19
19
  "bugs": {
20
- "url": "https://github.com/nxnom/spoosh/issues"
20
+ "url": "https://github.com/spooshdev/spoosh/issues"
21
21
  },
22
- "homepage": "https://spoosh.dev/angular/docs",
22
+ "homepage": "https://spoosh.dev/docs/angular",
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@angular/core": "^19.0.0",
42
- "@spoosh/core": "0.9.3",
42
+ "@spoosh/core": "0.10.0",
43
43
  "@spoosh/test-utils": "0.1.5"
44
44
  },
45
45
  "scripts": {