@erp-galoper/types 1.0.1677 → 1.0.1679

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/openapi.ts +4 -12
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -17047,7 +17047,6 @@ export interface paths {
17047
17047
  * - 400:
17048
17048
  * - branchDoesNotExist
17049
17049
  * - accountIsRequired
17050
- * - customerBankAccountIsRequired
17051
17050
  * - customerBankAccountDoesNotExist
17052
17051
  * - dueDateIsRequired
17053
17052
  * - chequeNumberIsRequired
@@ -17124,7 +17123,6 @@ export interface paths {
17124
17123
  * - 400:
17125
17124
  * - branchDoesNotExist
17126
17125
  * - accountIsRequired
17127
- * - customerBankAccountIsRequired
17128
17126
  * - customerBankAccountDoesNotExist
17129
17127
  * - dueDateIsRequired
17130
17128
  * - chequeNumberIsRequired
@@ -52077,12 +52075,9 @@ export interface components {
52077
52075
  secondaryRate?: string;
52078
52076
  /**
52079
52077
  * Customerbankaccount
52080
- * @description Visibility and Requirement:
52081
- * - Required and visible if payment method is Bank Transfer
52082
- * API Endpoints for Customer Bank Account Retrieval:
52083
- * - Use the API: /api/v1/customers/{customer-id}/ where field is banks
52078
+ * @description Customer's bank account. Retrieved from /api/v1/customers/{customer-id}/ (banks field)
52084
52079
  */
52085
- customerBankAccount?: number;
52080
+ customerBankAccount?: number | null;
52086
52081
  /**
52087
52082
  * Salesinvoice
52088
52083
  * Format: uuid
@@ -52221,12 +52216,9 @@ export interface components {
52221
52216
  secondaryRate?: string;
52222
52217
  /**
52223
52218
  * Customerbankaccount
52224
- * @description Visibility and Requirement:
52225
- * - Required and visible if payment method is Bank Transfer
52226
- * API Endpoints for Customer Bank Account Retrieval:
52227
- * - Use the API: /api/v1/customers/{customer-id}/ where field is banks
52219
+ * @description Customer's bank account. Retrieved from /api/v1/customers/{customer-id}/ (banks field)
52228
52220
  */
52229
- customerBankAccount?: number;
52221
+ customerBankAccount?: number | null;
52230
52222
  /**
52231
52223
  * Salesinvoice
52232
52224
  * Format: uuid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1677",
3
+ "version": "1.0.1679",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],