@capgo/cli 7.69.0 → 7.70.0

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "7.69.0",
3
+ "version": "7.70.0",
4
4
  "type": "module",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
@@ -8,6 +8,7 @@ export declare function decryptSourceV2(source: Buffer, ivSessionKey: string, ke
8
8
  export declare function encryptChecksumV2(checksum: string, key: string): string;
9
9
  export declare function encryptChecksumV3(checksum: string, key: string): string;
10
10
  export declare function decryptChecksumV2(checksum: string, key: string): string;
11
+ export declare function decryptChecksumV3(checksum: string, key: string): string;
11
12
  export interface RSAKeys {
12
13
  publicKey: string;
13
14
  privateKey: string;
@@ -2,6 +2,7 @@ interface Options {
2
2
  key?: string;
3
3
  keyData?: string;
4
4
  checksum?: string;
5
+ packageJson?: string;
5
6
  }
6
7
  export interface DecryptResult {
7
8
  outputPath: string;
@@ -2,6 +2,7 @@ interface Options {
2
2
  key?: string;
3
3
  keyData?: string;
4
4
  json?: boolean;
5
+ packageJson?: string;
5
6
  }
6
7
  export interface EncryptResult {
7
8
  checksum: string;
package/dist/src/sdk.d.ts CHANGED
@@ -268,6 +268,7 @@ export interface EncryptBundleOptions {
268
268
  keyPath?: string;
269
269
  keyData?: string;
270
270
  json?: boolean;
271
+ packageJson?: string;
271
272
  }
272
273
  export interface DecryptBundleOptions {
273
274
  zipPath: string;
@@ -275,6 +276,7 @@ export interface DecryptBundleOptions {
275
276
  keyPath?: string;
276
277
  keyData?: string;
277
278
  checksum?: string;
279
+ packageJson?: string;
278
280
  }
279
281
  export interface ZipBundleOptions {
280
282
  appId: string;