@salesforce/plugin-sobject 1.0.9 → 1.1.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 (53) hide show
  1. package/README.md +12 -12
  2. package/lib/commands/schema/generate/field.d.ts +3 -1
  3. package/lib/commands/schema/generate/field.js +100 -126
  4. package/lib/commands/schema/generate/field.js.map +1 -1
  5. package/lib/commands/schema/generate/platformevent.js +17 -16
  6. package/lib/commands/schema/generate/platformevent.js.map +1 -1
  7. package/lib/commands/schema/generate/sobject.js +34 -31
  8. package/lib/commands/schema/generate/sobject.js.map +1 -1
  9. package/lib/shared/flags.js.map +1 -1
  10. package/lib/shared/prompts/apiName.d.ts +5 -0
  11. package/lib/shared/prompts/apiName.js +26 -0
  12. package/lib/shared/prompts/apiName.js.map +1 -0
  13. package/lib/shared/prompts/description.d.ts +3 -0
  14. package/lib/shared/prompts/description.js +15 -0
  15. package/lib/shared/prompts/description.js.map +1 -0
  16. package/lib/shared/prompts/directory.d.ts +3 -0
  17. package/lib/shared/prompts/directory.js +16 -0
  18. package/lib/shared/prompts/directory.js.map +1 -0
  19. package/lib/shared/prompts/fields/number.d.ts +4 -0
  20. package/lib/shared/prompts/fields/number.js +26 -0
  21. package/lib/shared/prompts/fields/number.js.map +1 -0
  22. package/lib/shared/prompts/fields/text.d.ts +2 -0
  23. package/lib/shared/prompts/fields/text.js +31 -0
  24. package/lib/shared/prompts/fields/text.js.map +1 -0
  25. package/lib/shared/prompts/functions.d.ts +8 -0
  26. package/lib/shared/prompts/functions.js +24 -0
  27. package/lib/shared/prompts/functions.js.map +1 -0
  28. package/lib/shared/prompts/nameField.d.ts +5 -0
  29. package/lib/shared/prompts/nameField.js +31 -0
  30. package/lib/shared/prompts/nameField.js.map +1 -0
  31. package/lib/shared/prompts/object.d.ts +8 -0
  32. package/lib/shared/prompts/object.js +23 -0
  33. package/lib/shared/prompts/object.js.map +1 -0
  34. package/lib/shared/prompts/picklist.d.ts +2 -0
  35. package/lib/shared/prompts/picklist.js +31 -0
  36. package/lib/shared/prompts/picklist.js.map +1 -0
  37. package/lib/shared/prompts/plural.d.ts +3 -0
  38. package/lib/shared/prompts/plural.js +15 -0
  39. package/lib/shared/prompts/plural.js.map +1 -0
  40. package/lib/shared/prompts/relationshipField.js +43 -55
  41. package/lib/shared/prompts/relationshipField.js.map +1 -1
  42. package/lib/shared/types.d.ts +1 -8
  43. package/messages/generate.event.md +4 -0
  44. package/messages/generate.object.md +9 -9
  45. package/messages/prompts.shared.md +3 -3
  46. package/oclif.lock +159 -48
  47. package/oclif.manifest.json +2 -6
  48. package/package.json +9 -7
  49. package/schemas/schema-generate-field.json +15 -0
  50. package/schemas/schema-generate-sobject.json +17 -14
  51. package/lib/shared/prompts/prompts.d.ts +0 -28
  52. package/lib/shared/prompts/prompts.js +0 -123
  53. package/lib/shared/prompts/prompts.js.map +0 -1
