@erp-galoper/types 1.0.249 → 1.0.251

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 +67 -33
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26636,7 +26636,7 @@ export interface components {
26636
26636
  /**
26637
26637
  * Id
26638
26638
  * Format: uuid
26639
- * @example de25c8c0-ec55-4a8c-b4d6-5b7b501e5857
26639
+ * @example c6f7cb2d-dd0a-464f-9e5e-3cb7412f1990
26640
26640
  */
26641
26641
  id: string;
26642
26642
  /**
@@ -38094,65 +38094,64 @@ export interface components {
38094
38094
  /** Results */
38095
38095
  results: components["schemas"]["RetrieveContactSegmentationSchema"][];
38096
38096
  };
38097
- /** PaymentWithEquivalentResponse */
38098
- PaymentWithEquivalentResponse: {
38099
- /** Salesinvoice */
38100
- salesInvoice?: string | null;
38101
- /**
38102
- * Amount
38103
- * @description field is number
38104
- */
38105
- amount: string;
38097
+ /** PurchaseRefundVoucherCalculateTotalResponse */
38098
+ PurchaseRefundVoucherCalculateTotalResponse: {
38106
38099
  /**
38107
- * Companyamount
38100
+ * Total
38108
38101
  * @description field is number
38109
38102
  */
38110
- companyAmount: string;
38103
+ total: string;
38111
38104
  /**
38112
- * Secondaryamount
38105
+ * Companytotal
38113
38106
  * @description field is number
38114
38107
  */
38115
- secondaryAmount: string;
38108
+ companyTotal: string;
38116
38109
  /**
38117
- * Companyrate
38110
+ * Usdtotal
38118
38111
  * @description field is number
38119
38112
  */
38120
- companyRate: string;
38113
+ usdTotal: string;
38121
38114
  /**
38122
- * Secondaryrate
38115
+ * Remainingbalance
38123
38116
  * @description field is number
38124
38117
  */
38125
- secondaryRate: string | null;
38118
+ remainingBalance: string;
38119
+ /** Payments */
38120
+ payments: components["schemas"]["RefundVoucherPaymentWithEquivalentResponse"][];
38121
+ };
38122
+ /** RefundVoucherPaymentWithEquivalentResponse */
38123
+ RefundVoucherPaymentWithEquivalentResponse: {
38124
+ /** Returninvoice */
38125
+ returnInvoice: string | null;
38126
+ /** Advancepaymentitem */
38127
+ advancePaymentItem: string | null;
38128
+ /** Amount */
38129
+ amount: string;
38126
38130
  /**
38127
- * Remaining
38131
+ * Companyrate
38128
38132
  * @description field is number
38129
38133
  */
38130
- remaining: string;
38131
- };
38132
- /** PurchaseRefundVoucherCalculateTotalResponse */
38133
- PurchaseRefundVoucherCalculateTotalResponse: {
38134
+ companyRate: string;
38134
38135
  /**
38135
- * Total
38136
+ * Usdrate
38136
38137
  * @description field is number
38137
38138
  */
38138
- total: string;
38139
+ usdRate: string | null;
38139
38140
  /**
38140
- * Companytotal
38141
+ * Companyamount
38141
38142
  * @description field is number
38142
38143
  */
38143
- companyTotal: string;
38144
+ companyAmount: string;
38144
38145
  /**
38145
- * Usdtotal
38146
+ * Usdamount
38146
38147
  * @description field is number
38147
38148
  */
38148
- usdTotal: string;
38149
+ usdAmount: string;
38149
38150
  /**
38150
- * Remainingbalance
38151
+ * Remaining
38151
38152
  * @description field is number
38152
38153
  */
38153
- remainingBalance: string;
38154
- /** Payments */
38155
- payments: components["schemas"]["PaymentWithEquivalentResponse"][];
38154
+ remaining: string;
38156
38155
  };
38157
38156
  /** PurchaseRefundVoucherCalculateEquivalentsAndTotalsSchema */
38158
38157
  PurchaseRefundVoucherCalculateEquivalentsAndTotalsSchema: {
@@ -40424,6 +40423,41 @@ export interface components {
40424
40423
  /** Payments */
40425
40424
  payments: components["schemas"]["PaymentWithEquivalentResponse"][];
40426
40425
  };
40426
+ /** PaymentWithEquivalentResponse */
40427
+ PaymentWithEquivalentResponse: {
40428
+ /** Salesinvoice */
40429
+ salesInvoice?: string | null;
40430
+ /**
40431
+ * Amount
40432
+ * @description field is number
40433
+ */
40434
+ amount: string;
40435
+ /**
40436
+ * Companyamount
40437
+ * @description field is number
40438
+ */
40439
+ companyAmount: string;
40440
+ /**
40441
+ * Secondaryamount
40442
+ * @description field is number
40443
+ */
40444
+ secondaryAmount: string;
40445
+ /**
40446
+ * Companyrate
40447
+ * @description field is number
40448
+ */
40449
+ companyRate: string;
40450
+ /**
40451
+ * Secondaryrate
40452
+ * @description field is number
40453
+ */
40454
+ secondaryRate: string | null;
40455
+ /**
40456
+ * Remaining
40457
+ * @description field is number
40458
+ */
40459
+ remaining: string;
40460
+ };
40427
40461
  /** AmountWithEquivalentSchema */
40428
40462
  AmountWithEquivalentSchema: {
40429
40463
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.249",
3
+ "version": "1.0.251",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],