@salesforce/templates 66.7.13 → 66.9.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.
Files changed (105) hide show
  1. package/lib/generators/lightningEmbeddingGenerator.d.ts +6 -0
  2. package/lib/generators/lightningEmbeddingGenerator.js +68 -0
  3. package/lib/generators/lightningEmbeddingGenerator.js.map +1 -0
  4. package/lib/i18n/i18n.d.ts +6 -0
  5. package/lib/i18n/i18n.js +6 -0
  6. package/lib/i18n/i18n.js.map +1 -1
  7. package/lib/index.d.ts +1 -0
  8. package/lib/index.js +1 -0
  9. package/lib/index.js.map +1 -1
  10. package/lib/templates/lightningembedding/default/default.css +5 -0
  11. package/lib/templates/lightningembedding/default/default.html +7 -0
  12. package/lib/templates/lightningembedding/default/default.js +5 -0
  13. package/lib/templates/lightningembedding/default/default.js-meta.xml +12 -0
  14. package/lib/templates/project/reactexternalapp/AGENT.md +3 -3
  15. package/lib/templates/project/reactexternalapp/CHANGELOG.md +428 -0
  16. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +792 -2031
  17. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package.json +4 -4
  18. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountObjectDetailPage.tsx +7 -9
  19. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountSearch.tsx +7 -15
  20. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/api/objectSearchService.ts +14 -19
  21. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/NumericRangeFilter.tsx +9 -5
  22. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/SearchFilter.tsx +5 -3
  23. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/TextFilter.tsx +5 -3
  24. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useAsyncData.ts +11 -4
  25. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/api/userProfileApi.ts +12 -11
  26. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/authenticationConfig.ts +9 -9
  27. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/context/AuthContext.tsx +21 -4
  28. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/forms/auth-form.tsx +15 -1
  29. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/hooks/form.tsx +1 -1
  30. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layouts/privateRouteLayout.tsx +2 -11
  31. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ChangePassword.tsx +21 -5
  32. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ForgotPassword.tsx +20 -5
  33. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Login.tsx +20 -5
  34. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Profile.tsx +80 -43
  35. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/Register.tsx +16 -5
  36. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/pages/ResetPassword.tsx +20 -5
  37. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/utils/helpers.ts +15 -52
  38. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/api/graphqlClient.ts +13 -13
  39. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/components/alerts/status-alert.tsx +11 -8
  40. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/components/ui/input.tsx +1 -1
  41. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/hooks/useAsyncData.ts +67 -0
  42. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +7 -9
  43. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/pages/AccountSearch.tsx +7 -15
  44. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/routes.tsx +19 -25
  45. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/tsconfig.json +4 -6
  46. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/vite-env.d.ts +0 -3
  47. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleAuthUtils.cls-meta.xml +1 -1
  48. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleChangePassword.cls-meta.xml +1 -1
  49. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleForgotPassword.cls-meta.xml +1 -1
  50. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleLogin.cls-meta.xml +1 -1
  51. package/lib/templates/project/reactexternalapp/_p_/_m_/classes/UIBundleRegistration.cls-meta.xml +1 -1
  52. package/lib/templates/project/reactexternalapp/_p_/_m_/package.xml +1 -1
  53. package/lib/templates/project/reactexternalapp/package.json +1 -1
  54. package/lib/templates/project/reactexternalapp/scripts/org-setup.config.json +0 -1
  55. package/lib/templates/project/reactexternalapp/scripts/org-setup.mjs +528 -44
  56. package/lib/templates/project/reactexternalapp/sfdx-project.json +1 -1
  57. package/lib/templates/project/reactinternalapp/AGENT.md +3 -3
  58. package/lib/templates/project/reactinternalapp/CHANGELOG.md +428 -0
  59. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +784 -2036
  60. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package.json +5 -5
  61. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/reactinternalapp.uibundle-meta.xml +1 -0
  62. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountObjectDetailPage.tsx +7 -9
  63. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/_ex_/pages/AccountSearch.tsx +7 -15
  64. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/api/objectSearchService.ts +14 -19
  65. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/NumericRangeFilter.tsx +9 -5
  66. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/SearchFilter.tsx +5 -3
  67. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/components/filters/TextFilter.tsx +5 -3
  68. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useAsyncData.ts +11 -4
  69. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/api/graphqlClient.ts +13 -13
  70. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/AgentforceConversationClient.tsx +40 -44
  71. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/alerts/status-alert.tsx +11 -8
  72. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/ui/input.tsx +1 -1
  73. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/hooks/useAsyncData.ts +67 -0
  74. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +7 -9
  75. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountSearch.tsx +7 -15
  76. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/conversation.ts +9 -0
  77. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/globals.d.ts +13 -0
  78. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/tsconfig.json +4 -6
  79. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/vite-env.d.ts +0 -3
  80. package/lib/templates/project/reactinternalapp/_p_/_m_/applications/reactinternalapp.app-meta.xml +17 -0
  81. package/lib/templates/project/reactinternalapp/_p_/_m_/permissionsets/reactinternalapp_Access.permissionset-meta.xml +9 -0
  82. package/lib/templates/project/reactinternalapp/package.json +1 -1
  83. package/lib/templates/project/reactinternalapp/scripts/org-setup.config.json +6 -3
  84. package/lib/templates/project/reactinternalapp/scripts/org-setup.mjs +528 -44
  85. package/lib/templates/project/reactinternalapp/sfdx-project.json +1 -1
  86. package/lib/templates/uiBundles/reactbasic/package-lock.json +1040 -593
  87. package/lib/templates/uiBundles/reactbasic/package.json +3 -3
  88. package/lib/templates/uiBundles/reactbasic/src/api/graphqlClient.ts +13 -13
  89. package/lib/templates/uiBundles/reactbasic/src/components/alerts/status-alert.tsx +11 -8
  90. package/lib/templates/uiBundles/reactbasic/src/components/ui/input.tsx +1 -1
  91. package/lib/templates/uiBundles/reactbasic/src/hooks/useAsyncData.ts +67 -0
  92. package/lib/templates/uiBundles/reactbasic/tsconfig.json +4 -6
  93. package/lib/templates/uiBundles/reactbasic/vite-env.d.ts +0 -3
  94. package/lib/tsconfig.tsbuildinfo +1 -1
  95. package/lib/utils/lightningEmbedding.d.ts +12 -0
  96. package/lib/utils/lightningEmbedding.js +50 -0
  97. package/lib/utils/lightningEmbedding.js.map +1 -0
  98. package/lib/utils/types.d.ts +15 -6
  99. package/lib/utils/types.js +8 -5
  100. package/lib/utils/types.js.map +1 -1
  101. package/package.json +6 -6
  102. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useCachedAsyncData.ts +0 -188
  103. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layout/card-skeleton.tsx +0 -38
  104. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/src/_f_/authentication/layouts/authenticationRouteLayout.tsx +0 -21
  105. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/_f_/_os_/hooks/useCachedAsyncData.ts +0 -188
