chore(sdk): update OpenAPI spec and generated types
This commit is contained in:
committed by
github-actions[bot]
parent
b0db59a495
commit
2492a5b043
@@ -29061,6 +29061,11 @@
|
|||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Active status",
|
"description": "Active status",
|
||||||
"default": true
|
"default": true
|
||||||
|
},
|
||||||
|
"code": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Customer code",
|
||||||
|
"example": "CUST-001"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
@@ -29183,6 +29188,10 @@
|
|||||||
"active": {
|
"active": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Active status"
|
"description": "Active status"
|
||||||
|
},
|
||||||
|
"code": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Customer code"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
@@ -29418,6 +29427,11 @@
|
|||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Whether the vendor is active",
|
"description": "Whether the vendor is active",
|
||||||
"default": true
|
"default": true
|
||||||
|
},
|
||||||
|
"code": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Vendor code",
|
||||||
|
"example": "VEND-001"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
@@ -29534,6 +29548,10 @@
|
|||||||
"active": {
|
"active": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Whether the vendor is active"
|
"description": "Whether the vendor is active"
|
||||||
|
},
|
||||||
|
"code": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Vendor code"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8338,6 +8338,11 @@ export interface components {
|
|||||||
* @default true
|
* @default true
|
||||||
*/
|
*/
|
||||||
active: boolean;
|
active: boolean;
|
||||||
|
/**
|
||||||
|
* @description Customer code
|
||||||
|
* @example CUST-001
|
||||||
|
*/
|
||||||
|
code?: string;
|
||||||
};
|
};
|
||||||
EditCustomerDto: {
|
EditCustomerDto: {
|
||||||
/** @description Billing address line 1 */
|
/** @description Billing address line 1 */
|
||||||
@@ -8396,6 +8401,8 @@ export interface components {
|
|||||||
note?: string;
|
note?: string;
|
||||||
/** @description Active status */
|
/** @description Active status */
|
||||||
active?: boolean;
|
active?: boolean;
|
||||||
|
/** @description Customer code */
|
||||||
|
code?: string;
|
||||||
};
|
};
|
||||||
CustomerOpeningBalanceEditDto: {
|
CustomerOpeningBalanceEditDto: {
|
||||||
/**
|
/**
|
||||||
@@ -8536,6 +8543,11 @@ export interface components {
|
|||||||
* @default true
|
* @default true
|
||||||
*/
|
*/
|
||||||
active: boolean;
|
active: boolean;
|
||||||
|
/**
|
||||||
|
* @description Vendor code
|
||||||
|
* @example VEND-001
|
||||||
|
*/
|
||||||
|
code?: string;
|
||||||
};
|
};
|
||||||
EditVendorDto: {
|
EditVendorDto: {
|
||||||
/** @description Billing address line 1 */
|
/** @description Billing address line 1 */
|
||||||
@@ -8592,6 +8604,8 @@ export interface components {
|
|||||||
note?: string;
|
note?: string;
|
||||||
/** @description Whether the vendor is active */
|
/** @description Whether the vendor is active */
|
||||||
active?: boolean;
|
active?: boolean;
|
||||||
|
/** @description Vendor code */
|
||||||
|
code?: string;
|
||||||
};
|
};
|
||||||
VendorOpeningBalanceEditDto: {
|
VendorOpeningBalanceEditDto: {
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user