@igxjs/node-components 1.0.5 → 1.0.6

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/README.md CHANGED
@@ -295,6 +295,7 @@ httpCodes.NOT_FOUND // 404
295
295
  httpCodes.NOT_ACCEPTABLE // 406
296
296
  httpCodes.CONFLICT // 409
297
297
  httpCodes.SYSTEM_FAILURE // 500
298
+ httpCodes.NOT_IMPLEMENTED // 501
298
299
 
299
300
  // Corresponding messages
300
301
  httpMessages.OK // 'OK'
@@ -11,6 +11,7 @@ export const httpMessages = {
11
11
  NOT_ACCEPTABLE: 'Not Acceptable',
12
12
  CONFLICT: 'Conflict',
13
13
  SYSTEM_FAILURE: 'System Error',
14
+ NOT_IMPLEMENTED: 'Not Implemented',
14
15
  };
15
16
 
16
17
  export const httpCodes = {
package/index.d.ts CHANGED
@@ -209,6 +209,7 @@ export const httpCodes: {
209
209
  NOT_ACCEPTABLE: number;
210
210
  CONFLICT: number;
211
211
  SYSTEM_FAILURE: number;
212
+ NOT_IMPLEMENTED: number;
212
213
  };
213
214
 
214
215
  // HTTP message keys (exposed for type safety)
@@ -223,6 +224,7 @@ export const httpMessages: {
223
224
  NOT_ACCEPTABLE: string;
224
225
  CONFLICT: string;
225
226
  SYSTEM_FAILURE: string;
227
+ NOT_IMPLEMENTED: string;
226
228
  };
227
229
 
228
230
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igxjs/node-components",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Node components for igxjs",
5
5
  "main": "index.js",
6
6
  "type": "module",