@salesforce/ui-bundle-template-base-angular-app 11.4.4 → 11.4.5

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.4.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v11.4.4...v11.4.5) (2026-07-01)
7
+
8
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-angular-app
9
+
6
10
  ## [11.4.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v11.4.3...v11.4.4) (2026-06-30)
7
11
 
8
12
  **Note:** Version bump only for package @salesforce/ui-bundle-template-base-angular-app
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-base-angular-app",
3
- "version": "11.4.4",
3
+ "version": "11.4.5",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -22,8 +22,8 @@
22
22
  "@angular/forms": "^21.2.0",
23
23
  "@angular/platform-browser": "^21.2.0",
24
24
  "@angular/router": "^21.2.0",
25
- "@salesforce/angular-plugin-ui-bundle": "^10.24.0",
26
- "@salesforce/platform-sdk": "^10.24.0",
25
+ "@salesforce/angular-plugin-ui-bundle": "^11.4.4",
26
+ "@salesforce/platform-sdk": "^11.4.4",
27
27
  "rxjs": "~7.8.0",
28
28
  "tslib": "^2.3.0"
29
29
  },
@@ -16,9 +16,6 @@ function isMutation(operation: string): boolean {
16
16
  * handling. Mutations are routed to sdk.graphql.mutate and everything else to
17
17
  * sdk.graphql.query (the SDK rejects an operation sent to the wrong method).
18
18
  * Use with gql-tagged queries and generated operation types for type-safe calls.
19
- *
20
- * Injectable mirror of the React template's src/api/graphqlClient.ts so both
21
- * frameworks share the same platform-sdk data-fetch contract.
22
19
  */
23
20
  @Injectable({ providedIn: 'root' })
24
21
  export class GraphqlClient {