@erp-galoper/main-package 1.0.64 → 1.0.66

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.
Files changed (2) hide show
  1. package/openapi.ts +5 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -548,10 +548,12 @@ export interface components {
548
548
  refreshToken: string;
549
549
  [key: string]: unknown;
550
550
  };
551
- /** AccessTokenSchema */
552
- AccessTokenSchema: {
551
+ /** RefreshTokenResponseSchema */
552
+ RefreshTokenResponseSchema: {
553
553
  /** Accesstoken */
554
554
  accessToken: string;
555
+ /** Refreshtoken */
556
+ refreshToken: string;
555
557
  [key: string]: unknown;
556
558
  };
557
559
  /** ListRoleResponseSchema */
@@ -1142,7 +1144,7 @@ export interface operations {
1142
1144
  /** @description OK */
1143
1145
  200: {
1144
1146
  content: {
1145
- "application/json": components["schemas"]["AccessTokenSchema"];
1147
+ "application/json": components["schemas"]["RefreshTokenResponseSchema"];
1146
1148
  };
1147
1149
  };
1148
1150
  /** @description Unauthorized */
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.64",
3
+ "version": "1.0.66",
4
4
  "main": "openapi.ts"
5
5
  }