sf-browserforce 1.0.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 (285) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +266 -0
  3. package/bin/run +9 -0
  4. package/bin/run.cmd +3 -0
  5. package/lib/browserforce-command.d.ts +27 -0
  6. package/lib/browserforce-command.js +162 -0
  7. package/lib/browserforce-command.js.map +1 -0
  8. package/lib/browserforce.d.ts +27 -0
  9. package/lib/browserforce.js +163 -0
  10. package/lib/browserforce.js.map +1 -0
  11. package/lib/commands/browserforce/apply.d.ts +10 -0
  12. package/lib/commands/browserforce/apply.js +83 -0
  13. package/lib/commands/browserforce/apply.js.map +1 -0
  14. package/lib/commands/browserforce/playwright.d.ts +9 -0
  15. package/lib/commands/browserforce/playwright.js +53 -0
  16. package/lib/commands/browserforce/playwright.js.map +1 -0
  17. package/lib/config-parser.d.ts +16 -0
  18. package/lib/config-parser.js +24 -0
  19. package/lib/config-parser.js.map +1 -0
  20. package/lib/index.d.ts +1 -0
  21. package/lib/index.js +2 -0
  22. package/lib/index.js.map +1 -0
  23. package/lib/jsforce-utils.d.ts +5 -0
  24. package/lib/jsforce-utils.js +14 -0
  25. package/lib/jsforce-utils.js.map +1 -0
  26. package/lib/pages/login.d.ts +7 -0
  27. package/lib/pages/login.js +17 -0
  28. package/lib/pages/login.js.map +1 -0
  29. package/lib/plugin.d.ts +15 -0
  30. package/lib/plugin.js +28 -0
  31. package/lib/plugin.js.map +1 -0
  32. package/lib/plugins/activity-settings/index.d.ts +9 -0
  33. package/lib/plugins/activity-settings/index.e2e-spec.d.ts +1 -0
  34. package/lib/plugins/activity-settings/index.e2e-spec.js +36 -0
  35. package/lib/plugins/activity-settings/index.e2e-spec.js.map +1 -0
  36. package/lib/plugins/activity-settings/index.js +102 -0
  37. package/lib/plugins/activity-settings/index.js.map +1 -0
  38. package/lib/plugins/auth-providers/index.d.ts +13 -0
  39. package/lib/plugins/auth-providers/index.e2e-spec.d.ts +1 -0
  40. package/lib/plugins/auth-providers/index.e2e-spec.js +78 -0
  41. package/lib/plugins/auth-providers/index.e2e-spec.js.map +1 -0
  42. package/lib/plugins/auth-providers/index.js +135 -0
  43. package/lib/plugins/auth-providers/index.js.map +1 -0
  44. package/lib/plugins/company-information/index.d.ts +8 -0
  45. package/lib/plugins/company-information/index.e2e-spec.d.ts +1 -0
  46. package/lib/plugins/company-information/index.e2e-spec.js +37 -0
  47. package/lib/plugins/company-information/index.e2e-spec.js.map +1 -0
  48. package/lib/plugins/company-information/index.js +114 -0
  49. package/lib/plugins/company-information/index.js.map +1 -0
  50. package/lib/plugins/customer-portal/available-custom-objects/index.d.ts +14 -0
  51. package/lib/plugins/customer-portal/available-custom-objects/index.js +203 -0
  52. package/lib/plugins/customer-portal/available-custom-objects/index.js.map +1 -0
  53. package/lib/plugins/customer-portal/available-custom-objects/index.test.d.ts +1 -0
  54. package/lib/plugins/customer-portal/available-custom-objects/index.test.js +39 -0
  55. package/lib/plugins/customer-portal/available-custom-objects/index.test.js.map +1 -0
  56. package/lib/plugins/customer-portal/enabled/index.d.ts +6 -0
  57. package/lib/plugins/customer-portal/enabled/index.js +89 -0
  58. package/lib/plugins/customer-portal/enabled/index.js.map +1 -0
  59. package/lib/plugins/customer-portal/enabled/index.test.d.ts +1 -0
  60. package/lib/plugins/customer-portal/enabled/index.test.js +34 -0
  61. package/lib/plugins/customer-portal/enabled/index.test.js.map +1 -0
  62. package/lib/plugins/customer-portal/index.d.ts +15 -0
  63. package/lib/plugins/customer-portal/index.e2e-spec.d.ts +1 -0
  64. package/lib/plugins/customer-portal/index.e2e-spec.js +188 -0
  65. package/lib/plugins/customer-portal/index.e2e-spec.js.map +1 -0
  66. package/lib/plugins/customer-portal/index.js +58 -0
  67. package/lib/plugins/customer-portal/index.js.map +1 -0
  68. package/lib/plugins/customer-portal/index.test.d.ts +1 -0
  69. package/lib/plugins/customer-portal/index.test.js +84 -0
  70. package/lib/plugins/customer-portal/index.test.js.map +1 -0
  71. package/lib/plugins/customer-portal/portals/index.d.ts +25 -0
  72. package/lib/plugins/customer-portal/portals/index.js +254 -0
  73. package/lib/plugins/customer-portal/portals/index.js.map +1 -0
  74. package/lib/plugins/customer-portal/portals/index.test.d.ts +1 -0
  75. package/lib/plugins/customer-portal/portals/index.test.js +140 -0
  76. package/lib/plugins/customer-portal/portals/index.test.js.map +1 -0
  77. package/lib/plugins/density-settings/index.d.ts +10 -0
  78. package/lib/plugins/density-settings/index.e2e-spec.d.ts +1 -0
  79. package/lib/plugins/density-settings/index.e2e-spec.js +39 -0
  80. package/lib/plugins/density-settings/index.e2e-spec.js.map +1 -0
  81. package/lib/plugins/density-settings/index.js +101 -0
  82. package/lib/plugins/density-settings/index.js.map +1 -0
  83. package/lib/plugins/deprecated.d.ts +4 -0
  84. package/lib/plugins/deprecated.js +28 -0
  85. package/lib/plugins/deprecated.js.map +1 -0
  86. package/lib/plugins/email-deliverability/index.d.ts +9 -0
  87. package/lib/plugins/email-deliverability/index.e2e-spec.d.ts +1 -0
  88. package/lib/plugins/email-deliverability/index.e2e-spec.js +55 -0
  89. package/lib/plugins/email-deliverability/index.e2e-spec.js.map +1 -0
  90. package/lib/plugins/email-deliverability/index.js +109 -0
  91. package/lib/plugins/email-deliverability/index.js.map +1 -0
  92. package/lib/plugins/high-velocity-sales-settings/index.d.ts +10 -0
  93. package/lib/plugins/high-velocity-sales-settings/index.e2e-spec.d.ts +1 -0
  94. package/lib/plugins/high-velocity-sales-settings/index.e2e-spec.js +29 -0
  95. package/lib/plugins/high-velocity-sales-settings/index.e2e-spec.js.map +1 -0
  96. package/lib/plugins/high-velocity-sales-settings/index.js +105 -0
  97. package/lib/plugins/high-velocity-sales-settings/index.js.map +1 -0
  98. package/lib/plugins/high-velocity-sales-settings/page.d.ts +8 -0
  99. package/lib/plugins/high-velocity-sales-settings/page.js +27 -0
  100. package/lib/plugins/high-velocity-sales-settings/page.js.map +1 -0
  101. package/lib/plugins/history-tracking/index.d.ts +19 -0
  102. package/lib/plugins/history-tracking/index.e2e-spec.d.ts +1 -0
  103. package/lib/plugins/history-tracking/index.e2e-spec.js +128 -0
  104. package/lib/plugins/history-tracking/index.e2e-spec.js.map +1 -0
  105. package/lib/plugins/history-tracking/index.js +272 -0
  106. package/lib/plugins/history-tracking/index.js.map +1 -0
  107. package/lib/plugins/home-page-layouts/index.d.ts +14 -0
  108. package/lib/plugins/home-page-layouts/index.e2e-spec.d.ts +1 -0
  109. package/lib/plugins/home-page-layouts/index.e2e-spec.js +47 -0
  110. package/lib/plugins/home-page-layouts/index.e2e-spec.js.map +1 -0
  111. package/lib/plugins/home-page-layouts/index.js +145 -0
  112. package/lib/plugins/home-page-layouts/index.js.map +1 -0
  113. package/lib/plugins/home-page-layouts/index.test.d.ts +1 -0
  114. package/lib/plugins/home-page-layouts/index.test.js +104 -0
  115. package/lib/plugins/home-page-layouts/index.test.js.map +1 -0
  116. package/lib/plugins/index.d.ts +28 -0
  117. package/lib/plugins/index.js +29 -0
  118. package/lib/plugins/index.js.map +1 -0
  119. package/lib/plugins/lightning-experience-settings/index.d.ts +17 -0
  120. package/lib/plugins/lightning-experience-settings/index.e2e-spec.d.ts +1 -0
  121. package/lib/plugins/lightning-experience-settings/index.e2e-spec.js +48 -0
  122. package/lib/plugins/lightning-experience-settings/index.e2e-spec.js.map +1 -0
  123. package/lib/plugins/lightning-experience-settings/index.js +149 -0
  124. package/lib/plugins/lightning-experience-settings/index.js.map +1 -0
  125. package/lib/plugins/linkedin-sales-navigator-settings/index.d.ts +8 -0
  126. package/lib/plugins/linkedin-sales-navigator-settings/index.e2e-spec.d.ts +1 -0
  127. package/lib/plugins/linkedin-sales-navigator-settings/index.e2e-spec.js +29 -0
  128. package/lib/plugins/linkedin-sales-navigator-settings/index.e2e-spec.js.map +1 -0
  129. package/lib/plugins/linkedin-sales-navigator-settings/index.js +93 -0
  130. package/lib/plugins/linkedin-sales-navigator-settings/index.js.map +1 -0
  131. package/lib/plugins/linkedin-sales-navigator-settings/page.d.ts +9 -0
  132. package/lib/plugins/linkedin-sales-navigator-settings/page.js +35 -0
  133. package/lib/plugins/linkedin-sales-navigator-settings/page.js.map +1 -0
  134. package/lib/plugins/login-as-user/index.d.ts +9 -0
  135. package/lib/plugins/login-as-user/index.js +104 -0
  136. package/lib/plugins/login-as-user/index.js.map +1 -0
  137. package/lib/plugins/logout-login-as-user/index.d.ts +6 -0
  138. package/lib/plugins/logout-login-as-user/index.js +76 -0
  139. package/lib/plugins/logout-login-as-user/index.js.map +1 -0
  140. package/lib/plugins/omni-channel-settings/index.d.ts +9 -0
  141. package/lib/plugins/omni-channel-settings/index.e2e-spec.d.ts +1 -0
  142. package/lib/plugins/omni-channel-settings/index.e2e-spec.js +30 -0
  143. package/lib/plugins/omni-channel-settings/index.e2e-spec.js.map +1 -0
  144. package/lib/plugins/omni-channel-settings/index.js +97 -0
  145. package/lib/plugins/omni-channel-settings/index.js.map +1 -0
  146. package/lib/plugins/opportunity-splits/index.d.ts +9 -0
  147. package/lib/plugins/opportunity-splits/index.e2e-spec.d.ts +1 -0
  148. package/lib/plugins/opportunity-splits/index.e2e-spec.js +46 -0
  149. package/lib/plugins/opportunity-splits/index.e2e-spec.js.map +1 -0
  150. package/lib/plugins/opportunity-splits/index.js +117 -0
  151. package/lib/plugins/opportunity-splits/index.js.map +1 -0
  152. package/lib/plugins/opportunity-splits/pages/layout-selection.d.ts +8 -0
  153. package/lib/plugins/opportunity-splits/pages/layout-selection.js +15 -0
  154. package/lib/plugins/opportunity-splits/pages/layout-selection.js.map +1 -0
  155. package/lib/plugins/opportunity-splits/pages/overview.d.ts +11 -0
  156. package/lib/plugins/opportunity-splits/pages/overview.js +32 -0
  157. package/lib/plugins/opportunity-splits/pages/overview.js.map +1 -0
  158. package/lib/plugins/opportunity-splits/pages/setup.d.ts +9 -0
  159. package/lib/plugins/opportunity-splits/pages/setup.js +17 -0
  160. package/lib/plugins/opportunity-splits/pages/setup.js.map +1 -0
  161. package/lib/plugins/permission-sets/index.d.ts +10 -0
  162. package/lib/plugins/permission-sets/index.e2e-spec.d.ts +1 -0
  163. package/lib/plugins/permission-sets/index.e2e-spec.js +47 -0
  164. package/lib/plugins/permission-sets/index.e2e-spec.js.map +1 -0
  165. package/lib/plugins/permission-sets/index.js +22 -0
  166. package/lib/plugins/permission-sets/index.js.map +1 -0
  167. package/lib/plugins/permission-sets/service-presence-status/index.d.ts +10 -0
  168. package/lib/plugins/permission-sets/service-presence-status/index.js +124 -0
  169. package/lib/plugins/permission-sets/service-presence-status/index.js.map +1 -0
  170. package/lib/plugins/picklists/field-dependencies/index.d.ts +11 -0
  171. package/lib/plugins/picklists/field-dependencies/index.js +133 -0
  172. package/lib/plugins/picklists/field-dependencies/index.js.map +1 -0
  173. package/lib/plugins/picklists/field-dependencies/index.test.d.ts +1 -0
  174. package/lib/plugins/picklists/field-dependencies/index.test.js +64 -0
  175. package/lib/plugins/picklists/field-dependencies/index.test.js.map +1 -0
  176. package/lib/plugins/picklists/field-dependencies/pages.d.ts +15 -0
  177. package/lib/plugins/picklists/field-dependencies/pages.js +50 -0
  178. package/lib/plugins/picklists/field-dependencies/pages.js.map +1 -0
  179. package/lib/plugins/picklists/index.d.ts +23 -0
  180. package/lib/plugins/picklists/index.e2e-spec.d.ts +1 -0
  181. package/lib/plugins/picklists/index.e2e-spec.js +128 -0
  182. package/lib/plugins/picklists/index.e2e-spec.js.map +1 -0
  183. package/lib/plugins/picklists/index.js +229 -0
  184. package/lib/plugins/picklists/index.js.map +1 -0
  185. package/lib/plugins/picklists/pages.d.ts +45 -0
  186. package/lib/plugins/picklists/pages.js +185 -0
  187. package/lib/plugins/picklists/pages.js.map +1 -0
  188. package/lib/plugins/picklists/standard-value-set.d.ts +1 -0
  189. package/lib/plugins/picklists/standard-value-set.js +80 -0
  190. package/lib/plugins/picklists/standard-value-set.js.map +1 -0
  191. package/lib/plugins/record-types/index.d.ts +14 -0
  192. package/lib/plugins/record-types/index.e2e-spec.d.ts +1 -0
  193. package/lib/plugins/record-types/index.e2e-spec.js +76 -0
  194. package/lib/plugins/record-types/index.e2e-spec.js.map +1 -0
  195. package/lib/plugins/record-types/index.js +133 -0
  196. package/lib/plugins/record-types/index.js.map +1 -0
  197. package/lib/plugins/record-types/pages.d.ts +14 -0
  198. package/lib/plugins/record-types/pages.js +50 -0
  199. package/lib/plugins/record-types/pages.js.map +1 -0
  200. package/lib/plugins/relate-contact-to-multiple-accounts/index.d.ts +11 -0
  201. package/lib/plugins/relate-contact-to-multiple-accounts/index.e2e-spec.d.ts +1 -0
  202. package/lib/plugins/relate-contact-to-multiple-accounts/index.e2e-spec.js +30 -0
  203. package/lib/plugins/relate-contact-to-multiple-accounts/index.e2e-spec.js.map +1 -0
  204. package/lib/plugins/relate-contact-to-multiple-accounts/index.js +120 -0
  205. package/lib/plugins/relate-contact-to-multiple-accounts/index.js.map +1 -0
  206. package/lib/plugins/reports-and-dashboards/folder-sharing/index.d.ts +8 -0
  207. package/lib/plugins/reports-and-dashboards/folder-sharing/index.e2e-spec.d.ts +1 -0
  208. package/lib/plugins/reports-and-dashboards/folder-sharing/index.e2e-spec.js +3 -0
  209. package/lib/plugins/reports-and-dashboards/folder-sharing/index.e2e-spec.js.map +1 -0
  210. package/lib/plugins/reports-and-dashboards/folder-sharing/index.js +116 -0
  211. package/lib/plugins/reports-and-dashboards/folder-sharing/index.js.map +1 -0
  212. package/lib/plugins/reports-and-dashboards/index.d.ts +11 -0
  213. package/lib/plugins/reports-and-dashboards/index.e2e-spec.d.ts +1 -0
  214. package/lib/plugins/reports-and-dashboards/index.e2e-spec.js +3 -0
  215. package/lib/plugins/reports-and-dashboards/index.e2e-spec.js.map +1 -0
  216. package/lib/plugins/reports-and-dashboards/index.js +29 -0
  217. package/lib/plugins/reports-and-dashboards/index.js.map +1 -0
  218. package/lib/plugins/salesforce-cpq-config/formConfig.d.ts +17 -0
  219. package/lib/plugins/salesforce-cpq-config/formConfig.js +649 -0
  220. package/lib/plugins/salesforce-cpq-config/formConfig.js.map +1 -0
  221. package/lib/plugins/salesforce-cpq-config/index.d.ts +7 -0
  222. package/lib/plugins/salesforce-cpq-config/index.e2e-spec.d.ts +1 -0
  223. package/lib/plugins/salesforce-cpq-config/index.e2e-spec.js +37 -0
  224. package/lib/plugins/salesforce-cpq-config/index.e2e-spec.js.map +1 -0
  225. package/lib/plugins/salesforce-cpq-config/index.js +261 -0
  226. package/lib/plugins/salesforce-cpq-config/index.js.map +1 -0
  227. package/lib/plugins/salesforce-to-salesforce/index.d.ts +9 -0
  228. package/lib/plugins/salesforce-to-salesforce/index.e2e-spec.d.ts +1 -0
  229. package/lib/plugins/salesforce-to-salesforce/index.e2e-spec.js +34 -0
  230. package/lib/plugins/salesforce-to-salesforce/index.e2e-spec.js.map +1 -0
  231. package/lib/plugins/salesforce-to-salesforce/index.js +107 -0
  232. package/lib/plugins/salesforce-to-salesforce/index.js.map +1 -0
  233. package/lib/plugins/scheduled-batches/index.d.ts +10 -0
  234. package/lib/plugins/scheduled-batches/index.js +145 -0
  235. package/lib/plugins/scheduled-batches/index.js.map +1 -0
  236. package/lib/plugins/scheduled-batches/page.d.ts +19 -0
  237. package/lib/plugins/scheduled-batches/page.js +39 -0
  238. package/lib/plugins/scheduled-batches/page.js.map +1 -0
  239. package/lib/plugins/security/authentication-configuration/index.d.ts +15 -0
  240. package/lib/plugins/security/authentication-configuration/index.e2e-spec.d.ts +1 -0
  241. package/lib/plugins/security/authentication-configuration/index.e2e-spec.js +129 -0
  242. package/lib/plugins/security/authentication-configuration/index.e2e-spec.js.map +1 -0
  243. package/lib/plugins/security/authentication-configuration/index.js +200 -0
  244. package/lib/plugins/security/authentication-configuration/index.js.map +1 -0
  245. package/lib/plugins/security/certificate-and-key-management/index.d.ts +23 -0
  246. package/lib/plugins/security/certificate-and-key-management/index.e2e-spec.d.ts +1 -0
  247. package/lib/plugins/security/certificate-and-key-management/index.e2e-spec.js +59 -0
  248. package/lib/plugins/security/certificate-and-key-management/index.e2e-spec.js.map +1 -0
  249. package/lib/plugins/security/certificate-and-key-management/index.js +233 -0
  250. package/lib/plugins/security/certificate-and-key-management/index.js.map +1 -0
  251. package/lib/plugins/security/certificate-and-key-management/index.test.d.ts +1 -0
  252. package/lib/plugins/security/certificate-and-key-management/index.test.js +61 -0
  253. package/lib/plugins/security/certificate-and-key-management/index.test.js.map +1 -0
  254. package/lib/plugins/security/index.d.ts +13 -0
  255. package/lib/plugins/security/index.js +41 -0
  256. package/lib/plugins/security/index.js.map +1 -0
  257. package/lib/plugins/service-channels/capacity/index.d.ts +18 -0
  258. package/lib/plugins/service-channels/capacity/index.js +194 -0
  259. package/lib/plugins/service-channels/capacity/index.js.map +1 -0
  260. package/lib/plugins/service-channels/index.d.ts +12 -0
  261. package/lib/plugins/service-channels/index.e2e-spec.d.ts +1 -0
  262. package/lib/plugins/service-channels/index.e2e-spec.js +67 -0
  263. package/lib/plugins/service-channels/index.e2e-spec.js.map +1 -0
  264. package/lib/plugins/service-channels/index.js +37 -0
  265. package/lib/plugins/service-channels/index.js.map +1 -0
  266. package/lib/plugins/slack/index.d.ts +9 -0
  267. package/lib/plugins/slack/index.e2e-spec.d.ts +1 -0
  268. package/lib/plugins/slack/index.e2e-spec.js +47 -0
  269. package/lib/plugins/slack/index.e2e-spec.js.map +1 -0
  270. package/lib/plugins/slack/index.js +111 -0
  271. package/lib/plugins/slack/index.js.map +1 -0
  272. package/lib/plugins/user-access-policies/index.d.ts +19 -0
  273. package/lib/plugins/user-access-policies/index.e2e-spec.d.ts +1 -0
  274. package/lib/plugins/user-access-policies/index.e2e-spec.js +61 -0
  275. package/lib/plugins/user-access-policies/index.e2e-spec.js.map +1 -0
  276. package/lib/plugins/user-access-policies/index.js +176 -0
  277. package/lib/plugins/user-access-policies/index.js.map +1 -0
  278. package/lib/plugins/user-access-policies/page.d.ts +30 -0
  279. package/lib/plugins/user-access-policies/page.js +114 -0
  280. package/lib/plugins/user-access-policies/page.js.map +1 -0
  281. package/lib/plugins/utils.d.ts +13 -0
  282. package/lib/plugins/utils.js +159 -0
  283. package/lib/plugins/utils.js.map +1 -0
  284. package/oclif.manifest.json +177 -0
  285. package/package.json +65 -0
