@erp-galoper/types 1.0.574 → 1.0.576

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 +17 -7
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -22719,8 +22719,10 @@ export interface components {
22719
22719
  * Format: uuid
22720
22720
  */
22721
22721
  id: string;
22722
- /** Serial Number */
22723
- serial_number: string;
22722
+ /** Serialnumber */
22723
+ serialNumber: string;
22724
+ /** Description */
22725
+ description: string;
22724
22726
  };
22725
22727
  /** ProjectSummaryInfo */
22726
22728
  ProjectSummaryInfo: {
@@ -22773,8 +22775,7 @@ export interface components {
22773
22775
  approvalStatus: components["schemas"]["ApprovalChoices"] | null;
22774
22776
  /** Attachments */
22775
22777
  attachments: string[] | null;
22776
- /** Reversedin */
22777
- reversedIn: string | null;
22778
+ reversedIn: components["schemas"]["JournalVoucherSummaryInfo"] | null;
22778
22779
  reversalOf: components["schemas"]["JournalVoucherSummaryInfo"] | null;
22779
22780
  /** Journalitems */
22780
22781
  journalItems: components["schemas"]["RetrieveJournalVoucherItemsSchema"][];
@@ -22923,8 +22924,7 @@ export interface components {
22923
22924
  approvalStatus: components["schemas"]["ApprovalChoices"] | null;
22924
22925
  /** Attachments */
22925
22926
  attachments: string[] | null;
22926
- /** Reversedin */
22927
- reversedIn: string | null;
22927
+ reversedIn: components["schemas"]["JournalVoucherSummaryInfo"] | null;
22928
22928
  reversalOf: components["schemas"]["JournalVoucherSummaryInfo"] | null;
22929
22929
  };
22930
22930
  /** ReverseJournalVoucherSchema */
@@ -24918,6 +24918,11 @@ export interface components {
24918
24918
  * @description visible when customer type is company
24919
24919
  */
24920
24920
  companyRegistrationNumber: string | null;
24921
+ /**
24922
+ * Financialnumber
24923
+ * @description visible when customer type is company
24924
+ */
24925
+ financialNumber: string | null;
24921
24926
  };
24922
24927
  /** CustomerGroupInfoSchema */
24923
24928
  CustomerGroupInfoSchema: {
@@ -25743,6 +25748,11 @@ export interface components {
25743
25748
  * @description visible when customer type is company
25744
25749
  */
25745
25750
  companyRegistrationNumber: string | null;
25751
+ /**
25752
+ * Financialnumber
25753
+ * @description visible when customer type is company
25754
+ */
25755
+ financialNumber?: string | null;
25746
25756
  };
25747
25757
  /**
25748
25758
  * TypeOfCustomerValue
@@ -26974,7 +26984,7 @@ export interface components {
26974
26984
  /**
26975
26985
  * Id
26976
26986
  * Format: uuid
26977
- * @example a1df7ef2-c0db-4b5a-8789-3caf85e36704
26987
+ * @example 26267bd3-8260-46e5-92ee-ed32fa35261d
26978
26988
  */
26979
26989
  id: string;
26980
26990
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.574",
3
+ "version": "1.0.576",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],