@vixoniccom/modules 2.13.0-dev.1 → 2.13.0-dev.2
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 +7 -0
- package/dist/lib/inputs/bitly-input.d.ts +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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-dev.2](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.13.0-dev.1...v2.13.0-dev.2) (2022-03-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **release:** value in bitly input was modified ([60dc280](https://gitlab.com/mandomedio/vixonic/modules/commit/60dc2805279f8ce0b15aec15a88fcbad2ab66465))
|
|
11
|
+
|
|
5
12
|
## [2.13.0-dev.1](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.13.0-dev.0...v2.13.0-dev.1) (2022-03-01)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -6,8 +6,10 @@ export declare namespace BitlyInput {
|
|
|
6
6
|
type Error = ValueError.Required | ValueError.Max | ValueError.Min | {
|
|
7
7
|
type: 'pattern';
|
|
8
8
|
};
|
|
9
|
-
type Value =
|
|
10
|
-
|
|
9
|
+
type Value = {
|
|
10
|
+
value: string;
|
|
11
|
+
bitlyUrl: string;
|
|
12
|
+
};
|
|
11
13
|
}
|
|
12
14
|
export declare class BitlyInput extends TextInput {
|
|
13
15
|
static type: string;
|