@@ -0,0 +1,80 @@
1
+ import { MAPPING as STANDARDVALUESET_MAPPING } from '@mdapi-issues/listmetadata-standardvalueset';
2
+ const editUrl = (id, type) => `/_ui/common/config/field/StandardFieldAttributes/d?id=${id}&type=${type}`;
3
+ const editUrlMasterDetail = (tid, pt) => `/setup/ui/picklist_masterdetail.jsp?tid=${tid}&pt=${pt}`;
4
+ const mapping = {
5
+ AccountContactMultiRoles: editUrl('Roles', 'AccountContactRelation'),
6
+ AccountContactRole: editUrlMasterDetail('02Z', '38'),
7
+ AccountOwnership: editUrl('Ownership', 'Account'),
8
+ AccountRating: editUrl('Rating', 'Account'),
9
+ AccountType: editUrl('Type', 'Account'),
10
+ AssetStatus: editUrl('Status', 'Asset'),
11
+ CampaignMemberStatus: editUrl('Status', 'CampaignMember'),
12
+ CampaignStatus: editUrl('Status', 'Campaign'),
13
+ CampaignType: editUrl('Type', 'Campaign'),
14
+ CareItemStatus2: '',
15
+ CaseContactRole: editUrlMasterDetail('03j', '45'),
16
+ CaseOrigin: editUrl('Origin', 'Case'),
17
+ CasePriority: editUrl('Priority', 'Case'),
18
+ CaseReason: editUrl('Reason', 'Case'),
19
+ CaseStatus: editUrl('Status', 'Case'),
20
+ CaseType: editUrl('Type', 'Case'),
21
+ ContactRole: editUrlMasterDetail('00K', '11'),
22
+ ContractContactRole: editUrlMasterDetail('021', '39'),
23
+ ContractStatus: editUrl('Status', 'Contract'),
24
+ EntitlementType: editUrl('Type', 'Entitlement'),
25
+ EventSubject: editUrl('Subject', 'Event'),
26
+ EventType: editUrl('Type', 'Event'),
27
+ FiscalYearPeriodName: '',
28
+ FiscalYearPeriodPrefix: '',
29
+ FiscalYearQuarterName: '',
30
+ FiscalYearQuarterPrefix: '',
31
+ ForecastCategoryName: editUrl('ForecastCategoryName', 'Opportunity'),
32
+ IdeaMultiCategory: editUrl('Categories', 'Idea'),
33
+ IdeaStatus: editUrl('Status', 'Idea'),
34
+ IdeaThemeStatus: editUrl('Status', 'IdeaTheme'),
35
+ Industry: editUrl('Industry', 'Lead'),
36
+ LeadSource: editUrl('LeadSource', 'Lead'),
37
+ LeadStatus: editUrl('Status', 'Lead'),
38
+ OpportunityCompetitor: editUrlMasterDetail('00J', '35'),
39
+ OpportunityStage: editUrl('StageName', 'Opportunity'),
40
+ OpportunityType: editUrl('Type', 'Opportunity'),
41
+ OrderType: editUrl('Type', 'Order'),
42
+ PartnerRole: editUrlMasterDetail('00I', '17'),
43
+ Product2Family: editUrl('Family', 'Product2'),
44
+ QuickTextCategory: editUrl('Category', 'QuickText'),
45
+ QuickTextChannel: editUrl('Channel', 'QuickText'),
46
+ QuoteStatus: editUrl('Status', 'Quote'),
47
+ RoleInTerritory2: '',
48
+ ResourceAbsenceType: editUrl('Type', 'ResourceAbsence'),
49
+ SalesTeamRole: editUrl('TeamMemberRole', 'OpportunityTeamMember'),
50
+ Salutation: editUrlMasterDetail('003', '8'),
51
+ ServiceAppointmentStatus: editUrl('Status', 'ServiceAppointment'),
52
+ ServiceContractApprovalStatus: editUrl('ApprovalStatus', 'ServiceContract'),
53
+ ServTerrMemRoleType: '',
54
+ SocialPostClassification: '',
55
+ SocialPostEngagementLevel: '',
56
+ SocialPostReviewedStatus: '',
57
+ SolutionStatus: editUrl('Status', 'Solution'),
58
+ TaskPriority: editUrl('Priority', 'Task'),
59
+ TaskStatus: editUrl('Status', 'Task'),
60
+ TaskSubject: editUrl('Subject', 'Task'),
61
+ TaskType: editUrl('Type', 'Task'),
62
+ WorkOrderLineItemStatus: editUrl('Status', 'WorkOrderLineItem'),
63
+ WorkOrderPriority: editUrl('Priority', 'WorkOrder'),
64
+ WorkOrderStatus: editUrl('Status', 'WorkOrder'),
65
+ WorkTypeDefApptType: '',
66
+ WorkTypeGroupAddInfo: '',
67
+ };
68
+ export function determineStandardValueSetEditUrl(standardValueSet) {
69
+ if (mapping[standardValueSet] !== '') {
70
+ return mapping[standardValueSet];
71
+ }
72
+ else {
73
+ const standardField = Object.keys(STANDARDVALUESET_MAPPING).find((key) => STANDARDVALUESET_MAPPING[key] === standardValueSet);
74
+ if (!standardField) {
75
+ throw new Error(`Could not determine Edit URL for StandardValueSet:${standardValueSet}`);
76
+ }
77
+ return editUrl(standardValueSet, standardField.split('.')[0]);
78
+ }
79
+ }
80
+ //# sourceMappingURL=standard-value-set.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"standard-value-set.js","sourceRoot":"","sources":["../../../src/plugins/picklists/standard-value-set.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { BrowserforcePlugin } from '../../plugin.js';
2
+ type Config = {
3
+ deletions: RecordTypeConfig[];
4
+ };
5
+ type RecordTypeConfig = {
6
+ fullName: string;
7
+ replacement?: string;
8
+ };
9
+ export declare class RecordTypes extends BrowserforcePlugin {
10
+ retrieve(definition: Config): Promise<Config>;
11
+ diff(source: Config, target: Config): Partial<Config> | undefined;
12
+ apply(config: Config): Promise<void>;
13
+ }
14
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,76 @@
1
+ import assert from 'assert';
2
+ import * as child from 'child_process';
3
+ import { fileURLToPath } from 'node:url';
4
+ import * as path from 'path';
5
+ import { RecordTypes } from './index.js';
6
+ const __dirname = fileURLToPath(new URL('.', import.meta.url));
7
+ describe(RecordTypes.name, function () {
8
+ this.timeout('10m');
9
+ let plugin;
10
+ before(() => {
11
+ plugin = new RecordTypes(global.browserforce);
12
+ });
13
+ const configDelete = {
14
+ deletions: [
15
+ {
16
+ fullName: 'Vehicle__c.SUV',
17
+ },
18
+ ],
19
+ };
20
+ const configDeleteActive = {
21
+ deletions: [
22
+ {
23
+ fullName: 'Vehicle__c.CUV',
24
+ },
25
+ ],
26
+ };
27
+ const configDeleteAndReplace = {
28
+ deletions: [
29
+ {
30
+ fullName: 'Vehicle__c.SportsCar',
31
+ replacement: 'Vehicle__c.Bicycle',
32
+ },
33
+ ],
34
+ };
35
+ it('should deploy a CustomObject for testing', () => {
36
+ const sourceDeployCmd = child.spawnSync('sf', [
37
+ 'project',
38
+ 'deploy',
39
+ 'start',
40
+ '-d',
41
+ path.join(__dirname, 'sfdx-source'),
42
+ '--json',
43
+ ]);
44
+ assert.deepStrictEqual(sourceDeployCmd.status, 0, sourceDeployCmd.output.toString());
45
+ });
46
+ it('should delete a record type', async () => {
47
+ await plugin.run(configDelete);
48
+ });
49
+ it('should not do anything when the record type does not exist', async () => {
50
+ const res = await plugin.run(configDelete);
51
+ assert.deepStrictEqual(res, { message: 'no action necessary' });
52
+ });
53
+ it('should fail deleting an active record type', async () => {
54
+ let err;
55
+ try {
56
+ await plugin.run(configDeleteActive);
57
+ }
58
+ catch (e) {
59
+ err = e;
60
+ }
61
+ assert.throws(() => {
62
+ throw err;
63
+ }, /Cannot delete active RecordType/);
64
+ });
65
+ it('should delete and replace a record type', async () => {
66
+ await plugin.run(configDeleteAndReplace);
67
+ });
68
+ it('should not need to do anything for non-existent picklists', async () => {
69
+ const res = await plugin.run(configDeleteAndReplace);
70
+ assert.deepStrictEqual(res, { message: 'no action necessary' });
71
+ });
72
+ it('should remove the CustomObject', async () => {
73
+ await global.browserforce.connection.metadata.delete('CustomObject', ['Vehicle__c']);
74
+ });
75
+ });
76
+ //# sourceMappingURL=index.e2e-spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.e2e-spec.js","sourceRoot":"","sources":["../../../src/plugins/record-types/index.e2e-spec.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,133 @@
1
+ var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
2
+ if (value !== null && value !== void 0) {
3
+ if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
4
+ var dispose, inner;
5
+ if (async) {
6
+ if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
7
+ dispose = value[Symbol.asyncDispose];
8
+ }
9
+ if (dispose === void 0) {
10
+ if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
11
+ dispose = value[Symbol.dispose];
12
+ if (async) inner = dispose;
13
+ }
14
+ if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
15
+ if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };
16
+ env.stack.push({ value: value, dispose: dispose, async: async });
17
+ }
18
+ else if (async) {
19
+ env.stack.push({ async: true });
20
+ }
21
+ return value;
22
+ };
23
+ var __disposeResources = (this && this.__disposeResources) || (function (SuppressedError) {
24
+ return function (env) {
25
+ function fail(e) {
26
+ env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
27
+ env.hasError = true;
28
+ }
29
+ var r, s = 0;
30
+ function next() {
31
+ while (r = env.stack.pop()) {
32
+ try {
33
+ if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
34
+ if (r.dispose) {
35
+ var result = r.dispose.call(r.value);
36
+ if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
37
+ }
38
+ else s |= 1;
39
+ }
40
+ catch (e) {
41
+ fail(e);
42
+ }
43
+ }
44
+ if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
45
+ if (env.hasError) throw env.error;
46
+ }
47
+ return next();
48
+ };
49
+ })(typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
50
+ var e = new Error(message);
51
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
52
+ });
53
+ import { BrowserforcePlugin } from '../../plugin.js';
54
+ import { RecordTypePage } from './pages.js';
55
+ export class RecordTypes extends BrowserforcePlugin {
56
+ async retrieve(definition) {
57
+ const response = {
58
+ deletions: [],
59
+ };
60
+ const recordTypeFileProperties = await listRecordTypes(this.browserforce.connection);
61
+ const recordTypes = await queryRecordTypes(this.browserforce.connection);
62
+ for (const deletion of definition.deletions) {
63
+ const recordType = getRecordType(deletion.fullName, recordTypeFileProperties, recordTypes);
64
+ if (recordType) {
65
+ if (recordType.IsActive) {
66
+ throw new Error(`Cannot delete active RecordType: ${deletion.fullName}`);
67
+ }
68
+ if (deletion.replacement) {
69
+ const replacementRecordType = getRecordType(deletion.replacement, recordTypeFileProperties, recordTypes);
70
+ if (!replacementRecordType) {
71
+ throw new Error(`Could not find replacement RecordType: ${deletion.replacement}`);
72
+ }
73
+ }
74
+ response.deletions.push(deletion);
75
+ }
76
+ }
77
+ return response;
78
+ }
79
+ diff(source, target) {
80
+ const changes = {};
81
+ if (target.deletions?.length && source.deletions?.length) {
82
+ changes.deletions = source.deletions;
83
+ }
84
+ return Object.keys(changes).length ? changes : undefined;
85
+ }
86
+ async apply(config) {
87
+ const recordTypeFileProperties = await listRecordTypes(this.browserforce.connection);
88
+ const recordTypes = await queryRecordTypes(this.browserforce.connection);
89
+ for (const deletion of config.deletions) {
90
+ const env_1 = { stack: [], error: void 0, hasError: false };
91
+ try {
92
+ const recordType = getRecordType(deletion.fullName, recordTypeFileProperties, recordTypes);
93
+ const page = __addDisposableResource(env_1, await this.browserforce.openPage(`/ui/setup/rectype/RecordTypes?type=${recordType.EntityDefinitionId}`), true);
94
+ const recordTypePage = new RecordTypePage(page);
95
+ const deletePage = await recordTypePage.clickDeleteAction(recordType.Id);
96
+ let newRecordTypeId;
97
+ if (deletion.replacement) {
98
+ const replacementRecordType = getRecordType(deletion.replacement, recordTypeFileProperties, recordTypes);
99
+ newRecordTypeId = replacementRecordType.Id;
100
+ }
101
+ await deletePage.replace(newRecordTypeId);
102
+ }
103
+ catch (e_1) {
104
+ env_1.error = e_1;
105
+ env_1.hasError = true;
106
+ }
107
+ finally {
108
+ const result_1 = __disposeResources(env_1);
109
+ if (result_1)
110
+ await result_1;
111
+ }
112
+ }
113
+ }
114
+ }
115
+ async function listRecordTypes(connection) {
116
+ const recordTypes = await connection.metadata.list({
117
+ type: 'RecordType',
118
+ });
119
+ return recordTypes;
120
+ }
121
+ async function queryRecordTypes(connection) {
122
+ const recordTypesResult = await connection.tooling.query(`SELECT Id, EntityDefinitionId, IsActive FROM RecordType`);
123
+ const recordTypes = recordTypesResult.records;
124
+ return recordTypes;
125
+ }
126
+ function getRecordType(fullName, fileProperties, recordTypes) {
127
+ const recordTypeFileProperty = fileProperties.find((fp) => fp.fullName === fullName);
128
+ if (recordTypeFileProperty) {
129
+ return recordTypes.find((x) => x.Id === recordTypeFileProperty.id);
130
+ }
131
+ return undefined;
132
+ }
133
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/plugins/record-types/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import type { Page } from 'playwright';
2
+ export declare class RecordTypePage {
3
+ private page;
4
+ constructor(page: Page);
5
+ clickDeleteAction(recordTypeId: string): Promise<RecordTypeDeletePage>;
6
+ }
7
+ export declare class RecordTypeDeletePage {
8
+ protected page: Page;
9
+ protected saveButton: string;
10
+ constructor(page: Page);
11
+ replace(newRecordTypeId?: string): Promise<void>;
12
+ save(): Promise<void>;
13
+ throwOnMissingSaveButton(): Promise<void>;
14
+ }
@@ -0,0 +1,50 @@
1
+ import { waitForPageErrors } from '../../browserforce.js';
2
+ export class RecordTypePage {
3
+ page;
4
+ constructor(page) {
5
+ this.page = page;
6
+ }
7
+ async clickDeleteAction(recordTypeId) {
8
+ const xpath = `//a[contains(@href, "setup/ui/recordtypedelete.jsp?id=${recordTypeId.slice(0, 15)}")]`;
9
+ await this.page.locator(`xpath=${xpath}`).first().click();
10
+ await Promise.race([
11
+ this.page.waitForURL((url) => url.pathname === '/setup/ui/recordtypedelete.jsp'),
12
+ waitForPageErrors(this.page),
13
+ ]);
14
+ return new RecordTypeDeletePage(this.page);
15
+ }
16
+ }
17
+ export class RecordTypeDeletePage {
18
+ page;
19
+ saveButton = 'input[name="save"]';
20
+ constructor(page) {
21
+ this.page = page;
22
+ }
23
+ async replace(newRecordTypeId) {
24
+ await this.throwOnMissingSaveButton();
25
+ if (newRecordTypeId) {
26
+ await this.page.locator('select#p2').describe('new value').selectOption(newRecordTypeId.slice(0, 15));
27
+ }
28
+ await this.save();
29
+ }
30
+ async save() {
31
+ await this.page.locator(this.saveButton).click();
32
+ await Promise.race([
33
+ this.page.waitForURL((url) => url.pathname === '/ui/setup/rectype/RecordTypes'),
34
+ waitForPageErrors(this.page),
35
+ ]);
36
+ }
37
+ async throwOnMissingSaveButton() {
38
+ const saveButtonCount = await this.page.locator(this.saveButton).count();
39
+ if (saveButtonCount === 0) {
40
+ const bodyElement = this.page.locator('div.pbBody');
41
+ if ((await bodyElement.count()) > 0) {
42
+ const errorMsg = await bodyElement.textContent();
43
+ if (errorMsg?.trim()) {
44
+ throw new Error(errorMsg.trim());
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ //# sourceMappingURL=pages.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pages.js","sourceRoot":"","sources":["../../../src/plugins/record-types/pages.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,MAAM,OAAO,cAAc;IACjB,IAAI,CAAO;IAEnB,YAAY,IAAU;QACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAEM,KAAK,CAAC,iBAAiB,CAAC,YAAoB;QACjD,MAAM,KAAK,GAAG,yDAAyD,YAAY,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC;QACtG,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,KAAK,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,EAAE,CAAC;QAC1D,MAAM,OAAO,CAAC,IAAI,CAAC;YACjB,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ,KAAK,gCAAgC,CAAC;YAChF,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC;SAC7B,CAAC,CAAC;QACH,OAAO,IAAI,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC7C,CAAC;CACF;AAED,MAAM,OAAO,oBAAoB;IACrB,IAAI,CAAO;IACX,UAAU,GAAG,oBAAoB,CAAC;IAE5C,YAAY,IAAU;QACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,eAAwB;QACpC,MAAM,IAAI,CAAC,wBAAwB,EAAE,CAAC;QACtC,IAAI,eAAe,EAAE,CAAC;YACpB,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,YAAY,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;QACxG,CAAC;QACD,MAAM,IAAI,CAAC,IAAI,EAAE,CAAC;IACpB,CAAC;IAED,KAAK,CAAC,IAAI;QACR,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,EAAE,CAAC;QACjD,MAAM,OAAO,CAAC,IAAI,CAAC;YACjB,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ,KAAK,+BAA+B,CAAC;YAC/E,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC;SAC7B,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,wBAAwB;QAC5B,MAAM,eAAe,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,EAAE,CAAC;QACzE,IAAI,eAAe,KAAK,CAAC,EAAE,CAAC;YAC1B,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;YACpD,IAAI,CAAC,MAAM,WAAW,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;gBACpC,MAAM,QAAQ,GAAG,MAAM,WAAW,CAAC,WAAW,EAAE,CAAC;gBACjD,IAAI,QAAQ,EAAE,IAAI,EAAE,EAAE,CAAC;oBACrB,MAAM,IAAI,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC;gBACnC,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;CACF"}
@@ -0,0 +1,11 @@
1
+ import type { Page } from 'playwright';
2
+ import { BrowserforcePlugin } from '../../plugin.js';
3
+ type Config = {
4
+ enabled: boolean;
5
+ };
6
+ export declare class RelateContactToMultipleAccounts extends BrowserforcePlugin {
7
+ retrieve(definition?: Config): Promise<Config>;
8
+ apply(config: Config): Promise<void>;
9
+ waitForProcessFinished(page: Page): Promise<void>;
10
+ }
11
+ export {};
@@ -0,0 +1,30 @@
1
+ import assert from 'assert';
2
+ import { RelateContactToMultipleAccounts } from './index.js';
3
+ describe(RelateContactToMultipleAccounts.name, function () {
4
+ this.timeout('5m');
5
+ let plugin;
6
+ before(() => {
7
+ plugin = new RelateContactToMultipleAccounts(global.browserforce);
8
+ });
9
+ const configEnabled = {
10
+ enabled: true,
11
+ };
12
+ const configDisabled = {
13
+ enabled: false,
14
+ };
15
+ it('should enable', async () => {
16
+ await plugin.run(configEnabled);
17
+ });
18
+ it('should be enabled', async () => {
19
+ const res = await plugin.run(configEnabled);
20
+ assert.deepStrictEqual(res, { message: 'no action necessary' });
21
+ });
22
+ it('should disable', async () => {
23
+ await plugin.run(configDisabled);
24
+ });
25
+ it('should be disabled', async () => {
26
+ const res = await plugin.run(configDisabled);
27
+ assert.deepStrictEqual(res, { message: 'no action necessary' });
28
+ });
29
+ });
30
+ //# sourceMappingURL=index.e2e-spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.e2e-spec.js","sourceRoot":"","sources":["../../../src/plugins/relate-contact-to-multiple-accounts/index.e2e-spec.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,+BAA+B,EAAE,MAAM,YAAY,CAAC;AAE7D,QAAQ,CAAC,+BAA+B,CAAC,IAAI,EAAE;IAC7C,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,IAAI,MAAuC,CAAC;IAC5C,MAAM,CAAC,GAAG,EAAE;QACV,MAAM,GAAG,IAAI,+BAA+B,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;IACpE,CAAC,CAAC,CAAC;IAEH,MAAM,aAAa,GAAG;QACpB,OAAO,EAAE,IAAI;KACd,CAAC;IACF,MAAM,cAAc,GAAG;QACrB,OAAO,EAAE,KAAK;KACf,CAAC;IAEF,EAAE,CAAC,eAAe,EAAE,KAAK,IAAI,EAAE;QAC7B,MAAM,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IAClC,CAAC,CAAC,CAAC;IACH,EAAE,CAAC,mBAAmB,EAAE,KAAK,IAAI,EAAE;QACjC,MAAM,GAAG,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;QAC5C,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE,CAAC,CAAC;IAClE,CAAC,CAAC,CAAC;IACH,EAAE,CAAC,gBAAgB,EAAE,KAAK,IAAI,EAAE;QAC9B,MAAM,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;IACH,EAAE,CAAC,oBAAoB,EAAE,KAAK,IAAI,EAAE;QAClC,MAAM,GAAG,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;QAC7C,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE,CAAC,CAAC;IAClE,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1,120 @@
1
+ var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
2
+ if (value !== null && value !== void 0) {
3
+ if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
4
+ var dispose, inner;
5
+ if (async) {
6
+ if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
7
+ dispose = value[Symbol.asyncDispose];
8
+ }
9
+ if (dispose === void 0) {
10
+ if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
11
+ dispose = value[Symbol.dispose];
12
+ if (async) inner = dispose;
13
+ }
14
+ if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
15
+ if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };
16
+ env.stack.push({ value: value, dispose: dispose, async: async });
17
+ }
18
+ else if (async) {
19
+ env.stack.push({ async: true });
20
+ }
21
+ return value;
22
+ };
23
+ var __disposeResources = (this && this.__disposeResources) || (function (SuppressedError) {
24
+ return function (env) {
25
+ function fail(e) {
26
+ env.error = env.hasError ? new SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
27
+ env.hasError = true;
28
+ }
29
+ var r, s = 0;
30
+ function next() {
31
+ while (r = env.stack.pop()) {
32
+ try {
33
+ if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
34
+ if (r.dispose) {
35
+ var result = r.dispose.call(r.value);
36
+ if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
37
+ }
38
+ else s |= 1;
39
+ }
40
+ catch (e) {
41
+ fail(e);
42
+ }
43
+ }
44
+ if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
45
+ if (env.hasError) throw env.error;
46
+ }
47
+ return next();
48
+ };
49
+ })(typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
50
+ var e = new Error(message);
51
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
52
+ });
53
+ import { BrowserforcePlugin } from '../../plugin.js';
54
+ const BASE_PATH = '/accounts/accountSetup.apexp';
55
+ export class RelateContactToMultipleAccounts extends BrowserforcePlugin {
56
+ async retrieve(definition) {
57
+ const env_1 = { stack: [], error: void 0, hasError: false };
58
+ try {
59
+ const page = __addDisposableResource(env_1, await this.browserforce.openPage(BASE_PATH), true);
60
+ const response = {
61
+ enabled: await page.locator('input[id$=":sharedContactsCheckBox"]').isChecked(),
62
+ };
63
+ return response;
64
+ }
65
+ catch (e_1) {
66
+ env_1.error = e_1;
67
+ env_1.hasError = true;
68
+ }
69
+ finally {
70
+ const result_1 = __disposeResources(env_1);
71
+ if (result_1)
72
+ await result_1;
73
+ }
74
+ }
75
+ async apply(config) {
76
+ const env_2 = { stack: [], error: void 0, hasError: false };
77
+ try {
78
+ const page = __addDisposableResource(env_2, await this.browserforce.openPage(BASE_PATH), true);
79
+ await this.waitForProcessFinished(page);
80
+ // First we have to click the 'Edit' button, to make the checkbox editable
81
+ await Promise.all([page.waitForEvent('load'), page.locator('input[id$=":edit"]').first().click()]);
82
+ // Change the value of the checkbox
83
+ await page.locator('input[id$=":sharedContactsCheckBox"]').setChecked(config.enabled);
84
+ const saveButton = page.locator('input[id$=":save"]').first();
85
+ if (config.enabled) {
86
+ await Promise.all([page.waitForEvent('load'), saveButton.click()]);
87
+ }
88
+ else {
89
+ await saveButton.click();
90
+ await page.locator('input#disable_confirm').click();
91
+ await Promise.all([page.waitForEvent('load'), page.locator('input#sharedContactsDisableConfirmButton').click()]);
92
+ }
93
+ }
94
+ catch (e_2) {
95
+ env_2.error = e_2;
96
+ env_2.hasError = true;
97
+ }
98
+ finally {
99
+ const result_2 = __disposeResources(env_2);
100
+ if (result_2)
101
+ await result_2;
102
+ }
103
+ }
104
+ async waitForProcessFinished(page) {
105
+ await this.browserforce.retry(async () => {
106
+ const enabling = page.locator('#enablingInProgress');
107
+ if ((await enabling.count()) > 0) {
108
+ // Error: In progress: We're enabling Contacts to Multiple Accounts for your organization. This process can take several hours. We'll send you an email when it's done.
109
+ const message = await enabling.innerText();
110
+ throw new Error(message);
111
+ }
112
+ const disabling = page.locator('#disablingInProgress');
113
+ if ((await disabling.count()) > 0) {
114
+ const message = await disabling.innerText();
115
+ throw new Error(message);
116
+ }
117
+ });
118
+ }
119
+ }
120
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/plugins/relate-contact-to-multiple-accounts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAErD,MAAM,SAAS,GAAG,8BAA8B,CAAC;AAMjD,MAAM,OAAO,+BAAgC,SAAQ,kBAAkB;IAC9D,KAAK,CAAC,QAAQ,CAAC,UAAmB;;;YACvC,MAAY,IAAI,kCAAG,MAAM,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,SAAS,CAAC,OAAA,CAAC;YAC/D,MAAM,QAAQ,GAAG;gBACf,OAAO,EAAE,MAAM,IAAI,CAAC,OAAO,CAAC,sCAAsC,CAAC,CAAC,SAAS,EAAE;aAChF,CAAC;YACF,OAAO,QAAQ,CAAC;;;;;;;;;;;KACjB;IAEM,KAAK,CAAC,KAAK,CAAC,MAAc;;;YAC/B,MAAY,IAAI,kCAAG,MAAM,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,SAAS,CAAC,OAAA,CAAC;YAC/D,MAAM,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;YACxC,0EAA0E;YAC1E,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;YACnG,mCAAmC;YACnC,MAAM,IAAI,CAAC,OAAO,CAAC,sCAAsC,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAEtF,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,KAAK,EAAE,CAAC;YAC9D,IAAI,MAAM,CAAC,OAAO,EAAE,CAAC;gBACnB,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;YACrE,CAAC;iBAAM,CAAC;gBACN,MAAM,UAAU,CAAC,KAAK,EAAE,CAAC;gBACzB,MAAM,IAAI,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,KAAK,EAAE,CAAC;gBACpD,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,0CAA0C,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;YACnH,CAAC;;;;;;;;;;;KACF;IAED,KAAK,CAAC,sBAAsB,CAAC,IAAU;QACrC,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,KAAK,IAAI,EAAE;YACvC,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC;YACrD,IAAI,CAAC,MAAM,QAAQ,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;gBACjC,uKAAuK;gBACvK,MAAM,OAAO,GAAG,MAAM,QAAQ,CAAC,SAAS,EAAE,CAAC;gBAC3C,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC;YAC3B,CAAC;YACD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC;YACvD,IAAI,CAAC,MAAM,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;gBAClC,MAAM,OAAO,GAAG,MAAM,SAAS,CAAC,SAAS,EAAE,CAAC;gBAC5C,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC;YAC3B,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC;CACF"}
@@ -0,0 +1,8 @@
1
+ import { BrowserforcePlugin } from '../../../plugin.js';
2
+ export type Config = {
3
+ enableEnhancedFolderSharing: boolean;
4
+ };
5
+ export declare class FolderSharing extends BrowserforcePlugin {
6
+ retrieve(definition?: Config): Promise<Config>;
7
+ apply(config: Config): Promise<void>;
8
+ }
@@ -0,0 +1,3 @@
1
+ export {};
2
+ // no tests because this setting is only available in old orgs
3
+ //# sourceMappingURL=index.e2e-spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.e2e-spec.js","sourceRoot":"","sources":["../../../../src/plugins/reports-and-dashboards/folder-sharing/index.e2e-spec.ts"],"names":[],"mappings":";AAAA,8DAA8D"}