@bigfootai/bigfoot-types 4.6.18 → 4.7.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/metadata/tables/case.js +139 -0
- package/metadata/tables/case.ts +145 -0
- package/metadata/tables/issue.js +149 -0
- package/metadata/tables/issue.ts +155 -0
- package/metadata/tables/opportunity.js +153 -0
- package/metadata/tables/opportunity.ts +159 -0
- package/model.js +50 -30
- package/model.ts +68 -39
- package/package.json +1 -1
- package/metadata/tables/account.json +0 -231
- package/metadata/tables/contact.json +0 -95
- package/metadata/tables/event.json +0 -79
- package/metadata/tables/issue.json +0 -127
- package/metadata/tables/opportunity.json +0 -121
@@ -1,231 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"label": "Account",
|
3
|
-
"name": "Account",
|
4
|
-
"references": [ "https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_account.htm" ],
|
5
|
-
"description": "Represents an individual account, which is an organization involved with your business (such as customers, competitors, and partners).",
|
6
|
-
"fields": [
|
7
|
-
{
|
8
|
-
"label": "Name",
|
9
|
-
"name": "Name",
|
10
|
-
"description": "A name for this account.",
|
11
|
-
"doMonitor": true,
|
12
|
-
"fieldType": "input",
|
13
|
-
"maximumCharacters": 255,
|
14
|
-
"order": 0,
|
15
|
-
"isReadOnly": false
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"label": "Annual Revenue",
|
19
|
-
"name": "AnnualRevenue",
|
20
|
-
"description": "Estimated annual revenue of the account.",
|
21
|
-
"doMonitor": false,
|
22
|
-
"fieldType": "input",
|
23
|
-
"fieldVariation": "currency",
|
24
|
-
"order": 1,
|
25
|
-
"isReadOnly": false
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"label": "Industry",
|
29
|
-
"name": "Industry",
|
30
|
-
"description": "An industry associated with this account.",
|
31
|
-
"doMonitor": false,
|
32
|
-
"fieldType": "select",
|
33
|
-
"order": 2,
|
34
|
-
"isReadOnly": false,
|
35
|
-
"options": [
|
36
|
-
{
|
37
|
-
"label": "Agriculture",
|
38
|
-
"value": "Agriculture"
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"label": "Apparel",
|
42
|
-
"value": "Apparel"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"label": "Banking",
|
46
|
-
"value": "Banking"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"label": "Biotechnology",
|
50
|
-
"value": "Biotechnology"
|
51
|
-
},
|
52
|
-
{
|
53
|
-
"label": "Chemicals",
|
54
|
-
"value": "Chemicals"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"label": "Communications",
|
58
|
-
"value": "Communications"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"label": "Construction",
|
62
|
-
"value": "Construction"
|
63
|
-
},
|
64
|
-
{
|
65
|
-
"label": "Consulting",
|
66
|
-
"value": "Consulting"
|
67
|
-
},
|
68
|
-
{
|
69
|
-
"label": "Education",
|
70
|
-
"value": "Education"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"label": "Electronics",
|
74
|
-
"value": "Electronics"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"label": "Energy",
|
78
|
-
"value": "Energy"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"label": "Engineering",
|
82
|
-
"value": "Engineering"
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"label": "Entertainment",
|
86
|
-
"value": "Entertainment"
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"label": "Environmental",
|
90
|
-
"value": "Environmental"
|
91
|
-
},
|
92
|
-
{
|
93
|
-
"label": "Finance",
|
94
|
-
"value": "Finance"
|
95
|
-
},
|
96
|
-
{
|
97
|
-
"label": "Food & Beverage",
|
98
|
-
"value": "Food & Beverage"
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"label": "Government",
|
102
|
-
"value": "Government"
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"label": "Healthcare",
|
106
|
-
"value": "Healthcare"
|
107
|
-
},
|
108
|
-
{
|
109
|
-
"label": "Hospitality",
|
110
|
-
"value": "Hospitality"
|
111
|
-
},
|
112
|
-
{
|
113
|
-
"label": "Insurance",
|
114
|
-
"value": "Insurance"
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"label": "Machinery",
|
118
|
-
"value": "Machinery"
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"label": "Manufacturing",
|
122
|
-
"value": "Manufacturing"
|
123
|
-
},
|
124
|
-
{
|
125
|
-
"label": "Media",
|
126
|
-
"value": "Media"
|
127
|
-
},
|
128
|
-
{
|
129
|
-
"label": "Not For Profit",
|
130
|
-
"value": "Not For Profit"
|
131
|
-
},
|
132
|
-
{
|
133
|
-
"label": "Recreation",
|
134
|
-
"value": "Recreation"
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"label": "Retail",
|
138
|
-
"value": "Retail"
|
139
|
-
},
|
140
|
-
{
|
141
|
-
"label": "Shipping",
|
142
|
-
"value": "Shipping"
|
143
|
-
},
|
144
|
-
{
|
145
|
-
"label": "Technology",
|
146
|
-
"value": "Technology"
|
147
|
-
},
|
148
|
-
{
|
149
|
-
"label": "Telecommunications",
|
150
|
-
"value": "Telecommunications"
|
151
|
-
},
|
152
|
-
{
|
153
|
-
"label": "Transportation",
|
154
|
-
"value": "Transportation"
|
155
|
-
},
|
156
|
-
{
|
157
|
-
"label": "Utilities",
|
158
|
-
"value": "Utilities"
|
159
|
-
},
|
160
|
-
{
|
161
|
-
"label": "Other",
|
162
|
-
"value": "Other"
|
163
|
-
}
|
164
|
-
]
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"label": "Phone",
|
168
|
-
"name": "Phone",
|
169
|
-
"description": "Phone number for this account.",
|
170
|
-
"doMonitor": false,
|
171
|
-
"fieldType": "input",
|
172
|
-
"fieldVariation": "phone",
|
173
|
-
"maximumCharacters": 40,
|
174
|
-
"order": 3,
|
175
|
-
"isReadOnly": false
|
176
|
-
},
|
177
|
-
{
|
178
|
-
"label": "Website",
|
179
|
-
"name": "Website",
|
180
|
-
"description": "The website of this account.",
|
181
|
-
"doMonitor": false,
|
182
|
-
"fieldType": "input",
|
183
|
-
"fieldVariation": "url",
|
184
|
-
"maximumCharacters": 255,
|
185
|
-
"order": 4,
|
186
|
-
"isReadOnly": false
|
187
|
-
},
|
188
|
-
{
|
189
|
-
"label": "Type",
|
190
|
-
"name": "Type",
|
191
|
-
"description": "Type of account.",
|
192
|
-
"doMonitor": true,
|
193
|
-
"fieldType": "select",
|
194
|
-
"order": 5,
|
195
|
-
"isReadOnly": false,
|
196
|
-
"options": [
|
197
|
-
{
|
198
|
-
"label": "Customer",
|
199
|
-
"value": "Customer"
|
200
|
-
},
|
201
|
-
{
|
202
|
-
"label": "Competitor",
|
203
|
-
"value": "Competitor"
|
204
|
-
},
|
205
|
-
{
|
206
|
-
"label": "Partner",
|
207
|
-
"value": "Partner"
|
208
|
-
}
|
209
|
-
]
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"label": "Owner.Name",
|
213
|
-
"name": "Owner",
|
214
|
-
"description": "Name of the User who has been assigned to work with this account.",
|
215
|
-
"doMonitor": true,
|
216
|
-
"fieldType": "input",
|
217
|
-
"order": 7,
|
218
|
-
"isReadOnly": false
|
219
|
-
},
|
220
|
-
{
|
221
|
-
"label": "Description",
|
222
|
-
"name": "Description",
|
223
|
-
"description": "Text description of the account.",
|
224
|
-
"doMonitor": false,
|
225
|
-
"fieldType": "textarea",
|
226
|
-
"maximumCharacters": 32000,
|
227
|
-
"order": 8,
|
228
|
-
"isReadOnly": false
|
229
|
-
}
|
230
|
-
]
|
231
|
-
}
|
@@ -1,95 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"label": "Contact",
|
3
|
-
"name": "Contact",
|
4
|
-
"references": [ "https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_contact.htm" ],
|
5
|
-
"description": "Represents a contact, which is a person associated with an account.",
|
6
|
-
"fields": [
|
7
|
-
{
|
8
|
-
"label": "First Name",
|
9
|
-
"name": "FirstName",
|
10
|
-
"description": "The first name of the contact.",
|
11
|
-
"doMonitor": true,
|
12
|
-
"fieldType": "input",
|
13
|
-
"maximumCharacters": 40,
|
14
|
-
"order": 0,
|
15
|
-
"isReadOnly": false
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"label": "Last Name",
|
19
|
-
"name": "LastName",
|
20
|
-
"description": "The last name of the contact.",
|
21
|
-
"doMonitor": true,
|
22
|
-
"fieldType": "input",
|
23
|
-
"maximumCharacters": 80,
|
24
|
-
"order": 1,
|
25
|
-
"isReadOnly": false
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"label": "Title",
|
29
|
-
"name": "Title",
|
30
|
-
"description": "A title for this contact.",
|
31
|
-
"doMonitor": true,
|
32
|
-
"fieldType": "input",
|
33
|
-
"order": 2,
|
34
|
-
"isReadOnly": false
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"label": "Phone",
|
38
|
-
"name": "Phone",
|
39
|
-
"description": "The phone number for the contact.",
|
40
|
-
"doMonitor": true,
|
41
|
-
"fieldType": "input",
|
42
|
-
"fieldVariation": "phone",
|
43
|
-
"order": 3,
|
44
|
-
"isReadOnly": false
|
45
|
-
},
|
46
|
-
{
|
47
|
-
"label": "Email",
|
48
|
-
"name": "Email",
|
49
|
-
"description": "The email address for the contact.",
|
50
|
-
"doMonitor": true,
|
51
|
-
"fieldType": "input",
|
52
|
-
"fieldVariation": "email",
|
53
|
-
"order": 4,
|
54
|
-
"isReadOnly": false
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"label": "Date of Birth",
|
58
|
-
"name": "Birthdate",
|
59
|
-
"description": "The date of birth of the contact.",
|
60
|
-
"doMonitor": true,
|
61
|
-
"fieldType": "input",
|
62
|
-
"fieldVariation": "date",
|
63
|
-
"order": 5,
|
64
|
-
"isReadOnly": false
|
65
|
-
},
|
66
|
-
{
|
67
|
-
"label": "Account",
|
68
|
-
"name": "Account.Name",
|
69
|
-
"description": "Name of the account associated with this contact.",
|
70
|
-
"doMonitor": true,
|
71
|
-
"fieldType": "input",
|
72
|
-
"order": 6,
|
73
|
-
"isReadOnly": false
|
74
|
-
},
|
75
|
-
{
|
76
|
-
"label": "Owner.Name",
|
77
|
-
"name": "Owner",
|
78
|
-
"description": "Name of the User who has been assigned to work with this contact.",
|
79
|
-
"doMonitor": true,
|
80
|
-
"fieldType": "input",
|
81
|
-
"order": 7,
|
82
|
-
"isReadOnly": false
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"label": "Description",
|
86
|
-
"name": "Description",
|
87
|
-
"description": "Text description of the contact.",
|
88
|
-
"doMonitor": false,
|
89
|
-
"fieldType": "textarea",
|
90
|
-
"maximumCharacters": 32000,
|
91
|
-
"order": 8,
|
92
|
-
"isReadOnly": false
|
93
|
-
}
|
94
|
-
]
|
95
|
-
}
|
@@ -1,79 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"label": "Calendar Event",
|
3
|
-
"name": "Event",
|
4
|
-
"references": [ "https://developers.google.com/calendar/api/v3/reference/events" ],
|
5
|
-
"description": "Represents an event in a calendar.",
|
6
|
-
"fields": [
|
7
|
-
{
|
8
|
-
"label": "Summary",
|
9
|
-
"name": "Summary",
|
10
|
-
"description": "A summary description of the event.",
|
11
|
-
"doMonitor": true,
|
12
|
-
"fieldType": "input",
|
13
|
-
"maximumCharacters": 255,
|
14
|
-
"order": 0,
|
15
|
-
"isReadOnly": false
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"label": "Status",
|
19
|
-
"name": "Status",
|
20
|
-
"description": "The status of the event.",
|
21
|
-
"doMonitor": true,
|
22
|
-
"fieldType": "select",
|
23
|
-
"order": 1,
|
24
|
-
"isReadOnly": false,
|
25
|
-
"options": [
|
26
|
-
{
|
27
|
-
"label": "Confirmed",
|
28
|
-
"value": "Confirmed"
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"label": "Tentative",
|
32
|
-
"value": "Tentative"
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"label": "Cancelled",
|
36
|
-
"value": "Cancelled"
|
37
|
-
}
|
38
|
-
]
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"label": "Date",
|
42
|
-
"name": "Date",
|
43
|
-
"description": "Date and time for the event.",
|
44
|
-
"doMonitor": true,
|
45
|
-
"fieldType": "input",
|
46
|
-
"fieldVariation": "datetime",
|
47
|
-
"order": 2,
|
48
|
-
"isReadOnly": false
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"label": "Attendees",
|
52
|
-
"name": "Attendees",
|
53
|
-
"description": "A comma separated list of email addresses for those attending the event.",
|
54
|
-
"doMonitor": true,
|
55
|
-
"fieldType": "input",
|
56
|
-
"order": 3,
|
57
|
-
"isReadOnly": false
|
58
|
-
},
|
59
|
-
{
|
60
|
-
"label": "Attachments",
|
61
|
-
"name": "Attachments",
|
62
|
-
"description": "A comma separated list of links to any attachments.",
|
63
|
-
"doMonitor": true,
|
64
|
-
"fieldType": "input",
|
65
|
-
"order": 3,
|
66
|
-
"isReadOnly": false
|
67
|
-
},
|
68
|
-
{
|
69
|
-
"label": "Description",
|
70
|
-
"name": "Description",
|
71
|
-
"description": "Text description of the event.",
|
72
|
-
"doMonitor": false,
|
73
|
-
"fieldType": "textarea",
|
74
|
-
"maximumCharacters": 32000,
|
75
|
-
"order": 4,
|
76
|
-
"isReadOnly": false
|
77
|
-
}
|
78
|
-
]
|
79
|
-
}
|
@@ -1,127 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"label": "Issue",
|
3
|
-
"name": "Issue",
|
4
|
-
"references": [
|
5
|
-
"https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_case.htm",
|
6
|
-
"https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-post",
|
7
|
-
"https://developer.zendesk.com/api-reference/ticketing/tickets/tickets/"
|
8
|
-
],
|
9
|
-
"description": "Represents an issue/case/ticket, which is a problem that needs to be resolved.",
|
10
|
-
"fields": [
|
11
|
-
{
|
12
|
-
"label": "Summary",
|
13
|
-
"name": "Summary",
|
14
|
-
"description": "A summary description of the issue.",
|
15
|
-
"doMonitor": true,
|
16
|
-
"fieldType": "input",
|
17
|
-
"maximumCharacters": 255,
|
18
|
-
"order": 0,
|
19
|
-
"isReadOnly": false
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"label": "Priority",
|
23
|
-
"name": "Priority",
|
24
|
-
"description": "The priority of the issue.",
|
25
|
-
"doMonitor": true,
|
26
|
-
"fieldType": "select",
|
27
|
-
"order": 1,
|
28
|
-
"isReadOnly": false,
|
29
|
-
"options": [
|
30
|
-
{
|
31
|
-
"label": "High",
|
32
|
-
"value": "High"
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"label": "Medium",
|
36
|
-
"value": "Medium"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"label": "Low",
|
40
|
-
"value": "Low"
|
41
|
-
}
|
42
|
-
]
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"label": "Status",
|
46
|
-
"name": "Status",
|
47
|
-
"description": "The status of the issue.",
|
48
|
-
"doMonitor": true,
|
49
|
-
"fieldType": "select",
|
50
|
-
"order": 2,
|
51
|
-
"isReadOnly": false,
|
52
|
-
"options": [
|
53
|
-
{
|
54
|
-
"label": "New",
|
55
|
-
"value": "New"
|
56
|
-
},
|
57
|
-
{
|
58
|
-
"label": "Open",
|
59
|
-
"value": "Open"
|
60
|
-
},
|
61
|
-
{
|
62
|
-
"label": "Pending",
|
63
|
-
"value": "Pending"
|
64
|
-
},
|
65
|
-
{
|
66
|
-
"label": "Hold",
|
67
|
-
"value": "Hold"
|
68
|
-
},
|
69
|
-
{
|
70
|
-
"label": "Solved",
|
71
|
-
"value": "Solved"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"label": "Closed",
|
75
|
-
"value": "Closed"
|
76
|
-
}
|
77
|
-
]
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"label": "Account",
|
81
|
-
"name": "Account.Name",
|
82
|
-
"description": "Name of the account associated with this issue.",
|
83
|
-
"doMonitor": true,
|
84
|
-
"fieldType": "input",
|
85
|
-
"order": 3,
|
86
|
-
"isReadOnly": false
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"label": "Contact Name",
|
90
|
-
"name": "Contact.Name",
|
91
|
-
"description": "Name of the contact associated with this issue.",
|
92
|
-
"doMonitor": true,
|
93
|
-
"fieldType": "input",
|
94
|
-
"order": 4,
|
95
|
-
"isReadOnly": false
|
96
|
-
},
|
97
|
-
{
|
98
|
-
"label": "Due Date",
|
99
|
-
"name": "DueDate",
|
100
|
-
"description": "Date and time when the issue is due to be completed.",
|
101
|
-
"doMonitor": true,
|
102
|
-
"fieldType": "input",
|
103
|
-
"fieldVariation": "datetime",
|
104
|
-
"order": 5,
|
105
|
-
"isReadOnly": false
|
106
|
-
},
|
107
|
-
{
|
108
|
-
"label": "Owner.Name",
|
109
|
-
"name": "Owner",
|
110
|
-
"description": "Name of the User who has been assigned to work on this issue.",
|
111
|
-
"doMonitor": true,
|
112
|
-
"fieldType": "input",
|
113
|
-
"order": 6,
|
114
|
-
"isReadOnly": false
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"label": "Description",
|
118
|
-
"name": "Description",
|
119
|
-
"description": "Text description of the issue.",
|
120
|
-
"doMonitor": false,
|
121
|
-
"fieldType": "textarea",
|
122
|
-
"maximumCharacters": 32000,
|
123
|
-
"order": 7,
|
124
|
-
"isReadOnly": false
|
125
|
-
}
|
126
|
-
]
|
127
|
-
}
|
@@ -1,121 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"label": "Opportunity",
|
3
|
-
"name": "Opportunity",
|
4
|
-
"references": [
|
5
|
-
"https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_opportunity.htm"
|
6
|
-
],
|
7
|
-
"description": "Represents an opportunity, which is a sale or pending deal.",
|
8
|
-
"fields": [
|
9
|
-
{
|
10
|
-
"label": "Name",
|
11
|
-
"name": "Name",
|
12
|
-
"description": "A name for this opportunity.",
|
13
|
-
"monitor": true,
|
14
|
-
"fieldType": "input",
|
15
|
-
"maximumCharacters": 120,
|
16
|
-
"readOnly": false
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"label": "Account",
|
20
|
-
"name": "Account.Name",
|
21
|
-
"description": "Name of the account associated with this opportunity.",
|
22
|
-
"monitor": true,
|
23
|
-
"fieldType": "input",
|
24
|
-
"readOnly": false
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"label": "Amount",
|
28
|
-
"name": "Amount",
|
29
|
-
"description": "Estimated total sale amount.",
|
30
|
-
"monitor": true,
|
31
|
-
"fieldType": "input",
|
32
|
-
"fieldVariation": "currency",
|
33
|
-
"readOnly": false
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"label": "Close Date",
|
37
|
-
"name": "CloseDate",
|
38
|
-
"description": "Date when the opportunity is expected to close.",
|
39
|
-
"monitor": true,
|
40
|
-
"fieldType": "input",
|
41
|
-
"fieldVariation": "date",
|
42
|
-
"readOnly": false
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"label": "Stage",
|
46
|
-
"name": "StageName",
|
47
|
-
"description": "Current stage of this opportunity.",
|
48
|
-
"monitor": true,
|
49
|
-
"fieldType": "select",
|
50
|
-
"readOnly": false,
|
51
|
-
"options": [
|
52
|
-
{
|
53
|
-
"label": "Prospecting",
|
54
|
-
"value": "Prospecting"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"label": "Qualification",
|
58
|
-
"value": "Qualification"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"label": "Needs Analysis",
|
62
|
-
"value": "Needs Analysis"
|
63
|
-
},
|
64
|
-
{
|
65
|
-
"label": "Value Proposition",
|
66
|
-
"value": "Value Proposition"
|
67
|
-
},
|
68
|
-
{
|
69
|
-
"label": "Id. Decision Makers",
|
70
|
-
"value": "Id. Decision Makers"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"label": "Perception Analysis",
|
74
|
-
"value": "Perception Analysis"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"label": "Proposal/Price Quote",
|
78
|
-
"value": "Proposal/Price Quote"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"label": "Negotiation/Review",
|
82
|
-
"value": "Negotiation/Review"
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"label": "Closed Won",
|
86
|
-
"value": "Closed Won"
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"label": "Closed Lost",
|
90
|
-
"value": "Closed Lost"
|
91
|
-
}
|
92
|
-
]
|
93
|
-
},
|
94
|
-
{
|
95
|
-
"label": "Owner.Name",
|
96
|
-
"name": "Owner",
|
97
|
-
"description": "Name of the User who has been assigned to work on this opportunity.",
|
98
|
-
"monitor": true,
|
99
|
-
"fieldType": "input",
|
100
|
-
"readOnly": false
|
101
|
-
},
|
102
|
-
{
|
103
|
-
"label": "Next Step",
|
104
|
-
"name": "NextStep",
|
105
|
-
"description": "A short description of next task in closing opportunity.",
|
106
|
-
"monitor": true,
|
107
|
-
"fieldType": "input",
|
108
|
-
"maximumCharacters": 250,
|
109
|
-
"readOnly": false
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"label": "Description",
|
113
|
-
"name": "Description",
|
114
|
-
"description": "Text description of the opportunity.",
|
115
|
-
"monitor": false,
|
116
|
-
"fieldType": "textarea",
|
117
|
-
"maximumCharacters": 32000,
|
118
|
-
"readOnly": false
|
119
|
-
}
|
120
|
-
]
|
121
|
-
}
|