@vixoniccom/modules 2.13.0-dev.3 → 2.13.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [2.13.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.13.0-rc.0...v2.13.0) (2022-04-07)
6
+
7
+ ## [2.13.0-rc.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.13.0-dev.3...v2.13.0-rc.0) (2022-03-10)
8
+
5
9
  ## [2.13.0-dev.3](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.13.0-dev.2...v2.13.0-dev.3) (2022-03-01)
6
10
 
7
11
 
@@ -15,7 +15,7 @@ export declare namespace BitlyInput {
15
15
  };
16
16
  type Value = {
17
17
  value: string;
18
- bitlyUrl: string;
18
+ bitlyLink: string;
19
19
  };
20
20
  }
21
21
  export declare class BitlyInput extends Input<BitlyInput.Value, BitlyInput.Error> {
@@ -28,7 +28,7 @@ export declare class BitlyInput extends Input<BitlyInput.Value, BitlyInput.Error
28
28
  constructor(options: ITextInput);
29
29
  validateInput(value?: {
30
30
  value: string;
31
- bitlyUrl: string;
31
+ bitlyLink: string;
32
32
  }): BitlyInput.Error[];
33
33
  isValidValue(v: any): v is BitlyInput.Value;
34
34
  protected static parseJSON(value: BitlyInputJSON): IBitlyInput;
@@ -34,7 +34,7 @@ var BitlyInput = /** @class */ (function (_super) {
34
34
  function BitlyInput(options) {
35
35
  var _this = _super.call(this, options) || this;
36
36
  _this.type = BitlyInput.type;
37
- _this.valueTypeDef = function () { return '{ value: string, bitlyUrl: string }'; };
37
+ _this.valueTypeDef = function () { return '{ value: string, bitlyLink: string }'; };
38
38
  _this.description = options.description;
39
39
  _this.required = options.required;
40
40
  _this.pattern = options.pattern;
@@ -46,7 +46,7 @@ var BitlyInput = /** @class */ (function (_super) {
46
46
  errors = errors.concat(validation_1.Validator.required(value, this.required));
47
47
  if (this.pattern && value) {
48
48
  var reg = new RegExp(this.pattern);
49
- if (!reg.exec(value.bitlyUrl))
49
+ if (!reg.exec(value.bitlyLink))
50
50
  errors = errors.concat({ type: 'pattern' });
51
51
  }
52
52
  return errors;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vixoniccom/modules",
3
- "version": "2.13.0-dev.3",
3
+ "version": "2.13.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",