mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-04-07 05:01:24 +00:00
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",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -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: {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user