feat: add axios

This commit is contained in:
Константин Уколов
2024-07-31 10:53:01 +03:00
parent 9d44b23565
commit 112dd2358a
25 changed files with 629 additions and 457 deletions
+4 -4
View File
@@ -4,10 +4,10 @@
* main.proto
* OpenAPI spec version: version not set
*/
import type { CrmCartItem } from './crmCartItem'
import type { CrmCartItem } from './crmCartItem';
export interface CrmCartRsp {
amount?: string
amountOld?: string
items?: CrmCartItem[]
amount?: string;
amountOld?: string;
items?: CrmCartItem[];
}