api.fluff4.me 1.0.683 → 1.0.684

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
@@ -807,7 +807,7 @@ export interface SupporterCheckoutParams {
807
807
  }
808
808
 
809
809
  export interface SupporterGetTimestamp {
810
- modified: string
810
+ modified?: string | null
811
811
  }
812
812
 
813
813
  export interface ChangelogInsertBody {
package/openapi.json CHANGED
@@ -4526,12 +4526,16 @@
4526
4526
  "type": "object",
4527
4527
  "properties": {
4528
4528
  "modified": {
4529
- "type": "string"
4529
+ "anyOf": [
4530
+ {
4531
+ "type": "string"
4532
+ },
4533
+ {
4534
+ "type": "null"
4535
+ }
4536
+ ]
4530
4537
  }
4531
- },
4532
- "required": [
4533
- "modified"
4534
- ]
4538
+ }
4535
4539
  },
4536
4540
  "ChangelogInsertBody": {
4537
4541
  "type": "object",
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.683",
3
+ "version": "1.0.684",
4
4
  "types": "index.d.ts"
5
5
  }