@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.
- package/openapi.ts +5 -3
- 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
|
-
/**
|
552
|
-
|
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"]["
|
1147
|
+
"application/json": components["schemas"]["RefreshTokenResponseSchema"];
|
1146
1148
|
};
|
1147
1149
|
};
|
1148
1150
|
/** @description Unauthorized */
|
package/package.json
CHANGED