@dkcinema/contracts 1.0.17 → 1.0.18

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.
@@ -1,4 +1,5 @@
1
1
  export declare const protoPath: {
2
2
  readonly AUTH: string;
3
+ readonly ACCOUNT: string;
3
4
  };
4
5
  //# sourceMappingURL=paths.const.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"paths.const.d.ts","sourceRoot":"","sources":["../../src/constant/paths.const.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,SAAS;;CAEZ,CAAA"}
1
+ {"version":3,"file":"paths.const.d.ts","sourceRoot":"","sources":["../../src/constant/paths.const.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,SAAS;;;CAGZ,CAAA"}
@@ -2,6 +2,8 @@ import { dirname, join } from 'path';
2
2
  import { fileURLToPath } from 'url';
3
3
  const __dirname = dirname(fileURLToPath(import.meta.url));
4
4
  const authPath = join(__dirname, '../../protos', 'auth.proto');
5
+ const accountPath = join(__dirname, '../../protos', 'auth.proto');
5
6
  export const protoPath = {
6
7
  AUTH: authPath,
8
+ ACCOUNT: accountPath
7
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dkcinema/contracts",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",