@anmiles/google-api-wrapper 19.0.1 → 19.0.3
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/CHANGELOG.md +8 -0
- package/dist/lib/utils/paths.js +1 -1
- package/dist/lib/utils/paths.js.map +1 -1
- package/dist/templates/index.html +1 -1
- package/package.json +1 -1
- package/src/lib/__tests__/__snapshots__/renderer.test.ts.snap +2 -2
- package/src/lib/utils/paths.ts +1 -1
- package/src/templates/index.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [19.0.3](../../tags/v19.0.3) - 2025-05-24
|
|
9
|
+
### Changed
|
|
10
|
+
- Fixed path to templates
|
|
11
|
+
|
|
12
|
+
## [19.0.2](../../tags/v19.0.2) - 2025-05-19
|
|
13
|
+
### Changed
|
|
14
|
+
- Fixed typo
|
|
15
|
+
|
|
8
16
|
## [19.0.1](../../tags/v19.0.1) - 2025-05-19
|
|
9
17
|
### Changed
|
|
10
18
|
- Fixed expecting refresh_token in temporary credentials
|
package/dist/lib/utils/paths.js
CHANGED
|
@@ -13,7 +13,7 @@ const dirPaths = {
|
|
|
13
13
|
input: 'input',
|
|
14
14
|
secrets: 'secrets',
|
|
15
15
|
// TODO: Remove this hack after moving to React
|
|
16
|
-
templates: path_1.default.
|
|
16
|
+
templates: path_1.default.join(__dirname, '../../templates'),
|
|
17
17
|
};
|
|
18
18
|
function getProfilesFile() {
|
|
19
19
|
return path_1.default.join(dirPaths.input, 'profiles.json');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paths.js","sourceRoot":"","sources":["../../../src/lib/utils/paths.ts"],"names":[],"mappings":";;;;;AAWA,0CAEC;AAED,sCAEC;AAED,wCAEC;AAED,gDAEC;AAED,0CAEC;AA7BD,gDAAwB;AAIxB,MAAM,QAAQ,GAAG;IAChB,KAAK,EAAM,OAAO;IAClB,OAAO,EAAI,SAAS;IACpB,+CAA+C;IAC/C,SAAS,EAAE,cAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"paths.js","sourceRoot":"","sources":["../../../src/lib/utils/paths.ts"],"names":[],"mappings":";;;;;AAWA,0CAEC;AAED,sCAEC;AAED,wCAEC;AAED,gDAEC;AAED,0CAEC;AA7BD,gDAAwB;AAIxB,MAAM,QAAQ,GAAG;IAChB,KAAK,EAAM,OAAO;IAClB,OAAO,EAAI,SAAS;IACpB,+CAA+C;IAC/C,SAAS,EAAE,cAAI,CAAC,IAAI,CAAC,SAAS,EAAE,iBAAiB,CAAC;CAClD,CAAC;AAEF,SAAgB,eAAe;IAC9B,OAAO,cAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC;AACnD,CAAC;AAED,SAAgB,aAAa;IAC5B,OAAO,aAAa,CAAC;AACtB,CAAC;AAED,SAAgB,cAAc,CAAC,OAAe;IAC7C,OAAO,cAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,GAAG,OAAO,OAAO,CAAC,CAAC;AACvD,CAAC;AAED,SAAgB,kBAAkB,CAAC,OAAe;IACjD,OAAO,cAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,GAAG,OAAO,mBAAmB,CAAC,CAAC;AACnE,CAAC;AAED,SAAgB,eAAe,CAAC,YAAoC;IACnE,OAAO,cAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,GAAG,YAAY,OAAO,CAAC,CAAC;AAC9D,CAAC"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ exports[`src/lib/renderer renderAuth should return auth page 1`] = `
|
|
|
4
4
|
"<!DOCTYPE html>
|
|
5
5
|
<html>
|
|
6
6
|
<head>
|
|
7
|
-
<title>Google API sign-in
|
|
7
|
+
<title>Google API sign-in</title>
|
|
8
8
|
<meta charset="utf-8">
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
10
10
|
</head>
|
|
@@ -143,7 +143,7 @@ exports[`src/lib/renderer renderDone should return done page 1`] = `
|
|
|
143
143
|
"<!DOCTYPE html>
|
|
144
144
|
<html>
|
|
145
145
|
<head>
|
|
146
|
-
<title>Google API sign-in
|
|
146
|
+
<title>Google API sign-in</title>
|
|
147
147
|
<meta charset="utf-8">
|
|
148
148
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
149
149
|
</head>
|
package/src/lib/utils/paths.ts
CHANGED
|
@@ -6,7 +6,7 @@ const dirPaths = {
|
|
|
6
6
|
input : 'input',
|
|
7
7
|
secrets : 'secrets',
|
|
8
8
|
// TODO: Remove this hack after moving to React
|
|
9
|
-
templates: path.
|
|
9
|
+
templates: path.join(__dirname, '../../templates'),
|
|
10
10
|
};
|
|
11
11
|
|
|
12
12
|
export function getProfilesFile(): string {
|
package/src/templates/index.html
CHANGED