@salesforce/source-deploy-retrieve 5.11.0 → 5.12.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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [5.12.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.11.0...v5.12.0) (2022-02-22)
6
+
7
+ ### Features
8
+
9
+ - **metadata registry:** adding flowtest type to metadata registry ([#580](https://github.com/forcedotcom/source-deploy-retrieve/issues/580)) ([40431f6](https://github.com/forcedotcom/source-deploy-retrieve/commit/40431f60eb29d02e33b5fc4f5f2066271b06c630))
10
+
5
11
  ## [5.11.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.10.0...v5.11.0) (2022-02-22)
6
12
 
7
13
  ### Features
@@ -618,6 +618,14 @@
618
618
  "inFolder": false,
619
619
  "strictDirectoryName": false
620
620
  },
621
+ "flowtest": {
622
+ "id": "flowtest",
623
+ "name": "FlowTest",
624
+ "suffix": "flowtest",
625
+ "directoryName": "flowTest",
626
+ "inFolder": false,
627
+ "strictDirectoryName": false
628
+ },
621
629
  "eventtype": {
622
630
  "id": "eventtype",
623
631
  "name": "EventType",
@@ -2861,6 +2869,7 @@
2861
2869
  "recommendationStrategy": "recommendationstrategy",
2862
2870
  "flow": "flow",
2863
2871
  "flowDefinition": "flowdefinition",
2872
+ "flowtest": "flowtest",
2864
2873
  "eventType": "eventtype",
2865
2874
  "subscription": "eventsubscription",
2866
2875
  "delivery": "eventdelivery",
@@ -621,6 +621,14 @@ export declare const registry: Readonly<{
621
621
  inFolder: boolean;
622
622
  strictDirectoryName: boolean;
623
623
  };
624
+ flowtest: {
625
+ id: string;
626
+ name: string;
627
+ suffix: string;
628
+ directoryName: string;
629
+ inFolder: boolean;
630
+ strictDirectoryName: boolean;
631
+ };
624
632
  eventtype: {
625
633
  id: string;
626
634
  name: string;
@@ -2864,6 +2872,7 @@ export declare const registry: Readonly<{
2864
2872
  recommendationStrategy: string;
2865
2873
  flow: string;
2866
2874
  flowDefinition: string;
2875
+ flowtest: string;
2867
2876
  eventType: string;
2868
2877
  subscription: string;
2869
2878
  delivery: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/source-deploy-retrieve",
3
- "version": "5.11.0",
3
+ "version": "5.12.0",
4
4
  "description": "JavaScript library to run Salesforce metadata deploys and retrieves",
5
5
  "main": "lib/src/index.js",
6
6
  "author": "Salesforce",