imgflip.com 3.3.2 → 3.3.4
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/dist/Imgflip.js +1 -1
- package/dist/Imgflip.js.map +1 -1
- package/dist/interfaces.d.ts +2 -2
- package/package.json +7 -7
- package/CHANGELOG.md +0 -251
package/dist/Imgflip.js
CHANGED
package/dist/Imgflip.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Imgflip.js","sourceRoot":"","sources":["../src/Imgflip.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"Imgflip.js","sourceRoot":"","sources":["../src/Imgflip.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iCAAkE;AAClE,yBAAyB;AAEzB,2CAAqC;AAGrC,MAAa,OAAO;IAKlB,YAAY,MAAe;QAWV,iBAAY,GAAG,CAAO,MAA2B,EAA4B,EAAE;YAC9F,MAAM,QAAQ,GAAG,oBAAQ,CAAC,YAAY,EAAE,CAAC;YACzC,MAAM,MAAM,GAA0B;gBACpC,IAAI,EAAE,EAAE,CAAC,SAAS,CAAC,MAAM,EAAE,EAAC,WAAW,EAAE,SAAS,EAAC,CAAC;gBACpD,OAAO,EAAE;oBACP,cAAc,EAAE,mCAAmC;iBACpD;gBACD,MAAM,EAAE,MAAM;gBACd,GAAG,EAAE,QAAQ;aACd,CAAC;YACF,MAAM,EAAC,IAAI,EAAC,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;YACpD,OAAO,IAAI,CAAC;QACd,CAAC,CAAA,CAAC;QAEe,aAAQ,GAAG,GAAmC,EAAE;YAC/D,MAAM,QAAQ,GAAG,oBAAQ,CAAC,QAAQ,EAAE,CAAC;YACrC,MAAM,EAAC,IAAI,EAAC,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;YAClD,OAAO,IAAI,CAAC;QACd,CAAC,CAAA,CAAC;QA5BA,IAAI,CAAC,SAAS,GAAG,eAAK,CAAC,MAAM,CAAC;YAC5B,OAAO,EAAE,MAAM,IAAI,OAAO,CAAC,QAAQ;SACpC,CAAC,CAAC;QAEH,IAAI,CAAC,GAAG,GAAG;YACT,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,QAAQ,EAAE,IAAI,CAAC,QAAQ;SACxB,CAAC;IACJ,CAAC;IAsBD;;;OAGG;IACI,SAAS,CAAC,MAAc;QAC7B,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,OAAO,GAAG,MAAM,CAAC;IAC3C,CAAC;;AAzCuB,gBAAQ,GAAG,yBAAyB,AAA5B,CAA6B;AADlD,0BAAO"}
|
package/dist/interfaces.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export interface API {
|
|
|
16
16
|
*/
|
|
17
17
|
getMemes(): Promise<Response<Memes>>;
|
|
18
18
|
}
|
|
19
|
-
export
|
|
19
|
+
export type Response<T> = {
|
|
20
20
|
data: T;
|
|
21
21
|
success: true;
|
|
22
22
|
} | {
|
|
@@ -91,5 +91,5 @@ export interface ImageCaptionWithTexts extends ImageCaptionBase {
|
|
|
91
91
|
/** Bottom text for the meme */
|
|
92
92
|
text1: string;
|
|
93
93
|
}
|
|
94
|
-
export
|
|
94
|
+
export type ImageCaptionOptions = ImageCaptionWithBoxes | ImageCaptionWithTexts;
|
|
95
95
|
export {};
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {
|
|
4
|
-
"axios": "
|
|
5
|
-
"qs": "6.11.
|
|
4
|
+
"axios": "1.3.5",
|
|
5
|
+
"qs": "6.11.1"
|
|
6
6
|
},
|
|
7
7
|
"description": "A imgflip.com API client",
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@types/node": "~
|
|
9
|
+
"@types/node": "~18",
|
|
10
10
|
"@types/qs": "6.9.7",
|
|
11
|
-
"typedoc": "0.
|
|
12
|
-
"typescript": "
|
|
11
|
+
"typedoc": "0.24.1",
|
|
12
|
+
"typescript": "5.0.4"
|
|
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.3.
|
|
38
|
-
"gitHead": "
|
|
37
|
+
"version": "3.3.4",
|
|
38
|
+
"gitHead": "f465953cd686a8aeb90b7c46c18ece57c55af76f"
|
|
39
39
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## 3.3.2 (2022-07-12)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* Dependency updates ([6083c2e](https://github.com/ffflorian/api-clients/commit/6083c2e66b4f4f3d47232fcff050565457ee8338))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## 3.3.1 (2022-04-08)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Bug Fixes
|
|
21
|
-
|
|
22
|
-
* **npms.io:** Search query doesn't need to be encoded ([#959](https://github.com/ffflorian/api-clients/issues/959)) ([ea737a7](https://github.com/ffflorian/api-clients/commit/ea737a735f1c1bac5e5dd4dc1c02c860af0fb818))
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
# 3.3.0 (2022-03-14)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
### Features
|
|
32
|
-
|
|
33
|
-
* **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))
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
## 3.2.1 (2021-12-22)
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### Bug Fixes
|
|
43
|
-
|
|
44
|
-
* Upgrade yarn lock file ([91511d0](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/91511d0f17882c1faedf55296ab11d9516a3d425))
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
# 3.2.0 (2021-07-30)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Features
|
|
54
|
-
|
|
55
|
-
* **bamboohr.com:** Handle errors, add more TimeOff endpoints ([f9fd458](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/f9fd458bf04253e01371e128d9ef06378700329c))
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
## [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)
|
|
62
|
-
|
|
63
|
-
**Note:** Version bump only for package imgflip.com
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
## [3.1.3](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@3.1.2...imgflip.com@3.1.3) (2021-04-14)
|
|
70
|
-
|
|
71
|
-
**Note:** Version bump only for package imgflip.com
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
## [3.1.2](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@3.1.1...imgflip.com@3.1.2) (2021-04-01)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
### Bug Fixes
|
|
81
|
-
|
|
82
|
-
* Build docs ([a570982](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/a570982a1df4b83b2a958c16bfecae7fb3af2ebe))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
## 3.1.1 (2021-01-31)
|
|
89
|
-
|
|
90
|
-
**Note:** Version bump only for package imgflip.com
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
# [3.1.0](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@3.0.4...imgflip.com@3.1.0) (2021-01-08)
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
### Features
|
|
100
|
-
|
|
101
|
-
* **imgflip.com:** Use body for post requests, add custom API URL ([d889216](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/d889216c60c162ddb6072c2fa7a41755a1ebbee9))
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
## [3.0.4](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@3.0.3...imgflip.com@3.0.4) (2021-01-08)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
### Bug Fixes
|
|
111
|
-
|
|
112
|
-
* **imgflip.com:** Use indexed arrays in query ([50dfff1](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/50dfff1ee480d6d8f222f43b73decc5c25c932fb))
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
## [3.0.3](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@3.0.2...imgflip.com@3.0.3) (2021-01-07)
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
### Bug Fixes
|
|
122
|
-
|
|
123
|
-
* **imgflip.com:** Array params ([#575](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/issues/575)) ([ab4d168](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/ab4d1684e73876f75d9cf0ce694dcb346ba85c91))
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
## 3.0.2 (2021-01-07)
|
|
130
|
-
|
|
131
|
-
**Note:** Version bump only for package imgflip.com
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
## 3.0.1 (2020-11-01)
|
|
138
|
-
|
|
139
|
-
**Note:** Version bump only for package imgflip.com
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
# 3.0.0 (2020-10-22)
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
### Features
|
|
149
|
-
|
|
150
|
-
* **roman-client:** Rewrite API and add Cookies ([6a175f4](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/6a175f4b447e766064ef4f83e87919b3a0302768))
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
### BREAKING CHANGES
|
|
154
|
-
|
|
155
|
-
* **roman-client:** The API got much smaller and is accessible directly now.
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
# 2.4.0 (2020-09-30)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
### Features
|
|
165
|
-
|
|
166
|
-
* Add roman-client ([#517](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/issues/517)) ([ff97881](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/ff97881a1fc0bcc5938fa6a2ed842cdbf30d2a7a))
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
## [2.3.1](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.3.0...imgflip.com@2.3.1) (2020-08-27)
|
|
173
|
-
|
|
174
|
-
**Note:** Version bump only for package imgflip.com
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
# [2.3.0](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.6...imgflip.com@2.3.0) (2020-07-03)
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
### Features
|
|
184
|
-
|
|
185
|
-
* Switch to new main branch ([4cb38b0](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/4cb38b0))
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
## [2.2.6](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.5...imgflip.com@2.2.6) (2020-06-30)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package imgflip.com
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
## [2.2.5](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.4...imgflip.com@2.2.5) (2020-06-24)
|
|
200
|
-
|
|
201
|
-
**Note:** Version bump only for package imgflip.com
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
## [2.2.4](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.3...imgflip.com@2.2.4) (2020-05-24)
|
|
208
|
-
|
|
209
|
-
**Note:** Version bump only for package imgflip.com
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
## [2.2.3](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.2...imgflip.com@2.2.3) (2020-05-13)
|
|
216
|
-
|
|
217
|
-
**Note:** Version bump only for package imgflip.com
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
## [2.2.2](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.1...imgflip.com@2.2.2) (2020-04-27)
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
### Bug Fixes
|
|
227
|
-
|
|
228
|
-
* **imgflip.com:** CaptionImage uses params ([33a9147](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/33a9147))
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
## [2.2.1](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/compare/imgflip.com@2.2.0...imgflip.com@2.2.1) (2020-04-26)
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
### Bug Fixes
|
|
238
|
-
|
|
239
|
-
* **imgflip.com:** Add getMemes return type ([eca905a](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/eca905a))
|
|
240
|
-
* **imgflip.com:** Interface comments ([2b5f1ae](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/2b5f1ae))
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
# 2.2.0 (2020-04-26)
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
### Features
|
|
250
|
-
|
|
251
|
-
* Add imgflip.com API ([#359](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/issues/359)) ([da0951c](https://github.com/ffflorian/api-clients/tree/main/packages/imgflip.com/commit/da0951c))
|