api.fluff4.me 1.0.578 → 1.0.580
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/index.d.ts +3 -0
- package/openapi.json +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface Author {
|
|
|
40
40
|
support_link: string
|
|
41
41
|
support_message: string
|
|
42
42
|
word_count: number
|
|
43
|
+
work_count: number
|
|
43
44
|
vanity: string
|
|
44
45
|
pronouns?: string | null
|
|
45
46
|
}
|
|
@@ -50,6 +51,7 @@ export interface AuthorSelf {
|
|
|
50
51
|
support_link: string
|
|
51
52
|
support_message: string
|
|
52
53
|
word_count: number
|
|
54
|
+
work_count: number
|
|
53
55
|
vanity: string
|
|
54
56
|
pronouns?: string | null
|
|
55
57
|
description: TextBody
|
|
@@ -160,6 +162,7 @@ export interface AuthorFull {
|
|
|
160
162
|
support_link: string
|
|
161
163
|
support_message: string
|
|
162
164
|
word_count: number
|
|
165
|
+
work_count: number
|
|
163
166
|
vanity: string
|
|
164
167
|
pronouns?: string | null
|
|
165
168
|
description: TextBody
|
package/openapi.json
CHANGED
|
@@ -140,6 +140,9 @@
|
|
|
140
140
|
"word_count": {
|
|
141
141
|
"type": "number"
|
|
142
142
|
},
|
|
143
|
+
"work_count": {
|
|
144
|
+
"type": "number"
|
|
145
|
+
},
|
|
143
146
|
"vanity": {
|
|
144
147
|
"type": "string",
|
|
145
148
|
"maxLength": 32
|
|
@@ -161,6 +164,7 @@
|
|
|
161
164
|
"support_link",
|
|
162
165
|
"support_message",
|
|
163
166
|
"word_count",
|
|
167
|
+
"work_count",
|
|
164
168
|
"vanity"
|
|
165
169
|
]
|
|
166
170
|
},
|
|
@@ -186,6 +190,9 @@
|
|
|
186
190
|
"word_count": {
|
|
187
191
|
"type": "number"
|
|
188
192
|
},
|
|
193
|
+
"work_count": {
|
|
194
|
+
"type": "number"
|
|
195
|
+
},
|
|
189
196
|
"vanity": {
|
|
190
197
|
"type": "string",
|
|
191
198
|
"maxLength": 32
|
|
@@ -303,6 +310,7 @@
|
|
|
303
310
|
"support_link",
|
|
304
311
|
"support_message",
|
|
305
312
|
"word_count",
|
|
313
|
+
"work_count",
|
|
306
314
|
"vanity",
|
|
307
315
|
"description"
|
|
308
316
|
]
|
|
@@ -796,6 +804,9 @@
|
|
|
796
804
|
"word_count": {
|
|
797
805
|
"type": "number"
|
|
798
806
|
},
|
|
807
|
+
"work_count": {
|
|
808
|
+
"type": "number"
|
|
809
|
+
},
|
|
799
810
|
"vanity": {
|
|
800
811
|
"type": "string",
|
|
801
812
|
"maxLength": 32
|
|
@@ -820,6 +831,7 @@
|
|
|
820
831
|
"support_link",
|
|
821
832
|
"support_message",
|
|
822
833
|
"word_count",
|
|
834
|
+
"work_count",
|
|
823
835
|
"vanity",
|
|
824
836
|
"description"
|
|
825
837
|
]
|
package/package.json
CHANGED