codify-schemas 1.0.78 → 1.0.79

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.
@@ -49,7 +49,7 @@
49
49
  }
50
50
  }
51
51
  },
52
- "sensitiveProperties": {
52
+ "sensitiveParameters": {
53
53
  "type": "array",
54
54
  "items": {
55
55
  "type": "string"
@@ -100,7 +100,7 @@ export interface GetResourceInfoResponseData {
100
100
  requiredParameters: string[] | null;
101
101
  preventImport?: boolean;
102
102
  };
103
- sensitiveProperties: string[];
103
+ sensitiveParameters: string[];
104
104
  allowMultiple: boolean;
105
105
  }
106
106
  export interface MatchRequestData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-schemas",
3
- "version": "1.0.78",
3
+ "version": "1.0.79",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -49,7 +49,7 @@
49
49
  }
50
50
  }
51
51
  },
52
- "sensitiveProperties": {
52
+ "sensitiveParameters": {
53
53
  "type": "array",
54
54
  "items": {
55
55
  "type": "string"
@@ -41,7 +41,7 @@ describe('Get resources response data schema', () => {
41
41
  "type": "string"
42
42
  }
43
43
  },
44
- "sensitiveProperties": ['schema']
44
+ "sensitiveParameters": ['schema']
45
45
  },
46
46
  dependencies: [
47
47
  "typeA",
@@ -116,7 +116,7 @@ export interface GetResourceInfoResponseData {
116
116
  requiredParameters: string[] | null;
117
117
  preventImport?: boolean;
118
118
  },
119
- sensitiveProperties: string[];
119
+ sensitiveParameters: string[];
120
120
  allowMultiple: boolean;
121
121
  }
122
122