feat: add axios
This commit is contained in:
@@ -4,23 +4,23 @@
|
||||
* main.proto
|
||||
* OpenAPI spec version: version not set
|
||||
*/
|
||||
import type { CrmCharacteristic } from './crmCharacteristic'
|
||||
import type { CrmGroupedProduct } from './crmGroupedProduct'
|
||||
import type { CrabscrmLabel } from './crabscrmLabel'
|
||||
import type { CrmVariant } from './crmVariant'
|
||||
import type { CrmCharacteristic } from './crmCharacteristic';
|
||||
import type { CrmGroupedProduct } from './crmGroupedProduct';
|
||||
import type { CrabscrmLabel } from './crabscrmLabel';
|
||||
import type { CrmVariant } from './crmVariant';
|
||||
|
||||
export interface CrmProduct {
|
||||
article?: string
|
||||
category?: string
|
||||
characteristics?: CrmCharacteristic[]
|
||||
description?: string
|
||||
groupedProducts?: CrmGroupedProduct[]
|
||||
id?: string
|
||||
images?: string[]
|
||||
inventory?: number
|
||||
labels?: CrabscrmLabel[]
|
||||
name?: string
|
||||
unit?: string
|
||||
uri?: string
|
||||
variants?: CrmVariant[]
|
||||
article?: string;
|
||||
category?: string;
|
||||
characteristics?: CrmCharacteristic[];
|
||||
description?: string;
|
||||
groupedProducts?: CrmGroupedProduct[];
|
||||
id?: string;
|
||||
images?: string[];
|
||||
inventory?: number;
|
||||
labels?: CrabscrmLabel[];
|
||||
name?: string;
|
||||
unit?: string;
|
||||
uri?: string;
|
||||
variants?: CrmVariant[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user