@erp-galoper/types 1.0.1795 → 1.0.1797

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 +37 -31
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -34719,6 +34719,19 @@ export interface components {
34719
34719
  * @enum {string}
34720
34720
  */
34721
34721
  InvoiceStatus: "in_progress" | "on_hold" | "voided" | "completed";
34722
+ /** AccountNameNumberAndCurrencySchema */
34723
+ AccountNameNumberAndCurrencySchema: {
34724
+ /** Id */
34725
+ id: number | string;
34726
+ /** Number */
34727
+ number: string;
34728
+ /** Name */
34729
+ name: string;
34730
+ currency: components["schemas"]["CurrencySummaryInfo"];
34731
+ /** Type */
34732
+ type: string;
34733
+ accountType: components["schemas"]["AccountModelType"];
34734
+ };
34722
34735
  /** CustomerSharedSchema */
34723
34736
  CustomerSharedSchema: {
34724
34737
  /** Phone1 */
@@ -35023,6 +35036,12 @@ export interface components {
35023
35036
  * @description A list of refunds applied to the sales invoice.
35024
35037
  */
35025
35038
  refunds: components["schemas"]["POSRefundSchema"][];
35039
+ /**
35040
+ * Entries
35041
+ * @description accounting entries related to this document
35042
+ * @default []
35043
+ */
35044
+ entries: components["schemas"]["PostEntryDetailsSchema"][];
35026
35045
  };
35027
35046
  /**
35028
35047
  * POSPaymentSchema
@@ -35154,6 +35173,24 @@ export interface components {
35154
35173
  /** Feetype */
35155
35174
  feeType: string;
35156
35175
  };
35176
+ /** PostEntryDetailsSchema */
35177
+ PostEntryDetailsSchema: {
35178
+ /** Id */
35179
+ id: number;
35180
+ account: components["schemas"]["AccountNameNumberAndCurrencySchema"];
35181
+ /** Debitamount */
35182
+ debitAmount: string;
35183
+ /** Creditamount */
35184
+ creditAmount: string;
35185
+ /** Usdamountcredit */
35186
+ usdAmountCredit: string;
35187
+ /** Usdamountdebit */
35188
+ usdAmountDebit: string;
35189
+ /** Companyamountcredit */
35190
+ companyAmountCredit: string;
35191
+ /** Companyamountdebit */
35192
+ companyAmountDebit: string;
35193
+ };
35157
35194
  /** PromotionsAndOffersSharedSchema */
35158
35195
  PromotionsAndOffersSharedSchema: {
35159
35196
  /**
@@ -40133,19 +40170,6 @@ export interface components {
40133
40170
  * @enum {string}
40134
40171
  */
40135
40172
  ChangedFields: "amount" | "companyAmount" | "usdAmount" | "companyRate" | "usdRate" | "accountNumber";
40136
- /** AccountNameNumberAndCurrencySchema */
40137
- AccountNameNumberAndCurrencySchema: {
40138
- /** Id */
40139
- id: number | string;
40140
- /** Number */
40141
- number: string;
40142
- /** Name */
40143
- name: string;
40144
- currency: components["schemas"]["CurrencySummaryInfo"];
40145
- /** Type */
40146
- type: string;
40147
- accountType: components["schemas"]["AccountModelType"];
40148
- };
40149
40173
  /** AdvancePaymentResponse */
40150
40174
  AdvancePaymentResponse: {
40151
40175
  /** Code */
@@ -40197,24 +40221,6 @@ export interface components {
40197
40221
  /** Name */
40198
40222
  name: string;
40199
40223
  };
40200
- /** PostEntryDetailsSchema */
40201
- PostEntryDetailsSchema: {
40202
- /** Id */
40203
- id: number;
40204
- account: components["schemas"]["AccountNameNumberAndCurrencySchema"];
40205
- /** Debitamount */
40206
- debitAmount: string;
40207
- /** Creditamount */
40208
- creditAmount: string;
40209
- /** Usdamountcredit */
40210
- usdAmountCredit: string;
40211
- /** Usdamountdebit */
40212
- usdAmountDebit: string;
40213
- /** Companyamountcredit */
40214
- companyAmountCredit: string;
40215
- /** Companyamountdebit */
40216
- companyAmountDebit: string;
40217
- };
40218
40224
  /** RetrieveAdvancePaymentItemsSchema */
40219
40225
  RetrieveAdvancePaymentItemsSchema: {
40220
40226
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1795",
3
+ "version": "1.0.1797",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],