@we-scrum/enums 1.0.45 → 1.0.47

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.
@@ -1,6 +1,8 @@
1
1
  export declare enum ContentType {
2
2
  MarkDown = "MarkDown",
3
- Html = "Html"
3
+ Html = "Html",
4
+ Xml = "Xml",
5
+ Json = "Json"
4
6
  }
5
7
  export declare namespace ContentType {
6
8
  const helper: any;
@@ -6,11 +6,15 @@ var ContentType;
6
6
  (function (ContentType) {
7
7
  ContentType["MarkDown"] = "MarkDown";
8
8
  ContentType["Html"] = "Html";
9
+ ContentType["Xml"] = "Xml";
10
+ ContentType["Json"] = "Json";
9
11
  })(ContentType = exports.ContentType || (exports.ContentType = {}));
10
12
  (function (ContentType) {
11
13
  ContentType.helper = new core_1.EnumHelper('ContentType', [
12
14
  ContentType.MarkDown,
13
- ContentType.Html
15
+ ContentType.Html,
16
+ ContentType.Xml,
17
+ ContentType.Json,
14
18
  ]);
15
19
  })(ContentType = exports.ContentType || (exports.ContentType = {}));
16
20
  //# sourceMappingURL=content-type-enum.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"content-type-enum.js","sourceRoot":"","sources":["../src/content-type-enum.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAE7C,IAAY,WAGX;AAHD,WAAY,WAAW;IACnB,oCAAqB,CAAA;IACrB,4BAAa,CAAA;AACjB,CAAC,EAHW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAGtB;AAED,WAAiB,WAAW;IACX,kBAAM,GAAG,IAAI,iBAAU,CAAC,aAAa,EAAE;QAChD,WAAW,CAAC,QAAQ;QACpB,WAAW,CAAC,IAAI;KACnB,CAAC,CAAC;AACP,CAAC,EALgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAK3B"}
1
+ {"version":3,"file":"content-type-enum.js","sourceRoot":"","sources":["../src/content-type-enum.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAE7C,IAAY,WAKX;AALD,WAAY,WAAW;IACnB,oCAAqB,CAAA;IACrB,4BAAa,CAAA;IACb,0BAAW,CAAA;IACX,4BAAa,CAAA;AACjB,CAAC,EALW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAKtB;AAED,WAAiB,WAAW;IACX,kBAAM,GAAG,IAAI,iBAAU,CAAC,aAAa,EAAE;QAChD,WAAW,CAAC,QAAQ;QACpB,WAAW,CAAC,IAAI;QAChB,WAAW,CAAC,GAAG;QACf,WAAW,CAAC,IAAI;KACnB,CAAC,CAAC;AACP,CAAC,EAPgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAO3B"}
package/dist/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from './environment-category-enum';
4
4
  export * from './object-property-type-enum';
5
5
  export * from './operation-enum';
6
6
  export * from './progress-status-enum';
7
+ export * from './queuing-system-enum';
7
8
  export * from './route-method-enum';
8
9
  export * from './route-query-param-type-enum';
9
10
  export * from './search-result-type-enum';
package/dist/index.js CHANGED
@@ -20,6 +20,7 @@ __exportStar(require("./environment-category-enum"), exports);
20
20
  __exportStar(require("./object-property-type-enum"), exports);
21
21
  __exportStar(require("./operation-enum"), exports);
22
22
  __exportStar(require("./progress-status-enum"), exports);
23
+ __exportStar(require("./queuing-system-enum"), exports);
23
24
  __exportStar(require("./route-method-enum"), exports);
24
25
  __exportStar(require("./route-query-param-type-enum"), exports);
25
26
  __exportStar(require("./search-result-type-enum"), exports);
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,yDAAuC;AACvC,8DAA4C;AAC5C,8DAA4C;AAC5C,mDAAiC;AACjC,yDAAuC;AACvC,sDAAoC;AACpC,gEAA8C;AAC9C,4DAA0C;AAC1C,sDAAoC;AACpC,mDAAiC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,yDAAuC;AACvC,8DAA4C;AAC5C,8DAA4C;AAC5C,mDAAiC;AACjC,yDAAuC;AACvC,wDAAsC;AACtC,sDAAoC;AACpC,gEAA8C;AAC9C,4DAA0C;AAC1C,sDAAoC;AACpC,mDAAiC"}
@@ -0,0 +1,7 @@
1
+ export declare enum QueuingSystem {
2
+ None = "None",
3
+ AzureServiceBus = "AzureServiceBus"
4
+ }
5
+ export declare namespace QueuingSystem {
6
+ const helper: any;
7
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.QueuingSystem = void 0;
4
+ var core_1 = require("@my-devkit/core");
5
+ var QueuingSystem;
6
+ (function (QueuingSystem) {
7
+ QueuingSystem["None"] = "None";
8
+ QueuingSystem["AzureServiceBus"] = "AzureServiceBus";
9
+ })(QueuingSystem = exports.QueuingSystem || (exports.QueuingSystem = {}));
10
+ (function (QueuingSystem) {
11
+ QueuingSystem.helper = new core_1.EnumHelper('QueuingSystem', [
12
+ QueuingSystem.None,
13
+ QueuingSystem.AzureServiceBus,
14
+ ]);
15
+ })(QueuingSystem = exports.QueuingSystem || (exports.QueuingSystem = {}));
16
+ //# sourceMappingURL=queuing-system-enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"queuing-system-enum.js","sourceRoot":"","sources":["../src/queuing-system-enum.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAE7C,IAAY,aAGX;AAHD,WAAY,aAAa;IACrB,8BAAa,CAAA;IACb,oDAAmC,CAAA;AACvC,CAAC,EAHW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAGxB;AAED,WAAiB,aAAa;IACb,oBAAM,GAAG,IAAI,iBAAU,CAAC,eAAe,EAAE;QAClD,aAAa,CAAC,IAAI;QAClB,aAAa,CAAC,eAAe;KAChC,CAAC,CAAC;AACP,CAAC,EALgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAK7B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@we-scrum/enums",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "We-Scrum enums",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -15,11 +15,11 @@
15
15
  "author": "",
16
16
  "license": "ISC",
17
17
  "peerDependencies": {
18
- "@my-devkit/core": "1.0.86"
18
+ "@my-devkit/core": "1.0.88"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@my-devkit/cli": "1.0.24",
22
- "@my-devkit/core": "1.0.86",
22
+ "@my-devkit/core": "1.0.88",
23
23
  "typescript": "^4.5.2"
24
24
  }
25
25
  }
@@ -2,12 +2,16 @@ import { EnumHelper } from '@my-devkit/core';
2
2
 
3
3
  export enum ContentType {
4
4
  MarkDown = 'MarkDown',
5
- Html = 'Html'
5
+ Html = 'Html',
6
+ Xml = 'Xml',
7
+ Json = 'Json'
6
8
  }
7
9
 
8
10
  export namespace ContentType {
9
11
  export const helper = new EnumHelper('ContentType', [
10
12
  ContentType.MarkDown,
11
- ContentType.Html
13
+ ContentType.Html,
14
+ ContentType.Xml,
15
+ ContentType.Json,
12
16
  ]);
13
17
  }
package/src/index.ts CHANGED
@@ -4,6 +4,7 @@ export * from './environment-category-enum';
4
4
  export * from './object-property-type-enum';
5
5
  export * from './operation-enum';
6
6
  export * from './progress-status-enum';
7
+ export * from './queuing-system-enum';
7
8
  export * from './route-method-enum';
8
9
  export * from './route-query-param-type-enum';
9
10
  export * from './search-result-type-enum';
@@ -0,0 +1,13 @@
1
+ import { EnumHelper } from '@my-devkit/core';
2
+
3
+ export enum QueuingSystem {
4
+ None = 'None',
5
+ AzureServiceBus = 'AzureServiceBus',
6
+ }
7
+
8
+ export namespace QueuingSystem {
9
+ export const helper = new EnumHelper('QueuingSystem', [
10
+ QueuingSystem.None,
11
+ QueuingSystem.AzureServiceBus,
12
+ ]);
13
+ }