@erp-galoper/types 1.0.1753 → 1.0.1754

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 +100 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -40135,6 +40135,21 @@ export interface components {
40135
40135
  companyTotal: number;
40136
40136
  /** Usdtotal */
40137
40137
  usdTotal: number;
40138
+ /**
40139
+ * Remaining
40140
+ * @description Remaining balance in supplier currency
40141
+ */
40142
+ remaining?: string;
40143
+ /**
40144
+ * Primaryremaining
40145
+ * @description Remaining balance in primary currency
40146
+ */
40147
+ primaryRemaining?: string;
40148
+ /**
40149
+ * Secondaryremaining
40150
+ * @description Remaining balance in secondary currency
40151
+ */
40152
+ secondaryRemaining?: string;
40138
40153
  /** Attachments */
40139
40154
  attachments: string[] | null;
40140
40155
  /** Candelete */
@@ -40296,6 +40311,21 @@ export interface components {
40296
40311
  companyTotal: number;
40297
40312
  /** Usdtotal */
40298
40313
  usdTotal: number;
40314
+ /**
40315
+ * Remaining
40316
+ * @description Remaining balance in supplier currency
40317
+ */
40318
+ remaining?: string;
40319
+ /**
40320
+ * Primaryremaining
40321
+ * @description Remaining balance in primary currency
40322
+ */
40323
+ primaryRemaining?: string;
40324
+ /**
40325
+ * Secondaryremaining
40326
+ * @description Remaining balance in secondary currency
40327
+ */
40328
+ secondaryRemaining?: string;
40299
40329
  /** Attachments */
40300
40330
  attachments: string[] | null;
40301
40331
  /** Candelete */
@@ -41916,6 +41946,21 @@ export interface components {
41916
41946
  * @default []
41917
41947
  */
41918
41948
  advancePayment: components["schemas"]["AdvancedPaymentSharedSchema"] | null;
41949
+ /**
41950
+ * Advancepaymentamount
41951
+ * @description Amount of advance payment applied to this invoice (supplier currency).
41952
+ */
41953
+ advancePaymentAmount: string | null;
41954
+ /**
41955
+ * Primaryadvancepaymentamount
41956
+ * @description advance_payment_amount * company_rate — primary currency, computed by system.
41957
+ */
41958
+ primaryAdvancePaymentAmount: string | null;
41959
+ /**
41960
+ * Secondaryadvancepaymentamount
41961
+ * @description advance_payment_amount * usd_rate — secondary currency, computed by system.
41962
+ */
41963
+ secondaryAdvancePaymentAmount: string | null;
41919
41964
  /**
41920
41965
  * Goodsreceiptnote
41921
41966
  * @description Goods receipt note ID, hit the goods_receipt_note endpoint to get the list of goods receipt notes, filtered by the supplier
@@ -42805,6 +42850,21 @@ export interface components {
42805
42850
  * @default []
42806
42851
  */
42807
42852
  advancePayment: components["schemas"]["AdvancedPaymentSharedSchema"] | null;
42853
+ /**
42854
+ * Advancepaymentamount
42855
+ * @description Amount of advance payment applied to this invoice (supplier currency).
42856
+ */
42857
+ advancePaymentAmount: string | null;
42858
+ /**
42859
+ * Primaryadvancepaymentamount
42860
+ * @description advance_payment_amount * company_rate — primary currency, computed by system.
42861
+ */
42862
+ primaryAdvancePaymentAmount: string | null;
42863
+ /**
42864
+ * Secondaryadvancepaymentamount
42865
+ * @description advance_payment_amount * usd_rate — secondary currency, computed by system.
42866
+ */
42867
+ secondaryAdvancePaymentAmount: string | null;
42808
42868
  /**
42809
42869
  * Goodsreceiptnote
42810
42870
  * @description Goods receipt note ID, hit the goods_receipt_note endpoint to get the list of goods receipt notes, filtered by the supplier
@@ -43012,6 +43072,21 @@ export interface components {
43012
43072
  * @default []
43013
43073
  */
43014
43074
  advancePayment: components["schemas"]["AdvancedPaymentSharedSchema"] | null;
43075
+ /**
43076
+ * Advancepaymentamount
43077
+ * @description Amount of advance payment applied to this invoice (supplier currency).
43078
+ */
43079
+ advancePaymentAmount: string | null;
43080
+ /**
43081
+ * Primaryadvancepaymentamount
43082
+ * @description advance_payment_amount * company_rate — primary currency, computed by system.
43083
+ */
43084
+ primaryAdvancePaymentAmount: string | null;
43085
+ /**
43086
+ * Secondaryadvancepaymentamount
43087
+ * @description advance_payment_amount * usd_rate — secondary currency, computed by system.
43088
+ */
43089
+ secondaryAdvancePaymentAmount: string | null;
43015
43090
  /**
43016
43091
  * Goodsreceiptnote
43017
43092
  * @description Goods receipt note ID, hit the goods_receipt_note endpoint to get the list of goods receipt notes, filtered by the supplier
@@ -43231,6 +43306,11 @@ export interface components {
43231
43306
  * @description Advanced payment ID,to get advance payments use route /v1/purchase/advance-payments/?branchId=1&type=purchaseInvoice&supplier={supplier-id}
43232
43307
  */
43233
43308
  advancePayment: string | null;
43309
+ /**
43310
+ * Advancepaymentamount
43311
+ * @description Amount of advance payment to apply to this invoice (supplier currency). Visible and required when advancePayment is set.
43312
+ */
43313
+ advancePaymentAmount?: number;
43234
43314
  /**
43235
43315
  * Departmentid
43236
43316
  * @description Department ID,hit the user/me endpoint and access departments field to get the list of departments
@@ -43465,6 +43545,11 @@ export interface components {
43465
43545
  * @description Advanced payment ID,to get advance payments use route /v1/purchase/advance-payments/?branchId=1&type=purchaseInvoice&supplier={supplier-id}
43466
43546
  */
43467
43547
  advancePayment: string | null;
43548
+ /**
43549
+ * Advancepaymentamount
43550
+ * @description Amount of advance payment to apply to this invoice (supplier currency). Visible and required when advancePayment is set.
43551
+ */
43552
+ advancePaymentAmount?: number;
43468
43553
  /** Attachments */
43469
43554
  attachments: string[] | null;
43470
43555
  /** Description */
@@ -44144,6 +44229,21 @@ export interface components {
44144
44229
  * @default []
44145
44230
  */
44146
44231
  advancePayment: components["schemas"]["AdvancedPaymentSharedSchema"] | null;
44232
+ /**
44233
+ * Advancepaymentamount
44234
+ * @description Amount of advance payment applied to this invoice (supplier currency).
44235
+ */
44236
+ advancePaymentAmount: string | null;
44237
+ /**
44238
+ * Primaryadvancepaymentamount
44239
+ * @description advance_payment_amount * company_rate — primary currency, computed by system.
44240
+ */
44241
+ primaryAdvancePaymentAmount: string | null;
44242
+ /**
44243
+ * Secondaryadvancepaymentamount
44244
+ * @description advance_payment_amount * usd_rate — secondary currency, computed by system.
44245
+ */
44246
+ secondaryAdvancePaymentAmount: string | null;
44147
44247
  /**
44148
44248
  * Goodsreceiptnote
44149
44249
  * @description Goods receipt note ID, hit the goods_receipt_note endpoint to get the list of goods receipt notes, filtered by the supplier
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1753",
3
+ "version": "1.0.1754",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],