caprover-api 0.0.8 → 0.0.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "caprover-api",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "API client for CapRover",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
@@ -61,7 +61,7 @@ export interface IAppTag {
61
61
 
62
62
  export interface IAppDefinitionBase {
63
63
  projectId?: string | undefined
64
- description: string
64
+ description?: string
65
65
  deployedVersion: number
66
66
  notExposeAsWebApp: boolean
67
67
  hasPersistentData: boolean
@@ -1,6 +1,6 @@
1
1
  export default interface GoAccessReportResponse {
2
2
  domainName: string
3
3
  name: string
4
- lastModifiedTime: Date
4
+ lastModifiedTime: string
5
5
  url: string
6
6
  }