@salesforce/webapp-template-app-react-template-vibe-experimental 1.39.0 → 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 +8 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/codegen.yml +82 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/package-lock.json +4 -4
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/package.json +1 -1
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/api/graphql-operations-types.ts +24 -37
- package/dist/package.json +1 -1
- package/package.json +2 -2
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
|
|
6
14
|
# [1.39.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.38.1...v1.39.0) (2026-02-19)
|
|
7
15
|
|
|
8
16
|
**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
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@radix-ui/react-label": "^2.1.8",
|
|
12
12
|
"@radix-ui/react-select": "^2.2.6",
|
|
13
13
|
"@radix-ui/react-slot": "^1.2.4",
|
|
14
|
-
"@salesforce/agentforce-conversation-client": "^1.
|
|
14
|
+
"@salesforce/agentforce-conversation-client": "^1.39.0",
|
|
15
15
|
"@salesforce/sdk-data": "^1.11.2",
|
|
16
16
|
"@salesforce/webapp-experimental": "*",
|
|
17
17
|
"@tailwindcss/vite": "^4.1.17",
|
|
@@ -4380,9 +4380,9 @@
|
|
|
4380
4380
|
]
|
|
4381
4381
|
},
|
|
4382
4382
|
"node_modules/@salesforce/agentforce-conversation-client": {
|
|
4383
|
-
"version": "1.
|
|
4384
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-1.
|
|
4385
|
-
"integrity": "sha512-
|
|
4383
|
+
"version": "1.39.0",
|
|
4384
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-1.39.0.tgz",
|
|
4385
|
+
"integrity": "sha512-XdGfZy6SS9UmMyjCtGo5OpZvJ6XNZQ7QoBWTv+A/xZ5b9G0tsMLtkiWZU2yqKZmFPS0DbVwou4xu4BjcQzhbEQ==",
|
|
4386
4386
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4387
4387
|
"dependencies": {
|
|
4388
4388
|
"@lightning-out/application": "2.1.1-rc.2"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@radix-ui/react-label": "^2.1.8",
|
|
18
18
|
"@radix-ui/react-select": "^2.2.6",
|
|
19
19
|
"@radix-ui/react-slot": "^1.2.4",
|
|
20
|
-
"@salesforce/agentforce-conversation-client": "^1.
|
|
20
|
+
"@salesforce/agentforce-conversation-client": "^1.39.0",
|
|
21
21
|
"@salesforce/sdk-data": "^1.11.2",
|
|
22
22
|
"@salesforce/webapp-experimental": "*",
|
|
23
23
|
"@tailwindcss/vite": "^4.1.17",
|
|
@@ -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:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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:
|
|
47
|
-
|
|
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:
|
|
51
|
-
LongTextArea: { input:
|
|
52
|
-
Longitude: { input:
|
|
53
|
-
MultiPicklist: { input:
|
|
54
|
-
Percent: { input:
|
|
55
|
-
PhoneNumber: { input:
|
|
56
|
-
Picklist: { input:
|
|
57
|
-
RichTextArea: { input:
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
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?:
|
|
122
|
-
Industry?: { value?:
|
|
123
|
-
Website?: { value?:
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-app-react-template-vibe-experimental",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.40.0",
|
|
4
4
|
"description": "Vibe coding 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": "
|
|
42
|
+
"gitHead": "fb08cea2853492f373c8267f2327f8c8085504ef"
|
|
43
43
|
}
|