api.fluff4.me 1.0.614 → 1.0.615

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 CHANGED
@@ -49,7 +49,8 @@ export interface Author {
49
49
  export interface Supporter {
50
50
  tier: number
51
51
  months: number
52
- vanity_colours?: number[] | null
52
+ username_colours?: number[] | null
53
+ card_colours?: number[] | null
53
54
  }
54
55
 
55
56
  export interface AuthorSelf {
@@ -106,6 +107,7 @@ export interface Work {
106
107
  time_publish?: string | null
107
108
  time_last_update?: string | null
108
109
  global_tags?: string[] | null
110
+ card_colours?: number[] | null
109
111
  }
110
112
 
111
113
  export interface Role {
@@ -162,7 +164,8 @@ export interface AuthorCreateBody {
162
164
  feedback_preference_dont_hold_back?: boolean | null
163
165
  feedback_preference_typos?: boolean | null
164
166
  settings?: string | null
165
- vanity_colours?: number[] | null
167
+ username_colours?: number[] | null
168
+ card_colours?: number[] | null
166
169
  }
167
170
 
168
171
  export interface AuthorFull {
@@ -189,7 +192,8 @@ export interface AuthorInsertBody {
189
192
  feedback_preference_dont_hold_back?: boolean | null
190
193
  feedback_preference_typos?: boolean | null
191
194
  settings?: string | null
192
- vanity_colours?: number[] | null
195
+ username_colours?: number[] | null
196
+ card_colours?: number[] | null
193
197
  }
194
198
 
195
199
  export interface AuthorUpdateSettingsBody {
@@ -214,6 +218,7 @@ export interface WorkFull {
214
218
  time_publish?: string | null
215
219
  time_last_update?: string | null
216
220
  global_tags?: string[] | null
221
+ card_colours?: number[] | null
217
222
  synopsis: TextBodyWithAuthor
218
223
  custom_tags?: CustomTag[] | null
219
224
  last_chapter: string
@@ -252,6 +257,7 @@ export interface WorkUpdateBody {
252
257
  feedback_preference_critique?: boolean | null
253
258
  feedback_preference_dont_hold_back?: boolean | null
254
259
  feedback_preference_typos?: boolean | null
260
+ card_colours?: number[] | null
255
261
  }
256
262
 
257
263
  export interface Feedback {
package/openapi.json CHANGED
@@ -187,7 +187,20 @@
187
187
  "months": {
188
188
  "type": "number"
189
189
  },
190
- "vanity_colours": {
190
+ "username_colours": {
191
+ "anyOf": [
192
+ {
193
+ "type": "array",
194
+ "items": {
195
+ "type": "number"
196
+ }
197
+ },
198
+ {
199
+ "type": "null"
200
+ }
201
+ ]
202
+ },
203
+ "card_colours": {
191
204
  "anyOf": [
192
205
  {
193
206
  "type": "array",
@@ -522,6 +535,19 @@
522
535
  "type": "null"
523
536
  }
524
537
  ]
538
+ },
539
+ "card_colours": {
540
+ "anyOf": [
541
+ {
542
+ "type": "array",
543
+ "items": {
544
+ "type": "number"
545
+ }
546
+ },
547
+ {
548
+ "type": "null"
549
+ }
550
+ ]
525
551
  }
526
552
  },
527
553
  "required": [
@@ -824,7 +850,20 @@
824
850
  }
825
851
  ]
826
852
  },
827
- "vanity_colours": {
853
+ "username_colours": {
854
+ "anyOf": [
855
+ {
856
+ "type": "array",
857
+ "items": {
858
+ "type": "number"
859
+ }
860
+ },
861
+ {
862
+ "type": "null"
863
+ }
864
+ ]
865
+ },
866
+ "card_colours": {
828
867
  "anyOf": [
829
868
  {
830
869
  "type": "array",
@@ -1017,7 +1056,20 @@
1017
1056
  }
1018
1057
  ]
1019
1058
  },
1020
- "vanity_colours": {
1059
+ "username_colours": {
1060
+ "anyOf": [
1061
+ {
1062
+ "type": "array",
1063
+ "items": {
1064
+ "type": "number"
1065
+ }
1066
+ },
1067
+ {
1068
+ "type": "null"
1069
+ }
1070
+ ]
1071
+ },
1072
+ "card_colours": {
1021
1073
  "anyOf": [
1022
1074
  {
1023
1075
  "type": "array",
@@ -1145,6 +1197,19 @@
1145
1197
  }
1146
1198
  ]
1147
1199
  },
1200
+ "card_colours": {
1201
+ "anyOf": [
1202
+ {
1203
+ "type": "array",
1204
+ "items": {
1205
+ "type": "number"
1206
+ }
1207
+ },
1208
+ {
1209
+ "type": "null"
1210
+ }
1211
+ ]
1212
+ },
1148
1213
  "synopsis": {
1149
1214
  "$ref": "#/components/schema/TextBodyWithAuthor"
1150
1215
  },
@@ -1444,6 +1509,19 @@
1444
1509
  "type": "null"
1445
1510
  }
1446
1511
  ]
1512
+ },
1513
+ "card_colours": {
1514
+ "anyOf": [
1515
+ {
1516
+ "type": "array",
1517
+ "items": {
1518
+ "type": "number"
1519
+ }
1520
+ },
1521
+ {
1522
+ "type": "null"
1523
+ }
1524
+ ]
1447
1525
  }
1448
1526
  }
1449
1527
  },
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.614",
3
+ "version": "1.0.615",
4
4
  "types": "index.d.ts"
5
5
  }