needle-cloud 0.4.0-alpha.50 → 0.4.0-alpha.52

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.
@@ -41,9 +41,8 @@ export function uploadFiles(files: Array<Filelike>, opts: AuthData & {
41
41
  * created_at: string,
42
42
  * updated_at: string,
43
43
  * name? :string,
44
- * url:string,
44
+ * url:string | null,
45
45
  * size: number,
46
- * additional_size?: number,
47
46
  * }>}} Upload
48
47
  */
49
48
  /**
@@ -94,9 +93,8 @@ export type Upload = {
94
93
  created_at: string;
95
94
  updated_at: string;
96
95
  name?: string;
97
- url: string;
96
+ url: string | null;
98
97
  size: number;
99
- additional_size?: number;
100
98
  }>;
101
99
  };
102
100
  export type Deployment = {
@@ -41,9 +41,8 @@ export function uploadFiles(files: Array<Filelike>, opts: AuthData & {
41
41
  * created_at: string,
42
42
  * updated_at: string,
43
43
  * name? :string,
44
- * url:string,
44
+ * url:string | null,
45
45
  * size: number,
46
- * additional_size?: number,
47
46
  * }>}} Upload
48
47
  */
49
48
  /**
@@ -94,9 +93,8 @@ export type Upload = {
94
93
  created_at: string;
95
94
  updated_at: string;
96
95
  name?: string;
97
- url: string;
96
+ url: string | null;
98
97
  size: number;
99
- additional_size?: number;
100
98
  }>;
101
99
  };
102
100
  export type Deployment = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "needle-cloud",
3
- "version": "0.4.0-alpha.50",
3
+ "version": "0.4.0-alpha.52",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "needle-cloud": "./bin/cli.js"