Skip to content

Commit af41bad

Browse files
authored
Sm/service-ai-setup-definition (#665)
* feat: support serviceAISetup metadata types * chore: auto-update metadata coverage in METADATA_SUPPORT.md * ci: longer timeout for convert nuts * chore: auto-update metadata coverage in METADATA_SUPPORT.md
1 parent 3af34ce commit af41bad

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ jobs:
120120
yarn build
121121
- run:
122122
name: Nuts
123+
no_output_timeout: 20m
123124
command: |
124125
<<parameters.test_command>>
125126

METADATA_SUPPORT.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This list compares metadata types found in Salesforce v55 with the [metadata reg
44

55
This repository is used by both the Salesforce CLIs and Salesforce's VSCode Extensions.
66

7-
Currently, there are 459/491 supported metadata types.
7+
Currently, there are 461/491 supported metadata types.
88
For status on any existing gaps, please search or file an issue in the [Salesforce CLI issues only repo](https://github.com/forcedotcom/cli/issues).
99
To contribute a new metadata type, please see the [Contributing Metadata Types to the Registry](./contributing/metadata.md)
1010

@@ -415,8 +415,8 @@ To contribute a new metadata type, please see the [Contributing Metadata Types t
415415
|ScoreCategory||Not supported, but support could be added|
416416
|SearchSettings|||
417417
|SecuritySettings|||
418-
|ServiceAISetupDefinition||Not supported, but support could be added|
419-
|ServiceAISetupField||Not supported, but support could be added|
418+
|ServiceAISetupDefinition|||
419+
|ServiceAISetupField|||
420420
|ServiceChannel|||
421421
|ServiceCloudVoiceSettings|||
422422
|ServicePresenceStatus|||
@@ -529,9 +529,9 @@ v56 introduces the following new types. Here's their current level of support
529529
|FuelType||Not supported, but support could be added|
530530
|FuelTypeSustnUom||Not supported, but support could be added|
531531
|IncludeEstTaxInQuoteSettings|||
532-
|MarketSegmentReference||Not supported, but support could be added (but not for tracking)|
533532
|MfgServiceConsoleSettings|||
534533
|OauthOidcSettings|||
534+
|PortalDelegablePermissionSet||Not supported, but support could be added|
535535
|ReportingTypeConfig||Not supported, but support could be added|
536536
|SustainabilityUom||Not supported, but support could be added|
537537
|SustnUomConversion||Not supported, but support could be added|

src/registry/metadataRegistry.json

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
{
22
"types": {
3+
"serviceaisetupdefinition": {
4+
"id": "serviceaisetupdefinition",
5+
"name": "ServiceAISetupDefinition",
6+
"suffix": "serviceAISetupDescription",
7+
"directoryName": "serviceAISetupDescriptions",
8+
"inFolder": false,
9+
"strictDirectoryName": false
10+
},
11+
"serviceaisetupfield": {
12+
"id": "serviceaisetupfield",
13+
"name": "ServiceAISetupField",
14+
"suffix": "serviceAISetupField",
15+
"directoryName": "serviceAISetupFields",
16+
"inFolder": false,
17+
"strictDirectoryName": false
18+
},
319
"aiapplication": {
420
"id": "aiapplication",
521
"name": "AIApplication",
@@ -16,7 +32,7 @@
1632
"inFolder": false,
1733
"strictDirectoryName": false
1834
},
19-
"aiusecasedefinition": {
35+
"aiusecasedefinition": {
2036
"id": "aiusecasedefinition",
2137
"name": "AIUsecaseDefinition",
2238
"suffix": "aiUsecaseDefinitions",
@@ -3066,6 +3082,8 @@
30663082
}
30673083
},
30683084
"suffixes": {
3085+
"serviceAISetupDescription": "serviceaisetupdefinition",
3086+
"serviceAISetupField": "serviceaisetupfield",
30693087
"ai": "aiapplication",
30703088
"aiapplicationconfig": "aiapplicationconfig",
30713089
"aiUsecaseDefinitions": "aiusecasedefinition",
@@ -3331,9 +3349,9 @@
33313349
"dataStreamDefinition": "datastreamdefinition",
33323350
"dataPackageKitDefinition": "datapackagekitdefinition",
33333351
"dataSourceBundleDefinition": "datasourcebundledefinition",
3334-
"DataPackageKitObject" : "datapackagekitobject",
3335-
"dataStreamTemplate":"datastreamtemplate",
3336-
"dataSrcDataModelFieldMap":"datasrcdatamodelfieldmap",
3352+
"DataPackageKitObject": "datapackagekitobject",
3353+
"dataStreamTemplate": "datastreamtemplate",
3354+
"dataSrcDataModelFieldMap": "datasrcdatamodelfieldmap",
33373355
"ChannelObjectLinkingRule": "channelobjectlinkingrule",
33383356
"ConversationVendorInformation": "conversationvendorinfo",
33393357
"ConversationVendorFieldDefinition": "conversationvendorfielddef",

0 commit comments

Comments
 (0)