api.fluff4.me 1.0.283 → 1.0.284
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 -1
- package/openapi.json +8 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -409,7 +409,9 @@ export interface ManifestNotificationTypes {
|
|
|
409
409
|
Roles: NotificationType
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
-
export interface NotificationType
|
|
412
|
+
export interface NotificationType {
|
|
413
|
+
type: string
|
|
414
|
+
}
|
|
413
415
|
|
|
414
416
|
export type Notifications = Notification[]
|
|
415
417
|
|
package/openapi.json
CHANGED
|
@@ -2095,7 +2095,14 @@
|
|
|
2095
2095
|
},
|
|
2096
2096
|
"NotificationType": {
|
|
2097
2097
|
"type": "object",
|
|
2098
|
-
"properties": {
|
|
2098
|
+
"properties": {
|
|
2099
|
+
"type": {
|
|
2100
|
+
"type": "string"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"required": [
|
|
2104
|
+
"type"
|
|
2105
|
+
]
|
|
2099
2106
|
},
|
|
2100
2107
|
"Notifications": {
|
|
2101
2108
|
"type": "array",
|
package/package.json
CHANGED