@salesforce/source-deploy-retrieve 5.0.0-orb.5 → 5.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.
- package/CHANGELOG.md +190 -99
- package/README.md +1 -1
- package/lib/src/client/deployStrategies/auraDeploy.js +2 -2
- package/lib/src/client/deployStrategies/auraDeploy.js.map +1 -1
- package/lib/src/client/deployStrategies/baseDeploy.js +2 -2
- package/lib/src/client/deployStrategies/baseDeploy.js.map +1 -1
- package/lib/src/client/deployStrategies/containerDeploy.js +3 -3
- package/lib/src/client/deployStrategies/containerDeploy.js.map +1 -1
- package/lib/src/client/deployStrategies/lwcDeploy.js +2 -2
- package/lib/src/client/deployStrategies/lwcDeploy.js.map +1 -1
- package/lib/src/client/metadataApiRetrieve.d.ts +8 -1
- package/lib/src/client/metadataApiRetrieve.js +20 -9
- package/lib/src/client/metadataApiRetrieve.js.map +1 -1
- package/lib/src/client/metadataTransfer.js +2 -1
- package/lib/src/client/metadataTransfer.js.map +1 -1
- package/lib/src/collections/componentSet.d.ts +14 -10
- package/lib/src/collections/componentSet.js +113 -49
- package/lib/src/collections/componentSet.js.map +1 -1
- package/lib/src/collections/types.d.ts +8 -0
- package/lib/src/convert/convertContext.d.ts +1 -0
- package/lib/src/convert/convertContext.js +33 -6
- package/lib/src/convert/convertContext.js.map +1 -1
- package/lib/src/convert/metadataConverter.d.ts +2 -2
- package/lib/src/convert/metadataConverter.js +29 -22
- package/lib/src/convert/metadataConverter.js.map +1 -1
- package/lib/src/convert/streams.js +4 -4
- package/lib/src/convert/streams.js.map +1 -1
- package/lib/src/convert/transformers/decomposedMetadataTransformer.d.ts +0 -1
- package/lib/src/convert/transformers/decomposedMetadataTransformer.js +7 -24
- package/lib/src/convert/transformers/decomposedMetadataTransformer.js.map +1 -1
- package/lib/src/convert/transformers/staticResourceMetadataTransformer.js +6 -9
- package/lib/src/convert/transformers/staticResourceMetadataTransformer.js.map +1 -1
- package/lib/src/registry/nonSupportedTypes.d.ts +11 -0
- package/lib/src/registry/nonSupportedTypes.js +55 -0
- package/lib/src/registry/nonSupportedTypes.js.map +1 -0
- package/lib/src/registry/registry.d.ts +324 -1
- package/lib/src/registry/registry.json +342 -19
- package/lib/src/registry/registryAccess.d.ts +10 -0
- package/lib/src/registry/registryAccess.js +22 -1
- package/lib/src/registry/registryAccess.js.map +1 -1
- package/lib/src/registry/types.d.ts +47 -0
- package/lib/src/registry/types.js.map +1 -1
- package/lib/src/resolve/adapters/baseSourceAdapter.d.ts +1 -0
- package/lib/src/resolve/adapters/baseSourceAdapter.js +47 -15
- package/lib/src/resolve/adapters/baseSourceAdapter.js.map +1 -1
- package/lib/src/resolve/adapters/decomposedSourceAdapter.js +2 -1
- package/lib/src/resolve/adapters/decomposedSourceAdapter.js.map +1 -1
- package/lib/src/resolve/forceIgnore.d.ts +0 -5
- package/lib/src/resolve/forceIgnore.js +10 -91
- package/lib/src/resolve/forceIgnore.js.map +1 -1
- package/lib/src/resolve/manifestResolver.d.ts +1 -0
- package/lib/src/resolve/manifestResolver.js +28 -6
- package/lib/src/resolve/manifestResolver.js.map +1 -1
- package/lib/src/resolve/metadataResolver.d.ts +7 -3
- package/lib/src/resolve/metadataResolver.js +28 -3
- package/lib/src/resolve/metadataResolver.js.map +1 -1
- package/lib/src/resolve/sourceComponent.d.ts +42 -3
- package/lib/src/resolve/sourceComponent.js +106 -33
- package/lib/src/resolve/sourceComponent.js.map +1 -1
- package/lib/src/resolve/treeContainers.js +7 -7
- package/lib/src/resolve/treeContainers.js.map +1 -1
- package/lib/src/utils/fileSystemHandler.js +1 -1
- package/lib/src/utils/fileSystemHandler.js.map +1 -1
- package/lib/src/utils/index.d.ts +1 -1
- package/lib/src/utils/index.js +1 -0
- package/lib/src/utils/index.js.map +1 -1
- package/lib/src/utils/path.d.ts +22 -1
- package/lib/src/utils/path.js +32 -1
- package/lib/src/utils/path.js.map +1 -1
- package/package.json +9 -5
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const registry: Readonly<{
|
|
5
5
|
types: {
|
|
6
|
+
aiapplication: {
|
|
7
|
+
id: string;
|
|
8
|
+
name: string;
|
|
9
|
+
suffix: string;
|
|
10
|
+
directoryName: string;
|
|
11
|
+
inFolder: boolean;
|
|
12
|
+
strictDirectoryName: boolean;
|
|
13
|
+
};
|
|
14
|
+
aiapplicationconfig: {
|
|
15
|
+
id: string;
|
|
16
|
+
suffix: string;
|
|
17
|
+
directoryName: string;
|
|
18
|
+
name: string;
|
|
19
|
+
inFolder: boolean;
|
|
20
|
+
strictDirectoryName: boolean;
|
|
21
|
+
};
|
|
22
|
+
mlprediction: {
|
|
23
|
+
id: string;
|
|
24
|
+
name: string;
|
|
25
|
+
suffix: string;
|
|
26
|
+
directoryName: string;
|
|
27
|
+
inFolder: boolean;
|
|
28
|
+
strictDirectoryName: boolean;
|
|
29
|
+
};
|
|
30
|
+
mldatadefinition: {
|
|
31
|
+
id: string;
|
|
32
|
+
name: string;
|
|
33
|
+
suffix: string;
|
|
34
|
+
directoryName: string;
|
|
35
|
+
inFolder: boolean;
|
|
36
|
+
strictDirectoryName: boolean;
|
|
37
|
+
};
|
|
6
38
|
installedpackage: {
|
|
7
39
|
id: string;
|
|
8
40
|
name: string;
|
|
@@ -24,6 +56,7 @@ export declare const registry: Readonly<{
|
|
|
24
56
|
customlabel: {
|
|
25
57
|
id: string;
|
|
26
58
|
name: string;
|
|
59
|
+
xmlElementName: string;
|
|
27
60
|
ignoreParentName: boolean;
|
|
28
61
|
uniqueIdElement: string;
|
|
29
62
|
directoryName: string;
|
|
@@ -70,6 +103,9 @@ export declare const registry: Readonly<{
|
|
|
70
103
|
directoryName: string;
|
|
71
104
|
inFolder: boolean;
|
|
72
105
|
strictDirectoryName: boolean;
|
|
106
|
+
strategies: {
|
|
107
|
+
adapter: string;
|
|
108
|
+
};
|
|
73
109
|
};
|
|
74
110
|
experiencebundle: {
|
|
75
111
|
id: string;
|
|
@@ -250,12 +286,21 @@ export declare const registry: Readonly<{
|
|
|
250
286
|
inFolder: boolean;
|
|
251
287
|
strictDirectoryName: boolean;
|
|
252
288
|
};
|
|
289
|
+
permissionsetlicensedefinition: {
|
|
290
|
+
id: string;
|
|
291
|
+
name: string;
|
|
292
|
+
suffix: string;
|
|
293
|
+
directoryName: string;
|
|
294
|
+
inFolder: boolean;
|
|
295
|
+
strictDirectoryName: boolean;
|
|
296
|
+
};
|
|
253
297
|
customobject: {
|
|
254
298
|
id: string;
|
|
255
299
|
name: string;
|
|
256
300
|
suffix: string;
|
|
257
301
|
directoryName: string;
|
|
258
302
|
inFolder: boolean;
|
|
303
|
+
supportsWildcardAndName: boolean;
|
|
259
304
|
strictDirectoryName: boolean;
|
|
260
305
|
children: {
|
|
261
306
|
types: {
|
|
@@ -602,42 +647,56 @@ export declare const registry: Readonly<{
|
|
|
602
647
|
workflowfieldupdate: {
|
|
603
648
|
id: string;
|
|
604
649
|
name: string;
|
|
650
|
+
xmlElementName: string;
|
|
651
|
+
uniqueIdElement: string;
|
|
605
652
|
directoryName: string;
|
|
606
653
|
suffix: string;
|
|
607
654
|
};
|
|
608
655
|
workflowknowledgepublish: {
|
|
609
656
|
id: string;
|
|
610
657
|
name: string;
|
|
658
|
+
xmlElementName: string;
|
|
659
|
+
uniqueIdElement: string;
|
|
611
660
|
directoryName: string;
|
|
612
661
|
suffix: string;
|
|
613
662
|
};
|
|
614
663
|
workflowtask: {
|
|
615
664
|
id: string;
|
|
616
665
|
name: string;
|
|
666
|
+
xmlElementName: string;
|
|
667
|
+
uniqueIdElement: string;
|
|
617
668
|
directoryName: string;
|
|
618
669
|
suffix: string;
|
|
619
670
|
};
|
|
620
671
|
workflowalert: {
|
|
621
672
|
id: string;
|
|
622
673
|
name: string;
|
|
674
|
+
xmlElementName: string;
|
|
675
|
+
uniqueIdElement: string;
|
|
623
676
|
directoryName: string;
|
|
624
677
|
suffix: string;
|
|
625
678
|
};
|
|
626
679
|
workflowsend: {
|
|
627
680
|
id: string;
|
|
628
681
|
name: string;
|
|
682
|
+
xmlElementName: string;
|
|
683
|
+
uniqueIdElement: string;
|
|
629
684
|
directoryName: string;
|
|
630
685
|
suffix: string;
|
|
631
686
|
};
|
|
632
687
|
workflowoutboundmessage: {
|
|
633
688
|
id: string;
|
|
634
689
|
name: string;
|
|
690
|
+
xmlElementName: string;
|
|
691
|
+
uniqueIdElement: string;
|
|
635
692
|
directoryName: string;
|
|
636
693
|
suffix: string;
|
|
637
694
|
};
|
|
638
695
|
workflowrule: {
|
|
639
696
|
id: string;
|
|
640
697
|
name: string;
|
|
698
|
+
xmlElementName: string;
|
|
699
|
+
uniqueIdElement: string;
|
|
641
700
|
directoryName: string;
|
|
642
701
|
suffix: string;
|
|
643
702
|
};
|
|
@@ -673,6 +732,8 @@ export declare const registry: Readonly<{
|
|
|
673
732
|
assignmentrule: {
|
|
674
733
|
id: string;
|
|
675
734
|
name: string;
|
|
735
|
+
xmlElementName: string;
|
|
736
|
+
uniqueIdElement: string;
|
|
676
737
|
directoryName: string;
|
|
677
738
|
suffix: string;
|
|
678
739
|
};
|
|
@@ -697,6 +758,8 @@ export declare const registry: Readonly<{
|
|
|
697
758
|
autoresponserule: {
|
|
698
759
|
id: string;
|
|
699
760
|
name: string;
|
|
761
|
+
xmlElementName: string;
|
|
762
|
+
uniqueIdElement: string;
|
|
700
763
|
directoryName: string;
|
|
701
764
|
suffix: string;
|
|
702
765
|
};
|
|
@@ -721,6 +784,8 @@ export declare const registry: Readonly<{
|
|
|
721
784
|
escalationrule: {
|
|
722
785
|
id: string;
|
|
723
786
|
name: string;
|
|
787
|
+
xmlElementName: string;
|
|
788
|
+
uniqueIdElement: string;
|
|
724
789
|
directoryName: string;
|
|
725
790
|
suffix: string;
|
|
726
791
|
};
|
|
@@ -779,6 +844,7 @@ export declare const registry: Readonly<{
|
|
|
779
844
|
name: string;
|
|
780
845
|
directoryName: string;
|
|
781
846
|
suffix: string;
|
|
847
|
+
isAddressable: boolean;
|
|
782
848
|
};
|
|
783
849
|
};
|
|
784
850
|
suffixes: {
|
|
@@ -931,6 +997,8 @@ export declare const registry: Readonly<{
|
|
|
931
997
|
matchingrule: {
|
|
932
998
|
id: string;
|
|
933
999
|
name: string;
|
|
1000
|
+
xmlElementName: string;
|
|
1001
|
+
uniqueIdElement: string;
|
|
934
1002
|
directoryName: string;
|
|
935
1003
|
suffix: string;
|
|
936
1004
|
};
|
|
@@ -1032,6 +1100,9 @@ export declare const registry: Readonly<{
|
|
|
1032
1100
|
directoryName: string;
|
|
1033
1101
|
inFolder: boolean;
|
|
1034
1102
|
strictDirectoryName: boolean;
|
|
1103
|
+
strategies: {
|
|
1104
|
+
adapter: string;
|
|
1105
|
+
};
|
|
1035
1106
|
};
|
|
1036
1107
|
wavelens: {
|
|
1037
1108
|
id: string;
|
|
@@ -1136,24 +1207,32 @@ export declare const registry: Readonly<{
|
|
|
1136
1207
|
sharingownerrule: {
|
|
1137
1208
|
id: string;
|
|
1138
1209
|
name: string;
|
|
1210
|
+
xmlElementName: string;
|
|
1211
|
+
uniqueIdElement: string;
|
|
1139
1212
|
directoryName: string;
|
|
1140
1213
|
suffix: string;
|
|
1141
1214
|
};
|
|
1142
1215
|
sharingcriteriarule: {
|
|
1143
1216
|
id: string;
|
|
1144
1217
|
name: string;
|
|
1218
|
+
xmlElementName: string;
|
|
1219
|
+
uniqueIdElement: string;
|
|
1145
1220
|
directoryName: string;
|
|
1146
1221
|
suffix: string;
|
|
1147
1222
|
};
|
|
1148
1223
|
sharingguestrule: {
|
|
1149
1224
|
id: string;
|
|
1150
1225
|
name: string;
|
|
1226
|
+
xmlElementName: string;
|
|
1227
|
+
uniqueIdElement: string;
|
|
1151
1228
|
directoryName: string;
|
|
1152
1229
|
suffix: string;
|
|
1153
1230
|
};
|
|
1154
1231
|
sharingterritoryrule: {
|
|
1155
1232
|
id: string;
|
|
1156
1233
|
name: string;
|
|
1234
|
+
xmlElementName: string;
|
|
1235
|
+
uniqueIdElement: string;
|
|
1157
1236
|
directoryName: string;
|
|
1158
1237
|
suffix: string;
|
|
1159
1238
|
};
|
|
@@ -1401,6 +1480,7 @@ export declare const registry: Readonly<{
|
|
|
1401
1480
|
suffix: string;
|
|
1402
1481
|
directoryName: string;
|
|
1403
1482
|
inFolder: boolean;
|
|
1483
|
+
folderType: string;
|
|
1404
1484
|
};
|
|
1405
1485
|
territory2rule: {
|
|
1406
1486
|
id: string;
|
|
@@ -1408,6 +1488,7 @@ export declare const registry: Readonly<{
|
|
|
1408
1488
|
suffix: string;
|
|
1409
1489
|
directoryName: string;
|
|
1410
1490
|
inFolder: boolean;
|
|
1491
|
+
folderType: string;
|
|
1411
1492
|
};
|
|
1412
1493
|
territory2: {
|
|
1413
1494
|
id: string;
|
|
@@ -1415,6 +1496,7 @@ export declare const registry: Readonly<{
|
|
|
1415
1496
|
suffix: string;
|
|
1416
1497
|
directoryName: string;
|
|
1417
1498
|
inFolder: boolean;
|
|
1499
|
+
folderType: string;
|
|
1418
1500
|
};
|
|
1419
1501
|
campaigninfluencemodel: {
|
|
1420
1502
|
id: string;
|
|
@@ -1474,6 +1556,7 @@ export declare const registry: Readonly<{
|
|
|
1474
1556
|
suffix: string;
|
|
1475
1557
|
directoryName: string;
|
|
1476
1558
|
inFolder: boolean;
|
|
1559
|
+
strictDirectoryName: boolean;
|
|
1477
1560
|
};
|
|
1478
1561
|
skill: {
|
|
1479
1562
|
id: string;
|
|
@@ -1592,6 +1675,7 @@ export declare const registry: Readonly<{
|
|
|
1592
1675
|
suffix: string;
|
|
1593
1676
|
directoryName: string;
|
|
1594
1677
|
inFolder: boolean;
|
|
1678
|
+
strictDirectoryName: boolean;
|
|
1595
1679
|
};
|
|
1596
1680
|
orchestrationcontext: {
|
|
1597
1681
|
id: string;
|
|
@@ -1834,6 +1918,17 @@ export declare const registry: Readonly<{
|
|
|
1834
1918
|
inFolder: boolean;
|
|
1835
1919
|
strictDirectoryName: boolean;
|
|
1836
1920
|
};
|
|
1921
|
+
inboundcertificate: {
|
|
1922
|
+
id: string;
|
|
1923
|
+
name: string;
|
|
1924
|
+
suffix: string;
|
|
1925
|
+
directoryName: string;
|
|
1926
|
+
inFolder: boolean;
|
|
1927
|
+
strictDirectoryName: boolean;
|
|
1928
|
+
strategies: {
|
|
1929
|
+
adapter: string;
|
|
1930
|
+
};
|
|
1931
|
+
};
|
|
1837
1932
|
mutingpermissionset: {
|
|
1838
1933
|
id: string;
|
|
1839
1934
|
name: string;
|
|
@@ -1896,6 +1991,7 @@ export declare const registry: Readonly<{
|
|
|
1896
1991
|
suffix: string;
|
|
1897
1992
|
directoryName: string;
|
|
1898
1993
|
inFolder: boolean;
|
|
1994
|
+
strictDirectoryName: boolean;
|
|
1899
1995
|
};
|
|
1900
1996
|
notificationtypeconfig: {
|
|
1901
1997
|
id: string;
|
|
@@ -2329,14 +2425,173 @@ export declare const registry: Readonly<{
|
|
|
2329
2425
|
directoryName: string;
|
|
2330
2426
|
strictDirectoryName: boolean;
|
|
2331
2427
|
};
|
|
2428
|
+
userauthcertificate: {
|
|
2429
|
+
id: string;
|
|
2430
|
+
name: string;
|
|
2431
|
+
suffix: string;
|
|
2432
|
+
directoryName: string;
|
|
2433
|
+
inFolder: boolean;
|
|
2434
|
+
};
|
|
2435
|
+
forecastingtypesource: {
|
|
2436
|
+
id: string;
|
|
2437
|
+
name: string;
|
|
2438
|
+
suffix: string;
|
|
2439
|
+
directoryName: string;
|
|
2440
|
+
inFolder: boolean;
|
|
2441
|
+
};
|
|
2442
|
+
forecastingtype: {
|
|
2443
|
+
id: string;
|
|
2444
|
+
name: string;
|
|
2445
|
+
suffix: string;
|
|
2446
|
+
directoryName: string;
|
|
2447
|
+
inFolder: boolean;
|
|
2448
|
+
};
|
|
2449
|
+
forecastingsourcedefinition: {
|
|
2450
|
+
id: string;
|
|
2451
|
+
name: string;
|
|
2452
|
+
suffix: string;
|
|
2453
|
+
directoryName: string;
|
|
2454
|
+
inFolder: boolean;
|
|
2455
|
+
};
|
|
2456
|
+
assistantversion: {
|
|
2457
|
+
id: string;
|
|
2458
|
+
name: string;
|
|
2459
|
+
suffix: string;
|
|
2460
|
+
directoryName: string;
|
|
2461
|
+
inFolder: boolean;
|
|
2462
|
+
};
|
|
2463
|
+
assistantskillsobjectaction: {
|
|
2464
|
+
id: string;
|
|
2465
|
+
name: string;
|
|
2466
|
+
suffix: string;
|
|
2467
|
+
directoryName: string;
|
|
2468
|
+
inFolder: boolean;
|
|
2469
|
+
};
|
|
2470
|
+
assistantskillquickaction: {
|
|
2471
|
+
id: string;
|
|
2472
|
+
name: string;
|
|
2473
|
+
suffix: string;
|
|
2474
|
+
directoryName: string;
|
|
2475
|
+
inFolder: boolean;
|
|
2476
|
+
};
|
|
2477
|
+
assistantdefinition: {
|
|
2478
|
+
id: string;
|
|
2479
|
+
name: string;
|
|
2480
|
+
suffix: string;
|
|
2481
|
+
directoryName: string;
|
|
2482
|
+
inFolder: boolean;
|
|
2483
|
+
};
|
|
2484
|
+
assistantcontextitem: {
|
|
2485
|
+
id: string;
|
|
2486
|
+
name: string;
|
|
2487
|
+
suffix: string;
|
|
2488
|
+
directoryName: string;
|
|
2489
|
+
inFolder: boolean;
|
|
2490
|
+
};
|
|
2491
|
+
advacctforecastperiodgroup: {
|
|
2492
|
+
id: string;
|
|
2493
|
+
name: string;
|
|
2494
|
+
suffix: string;
|
|
2495
|
+
directoryName: string;
|
|
2496
|
+
inFolder: boolean;
|
|
2497
|
+
};
|
|
2498
|
+
advaccountforecastset: {
|
|
2499
|
+
id: string;
|
|
2500
|
+
name: string;
|
|
2501
|
+
suffix: string;
|
|
2502
|
+
directoryName: string;
|
|
2503
|
+
inFolder: boolean;
|
|
2504
|
+
};
|
|
2505
|
+
documentgenerationsetting: {
|
|
2506
|
+
id: string;
|
|
2507
|
+
name: string;
|
|
2508
|
+
suffix: string;
|
|
2509
|
+
directoryName: string;
|
|
2510
|
+
inFolder: boolean;
|
|
2511
|
+
};
|
|
2512
|
+
uiobjectrelationconfig: {
|
|
2513
|
+
id: string;
|
|
2514
|
+
name: string;
|
|
2515
|
+
suffix: string;
|
|
2516
|
+
directoryName: string;
|
|
2517
|
+
inFolder: boolean;
|
|
2518
|
+
};
|
|
2519
|
+
carerequestconfiguration: {
|
|
2520
|
+
id: string;
|
|
2521
|
+
name: string;
|
|
2522
|
+
suffix: string;
|
|
2523
|
+
directoryName: string;
|
|
2524
|
+
inFolder: boolean;
|
|
2525
|
+
};
|
|
2526
|
+
mlrecommendationdefinition: {
|
|
2527
|
+
id: string;
|
|
2528
|
+
name: string;
|
|
2529
|
+
suffix: string;
|
|
2530
|
+
directoryName: string;
|
|
2531
|
+
inFolder: boolean;
|
|
2532
|
+
};
|
|
2533
|
+
applicationrecordtypeconfig: {
|
|
2534
|
+
id: string;
|
|
2535
|
+
name: string;
|
|
2536
|
+
suffix: string;
|
|
2537
|
+
directoryName: string;
|
|
2538
|
+
inFolder: boolean;
|
|
2539
|
+
};
|
|
2540
|
+
mktcalcinsightobjectdef: {
|
|
2541
|
+
id: string;
|
|
2542
|
+
name: string;
|
|
2543
|
+
suffix: string;
|
|
2544
|
+
directoryName: string;
|
|
2545
|
+
inFolder: boolean;
|
|
2546
|
+
};
|
|
2547
|
+
internalorganization: {
|
|
2548
|
+
id: string;
|
|
2549
|
+
name: string;
|
|
2550
|
+
suffix: string;
|
|
2551
|
+
directoryName: string;
|
|
2552
|
+
inFolder: boolean;
|
|
2553
|
+
};
|
|
2554
|
+
callcenterroutingmap: {
|
|
2555
|
+
id: string;
|
|
2556
|
+
name: string;
|
|
2557
|
+
suffix: string;
|
|
2558
|
+
directoryName: string;
|
|
2559
|
+
inFolder: boolean;
|
|
2560
|
+
};
|
|
2561
|
+
viewdefinition: {
|
|
2562
|
+
id: string;
|
|
2563
|
+
name: string;
|
|
2564
|
+
suffix: string;
|
|
2565
|
+
directoryName: string;
|
|
2566
|
+
inFolder: boolean;
|
|
2567
|
+
strictDirectoryName: boolean;
|
|
2568
|
+
strategies: {
|
|
2569
|
+
adapter: string;
|
|
2570
|
+
};
|
|
2571
|
+
};
|
|
2572
|
+
slackapp: {
|
|
2573
|
+
id: string;
|
|
2574
|
+
name: string;
|
|
2575
|
+
suffix: string;
|
|
2576
|
+
directoryName: string;
|
|
2577
|
+
inFolder: boolean;
|
|
2578
|
+
strictDirectoryName: boolean;
|
|
2579
|
+
strategies: {
|
|
2580
|
+
adapter: string;
|
|
2581
|
+
};
|
|
2582
|
+
};
|
|
2332
2583
|
};
|
|
2333
2584
|
suffixes: {
|
|
2585
|
+
ai: string;
|
|
2586
|
+
aiapplicationconfig: string;
|
|
2587
|
+
mlprediction: string;
|
|
2588
|
+
mlDataDefinition: string;
|
|
2334
2589
|
sites: string;
|
|
2335
2590
|
icon: string;
|
|
2336
2591
|
businessProcessGroup: string;
|
|
2337
2592
|
model: string;
|
|
2338
2593
|
goal: string;
|
|
2339
|
-
|
|
2594
|
+
function: string;
|
|
2340
2595
|
participantRole: string;
|
|
2341
2596
|
gatewayProviderPaymentMethodType: string;
|
|
2342
2597
|
careProviderSearchConfig: string;
|
|
@@ -2537,6 +2792,7 @@ export declare const registry: Readonly<{
|
|
|
2537
2792
|
emailFolder: string;
|
|
2538
2793
|
inboundNetworkConnection: string;
|
|
2539
2794
|
outboundNetworkConnection: string;
|
|
2795
|
+
inboundCertificate: string;
|
|
2540
2796
|
mutingpermissionset: string;
|
|
2541
2797
|
myDomainDiscoverableLogin: string;
|
|
2542
2798
|
blacklistedConsumer: string;
|
|
@@ -2559,6 +2815,61 @@ export declare const registry: Readonly<{
|
|
|
2559
2815
|
accountRelationshipShareRule: string;
|
|
2560
2816
|
IPAddressRange: string;
|
|
2561
2817
|
xml: string;
|
|
2818
|
+
mlPrediction: string;
|
|
2819
|
+
formSection: string;
|
|
2820
|
+
workflowFieldUpdate: string;
|
|
2821
|
+
workflowKnowledgePublish: string;
|
|
2822
|
+
workflowTask: string;
|
|
2823
|
+
workflowAlert: string;
|
|
2824
|
+
workflowSend: string;
|
|
2825
|
+
workflowOutboundMessage: string;
|
|
2826
|
+
workflowRule: string;
|
|
2827
|
+
assignmentRule: string;
|
|
2828
|
+
autoResponseRule: string;
|
|
2829
|
+
escalationRule: string;
|
|
2830
|
+
sharingOwnerRule: string;
|
|
2831
|
+
sharingCriteriaRule: string;
|
|
2832
|
+
sharingGuestRule: string;
|
|
2833
|
+
sharingTerritoryRule: string;
|
|
2834
|
+
managedTopic: string;
|
|
2835
|
+
workSkillRoutingAttribute: string;
|
|
2836
|
+
businessProcessFeedbackConfiguration: string;
|
|
2837
|
+
webStoreTemplate: string;
|
|
2838
|
+
dynamicTrigger: string;
|
|
2839
|
+
salesAgreementSetting: string;
|
|
2840
|
+
accountForecastSetting: string;
|
|
2841
|
+
fieldServiceMobileExtension: string;
|
|
2842
|
+
dataStreamDefinition: string;
|
|
2843
|
+
ChannelObjectLinkingRule: string;
|
|
2844
|
+
ConversationVendorInformation: string;
|
|
2845
|
+
ConversationVendorFieldDefinition: string;
|
|
2846
|
+
schedulingRule: string;
|
|
2847
|
+
dataMappingSchema: string;
|
|
2848
|
+
dataMapping: string;
|
|
2849
|
+
federationDataMappingUsage: string;
|
|
2850
|
+
connectedSystem: string;
|
|
2851
|
+
userAuthCertificate: string;
|
|
2852
|
+
forecastingTypeSource: string;
|
|
2853
|
+
forecastingType: string;
|
|
2854
|
+
forecastingSourceDefinition: string;
|
|
2855
|
+
assistantVersion: string;
|
|
2856
|
+
assistantSkillSobjectAction: string;
|
|
2857
|
+
assistantSkillQuickAction: string;
|
|
2858
|
+
assistantDefinition: string;
|
|
2859
|
+
assistantContextItem: string;
|
|
2860
|
+
advAcctForecastPeriodGroup: string;
|
|
2861
|
+
advAccountForecastSet: string;
|
|
2862
|
+
documentGenerationSetting: string;
|
|
2863
|
+
uiObjectRelationConfig: string;
|
|
2864
|
+
careRequestConfiguration: string;
|
|
2865
|
+
mlRecommendation: string;
|
|
2866
|
+
applicationRecordTypeConfig: string;
|
|
2867
|
+
mktCalcInsightObjectDef: string;
|
|
2868
|
+
internalOrganization: string;
|
|
2869
|
+
callCenterRoutingMap: string;
|
|
2870
|
+
view: string;
|
|
2871
|
+
slackapp: string;
|
|
2872
|
+
permissionSetLicenseDefinition: string;
|
|
2562
2873
|
};
|
|
2563
2874
|
strictDirectoryNames: {
|
|
2564
2875
|
experiences: string;
|
|
@@ -2571,6 +2882,12 @@ export declare const registry: Readonly<{
|
|
|
2571
2882
|
objectTranslations: string;
|
|
2572
2883
|
staticresources: string;
|
|
2573
2884
|
sites: string;
|
|
2885
|
+
restrictionRules: string;
|
|
2886
|
+
mktDataSources: string;
|
|
2887
|
+
accessControlPolicies: string;
|
|
2888
|
+
integrationHub: string;
|
|
2889
|
+
ObjectHierarchyRelationship: string;
|
|
2890
|
+
IndustriesManufacturingSettings: string;
|
|
2574
2891
|
};
|
|
2575
2892
|
childTypes: {
|
|
2576
2893
|
customlabel: string;
|
|
@@ -2584,17 +2901,23 @@ export declare const registry: Readonly<{
|
|
|
2584
2901
|
sharingreason: string;
|
|
2585
2902
|
listview: string;
|
|
2586
2903
|
fieldset: string;
|
|
2904
|
+
formsection: string;
|
|
2905
|
+
workflowknowledgepublish: string;
|
|
2587
2906
|
workflowfieldupdate: string;
|
|
2588
2907
|
workflowtask: string;
|
|
2589
2908
|
workflowalert: string;
|
|
2590
2909
|
workflowsend: string;
|
|
2591
2910
|
workflowoutboundmessage: string;
|
|
2592
2911
|
workflowrule: string;
|
|
2912
|
+
workskillroutingattribute: string;
|
|
2593
2913
|
assignmentrule: string;
|
|
2594
2914
|
autoresponserule: string;
|
|
2595
2915
|
escalationrule: string;
|
|
2596
2916
|
matchingrule: string;
|
|
2597
2917
|
sharingownerrule: string;
|
|
2918
|
+
sharingguestrule: string;
|
|
2919
|
+
sharingterritoryrule: string;
|
|
2920
|
+
managedtopic: string;
|
|
2598
2921
|
sharingcriteriarule: string;
|
|
2599
2922
|
botversion: string;
|
|
2600
2923
|
customfieldtranslation: string;
|