chore(sdk): update OpenAPI spec and generated types

This commit is contained in:
abouolia
2026-03-27 14:37:15 +00:00
committed by github-actions[bot]
parent b0db59a495
commit 2492a5b043
2 changed files with 32 additions and 0 deletions

View File

@@ -29061,6 +29061,11 @@
"type": "boolean",
"description": "Active status",
"default": true
},
"code": {
"type": "string",
"description": "Customer code",
"example": "CUST-001"
}
},
"required": [
@@ -29183,6 +29188,10 @@
"active": {
"type": "boolean",
"description": "Active status"
},
"code": {
"type": "string",
"description": "Customer code"
}
},
"required": [
@@ -29418,6 +29427,11 @@
"type": "boolean",
"description": "Whether the vendor is active",
"default": true
},
"code": {
"type": "string",
"description": "Vendor code",
"example": "VEND-001"
}
},
"required": [
@@ -29534,6 +29548,10 @@
"active": {
"type": "boolean",
"description": "Whether the vendor is active"
},
"code": {
"type": "string",
"description": "Vendor code"
}
}
},

View File

@@ -8338,6 +8338,11 @@ export interface components {
* @default true
*/
active: boolean;
/**
* @description Customer code
* @example CUST-001
*/
code?: string;
};
EditCustomerDto: {
/** @description Billing address line 1 */
@@ -8396,6 +8401,8 @@ export interface components {
note?: string;
/** @description Active status */
active?: boolean;
/** @description Customer code */
code?: string;
};
CustomerOpeningBalanceEditDto: {
/**
@@ -8536,6 +8543,11 @@ export interface components {
* @default true
*/
active: boolean;
/**
* @description Vendor code
* @example VEND-001
*/
code?: string;
};
EditVendorDto: {
/** @description Billing address line 1 */
@@ -8592,6 +8604,8 @@ export interface components {
note?: string;
/** @description Whether the vendor is active */
active?: boolean;
/** @description Vendor code */
code?: string;
};
VendorOpeningBalanceEditDto: {
/**