@knapsack/types 4.68.0--canary.4412.7726217.0 → 4.68.0--canary.4469.d3d33e5.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +29 -0
- package/dist/api/files.d.ts +3 -15
- package/dist/api/files.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1
|
+
# v4.67.4 (Wed Aug 07 2024)
|
2
|
+
|
3
|
+
#### 🐛 Bug Fix
|
4
|
+
|
5
|
+
- Remove openFile action filesEndpoint from client API [#4239](https://github.com/knapsack-labs/app-monorepo/pull/4239) ([@greylabel](https://github.com/greylabel))
|
6
|
+
|
7
|
+
#### 🏠 Internal
|
8
|
+
|
9
|
+
- always show template size value [#4453](https://github.com/knapsack-labs/app-monorepo/pull/4453) ([@GormanDesign](https://github.com/GormanDesign))
|
10
|
+
|
11
|
+
#### Authors: 2
|
12
|
+
|
13
|
+
- Grant Gaudet ([@greylabel](https://github.com/greylabel))
|
14
|
+
- Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
|
15
|
+
|
16
|
+
---
|
17
|
+
|
18
|
+
# v4.67.3 (Wed Aug 07 2024)
|
19
|
+
|
20
|
+
#### 🐛 Bug Fix
|
21
|
+
|
22
|
+
- Merge branch 'latest' into feature/add-menu-component ([@brittanysmart](https://github.com/brittanysmart))
|
23
|
+
|
24
|
+
#### Authors: 1
|
25
|
+
|
26
|
+
- Brittany Smart ([@brittanysmart](https://github.com/brittanysmart))
|
27
|
+
|
28
|
+
---
|
29
|
+
|
1
30
|
# v4.66.17 (Mon Aug 05 2024)
|
2
31
|
|
3
32
|
#### 🐛 Bug Fix
|
package/dist/api/files.d.ts
CHANGED
@@ -1,8 +1,6 @@
|
|
1
|
-
import { GenericResponse } from '../misc';
|
2
1
|
export declare const endpoint = "/files";
|
3
2
|
export declare enum ACTIONS {
|
4
|
-
verify = "verify"
|
5
|
-
openFile = "openFile"
|
3
|
+
verify = "verify"
|
6
4
|
}
|
7
5
|
export interface VerifyData {
|
8
6
|
type: ACTIONS.verify;
|
@@ -19,16 +17,6 @@ export interface VerifyDataResponse {
|
|
19
17
|
type: 'absolute' | 'relative' | 'package' | 'unknown';
|
20
18
|
};
|
21
19
|
}
|
22
|
-
export
|
23
|
-
|
24
|
-
payload: {
|
25
|
-
filePath: string;
|
26
|
-
};
|
27
|
-
}
|
28
|
-
export interface OpenFileResponse {
|
29
|
-
type: ACTIONS.openFile;
|
30
|
-
payload: GenericResponse;
|
31
|
-
}
|
32
|
-
export type Actions = VerifyData | OpenFileRequest;
|
33
|
-
export type ActionResponses = VerifyDataResponse | OpenFileResponse;
|
20
|
+
export type Actions = VerifyData;
|
21
|
+
export type ActionResponses = VerifyDataResponse;
|
34
22
|
//# sourceMappingURL=files.d.ts.map
|
package/dist/api/files.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"files.d.ts","sourceRoot":"","sources":["../../src/api/files.ts"],"names":[],"mappings":"AAAA,
|
1
|
+
{"version":3,"file":"files.d.ts","sourceRoot":"","sources":["../../src/api/files.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,WAAW,CAAC;AAEjC,oBAAY,OAAO;IACjB,MAAM,WAAW;CAClB;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC;IACrB,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACH;AAED,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC;IACrB,OAAO,EAAE;QACP,MAAM,EAAE,OAAO,CAAC;QAChB,YAAY,EAAE,MAAM,CAAC;QACrB,YAAY,EAAE,MAAM,CAAC;QACrB,IAAI,EAAE,UAAU,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,CAAC;KACvD,CAAC;CACH;AAED,MAAM,MAAM,OAAO,GAAG,UAAU,CAAC;AAEjC,MAAM,MAAM,eAAe,GAAG,kBAAkB,CAAC"}
|
package/dist/index.js
CHANGED