@azure/app-configuration-importer-file-source 1.1.3-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 CHANGED
@@ -29,34 +29,6 @@
29
29
  var require$$2__default = /*#__PURE__*/_interopDefaultLegacy(require$$2);
30
30
  var require$$3__default = /*#__PURE__*/_interopDefaultLegacy(require$$3$1);
31
31
 
32
- // Copyright (c) Microsoft Corporation.
33
- // Licensed under the MIT license.
34
- /**
35
- * Enums of configuration Format.
36
- */
37
- var ConfigurationFormat;
38
- (function (ConfigurationFormat) {
39
- ConfigurationFormat[ConfigurationFormat["Json"] = 0] = "Json";
40
- ConfigurationFormat[ConfigurationFormat["Properties"] = 1] = "Properties";
41
- ConfigurationFormat[ConfigurationFormat["Yaml"] = 2] = "Yaml";
42
- })(ConfigurationFormat || (ConfigurationFormat = {}));
43
- /**
44
- * Enums of configuration Profile.
45
- */
46
- var ConfigurationProfile;
47
- (function (ConfigurationProfile) {
48
- ConfigurationProfile[ConfigurationProfile["Default"] = 0] = "Default";
49
- ConfigurationProfile[ConfigurationProfile["KvSet"] = 1] = "KvSet";
50
- })(ConfigurationProfile || (ConfigurationProfile = {}));
51
- /**
52
- * Enums of import mode.
53
- */
54
- var ImportMode;
55
- (function (ImportMode) {
56
- ImportMode[ImportMode["All"] = 0] = "All";
57
- ImportMode[ImportMode["IgnoreMatch"] = 1] = "IgnoreMatch";
58
- })(ImportMode || (ImportMode = {}));
59
-
60
32
  // Copyright (c) Microsoft Corporation.
61
33
  // Licensed under the MIT license.
62
34
  /**
@@ -101,6 +73,44 @@
101
73
  }
102
74
  }
103
75
 
76
+ // Copyright (c) Microsoft Corporation.
77
+ // Licensed under the MIT license.
78
+ /**
79
+ * Enums of configuration Format.
80
+ */
81
+ var ConfigurationFormat;
82
+ (function (ConfigurationFormat) {
83
+ ConfigurationFormat[ConfigurationFormat["Json"] = 0] = "Json";
84
+ ConfigurationFormat[ConfigurationFormat["Properties"] = 1] = "Properties";
85
+ ConfigurationFormat[ConfigurationFormat["Yaml"] = 2] = "Yaml";
86
+ })(ConfigurationFormat || (ConfigurationFormat = {}));
87
+ /**
88
+ * Enums of configuration Profile.
89
+ */
90
+ var ConfigurationProfile;
91
+ (function (ConfigurationProfile) {
92
+ ConfigurationProfile[ConfigurationProfile["Default"] = 0] = "Default";
93
+ ConfigurationProfile[ConfigurationProfile["KvSet"] = 1] = "KvSet";
94
+ })(ConfigurationProfile || (ConfigurationProfile = {}));
95
+ /**
96
+ * Enums of import mode.
97
+ */
98
+ var ImportMode;
99
+ (function (ImportMode) {
100
+ ImportMode[ImportMode["All"] = 0] = "All";
101
+ ImportMode[ImportMode["IgnoreMatch"] = 1] = "IgnoreMatch";
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 = {}));
113
+
104
114
  /******************************************************************************
105
115
  Copyright (c) Microsoft Corporation.
106
116