imgflip.com 3.1.4 → 3.3.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 +33 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 3.3.0 (2022-03-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **absence.io:** Update UserAPI.ts with retrieveUserByOption ([#937](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/issues/937)) ([72b2161](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/72b216144d7d579d77150c6342364a0989ef1b6f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 3.2.1 (2021-12-22)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Upgrade yarn lock file ([91511d0](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/91511d0f17882c1faedf55296ab11d9516a3d425))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# 3.2.0 (2021-07-30)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **bamboohr.com:** Handle errors, add more TimeOff endpoints ([f9fd458](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/f9fd458bf04253e01371e128d9ef06378700329c))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
## [3.1.4](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@3.1.3...imgflip.com@3.1.4) (2021-05-17)
|
|
7
40
|
|
|
8
41
|
**Note:** Version bump only for package imgflip.com
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,+CAA6B"}
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {
|
|
4
|
-
"axios": "0.
|
|
5
|
-
"qs": "6.10.
|
|
4
|
+
"axios": "0.26.1",
|
|
5
|
+
"qs": "6.10.3"
|
|
6
6
|
},
|
|
7
7
|
"description": "A imgflip.com API client",
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@types/node": "~
|
|
10
|
-
"@types/qs": "6.9.
|
|
11
|
-
"typedoc": "0.
|
|
12
|
-
"typescript": "4.2
|
|
9
|
+
"@types/node": "~16",
|
|
10
|
+
"@types/qs": "6.9.7",
|
|
11
|
+
"typedoc": "0.22.13",
|
|
12
|
+
"typescript": "4.6.2"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">= 10.9"
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"dist": "yarn clean && yarn build:ts",
|
|
35
35
|
"test": "exit 0"
|
|
36
36
|
},
|
|
37
|
-
"version": "3.
|
|
38
|
-
"gitHead": "
|
|
37
|
+
"version": "3.3.0",
|
|
38
|
+
"gitHead": "4f552a3933dc19d22644a55b17cf16293ccdb40a"
|
|
39
39
|
}
|