@eduzz/miau-client 0.0.14 → 0.0.15
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/.turbo/turbo-build$colon$types.log +1 -1
- package/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-prepublish.log +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/miau-types/types/Application.d.ts +2 -2
- package/dist/miau-types/types/Organization.d.ts +2 -2
- package/dist/miau-types/types/Permission.d.ts +2 -2
- package/dist/miau-types/types/Secret.d.ts +2 -2
- package/package.json +1 -1
- package/src/MiauClient.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
> @eduzz/miau-client@0.0.
|
|
2
|
+
> @eduzz/miau-client@0.0.15 build /home/runner/work/eduzz-miau/eduzz-miau/packages/client
|
|
3
3
|
> esbuild src/index.ts --bundle --sourcemap --platform=node --target=es2020 --outfile=dist/index.js
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
dist/index.js 438.5kb
|
|
7
7
|
dist/index.js.map 735.4kb
|
|
8
8
|
|
|
9
|
-
⚡ Done in
|
|
9
|
+
⚡ Done in 462ms
|
package/dist/index.js
CHANGED
|
@@ -11815,7 +11815,7 @@ var MiauClient = class {
|
|
|
11815
11815
|
return `${this.apiUrl}/v1/jwks.json`;
|
|
11816
11816
|
};
|
|
11817
11817
|
this.apiUrl = props.apiUrl;
|
|
11818
|
-
const apiKey = props.appSecret.substring(7,
|
|
11818
|
+
const apiKey = props.appSecret.substring(7, 32);
|
|
11819
11819
|
this.basicAuthToken = Buffer.from(`${apiKey}:${props.appSecret}`).toString("base64");
|
|
11820
11820
|
}
|
|
11821
11821
|
async getPublicKey(kid) {
|