api.fluff4.me 1.0.285 → 1.0.286
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 -3
- package/openapi.json +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -404,9 +404,9 @@ export interface ReactionType {
|
|
|
404
404
|
}
|
|
405
405
|
|
|
406
406
|
export interface ManifestNotificationTypes {
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
407
|
+
report: NotificationType
|
|
408
|
+
comment: NotificationType
|
|
409
|
+
roles: NotificationType
|
|
410
410
|
}
|
|
411
411
|
|
|
412
412
|
export interface NotificationType {
|
package/openapi.json
CHANGED
|
@@ -2077,20 +2077,20 @@
|
|
|
2077
2077
|
"ManifestNotificationTypes": {
|
|
2078
2078
|
"type": "object",
|
|
2079
2079
|
"properties": {
|
|
2080
|
-
"
|
|
2080
|
+
"report": {
|
|
2081
2081
|
"$ref": "#/components/schema/NotificationType"
|
|
2082
2082
|
},
|
|
2083
|
-
"
|
|
2083
|
+
"comment": {
|
|
2084
2084
|
"$ref": "#/components/schema/NotificationType"
|
|
2085
2085
|
},
|
|
2086
|
-
"
|
|
2086
|
+
"roles": {
|
|
2087
2087
|
"$ref": "#/components/schema/NotificationType"
|
|
2088
2088
|
}
|
|
2089
2089
|
},
|
|
2090
2090
|
"required": [
|
|
2091
|
-
"
|
|
2092
|
-
"
|
|
2093
|
-
"
|
|
2091
|
+
"report",
|
|
2092
|
+
"comment",
|
|
2093
|
+
"roles"
|
|
2094
2094
|
]
|
|
2095
2095
|
},
|
|
2096
2096
|
"NotificationType": {
|
package/package.json
CHANGED