@ogcio/sag-client 0.7.5 → 0.7.7

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
@@ -26,13 +26,13 @@ The package is published to npm as `@ogcio/sag-client` via [release-please](http
26
26
  - `feat: ...` — bumps a minor version
27
27
  - `fix: ...` — bumps a patch version
28
28
  - `feat!: ...` or `BREAKING CHANGE:` — bumps a major version (once past v1)
29
- 2. When changes are merged to `main`, the pipeline runs release-please, which opens (or updates) a release PR that bumps the version in `package.json`, updates `CHANGELOG.md`, and updates `.release-please-manifest.json`
29
+ 2. When changes are merged to `main`, the pipeline runs release-please, which opens (or updates) a release PR that bumps the version in `package.json`, updates `CHANGELOG.md`, and updates `release-please/sag-client.manifest.json`
30
30
  3. When the release PR is merged, release-please creates a GitHub release and tag, and the pipeline publishes the package to npm
31
31
 
32
- **Configuration files (repo root):**
33
- - `release-please-config.json` — release-please package configuration
34
- - `.release-please-manifest.json` — current version tracking
35
- - `.azure/pipeline-sag-client.yaml` — Azure DevOps pipeline (CI + release)
32
+ **Configuration files:**
33
+ - `release-please/sag-client.config.json` — release-please package configuration
34
+ - `release-please/sag-client.manifest.json` — current version tracking
35
+ - `.azure/pipeline-lib.yaml` — Azure DevOps pipeline (CI + release)
36
36
 
37
37
  ## Entry Points
38
38
 
@@ -13,7 +13,7 @@ import type { SagClientConfig } from "../types";
13
13
  */
14
14
  export declare function SagClientProvider({ gatewayUrl, appName, onSessionExpired, children, }: SagClientConfig & {
15
15
  children: ReactNode;
16
- }): import("react/jsx-runtime").JSX.Element;
16
+ }): import("react").JSX.Element;
17
17
  /**
18
18
  * Access the `SagClient` instance from context.
19
19
  * Must be used within a `SagClientProvider`.
@@ -1 +1 @@
1
- {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/react/provider.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAiB,KAAK,SAAS,EAAuB,MAAM,OAAO,CAAA;AAC1E,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAI/C;;;;;;;;;GASG;AACH,wBAAgB,iBAAiB,CAAC,EAChC,UAAU,EACV,OAAO,EACP,gBAAgB,EAChB,QAAQ,GACT,EAAE,eAAe,GAAG;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,2CAW3C;AAED;;;GAGG;AACH,wBAAgB,YAAY,IAAI,SAAS,CAMxC"}
1
+ {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/react/provider.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAiB,KAAK,SAAS,EAAuB,MAAM,OAAO,CAAA;AAC1E,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAI/C;;;;;;;;;GASG;AACH,wBAAgB,iBAAiB,CAAC,EAChC,UAAU,EACV,OAAO,EACP,gBAAgB,EAChB,QAAQ,GACT,EAAE,eAAe,GAAG;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,+BAW3C;AAED;;;GAGG;AACH,wBAAgB,YAAY,IAAI,SAAS,CAMxC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ogcio/sag-client",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
4
4
  "description": "Framework-agnostic client for the Secure API Gateway — authentication, health checks, and authenticated fetching",
5
5
  "type": "module",
6
6
  "private": false,
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "devDependencies": {
55
55
  "@testing-library/react": "16.3.2",
56
- "@types/react": "19.2.14",
57
- "@types/react-dom": "19.2.3",
58
- "jsdom": "29.1.1",
59
- "react": "19.2.4",
60
- "react-dom": "19.2.4",
61
- "swr": "2.4.2",
56
+ "@types/react": "19.2.18",
57
+ "@types/react-dom": "19.2.4",
58
+ "jsdom": "30.0.1",
59
+ "react": "^19.2.4",
60
+ "react-dom": "19.2.8",
61
+ "swr": "^2.4.2",
62
62
  "typescript": "6.0.3"
63
63
  },
64
64
  "engines": {