@salesforce/webapp-template-app-react-sample-b2e-experimental 1.38.1 → 1.40.0

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/dist/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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
+ # [1.40.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.39.0...v1.40.0) (2026-02-20)
7
+
8
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
9
+
10
+
11
+
12
+
13
+
14
+ # [1.39.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.1...v1.39.0) (2026-02-19)
15
+
16
+ **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.38.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.0...v1.38.1) (2026-02-19)
7
23
 
8
24
  **Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
@@ -9,4 +9,86 @@ generates:
9
9
  onlyOperationTypes: true
10
10
  skipTypename: true
11
11
  preResolveTypes: true
12
+ scalars:
13
+ # String-serialized scalars
14
+ JSON:
15
+ input: 'string'
16
+ output: 'string'
17
+ Date:
18
+ input: 'string'
19
+ output: 'string'
20
+ DateTime:
21
+ input: 'string'
22
+ output: 'string'
23
+ Time:
24
+ input: 'string'
25
+ output: 'string'
26
+ Email:
27
+ input: 'string'
28
+ output: 'string'
29
+ Url:
30
+ input: 'string'
31
+ output: 'string'
32
+ PhoneNumber:
33
+ input: 'string'
34
+ output: 'string'
35
+ Picklist:
36
+ input: 'string'
37
+ output: 'string'
38
+ MultiPicklist:
39
+ input: 'string'
40
+ output: 'string'
41
+ TextArea:
42
+ input: 'string'
43
+ output: 'string'
44
+ LongTextArea:
45
+ input: 'string'
46
+ output: 'string'
47
+ RichTextArea:
48
+ input: 'string'
49
+ output: 'string'
50
+ EncryptedString:
51
+ input: 'string'
52
+ output: 'string'
53
+ Base64:
54
+ input: 'string'
55
+ output: 'string'
56
+ IdOrRef:
57
+ input: 'string'
58
+ output: 'string'
59
+ # BigDecimal-serialized scalars (accepts number or string, returns number)
60
+ Currency:
61
+ input: 'number | string'
62
+ output: 'number'
63
+ BigDecimal:
64
+ input: 'number | string'
65
+ output: 'number'
66
+ Double:
67
+ input: 'number | string'
68
+ output: 'number'
69
+ Percent:
70
+ input: 'number | string'
71
+ output: 'number'
72
+ Longitude:
73
+ input: 'number | string'
74
+ output: 'number'
75
+ Latitude:
76
+ input: 'number | string'
77
+ output: 'number'
78
+ # Integer-like scalars
79
+ Long:
80
+ input: 'number'
81
+ output: 'number'
82
+ BigInteger:
83
+ input: 'number'
84
+ output: 'number'
85
+ Short:
86
+ input: 'number'
87
+ output: 'number'
88
+ Byte:
89
+ input: 'number'
90
+ output: 'number'
91
+ Char:
92
+ input: 'number'
93
+ output: 'number'
12
94
  overwrite: true
@@ -12,9 +12,7 @@ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
12
  export type MakeEmpty<
13
13
  T extends { [key: string]: unknown },
14
14
  K extends keyof T,
15
- > = {
16
- [_ in K]?: never;
17
- };
15
+ > = { [_ in K]?: never };
18
16
  export type Incremental<T> =
19
17
  | T
20
18
  | {
@@ -27,39 +25,28 @@ export type Scalars = {
27
25
  Boolean: { input: boolean; output: boolean };
28
26
  Int: { input: number; output: number };
29
27
  Float: { input: number; output: number };
30
- Base64: { input: any; output: any };
31
- /** An arbitrary precision signed decimal */
32
- BigDecimal: { input: any; output: any };
33
- /** An arbitrary precision signed integer */
34
- BigInteger: { input: any; output: any };
35
- /** An 8-bit signed integer */
36
- Byte: { input: any; output: any };
37
- /** A UTF-16 code unit; a character on Unicode's BMP */
38
- Char: { input: any; output: any };
39
- Currency: { input: any; output: any };
40
- Date: { input: any; output: any };
41
- DateTime: { input: any; output: any };
42
- Double: { input: any; output: any };
43
- Email: { input: any; output: any };
44
- EncryptedString: { input: any; output: any };
28
+ Base64: { input: string; output: string };
29
+ Currency: { input: number | string; output: number };
30
+ Date: { input: string; output: string };
31
+ DateTime: { input: string; output: string };
32
+ Double: { input: number | string; output: number };
33
+ Email: { input: string; output: string };
34
+ EncryptedString: { input: string; output: string };
45
35
  /** Can be set to an ID or a Reference to the result of another mutation operation. */
46
- IdOrRef: { input: any; output: any };
47
- JSON: { input: any; output: any };
48
- Latitude: { input: any; output: any };
36
+ IdOrRef: { input: string; output: string };
37
+ Latitude: { input: number | string; output: number };
49
38
  /** A 64-bit signed integer */
50
- Long: { input: any; output: any };
51
- LongTextArea: { input: any; output: any };
52
- Longitude: { input: any; output: any };
53
- MultiPicklist: { input: any; output: any };
54
- Percent: { input: any; output: any };
55
- PhoneNumber: { input: any; output: any };
56
- Picklist: { input: any; output: any };
57
- RichTextArea: { input: any; output: any };
58
- /** A 16-bit signed integer */
59
- Short: { input: any; output: any };
60
- TextArea: { input: any; output: any };
61
- Time: { input: any; output: any };
62
- Url: { input: any; output: any };
39
+ Long: { input: number; output: number };
40
+ LongTextArea: { input: string; output: string };
41
+ Longitude: { input: number | string; output: number };
42
+ MultiPicklist: { input: string; output: string };
43
+ Percent: { input: number | string; output: number };
44
+ PhoneNumber: { input: string; output: string };
45
+ Picklist: { input: string; output: string };
46
+ RichTextArea: { input: string; output: string };
47
+ TextArea: { input: string; output: string };
48
+ Time: { input: string; output: string };
49
+ Url: { input: string; output: string };
63
50
  };
64
51
 
65
52
  export enum DataType {
@@ -118,9 +105,9 @@ export type GetHighRevenueAccountsQuery = {
118
105
  node?: {
119
106
  Id: string;
120
107
  Name?: { value?: string | null } | null;
121
- AnnualRevenue?: { value?: any | null } | null;
122
- Industry?: { value?: any | null } | null;
123
- Website?: { value?: any | null } | null;
108
+ AnnualRevenue?: { value?: number | null } | null;
109
+ Industry?: { value?: string | null } | null;
110
+ Website?: { value?: string | null } | null;
124
111
  } | null;
125
112
  } | null> | null;
126
113
  } | null;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
3
- "version": "1.38.1",
3
+ "version": "1.40.0",
4
4
  "description": "Base SFDX project template",
5
5
  "private": true,
6
6
  "files": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-app-react-sample-b2e-experimental",
3
- "version": "1.38.1",
3
+ "version": "1.40.0",
4
4
  "description": "B2E starter app template",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "",
@@ -39,5 +39,5 @@
39
39
  }
40
40
  }
41
41
  },
42
- "gitHead": "2c6b1587a57f8cf01f5150f21bc0e7c0a52507fd"
42
+ "gitHead": "fb08cea2853492f373c8267f2327f8c8085504ef"
43
43
  }