@@ -0,0 +1,6 @@
1
+ import { LightningEmbeddingOptions } from '../utils/types';
2
+ import { BaseGenerator } from './baseGenerator';
3
+ export default class LightningEmbeddingGenerator extends BaseGenerator<LightningEmbeddingOptions> {
4
+ validateOptions(): void;
5
+ generate(): Promise<void>;
6
+ }
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ /*
3
+ * Copyright (c) 2026, salesforce.com, inc.
4
+ * All rights reserved.
5
+ * Licensed under the BSD 3-Clause license.
6
+ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ const tslib_1 = require("tslib");
10
+ const kit_1 = require("@salesforce/kit");
11
+ const path = require("path");
12
+ const i18n_1 = require("../i18n");
13
+ const utils_1 = require("../utils");
14
+ const lightningEmbedding_1 = require("../utils/lightningEmbedding");
15
+ const baseGenerator_1 = require("./baseGenerator");
16
+ const VALID_SANDBOX_TOKENS = new Set(lightningEmbedding_1.LIGHTNING_EMBEDDING_SANDBOX_TOKENS);
17
+ class LightningEmbeddingGenerator extends baseGenerator_1.BaseGenerator {
18
+ validateOptions() {
19
+ utils_1.CreateUtil.checkInputs(this.options.componentname);
20
+ const fileparts = path.resolve(this.outputdir).split(path.sep);
21
+ if (!this.options.internal && !fileparts.includes('lwc')) {
22
+ throw new Error(i18n_1.nls.localize('MissingLWCDir'));
23
+ }
24
+ if (!(0, lightningEmbedding_1.isAllowedLightningEmbeddingSrcUrl)(this.options.src)) {
25
+ throw new Error(i18n_1.nls.localize('InvalidLightningEmbeddingSrcUrl'));
26
+ }
27
+ if (this.options.src.includes("'")) {
28
+ throw new Error(i18n_1.nls.localize('InvalidLightningEmbeddingSrcChar'));
29
+ }
30
+ if (!this.options.shellTitle || !this.options.shellTitle.trim()) {
31
+ throw new Error(i18n_1.nls.localize('MissingLightningEmbeddingShellTitle'));
32
+ }
33
+ if (this.options.shellTitle.includes('"')) {
34
+ throw new Error(i18n_1.nls.localize('InvalidLightningEmbeddingShellTitleChar'));
35
+ }
36
+ const tokens = this.options.sandbox.split(/\s+/).filter(Boolean);
37
+ const invalid = tokens.filter((t) => !VALID_SANDBOX_TOKENS.has(t));
38
+ if (invalid.length) {
39
+ throw new Error(i18n_1.nls.localize('InvalidLightningEmbeddingSandboxToken', [
40
+ invalid.join(', '),
41
+ [...VALID_SANDBOX_TOKENS].join(', '),
42
+ ]));
43
+ }
44
+ }
45
+ generate() {
46
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
47
+ const { componentname, src, sandbox, shellTitle, internal } = this.options;
48
+ const pascalCaseComponentName = `${componentname
49
+ .substring(0, 1)
50
+ .toUpperCase()}${componentname.substring(1)}`;
51
+ const camelCaseComponentName = `${componentname
52
+ .substring(0, 1)
53
+ .toLowerCase()}${componentname.substring(1)}`;
54
+ this.sourceRootWithPartialPath(path.join('lightningembedding', 'default'));
55
+ yield this.render(this.templatePath('default.html'), this.destinationPath(path.join(this.outputdir, camelCaseComponentName, `${camelCaseComponentName}.html`)), { sandbox, shellTitle });
56
+ yield this.render(this.templatePath('default.js'), this.destinationPath(path.join(this.outputdir, camelCaseComponentName, `${camelCaseComponentName}.js`)), { pascalCaseComponentName, src });
57
+ yield this.render(this.templatePath('default.css'), this.destinationPath(path.join(this.outputdir, camelCaseComponentName, `${camelCaseComponentName}.css`)), {});
58
+ if (!internal) {
59
+ const masterLabel = (0, kit_1.camelCaseToTitleCase)(componentname)
60
+ .replace(/</g, '&lt;')
61
+ .replace(/>/g, '&gt;');
62
+ yield this.render(this.templatePath('default.js-meta.xml'), this.destinationPath(path.join(this.outputdir, camelCaseComponentName, `${camelCaseComponentName}.js-meta.xml`)), { apiVersion: this.apiversion, masterLabel });
63
+ }
64
+ });
65
+ }
66
+ }
67
+ exports.default = LightningEmbeddingGenerator;
68
+ //# sourceMappingURL=lightningEmbeddingGenerator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lightningEmbeddingGenerator.js","sourceRoot":"","sources":["../../src/generators/lightningEmbeddingGenerator.ts"],"names":[],"mappings":"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"}
@@ -38,4 +38,10 @@ export declare const messages: {
38
38
  MissingFlexipageTemplate: string;
39
39
  FailedToLoadFlexipageTemplatesRepo: string;
40
40
  AlphaNumericValidationError: string;
41
+ InvalidLightningEmbeddingSrcUrl: string;
42
+ InvalidLightningEmbeddingSrcChar: string;
43
+ InvalidLightningEmbeddingSandboxToken: string;
44
+ MissingLightningEmbeddingShellTitle: string;
45
+ InvalidLightningEmbeddingShellTitleChar: string;
46
+ LightningEmbeddingBundle: string;
41
47
  };
package/lib/i18n/i18n.js CHANGED
@@ -47,5 +47,11 @@ exports.messages = {
47
47
  MissingFlexipageTemplate: 'FlexiPage template "%s" not found in repository: %s. Please verify the template name is correct.',
48
48
  FailedToLoadFlexipageTemplatesRepo: 'Failed to load the FlexiPage templates repository. Please verify the URL is correct and accessible.',
49
49
  AlphaNumericValidationError: '%s must contain only alphanumeric characters.',
50
+ InvalidLightningEmbeddingSrcUrl: 'The --src flag must be an absolute https URL (e.g., https://app.example.com). Plain http is only allowed for localhost or 127.0.0.1.',
51
+ InvalidLightningEmbeddingSrcChar: 'The --src flag must not contain a single-quote character; it would break the generated JavaScript string literal.',
52
+ InvalidLightningEmbeddingSandboxToken: 'Invalid sandbox tokens: %s. Valid tokens are: %s.',
53
+ MissingLightningEmbeddingShellTitle: 'The --shell-title flag is required and must be a non-empty string used as the iframe accessible name.',
54
+ InvalidLightningEmbeddingShellTitleChar: 'The --shell-title flag must not contain a double-quote character; it would break the generated HTML attribute.',
55
+ LightningEmbeddingBundle: 'A Lightning Web Component that wraps the lightning-embedding base component.',
50
56
  };
51
57
  //# sourceMappingURL=i18n.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"i18n.js","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEH;;;;;;;;;GASG;AACU,QAAA,QAAQ,GAAG;IACtB,qBAAqB,EAAE,iDAAiD;IACxE,4BAA4B,EAAE,gCAAgC;IAC9D,sBAAsB,EAAE,oCAAoC;IAC5D,qBAAqB,EAAE,+CAA+C;IACtE,eAAe,EAAE,uDAAuD;IAExE,uBAAuB,EACrB,sEAAsE;IACxE,cAAc,EAAE,2DAA2D;IAC3E,aAAa,EAAE,0DAA0D;IACzE,mBAAmB,EACjB,yDAAyD;IAC3D,oBAAoB,EAClB,0DAA0D;IAC5D,iCAAiC,EAC/B,kDAAkD;IAEpD,6BAA6B,EAC3B,iDAAiD;IACnD,qCAAqC,EACnC,gEAAgE;IAClE,iCAAiC,EAC/B,iEAAiE;IACnE,6BAA6B,EAAE,6CAA6C;IAC5E,0CAA0C,EACxC,oEAAoE;IACtE,kBAAkB,EAAE,gCAAgC;IACpD,wBAAwB,EAAE,8BAA8B;IACxD,oBAAoB,EAAE,0BAA0B;IAChD,wBAAwB,EAAE,8BAA8B;IACxD,aAAa,EAAE,kBAAkB;IACjC,SAAS,EAAE,qBAAqB;IAChC,oBAAoB,EAAE,kCAAkC;IACxD,wBAAwB,EACtB,0DAA0D;IAC5D,4BAA4B,EAC1B,yGAAyG;IAC3G,sBAAsB,EACpB,mHAAmH;IACrH,wBAAwB,EACtB,kGAAkG;IACpG,kCAAkC,EAChC,qGAAqG;IAEvG,2BAA2B,EAAE,+CAA+C;CAC7E,CAAC"}
1
+ {"version":3,"file":"i18n.js","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEH;;;;;;;;;GASG;AACU,QAAA,QAAQ,GAAG;IACtB,qBAAqB,EAAE,iDAAiD;IACxE,4BAA4B,EAAE,gCAAgC;IAC9D,sBAAsB,EAAE,oCAAoC;IAC5D,qBAAqB,EAAE,+CAA+C;IACtE,eAAe,EAAE,uDAAuD;IAExE,uBAAuB,EACrB,sEAAsE;IACxE,cAAc,EAAE,2DAA2D;IAC3E,aAAa,EAAE,0DAA0D;IACzE,mBAAmB,EACjB,yDAAyD;IAC3D,oBAAoB,EAClB,0DAA0D;IAC5D,iCAAiC,EAC/B,kDAAkD;IAEpD,6BAA6B,EAC3B,iDAAiD;IACnD,qCAAqC,EACnC,gEAAgE;IAClE,iCAAiC,EAC/B,iEAAiE;IACnE,6BAA6B,EAAE,6CAA6C;IAC5E,0CAA0C,EACxC,oEAAoE;IACtE,kBAAkB,EAAE,gCAAgC;IACpD,wBAAwB,EAAE,8BAA8B;IACxD,oBAAoB,EAAE,0BAA0B;IAChD,wBAAwB,EAAE,8BAA8B;IACxD,aAAa,EAAE,kBAAkB;IACjC,SAAS,EAAE,qBAAqB;IAChC,oBAAoB,EAAE,kCAAkC;IACxD,wBAAwB,EACtB,0DAA0D;IAC5D,4BAA4B,EAC1B,yGAAyG;IAC3G,sBAAsB,EACpB,mHAAmH;IACrH,wBAAwB,EACtB,kGAAkG;IACpG,kCAAkC,EAChC,qGAAqG;IAEvG,2BAA2B,EAAE,+CAA+C;IAE5E,+BAA+B,EAC7B,sIAAsI;IACxI,gCAAgC,EAC9B,mHAAmH;IACrH,qCAAqC,EACnC,mDAAmD;IACrD,mCAAmC,EACjC,uGAAuG;IACzG,uCAAuC,EACrC,gHAAgH;IAClH,wBAAwB,EACtB,8EAA8E;CACjF,CAAC"}
package/lib/index.d.ts CHANGED
@@ -2,3 +2,4 @@ import { TemplateService } from './service/templateService';
2
2
  export { TemplateService };
3
3
  export * from './utils/types';
4
4
  export * from './utils/createUtil';
5
+ export * from './utils/lightningEmbedding';
package/lib/index.js CHANGED
@@ -12,4 +12,5 @@ const templateService_1 = require("./service/templateService");
12
12
  Object.defineProperty(exports, "TemplateService", { enumerable: true, get: function () { return templateService_1.TemplateService; } });
13
13
  tslib_1.__exportStar(require("./utils/types"), exports);
14
14
  tslib_1.__exportStar(require("./utils/createUtil"), exports);
15
+ tslib_1.__exportStar(require("./utils/lightningEmbedding"), exports);
15
16
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;AAEH,+DAA4D;AACnD,gGADA,iCAAe,OACA;AACxB,wDAA8B;AAC9B,6DAAmC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;AAEH,+DAA4D;AACnD,gGADA,iCAAe,OACA;AACxB,wDAA8B;AAC9B,6DAAmC;AACnC,qEAA2C"}
@@ -0,0 +1,5 @@
1
+ :host {
2
+ display: block;
3
+ width: 100%;
4
+ height: 100%;
5
+ }
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <lightning-embedding
3
+ src={widgetUrl}
4
+ sandbox="<%= sandbox %>"
5
+ shell-title="<%= shellTitle %>">
6
+ </lightning-embedding>
7
+ </template>
@@ -0,0 +1,5 @@
1
+ import { LightningElement } from 'lwc';
2
+
3
+ export default class <%= pascalCaseComponentName %> extends LightningElement {
4
+ widgetUrl = '<%= src %>';
5
+ }
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <apiVersion><%= apiVersion %></apiVersion>
4
+ <isExposed>true</isExposed>
5
+ <masterLabel><%= masterLabel %></masterLabel>
6
+ <targets>
7
+ <target>lightning__AppPage</target>
8
+ <target>lightning__RecordPage</target>
9
+ <target>lightning__HomePage</target>
10
+ <target>lightningCommunity__Page</target>
11
+ </targets>
12
+ </LightningComponentBundle>
@@ -148,9 +148,9 @@ Do not consider a task complete until all three steps have been run successfully
148
148
 
149
149
  **Before writing any code that connects to Salesforce, you MUST invoke the `using-ui-bundle-salesforce-data` skill. Do not write any data access code without consulting it first.**
150
150
 
151
- This applies to: GraphQL queries/mutations, REST calls, SDK initialization, custom hooks that fetch data, or any code that imports from `@salesforce/sdk-data`.
151
+ This applies to: GraphQL queries/mutations, REST calls, SDK initialization, custom hooks that fetch data, or any code that imports from `@salesforce/platform-sdk`.
152
152
 
153
- - **All data access uses the Data SDK** (`@salesforce/sdk-data`) via `createDataSDK()`.
153
+ - **All data access uses the Data SDK** (`@salesforce/platform-sdk`) via `createDataSDK()`.
154
154
  - **Never** use `fetch()` or `axios` directly for Salesforce data.
155
155
  - **GraphQL is preferred** for record operations (`sdk.graphql`). Use `sdk.fetch` only when GraphQL cannot cover the case (UI API REST, Apex REST, Connect REST, Einstein LLM).
156
156
  - Use optional chaining: `sdk.graphql?.()`, `sdk.fetch?.()`.
@@ -181,7 +181,7 @@ Any endpoint not listed above is not permitted.
181
181
  6. **HTTP 200 does not mean success** — Salesforce returns HTTP 200 even on failure. Always check the `errors` array in the response body.
182
182
 
183
183
  #### GraphQL inline queries
184
- Must use the `gql` template tag from `@salesforce/sdk-data` — plain template strings bypass `@graphql-eslint` schema validation. For complex queries, use external `.graphql` files with codegen.
184
+ Must use the `gql` template tag from `@salesforce/platform-sdk` — plain template strings bypass `@graphql-eslint` schema validation. For complex queries, use external `.graphql` files with codegen.
185
185
 
186
186
  #### Current user info
187
187
  Use GraphQL (`uiapi { currentUser { Id Name { value } } }`), not Chatter (`/chatter/users/me`).
@@ -3,6 +3,434 @@
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
+ ## [9.20.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.19.0...v9.20.0) (2026-05-29)
7
+
8
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
9
+
10
+
11
+
12
+
13
+
14
+ ## [9.19.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.18.0...v9.19.0) (2026-05-29)
15
+
16
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
17
+
18
+
19
+
20
+
21
+
22
+ ## [9.18.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.17.1...v9.18.0) (2026-05-29)
23
+
24
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
25
+
26
+
27
+
28
+
29
+
30
+ ## [9.17.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.17.0...v9.17.1) (2026-05-29)
31
+
32
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
33
+
34
+
35
+
36
+
37
+
38
+ ## [9.17.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.16.1...v9.17.0) (2026-05-29)
39
+
40
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
41
+
42
+
43
+
44
+
45
+
46
+ ## [9.16.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.16.0...v9.16.1) (2026-05-29)
47
+
48
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
49
+
50
+
51
+
52
+
53
+
54
+ ## [9.16.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.15.0...v9.16.0) (2026-05-28)
55
+
56
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
57
+
58
+
59
+
60
+
61
+
62
+ ## [9.15.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.14.0...v9.15.0) (2026-05-28)
63
+
64
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
65
+
66
+
67
+
68
+
69
+
70
+ ## [9.14.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.13.0...v9.14.0) (2026-05-28)
71
+
72
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
73
+
74
+
75
+
76
+
77
+
78
+ ## [9.13.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.12.1...v9.13.0) (2026-05-28)
79
+
80
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
81
+
82
+
83
+
84
+
85
+
86
+ ## [9.12.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.12.0...v9.12.1) (2026-05-28)
87
+
88
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
89
+
90
+
91
+
92
+
93
+
94
+ ## [9.12.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.11.0...v9.12.0) (2026-05-27)
95
+
96
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
97
+
98
+
99
+
100
+
101
+
102
+ ## [9.11.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.10.3...v9.11.0) (2026-05-27)
103
+
104
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
105
+
106
+
107
+
108
+
109
+
110
+ ## [9.10.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.10.2...v9.10.3) (2026-05-27)
111
+
112
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
113
+
114
+
115
+
116
+
117
+
118
+ ## [9.10.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.10.1...v9.10.2) (2026-05-27)
119
+
120
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
121
+
122
+
123
+
124
+
125
+
126
+ ## [9.10.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.10.0...v9.10.1) (2026-05-26)
127
+
128
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
129
+
130
+
131
+
132
+
133
+
134
+ ## [9.10.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.9.4...v9.10.0) (2026-05-26)
135
+
136
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
137
+
138
+
139
+
140
+
141
+
142
+ ## [9.9.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.9.3...v9.9.4) (2026-05-26)
143
+
144
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
145
+
146
+
147
+
148
+
149
+
150
+ ## [9.9.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.9.2...v9.9.3) (2026-05-25)
151
+
152
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
153
+
154
+
155
+
156
+
157
+
158
+ ## [9.9.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.9.1...v9.9.2) (2026-05-25)
159
+
160
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
161
+
162
+
163
+
164
+
165
+
166
+ ## [9.9.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.9.0...v9.9.1) (2026-05-25)
167
+
168
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
169
+
170
+
171
+
172
+
173
+
174
+ ## [9.9.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.8.2...v9.9.0) (2026-05-22)
175
+
176
+
177
+ ### Features
178
+
179
+ * (template) add customApplication metadata for B2E UIBundle apps @W-22568671 ([#548](https://github.com/salesforce-experience-platform-emu/webapps/issues/548)) ([5d39634](https://github.com/salesforce-experience-platform-emu/webapps/commit/5d396340ee297f6854a91d2b6ca673e438bfb8a6))
180
+
181
+
182
+
183
+ ## [9.8.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.8.1...v9.8.2) (2026-05-22)
184
+
185
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
186
+
187
+
188
+
189
+
190
+
191
+ ## [9.8.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.8.0...v9.8.1) (2026-05-22)
192
+
193
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
194
+
195
+
196
+
197
+
198
+
199
+ ## [9.8.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.7.0...v9.8.0) (2026-05-22)
200
+
201
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
202
+
203
+
204
+
205
+
206
+
207
+ ## [9.7.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.6.1...v9.7.0) (2026-05-21)
208
+
209
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
210
+
211
+
212
+
213
+
214
+
215
+ ## [9.6.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.6.0...v9.6.1) (2026-05-21)
216
+
217
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
218
+
219
+
220
+
221
+
222
+
223
+ ## [9.6.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.5.0...v9.6.0) (2026-05-21)
224
+
225
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
226
+
227
+
228
+
229
+
230
+
231
+ ## [9.5.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.4.1...v9.5.0) (2026-05-21)
232
+
233
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
234
+
235
+
236
+
237
+
238
+
239
+ ## [9.4.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.4.0...v9.4.1) (2026-05-21)
240
+
241
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
242
+
243
+
244
+
245
+
246
+
247
+ ## [9.4.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.3.0...v9.4.0) (2026-05-20)
248
+
249
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
250
+
251
+
252
+
253
+
254
+
255
+ ## [9.3.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.2.2...v9.3.0) (2026-05-20)
256
+
257
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
258
+
259
+
260
+
261
+
262
+
263
+ ## [9.2.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.2.1...v9.2.2) (2026-05-20)
264
+
265
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
266
+
267
+
268
+
269
+
270
+
271
+ ## [9.2.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.2.0...v9.2.1) (2026-05-20)
272
+
273
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
274
+
275
+
276
+
277
+
278
+
279
+ ## [9.2.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.1.0...v9.2.0) (2026-05-19)
280
+
281
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
282
+
283
+
284
+
285
+
286
+
287
+ ## [9.1.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v9.0.0...v9.1.0) (2026-05-18)
288
+
289
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
290
+
291
+
292
+
293
+
294
+
295
+ ## [9.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v8.0.1...v9.0.0) (2026-05-18)
296
+
297
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
298
+
299
+
300
+
301
+
302
+
303
+ ## [8.0.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v8.0.0...v8.0.1) (2026-05-18)
304
+
305
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
306
+
307
+
308
+
309
+
310
+
311
+ ## [8.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v7.1.0...v8.0.0) (2026-05-15)
312
+
313
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
314
+
315
+
316
+
317
+
318
+
319
+ ## [7.1.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v7.0.1...v7.1.0) (2026-05-14)
320
+
321
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
322
+
323
+
324
+
325
+
326
+
327
+ ## [7.0.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v7.0.0...v7.0.1) (2026-05-14)
328
+
329
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
330
+
331
+
332
+
333
+
334
+
335
+ ## [7.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v6.0.0...v7.0.0) (2026-05-12)
336
+
337
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
338
+
339
+
340
+
341
+
342
+
343
+ ## [6.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v5.0.0...v6.0.0) (2026-05-12)
344
+
345
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
346
+
347
+
348
+
349
+
350
+
351
+ ## [5.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v4.0.0...v5.0.0) (2026-05-12)
352
+
353
+
354
+ ### ⚠ BREAKING CHANGES
355
+
356
+ * **sdk:** @W-22453506 flip packages/template/** to @salesforce/platform-sdk (#510)
357
+
358
+ ### Features
359
+
360
+ * **sdk:** @W-22453506 flip packages/template/** to @salesforce/platform-sdk ([#510](https://github.com/salesforce-experience-platform-emu/webapps/issues/510)) ([ab56fab](https://github.com/salesforce-experience-platform-emu/webapps/commit/ab56fab3f4bae239daeaac3f5f29cf31c951be29))
361
+
362
+
363
+
364
+ ## [4.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v3.1.1...v4.0.0) (2026-05-12)
365
+
366
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
367
+
368
+
369
+
370
+
371
+
372
+ ## [3.1.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v3.1.0...v3.1.1) (2026-05-12)
373
+
374
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
375
+
376
+
377
+
378
+
379
+
380
+ ## [3.1.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v3.0.0...v3.1.0) (2026-05-12)
381
+
382
+
383
+ ### Features
384
+
385
+ * post tdx changes @W-22390798 ([#500](https://github.com/salesforce-experience-platform-emu/webapps/issues/500)) ([b611d9e](https://github.com/salesforce-experience-platform-emu/webapps/commit/b611d9ecbadd07d052bd7d9a4f5659dec422bf22))
386
+
387
+
388
+
389
+ ## [3.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v2.2.1...v3.0.0) (2026-05-11)
390
+
391
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
392
+
393
+
394
+
395
+
396
+
397
+ ## [2.2.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v2.2.0...v2.2.1) (2026-05-11)
398
+
399
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
400
+
401
+
402
+
403
+
404
+
405
+ ## [2.2.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v2.1.0...v2.2.0) (2026-05-08)
406
+
407
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
408
+
409
+
410
+
411
+
412
+
413
+ ## [2.1.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v2.0.0...v2.1.0) (2026-05-08)
414
+
415
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
416
+
417
+
418
+
419
+
420
+
421
+ ## [2.0.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.135.0...v2.0.0) (2026-05-07)
422
+
423
+
424
+ ### ⚠ BREAKING CHANGES
425
+
426
+ * **sdk:** @W-22351493 rename sdk-data + sdk-analytics to @salesforce/platform-sdk-* (#494)
427
+
428
+ ### Features
429
+
430
+ * **sdk:** @W-22351493 rename sdk-data + sdk-analytics to @salesforce/platform-sdk-* ([#494](https://github.com/salesforce-experience-platform-emu/webapps/issues/494)) ([725a8f8](https://github.com/salesforce-experience-platform-emu/webapps/commit/725a8f8dba4ce6003b69fb334a36c5131258f161))
431
+
432
+
433
+
6
434
  ## [1.135.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.134.5...v1.135.0) (2026-05-05)
7
435
 
8
436
  **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project