@azure/app-configuration-importer-file-source 2.0.0-preview → 3.0.0-preview
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/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -100,6 +100,16 @@
|
|
|
100
100
|
ImportMode[ImportMode["All"] = 0] = "All";
|
|
101
101
|
ImportMode[ImportMode["IgnoreMatch"] = 1] = "IgnoreMatch";
|
|
102
102
|
})(ImportMode || (ImportMode = {}));
|
|
103
|
+
/**
|
|
104
|
+
* Enums of change type for configuration settings changes
|
|
105
|
+
*/
|
|
106
|
+
var ChangeType;
|
|
107
|
+
(function (ChangeType) {
|
|
108
|
+
ChangeType[ChangeType["None"] = 0] = "None";
|
|
109
|
+
ChangeType[ChangeType["Create"] = 1] = "Create";
|
|
110
|
+
ChangeType[ChangeType["Delete"] = 2] = "Delete";
|
|
111
|
+
ChangeType[ChangeType["Update"] = 3] = "Update";
|
|
112
|
+
})(ChangeType || (ChangeType = {}));
|
|
103
113
|
|
|
104
114
|
/******************************************************************************
|
|
105
115
|
Copyright (c) Microsoft Corporation.
|