datacenter-lib-common-ts 1.2.0 → 1.2.1

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.
@@ -25,7 +25,7 @@ export interface IAuthenticationRequestBodyFromGoogleToken extends IAuthenticati
25
25
  }
26
26
  export interface IAuthenticationRequestBodyIntegration extends IAuthenticationRequestBody {
27
27
  type: typeof AuthenticationType.integration;
28
- client_uuid: string;
28
+ client_id: string;
29
29
  secret: string;
30
30
  }
31
31
  export interface IAuthentication {
package/package.json CHANGED
@@ -37,7 +37,7 @@
37
37
  "release:minor": "standard-version -m && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version minor && git push origin && git push origin --tags && npm publish --access public",
38
38
  "release:patch": "standard-version -p && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version patch && git push origin && git push origin --tags && npm publish --access public"
39
39
  },
40
- "version": "1.2.0",
40
+ "version": "1.2.1",
41
41
  "exports": {
42
42
  ".": {
43
43
  "require": "./dist/cjs/index.js",
@@ -35,7 +35,7 @@ export interface IAuthenticationRequestBodyFromGoogleToken extends IAuthenticati
35
35
 
36
36
  export interface IAuthenticationRequestBodyIntegration extends IAuthenticationRequestBody {
37
37
  type: typeof AuthenticationType.integration,
38
- client_uuid: string,
38
+ client_id: string,
39
39
  secret: string,
40
40
  }
41
41