@@ -1,123 +0,0 @@
1
- /*
2
- * Copyright (c) 2020, salesforce.com, inc.
3
- * All rights reserved.
4
- * Licensed under the BSD 3-Clause license.
5
- * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
- */
7
- import { Messages } from '@salesforce/core';
8
- import { Prompter } from '@salesforce/sf-plugins-core';
9
- import { getDirectoriesThatContainObjects, getObjectDirectories } from '../fs.js';
10
- Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
11
- const messages = Messages.loadMessages('@salesforce/plugin-sobject', 'prompts.shared');
12
- export const makeNameApiCompatible = (input) => input.replace(/ /g, '').replace(/-/g, '_').replace(/_{2,}/g, '_');
13
- const getSuffix = (objectType) => {
14
- switch (objectType) {
15
- case 'CustomObject':
16
- case 'CustomField':
17
- return '__c';
18
- case 'PlatformEvent':
19
- return '__e';
20
- }
21
- };
22
- export const directoryPrompt = async (packageDirs) => ({
23
- type: 'list',
24
- message: messages.getMessage('directory'),
25
- name: 'directory',
26
- choices: await getDirectoriesThatContainObjects(packageDirs.map((pd) => pd.path)),
27
- });
28
- export const pluralPrompt = (label) => ({
29
- type: 'input',
30
- message: messages.getMessage('pluralLabel'),
31
- name: 'pluralLabel',
32
- default: `${label}s`,
33
- });
34
- export const apiNamePrompt = (label, objectType) => ({
35
- type: 'input',
36
- message: messages.getMessage('apiName'),
37
- name: 'fullName',
38
- default: `${makeNameApiCompatible(label)}${getSuffix(objectType)}`,
39
- });
40
- export const descriptionPrompt = {
41
- type: 'input',
42
- message: messages.getMessage('description'),
43
- name: 'description',
44
- validate: (input) => (input.length ? true : messages.getMessage('error.noDescription')),
45
- };
46
- /** Ask about the name/type for the Name field, with a followup for AutoNumber format if AutoNumber is chosen */
47
- export const namePrompts = (label) => [
48
- {
49
- type: 'input',
50
- message: messages.getMessage('nameFieldPrompts.label'),
51
- name: 'nameFieldLabel',
52
- default: `${label} Name`,
53
- },
54
- {
55
- type: 'list',
56
- message: messages.getMessage('nameFieldPrompts.type'),
57
- name: 'nameFieldType',
58
- default: 'Text',
59
- choices: ['Text', 'AutoNumber'],
60
- },
61
- {
62
- type: 'input',
63
- when: (answers) => answers.nameFieldType === 'AutoNumber',
64
- message: messages.getMessage('nameFieldPrompts.autoNumberFormat'),
65
- name: 'autoNumberFormat',
66
- default: `${label}-{0}`,
67
- },
68
- ];
69
- /**
70
- *
71
- * @param packageDirs
72
- * @param name The "name" property of the Inquirer answer object. Supports use of the question for multiple scenarios
73
- */
74
- export const objectPrompt = async (packageDirs, name = 'object', message = messages.getMessage('object')) => ({
75
- type: 'list',
76
- message,
77
- name,
78
- choices: (await getObjectDirectories(packageDirs.map((pd) => pd.path)))
79
- .sort()
80
- .map((objDir) => ({ value: objDir, name: objDir.split('/').pop() })),
81
- });
82
- export const integerValidation = (value, min, max) => {
83
- if (value < min)
84
- return messages.getMessage('numberValidationMin', [value, min]);
85
- if (value > max)
86
- return messages.getMessage('numberValidationMax', [value, max]);
87
- return true;
88
- };
89
- /**
90
- * recursively keep adding picklist values until the user says to stop
91
- */
92
- export const picklistPrompts = async () => {
93
- const output = [];
94
- let keepAsking = true;
95
- const prompter = new Prompter();
96
- while (keepAsking) {
97
- // the very definition of needing a loop for an await
98
- // eslint-disable-next-line no-await-in-loop
99
- const response = await prompter.prompt({
100
- type: 'input',
101
- name: 'picklistValue',
102
- validate: (input) => (output.find((v) => v.fullName === input) ? `${input} already exists` : true),
103
- message: output.length === 0 ? messages.getMessage('picklist.first') : messages.getMessage('picklist.additional'),
104
- });
105
- if (response.picklistValue === undefined || response.picklistValue === '') {
106
- keepAsking = false;
107
- }
108
- else {
109
- output.push({
110
- fullName: response.picklistValue,
111
- label: response.picklistValue,
112
- default: output.length === 0,
113
- });
114
- }
115
- }
116
- return {
117
- valueSetDefinition: {
118
- value: output,
119
- sorted: true,
120
- },
121
- };
122
- };
123
- //# sourceMappingURL=prompts.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../../src/shared/prompts/prompts.ts"],"names":[],"mappings":"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"}