@ripwords/myinvois-client 0.2.12 → 0.2.14

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 (79) hide show
  1. package/dist/api/documentManagement.d.ts +2 -2
  2. package/dist/api/documentSubmission.d.ts +2 -2
  3. package/dist/api/documentSubmission.js +1 -1
  4. package/dist/api/documentTypeManagement.d.ts +2 -2
  5. package/dist/api/notificationManagement.d.ts +2 -2
  6. package/dist/api/platformLogin.d.ts +2 -2
  7. package/dist/api/taxpayerValidation.d.ts +2 -2
  8. package/dist/{certificate-WSJT5L7T.js → certificate-COwqszxD.js} +23 -1
  9. package/dist/{certificate-CLmh3bGS.cjs → certificate-CWmfCPdt.cjs} +29 -1
  10. package/dist/certificate-CWmfCPdt.cjs.map +1 -0
  11. package/dist/{documentSubmission-DvCgvq28.cjs → documentSubmission-CZvD4VVN.cjs} +8 -10
  12. package/dist/documentSubmission-CZvD4VVN.cjs.map +1 -0
  13. package/dist/{documentSubmission-BPDiODUd.js → documentSubmission-O5136E5C.js} +7 -9
  14. package/dist/{documents-BPawWCi-.d.ts → documents-CkoydYUK.d.ts} +1 -1
  15. package/dist/{documents-BXxJLeMe.d.cts → documents-DSZZujgx.d.cts} +2 -2
  16. package/dist/index.cjs +7 -3
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.d.ts +4 -2
  19. package/dist/index.js +7 -3
  20. package/dist/index10.cjs +4 -24
  21. package/dist/index11.cjs +20 -0
  22. package/dist/index12.cjs +2 -33
  23. package/dist/index13.cjs +2 -23
  24. package/dist/index14.cjs +330 -0
  25. package/dist/{index29.cjs.map → index14.cjs.map} +1 -1
  26. package/dist/index15.cjs +193 -0
  27. package/dist/{index30.cjs.map → index15.cjs.map} +1 -1
  28. package/dist/index16.cjs +62 -0
  29. package/dist/index16.cjs.map +1 -0
  30. package/dist/index17.cjs +531 -4
  31. package/dist/index17.cjs.map +1 -0
  32. package/dist/index18.cjs +195 -6
  33. package/dist/index18.cjs.map +1 -0
  34. package/dist/index19.cjs +0 -5
  35. package/dist/index2.cjs +4 -61
  36. package/dist/index20.cjs +24 -2
  37. package/dist/index20.cjs.map +1 -0
  38. package/dist/index21.cjs +0 -3
  39. package/dist/index22.cjs +0 -6
  40. package/dist/index23.cjs +28 -3
  41. package/dist/index23.cjs.map +1 -0
  42. package/dist/index24.cjs +21 -9
  43. package/dist/index24.cjs.map +1 -1
  44. package/dist/index25.cjs +0 -4
  45. package/dist/index26.cjs +33 -19
  46. package/dist/{index12.cjs.map → index26.cjs.map} +1 -1
  47. package/dist/index27.cjs +23 -2
  48. package/dist/{index13.cjs.map → index27.cjs.map} +1 -1
  49. package/dist/index28.cjs +0 -3
  50. package/dist/index29.cjs +0 -330
  51. package/dist/index3.cjs +6 -531
  52. package/dist/index30.cjs +0 -193
  53. package/dist/index4.cjs +4 -195
  54. package/dist/index5.cjs +3 -0
  55. package/dist/index6.cjs +2 -24
  56. package/dist/index67.cts.map +1 -1
  57. package/dist/index7.cjs +6 -0
  58. package/dist/index70.cts.map +1 -1
  59. package/dist/index8.cjs +4 -0
  60. package/dist/index9.cjs +9 -25
  61. package/dist/index9.cjs.map +1 -1
  62. package/dist/{taxpayer-ONpnw0na.d.cts → taxpayer-CYHwMpau.d.cts} +2 -2
  63. package/dist/{taxpayer-SC6Tu_nN.d.ts → taxpayer-szi2f7gT.d.ts} +1 -1
  64. package/dist/types/documents.d.ts +1 -1
  65. package/dist/types/index.d.ts +2 -2
  66. package/dist/types/taxpayer.d.ts +2 -2
  67. package/dist/utils/certificate.d.ts +5 -1
  68. package/dist/utils/certificate.js +2 -2
  69. package/dist/utils/document.d.ts +2 -2
  70. package/dist/utils/signature-diagnostics.d.ts +2 -2
  71. package/dist/utils/validation.d.ts +2 -2
  72. package/package.json +3 -2
  73. package/dist/certificate-CLmh3bGS.cjs.map +0 -1
  74. package/dist/documentSubmission-DvCgvq28.cjs.map +0 -1
  75. package/dist/index10.cjs.map +0 -1
  76. package/dist/index2.cjs.map +0 -1
  77. package/dist/index3.cjs.map +0 -1
  78. package/dist/index4.cjs.map +0 -1
  79. package/dist/index6.cjs.map +0 -1
package/dist/index30.cjs CHANGED
@@ -1,193 +0,0 @@
1
-
2
- //#region src/utils/validation.ts
3
- /**
4
- * Validates TIN format based on registration type
5
- */
6
- const validateTIN = (tin, registrationType) => {
7
- const errors = [];
8
- if (!tin) {
9
- errors.push({
10
- field: "tin",
11
- code: "TIN_REQUIRED",
12
- message: "TIN is required",
13
- severity: "error"
14
- });
15
- return errors;
16
- }
17
- if (registrationType === "BRN" && !tin.startsWith("C")) errors.push({
18
- field: "tin",
19
- code: "TIN_FORMAT_INVALID",
20
- message: "Company TIN should start with \"C\" for BRN registration",
21
- severity: "warning"
22
- });
23
- if (registrationType === "NRIC" && !tin.startsWith("IG")) errors.push({
24
- field: "tin",
25
- code: "TIN_FORMAT_INVALID",
26
- message: "Individual TIN should start with \"IG\" for NRIC registration",
27
- severity: "warning"
28
- });
29
- if (tin.length > 14) errors.push({
30
- field: "tin",
31
- code: "TIN_LENGTH_INVALID",
32
- message: "TIN cannot exceed 14 characters",
33
- severity: "error"
34
- });
35
- return errors;
36
- };
37
- /**
38
- * Validates contact number format (E.164 standard)
39
- */
40
- const validateContactNumber = (contactNumber) => {
41
- const errors = [];
42
- if (!contactNumber || contactNumber === "NA") return errors;
43
- const e164Regex = /^\+[1-9]\d{1,14}$/;
44
- if (!e164Regex.test(contactNumber)) errors.push({
45
- field: "contactNumber",
46
- code: "CONTACT_FORMAT_INVALID",
47
- message: "Contact number must be in E.164 format (e.g., +60123456789)",
48
- severity: "error"
49
- });
50
- if (contactNumber.length < 8) errors.push({
51
- field: "contactNumber",
52
- code: "CONTACT_LENGTH_INVALID",
53
- message: "Contact number must be at least 8 characters",
54
- severity: "error"
55
- });
56
- return errors;
57
- };
58
- /**
59
- * Validates monetary amounts
60
- */
61
- const validateMonetaryAmount = (amount, fieldName, maxDigits = 18, maxDecimals = 2) => {
62
- const errors = [];
63
- if (amount < 0) errors.push({
64
- field: fieldName,
65
- code: "AMOUNT_NEGATIVE",
66
- message: `${fieldName} cannot be negative`,
67
- severity: "error"
68
- });
69
- const amountStr = amount.toString();
70
- const [integerPart, decimalPart] = amountStr.split(".");
71
- if (integerPart && integerPart.length > maxDigits - maxDecimals) errors.push({
72
- field: fieldName,
73
- code: "AMOUNT_DIGITS_EXCEEDED",
74
- message: `${fieldName} exceeds maximum ${maxDigits} digits`,
75
- severity: "error"
76
- });
77
- if (decimalPart && decimalPart.length > maxDecimals) errors.push({
78
- field: fieldName,
79
- code: "AMOUNT_DECIMALS_EXCEEDED",
80
- message: `${fieldName} exceeds maximum ${maxDecimals} decimal places`,
81
- severity: "error"
82
- });
83
- return errors;
84
- };
85
- /**
86
- * Validates line item tax calculation consistency for both fixed rate and percentage taxation
87
- */
88
- const validateLineItemTax = (item, index) => {
89
- const errors = [];
90
- const tolerance = .01;
91
- const hasFixedRate = item.taxPerUnitAmount !== void 0 && item.baseUnitMeasure !== void 0;
92
- const hasPercentageRate = item.taxRate !== void 0;
93
- if (!hasFixedRate && !hasPercentageRate) {
94
- errors.push({
95
- field: `lineItem[${index}]`,
96
- code: "TAX_METHOD_MISSING",
97
- message: `Line item ${index + 1} must specify either taxRate (for percentage) or taxPerUnitAmount + baseUnitMeasure (for fixed rate)`,
98
- severity: "error"
99
- });
100
- return errors;
101
- }
102
- if (hasFixedRate && hasPercentageRate) errors.push({
103
- field: `lineItem[${index}]`,
104
- code: "TAX_METHOD_CONFLICT",
105
- message: `Line item ${index + 1} cannot have both percentage and fixed rate tax methods`,
106
- severity: "error"
107
- });
108
- if (hasFixedRate) {
109
- if (item.baseUnitMeasureCode === void 0) errors.push({
110
- field: `lineItem[${index}].baseUnitMeasureCode`,
111
- code: "UNIT_CODE_MISSING",
112
- message: `Line item ${index + 1} with fixed rate tax must specify baseUnitMeasureCode`,
113
- severity: "error"
114
- });
115
- const expectedTaxAmount = item.taxPerUnitAmount * item.baseUnitMeasure;
116
- if (Math.abs(item.taxAmount - expectedTaxAmount) > tolerance) errors.push({
117
- field: `lineItem[${index}].taxAmount`,
118
- code: "FIXED_TAX_CALCULATION_MISMATCH",
119
- message: `Line item ${index + 1} tax amount (${item.taxAmount}) doesn't match fixed rate calculation (${item.taxPerUnitAmount} × ${item.baseUnitMeasure} = ${expectedTaxAmount})`,
120
- severity: "error"
121
- });
122
- }
123
- if (hasPercentageRate && !hasFixedRate) {
124
- const expectedTaxAmount = item.totalTaxableAmountPerLine * item.taxRate / 100;
125
- if (Math.abs(item.taxAmount - expectedTaxAmount) > tolerance) errors.push({
126
- field: `lineItem[${index}].taxAmount`,
127
- code: "PERCENTAGE_TAX_CALCULATION_MISMATCH",
128
- message: `Line item ${index + 1} tax amount (${item.taxAmount}) doesn't match percentage calculation (${item.totalTaxableAmountPerLine} × ${item.taxRate}% = ${expectedTaxAmount})`,
129
- severity: "error"
130
- });
131
- }
132
- return errors;
133
- };
134
- /**
135
- * Validates tax calculation consistency
136
- */
137
- const validateTaxCalculations = (invoice) => {
138
- const errors = [];
139
- invoice.invoiceLineItems.forEach((item, index) => {
140
- errors.push(...validateLineItemTax(item, index));
141
- });
142
- const expectedTaxExclusive = invoice.invoiceLineItems.reduce((sum, item) => sum + item.totalTaxableAmountPerLine, 0);
143
- const expectedTaxAmount = invoice.invoiceLineItems.reduce((sum, item) => sum + item.taxAmount, 0);
144
- const tolerance = .01;
145
- if (Math.abs(invoice.legalMonetaryTotal.taxExclusiveAmount - expectedTaxExclusive) > tolerance) errors.push({
146
- field: "legalMonetaryTotal.taxExclusiveAmount",
147
- code: "TAX_EXCLUSIVE_MISMATCH",
148
- message: `Tax exclusive amount (${invoice.legalMonetaryTotal.taxExclusiveAmount}) doesn't match sum of line items (${expectedTaxExclusive})`,
149
- severity: "error"
150
- });
151
- if (Math.abs(invoice.taxTotal.taxAmount - expectedTaxAmount) > tolerance) errors.push({
152
- field: "taxTotal.taxAmount",
153
- code: "TAX_AMOUNT_MISMATCH",
154
- message: `Tax amount (${invoice.taxTotal.taxAmount}) doesn't match sum of line item taxes (${expectedTaxAmount})`,
155
- severity: "error"
156
- });
157
- return errors;
158
- };
159
- /**
160
- * Main validation function for complete invoice
161
- */
162
- const validateInvoice = (invoice) => {
163
- const allErrors = [];
164
- allErrors.push(...validateTIN(invoice.supplier.tin, invoice.supplier.registrationType));
165
- allErrors.push(...validateTIN(invoice.buyer.tin, invoice.buyer.registrationType));
166
- allErrors.push(...validateContactNumber(invoice.supplier.contactNumber));
167
- allErrors.push(...validateContactNumber(invoice.buyer.contactNumber));
168
- allErrors.push(...validateMonetaryAmount(invoice.legalMonetaryTotal.taxExclusiveAmount, "taxExclusiveAmount"));
169
- allErrors.push(...validateMonetaryAmount(invoice.legalMonetaryTotal.payableAmount, "payableAmount"));
170
- allErrors.push(...validateMonetaryAmount(invoice.taxTotal.taxAmount, "taxAmount"));
171
- invoice.invoiceLineItems.forEach((item, index) => {
172
- allErrors.push(...validateMonetaryAmount(item.unitPrice, `lineItem[${index}].unitPrice`));
173
- allErrors.push(...validateMonetaryAmount(item.taxAmount, `lineItem[${index}].taxAmount`));
174
- allErrors.push(...validateMonetaryAmount(item.totalTaxableAmountPerLine, `lineItem[${index}].totalTaxableAmountPerLine`));
175
- });
176
- allErrors.push(...validateTaxCalculations(invoice));
177
- const errors = allErrors.filter((e) => e.severity === "error");
178
- const warnings = allErrors.filter((e) => e.severity === "warning");
179
- return {
180
- isValid: errors.length === 0,
181
- errors,
182
- warnings
183
- };
184
- };
185
-
186
- //#endregion
187
- exports.validateContactNumber = validateContactNumber;
188
- exports.validateInvoice = validateInvoice;
189
- exports.validateLineItemTax = validateLineItemTax;
190
- exports.validateMonetaryAmount = validateMonetaryAmount;
191
- exports.validateTIN = validateTIN;
192
- exports.validateTaxCalculations = validateTaxCalculations;
193
- //# sourceMappingURL=index30.cjs.map
package/dist/index4.cjs CHANGED
@@ -1,196 +1,5 @@
1
+ const require_documentTypeManagement = require('./documentTypeManagement-D_-LiQVg.cjs');
1
2
 
2
- //#region src/types/currencies.d.ts
3
- /**
4
- * Enum representing the allowed ISO-4217 3-letter currency codes.
5
- * Provides a more readable way to reference currency codes.
6
- *
7
- * @example
8
- * const currency = CurrencyCodeEnum.MYR;
9
- * console.log(currency); // Output: "MYR"
10
- */
11
- let CurrencyCodeEnum = /* @__PURE__ */ function(CurrencyCodeEnum$1) {
12
- CurrencyCodeEnum$1["AED"] = "AED";
13
- CurrencyCodeEnum$1["AFN"] = "AFN";
14
- CurrencyCodeEnum$1["ALL"] = "ALL";
15
- CurrencyCodeEnum$1["AMD"] = "AMD";
16
- CurrencyCodeEnum$1["ANG"] = "ANG";
17
- CurrencyCodeEnum$1["AOA"] = "AOA";
18
- CurrencyCodeEnum$1["ARS"] = "ARS";
19
- CurrencyCodeEnum$1["AUD"] = "AUD";
20
- CurrencyCodeEnum$1["AWG"] = "AWG";
21
- CurrencyCodeEnum$1["AZN"] = "AZN";
22
- CurrencyCodeEnum$1["BAM"] = "BAM";
23
- CurrencyCodeEnum$1["BBD"] = "BBD";
24
- CurrencyCodeEnum$1["BDT"] = "BDT";
25
- CurrencyCodeEnum$1["BGN"] = "BGN";
26
- CurrencyCodeEnum$1["BHD"] = "BHD";
27
- CurrencyCodeEnum$1["BIF"] = "BIF";
28
- CurrencyCodeEnum$1["BMD"] = "BMD";
29
- CurrencyCodeEnum$1["BND"] = "BND";
30
- CurrencyCodeEnum$1["BOB"] = "BOB";
31
- CurrencyCodeEnum$1["BOV"] = "BOV";
32
- CurrencyCodeEnum$1["BRL"] = "BRL";
33
- CurrencyCodeEnum$1["BSD"] = "BSD";
34
- CurrencyCodeEnum$1["BTN"] = "BTN";
35
- CurrencyCodeEnum$1["BWP"] = "BWP";
36
- CurrencyCodeEnum$1["BYN"] = "BYN";
37
- CurrencyCodeEnum$1["BZD"] = "BZD";
38
- CurrencyCodeEnum$1["CAD"] = "CAD";
39
- CurrencyCodeEnum$1["CDF"] = "CDF";
40
- CurrencyCodeEnum$1["CHE"] = "CHE";
41
- CurrencyCodeEnum$1["CHF"] = "CHF";
42
- CurrencyCodeEnum$1["CHW"] = "CHW";
43
- CurrencyCodeEnum$1["CLF"] = "CLF";
44
- CurrencyCodeEnum$1["CLP"] = "CLP";
45
- CurrencyCodeEnum$1["CNY"] = "CNY";
46
- CurrencyCodeEnum$1["COP"] = "COP";
47
- CurrencyCodeEnum$1["COU"] = "COU";
48
- CurrencyCodeEnum$1["CRC"] = "CRC";
49
- CurrencyCodeEnum$1["CUC"] = "CUC";
50
- CurrencyCodeEnum$1["CUP"] = "CUP";
51
- CurrencyCodeEnum$1["CVE"] = "CVE";
52
- CurrencyCodeEnum$1["CZK"] = "CZK";
53
- CurrencyCodeEnum$1["DJF"] = "DJF";
54
- CurrencyCodeEnum$1["DKK"] = "DKK";
55
- CurrencyCodeEnum$1["DOP"] = "DOP";
56
- CurrencyCodeEnum$1["DZD"] = "DZD";
57
- CurrencyCodeEnum$1["EGP"] = "EGP";
58
- CurrencyCodeEnum$1["ERN"] = "ERN";
59
- CurrencyCodeEnum$1["ETB"] = "ETB";
60
- CurrencyCodeEnum$1["EUR"] = "EUR";
61
- CurrencyCodeEnum$1["FJD"] = "FJD";
62
- CurrencyCodeEnum$1["FKP"] = "FKP";
63
- CurrencyCodeEnum$1["GBP"] = "GBP";
64
- CurrencyCodeEnum$1["GEL"] = "GEL";
65
- CurrencyCodeEnum$1["GHS"] = "GHS";
66
- CurrencyCodeEnum$1["GIP"] = "GIP";
67
- CurrencyCodeEnum$1["GMD"] = "GMD";
68
- CurrencyCodeEnum$1["GNF"] = "GNF";
69
- CurrencyCodeEnum$1["GTQ"] = "GTQ";
70
- CurrencyCodeEnum$1["GYD"] = "GYD";
71
- CurrencyCodeEnum$1["HKD"] = "HKD";
72
- CurrencyCodeEnum$1["HNL"] = "HNL";
73
- CurrencyCodeEnum$1["HRK"] = "HRK";
74
- CurrencyCodeEnum$1["HTG"] = "HTG";
75
- CurrencyCodeEnum$1["HUF"] = "HUF";
76
- CurrencyCodeEnum$1["IDR"] = "IDR";
77
- CurrencyCodeEnum$1["ILS"] = "ILS";
78
- CurrencyCodeEnum$1["INR"] = "INR";
79
- CurrencyCodeEnum$1["IQD"] = "IQD";
80
- CurrencyCodeEnum$1["IRR"] = "IRR";
81
- CurrencyCodeEnum$1["ISK"] = "ISK";
82
- CurrencyCodeEnum$1["JMD"] = "JMD";
83
- CurrencyCodeEnum$1["JOD"] = "JOD";
84
- CurrencyCodeEnum$1["JPY"] = "JPY";
85
- CurrencyCodeEnum$1["KES"] = "KES";
86
- CurrencyCodeEnum$1["KGS"] = "KGS";
87
- CurrencyCodeEnum$1["KHR"] = "KHR";
88
- CurrencyCodeEnum$1["KMF"] = "KMF";
89
- CurrencyCodeEnum$1["KPW"] = "KPW";
90
- CurrencyCodeEnum$1["KRW"] = "KRW";
91
- CurrencyCodeEnum$1["KWD"] = "KWD";
92
- CurrencyCodeEnum$1["KYD"] = "KYD";
93
- CurrencyCodeEnum$1["KZT"] = "KZT";
94
- CurrencyCodeEnum$1["LAK"] = "LAK";
95
- CurrencyCodeEnum$1["LBP"] = "LBP";
96
- CurrencyCodeEnum$1["LKR"] = "LKR";
97
- CurrencyCodeEnum$1["LRD"] = "LRD";
98
- CurrencyCodeEnum$1["LSL"] = "LSL";
99
- CurrencyCodeEnum$1["LYD"] = "LYD";
100
- CurrencyCodeEnum$1["MAD"] = "MAD";
101
- CurrencyCodeEnum$1["MDL"] = "MDL";
102
- CurrencyCodeEnum$1["MGA"] = "MGA";
103
- CurrencyCodeEnum$1["MKD"] = "MKD";
104
- CurrencyCodeEnum$1["MMK"] = "MMK";
105
- CurrencyCodeEnum$1["MNT"] = "MNT";
106
- CurrencyCodeEnum$1["MOP"] = "MOP";
107
- CurrencyCodeEnum$1["MRU"] = "MRU";
108
- CurrencyCodeEnum$1["MUR"] = "MUR";
109
- CurrencyCodeEnum$1["MVR"] = "MVR";
110
- CurrencyCodeEnum$1["MWK"] = "MWK";
111
- CurrencyCodeEnum$1["MXN"] = "MXN";
112
- CurrencyCodeEnum$1["MXV"] = "MXV";
113
- CurrencyCodeEnum$1["MYR"] = "MYR";
114
- CurrencyCodeEnum$1["MZN"] = "MZN";
115
- CurrencyCodeEnum$1["NAD"] = "NAD";
116
- CurrencyCodeEnum$1["NGN"] = "NGN";
117
- CurrencyCodeEnum$1["NIO"] = "NIO";
118
- CurrencyCodeEnum$1["NOK"] = "NOK";
119
- CurrencyCodeEnum$1["NPR"] = "NPR";
120
- CurrencyCodeEnum$1["NZD"] = "NZD";
121
- CurrencyCodeEnum$1["OMR"] = "OMR";
122
- CurrencyCodeEnum$1["PAB"] = "PAB";
123
- CurrencyCodeEnum$1["PEN"] = "PEN";
124
- CurrencyCodeEnum$1["PGK"] = "PGK";
125
- CurrencyCodeEnum$1["PHP"] = "PHP";
126
- CurrencyCodeEnum$1["PKR"] = "PKR";
127
- CurrencyCodeEnum$1["PLN"] = "PLN";
128
- CurrencyCodeEnum$1["PYG"] = "PYG";
129
- CurrencyCodeEnum$1["QAR"] = "QAR";
130
- CurrencyCodeEnum$1["RON"] = "RON";
131
- CurrencyCodeEnum$1["RSD"] = "RSD";
132
- CurrencyCodeEnum$1["RUB"] = "RUB";
133
- CurrencyCodeEnum$1["RWF"] = "RWF";
134
- CurrencyCodeEnum$1["SAR"] = "SAR";
135
- CurrencyCodeEnum$1["SBD"] = "SBD";
136
- CurrencyCodeEnum$1["SCR"] = "SCR";
137
- CurrencyCodeEnum$1["SDG"] = "SDG";
138
- CurrencyCodeEnum$1["SEK"] = "SEK";
139
- CurrencyCodeEnum$1["SGD"] = "SGD";
140
- CurrencyCodeEnum$1["SHP"] = "SHP";
141
- CurrencyCodeEnum$1["SLL"] = "SLL";
142
- CurrencyCodeEnum$1["SOS"] = "SOS";
143
- CurrencyCodeEnum$1["SRD"] = "SRD";
144
- CurrencyCodeEnum$1["SSP"] = "SSP";
145
- CurrencyCodeEnum$1["STN"] = "STN";
146
- CurrencyCodeEnum$1["SVC"] = "SVC";
147
- CurrencyCodeEnum$1["SYP"] = "SYP";
148
- CurrencyCodeEnum$1["SZL"] = "SZL";
149
- CurrencyCodeEnum$1["THB"] = "THB";
150
- CurrencyCodeEnum$1["TJS"] = "TJS";
151
- CurrencyCodeEnum$1["TMT"] = "TMT";
152
- CurrencyCodeEnum$1["TND"] = "TND";
153
- CurrencyCodeEnum$1["TOP"] = "TOP";
154
- CurrencyCodeEnum$1["TRY"] = "TRY";
155
- CurrencyCodeEnum$1["TTD"] = "TTD";
156
- CurrencyCodeEnum$1["TWD"] = "TWD";
157
- CurrencyCodeEnum$1["TZS"] = "TZS";
158
- CurrencyCodeEnum$1["UAH"] = "UAH";
159
- CurrencyCodeEnum$1["UGX"] = "UGX";
160
- CurrencyCodeEnum$1["USD"] = "USD";
161
- CurrencyCodeEnum$1["USN"] = "USN";
162
- CurrencyCodeEnum$1["UYI"] = "UYI";
163
- CurrencyCodeEnum$1["UYU"] = "UYU";
164
- CurrencyCodeEnum$1["UYW"] = "UYW";
165
- CurrencyCodeEnum$1["UZS"] = "UZS";
166
- CurrencyCodeEnum$1["VED"] = "VED";
167
- CurrencyCodeEnum$1["VES"] = "VES";
168
- CurrencyCodeEnum$1["VND"] = "VND";
169
- CurrencyCodeEnum$1["VUV"] = "VUV";
170
- CurrencyCodeEnum$1["WST"] = "WST";
171
- CurrencyCodeEnum$1["XAF"] = "XAF";
172
- CurrencyCodeEnum$1["XAG"] = "XAG";
173
- CurrencyCodeEnum$1["XAU"] = "XAU";
174
- CurrencyCodeEnum$1["XBA"] = "XBA";
175
- CurrencyCodeEnum$1["XBB"] = "XBB";
176
- CurrencyCodeEnum$1["XBC"] = "XBC";
177
- CurrencyCodeEnum$1["XBD"] = "XBD";
178
- CurrencyCodeEnum$1["XCD"] = "XCD";
179
- CurrencyCodeEnum$1["XDR"] = "XDR";
180
- CurrencyCodeEnum$1["XOF"] = "XOF";
181
- CurrencyCodeEnum$1["XPD"] = "XPD";
182
- CurrencyCodeEnum$1["XPF"] = "XPF";
183
- CurrencyCodeEnum$1["XPT"] = "XPT";
184
- CurrencyCodeEnum$1["XSU"] = "XSU";
185
- CurrencyCodeEnum$1["XUA"] = "XUA";
186
- CurrencyCodeEnum$1["XXX"] = "XXX";
187
- CurrencyCodeEnum$1["YER"] = "YER";
188
- CurrencyCodeEnum$1["ZAR"] = "ZAR";
189
- CurrencyCodeEnum$1["ZMW"] = "ZMW";
190
- CurrencyCodeEnum$1["ZWL"] = "ZWL";
191
- return CurrencyCodeEnum$1;
192
- }({});
193
-
194
- //#endregion
195
- exports.CurrencyCodeEnum = CurrencyCodeEnum;
196
- //# sourceMappingURL=index4.cjs.map
3
+ exports.getDocumentType = require_documentTypeManagement.getDocumentType;
4
+ exports.getDocumentTypeVersion = require_documentTypeManagement.getDocumentTypeVersion;
5
+ exports.getDocumentTypes = require_documentTypeManagement.getDocumentTypes;
package/dist/index5.cjs CHANGED
@@ -0,0 +1,3 @@
1
+ const require_notificationManagement = require('./notificationManagement-DLBDn77E.cjs');
2
+
3
+ exports.getNotifications = require_notificationManagement.getNotifications;
package/dist/index6.cjs CHANGED
@@ -1,25 +1,3 @@
1
+ const require_platformLogin = require('./platformLogin-Ch6hFKoU.cjs');
1
2
 
2
- //#region src/types/e-invoice.d.ts
3
- /**
4
- * Enum representing the allowed codes for e-Invoice types with descriptive names.
5
- * Provides a more readable way to reference e-Invoice types compared to using raw codes.
6
- *
7
- * @example
8
- * const invoiceCode = EInvoiceTypeCodeEnum.Invoice;
9
- * console.log(invoiceCode); // Output: "01"
10
- */
11
- let EInvoiceTypeCodeEnum = /* @__PURE__ */ function(EInvoiceTypeCodeEnum$1) {
12
- EInvoiceTypeCodeEnum$1["Invoice"] = "01";
13
- EInvoiceTypeCodeEnum$1["CreditNote"] = "02";
14
- EInvoiceTypeCodeEnum$1["DebitNote"] = "03";
15
- EInvoiceTypeCodeEnum$1["RefundNote"] = "04";
16
- EInvoiceTypeCodeEnum$1["SelfBilledInvoice"] = "11";
17
- EInvoiceTypeCodeEnum$1["SelfBilledCreditNote"] = "12";
18
- EInvoiceTypeCodeEnum$1["SelfBilledDebitNote"] = "13";
19
- EInvoiceTypeCodeEnum$1["SelfBilledRefundNote"] = "14";
20
- return EInvoiceTypeCodeEnum$1;
21
- }({});
22
-
23
- //#endregion
24
- exports.EInvoiceTypeCodeEnum = EInvoiceTypeCodeEnum;
25
- //# sourceMappingURL=index6.cjs.map
3
+ exports.platformLogin = require_platformLogin.platformLogin;
@@ -1 +1 @@
1
- {"version":3,"file":"index67.cts","names":[],"sources":["../src/index.d.ts"],"sourcesContent":["import { DocumentStatus, DocumentSummary, DocumentTypeResponse, DocumentTypesResponse, DocumentTypeVersionResponse, DocumentValidationResult, DocumentValidationStepResult, EInvoiceTypeCode, NotificationResponse, NotificationSearchParams, RegistrationType, StandardError, SubmissionResponse, SubmissionStatus, TaxpayerQRCodeResponse, TinSearchParams, TinSearchResponse, AllDocumentsV1_1 } from './types';\nexport type * from './types/index.d.ts';\nexport declare class MyInvoisClient {\n private readonly baseUrl;\n private readonly clientId;\n private readonly clientSecret;\n private readonly onBehalfOf?;\n private readonly signingCredentials;\n private readonly debug;\n private token;\n private tokenExpiration;\n constructor(clientId: string, clientSecret: string, environment: 'sandbox' | 'production', certificatePem: string, privateKeyPem: string, onBehalfOf?: string, debug?: boolean);\n private refreshToken;\n private getToken;\n private fetch;\n /**\n * Validates a TIN against a NRIC/ARMY/PASSPORT/BRN (Business Registration Number)\n *\n * This method verifies if a given Tax Identification Number (TIN) is valid by checking it against\n * the provided identification type and value through the MyInvois platform's validation service.\n *\n * @param tin - The TIN to validate\n * @param idType - The type of ID to validate against ('NRIC', 'ARMY', 'PASSPORT', or 'BRN')\n * @param idValue - The value of the ID to validate against\n * @returns Promise resolving to true if the TIN is valid, false otherwise\n *\n * @example\n * ```typescript\n * // Validate TIN against NRIC\n * const isValid = await client.verifyTin('C12345678901234', 'NRIC', '123456789012');\n * if (isValid) {\n * console.log('TIN is valid');\n * }\n *\n * // Validate TIN against Business Registration Number\n * const isValidBusiness = await client.verifyTin('C98765432109876', 'BRN', '123456-K');\n * ```\n *\n * @remarks\n * - Returns false if validation fails due to network errors or invalid credentials\n * - Debug mode provides error logging for troubleshooting validation failures\n * - This is a non-blocking validation that won't throw exceptions on failure\n */\n verifyTin(tin: string, idType: RegistrationType, idValue: string): Promise<boolean>;\n /**\n * Searches for a Tax Identification Number (TIN) using taxpayer information.\n *\n * This method allows searching for a TIN using either a taxpayer name or a combination\n * of identification type and value. The search is flexible and supports multiple\n * identification types including NRIC, ARMY, PASSPORT, and BRN.\n *\n * @param params - Search parameters object\n * @param params.taxpayerName - Optional name of the taxpayer to search for\n * @param params.idType - Optional type of ID to search with (NRIC, ARMY, PASSPORT, BRN)\n * @param params.idValue - Optional value of the ID to search with\n * @returns Promise resolving to TIN search response or standard error\n *\n * @example\n * ```typescript\n * // Search by taxpayer name\n * const result = await client.searchTin({ taxpayerName: 'John Doe' });\n * if ('tin' in result) {\n * console.log('Found TIN:', result.tin);\n * }\n *\n * // Search by ID type and value\n * const result = await client.searchTin({\n * idType: 'NRIC',\n * idValue: '123456789012'\n * });\n * ```\n *\n * @remarks\n * - Either taxpayerName or both idType and idValue must be provided\n * - Returns StandardError object if search criteria are invalid or inconclusive\n * - Debug mode provides detailed error logging for troubleshooting\n * - Search results are not guaranteed to be unique\n */\n searchTin(params: TinSearchParams): Promise<TinSearchResponse>;\n /**\n * Retrieves taxpayer information from a QR code.\n *\n * This method decodes a QR code containing taxpayer information and returns\n * detailed taxpayer data including TIN, name, contact details, and business information.\n *\n * @param qrCodeText - The QR code text to decode\n * @returns Promise resolving to taxpayer QR code response or standard error\n *\n * @example\n * ```typescript\n * // Get taxpayer info from QR code\n * const taxpayerInfo = await client.getTaxpayerQRCode('QR_CODE_TEXT');\n * if ('tin' in taxpayerInfo) {\n * console.log('Taxpayer TIN:', taxpayerInfo.tin);\n * console.log('Business Name:', taxpayerInfo.name);\n * console.log('Address:', taxpayerInfo.addressLine1);\n * }\n * ```\n *\n * @remarks\n * - QR code must be in the correct format specified by MyInvois\n * - Returns StandardError if QR code is invalid or cannot be decoded\n * - Debug mode provides detailed error logging\n */\n getTaxpayerQRCode(qrCodeText: string): Promise<TaxpayerQRCodeResponse>;\n /**\n * Performs an action on a document such as rejection or cancellation.\n *\n * This method allows updating the status of a document to either rejected or cancelled,\n * along with providing a reason for the action. Useful for managing document workflow\n * and maintaining audit trails.\n *\n * @param documentUid - The unique identifier of the document\n * @param status - The new status to set ('rejected' or 'cancelled')\n * @param reason - The reason for the status change\n * @returns Promise resolving to document action response containing UUID, status, and any errors\n *\n * @example\n * ```typescript\n * // Reject a document with reason\n * const result = await client.performDocumentAction(\n * 'doc-123',\n * 'rejected',\n * 'Invalid tax calculation'\n * );\n *\n * // Cancel a document\n * const result = await client.performDocumentAction(\n * 'doc-456',\n * 'cancelled',\n * 'Duplicate submission'\n * );\n * ```\n *\n * @remarks\n * - Only valid for documents in appropriate states\n * - Reason is required and should be descriptive\n * - Action is irreversible once completed\n * - Returns error if document cannot be found or action is invalid\n */\n performDocumentAction(documentUid: string, status: 'rejected' | 'cancelled', reason: string): Promise<{\n uuid: string;\n status: string;\n error: StandardError;\n }>;\n /**\n * Submits one or more e-invoice documents to the MyInvois platform for processing.\n *\n * This method digitally signs each document using the provided certificate and private key,\n * generates document hashes, encodes them for submission, and sends them to the platform.\n * The method includes comprehensive validation warnings for document size and count limits.\n *\n * @param documents - Array of InvoiceV1_1 documents to be submitted\n * @returns Promise resolving to submission response containing the submission data and HTTP status\n * @throws {Error} If PRIVATE_KEY or CERTIFICATE environment variables are missing\n * @throws {Error} If document signing, encoding, or API submission fails\n *\n * @example\n * ```typescript\n * // Submit a single invoice\n * const result = await client.submitDocument([invoiceData]);\n * console.log(result.data.submissionUid); // Track submission with this UID\n *\n * // Submit multiple invoices\n * const result = await client.submitDocument([invoice1, invoice2, invoice3]);\n * if (result.status === 202) {\n * console.log('Documents submitted successfully');\n * }\n * ```\n *\n * @remarks\n * - Requires PRIVATE_KEY and CERTIFICATE environment variables for document signing\n * - Each document is digitally signed with XML-DSIG before submission\n * - Documents are base64-encoded for transmission\n * - API limits: Max 100 documents per submission, 5MB total payload, 300KB per document\n * - Debug mode provides detailed logging of payload sizes and validation warnings\n * - Returns HTTP 202 for successful submissions that require processing\n */\n submitDocument(documents: AllDocumentsV1_1[]): Promise<{\n data: SubmissionResponse;\n status: number;\n }>;\n /**\n * Polls the MyInvois platform to get the current status of a document submission.\n *\n * This method continuously checks the submission status until it receives a final result\n * (Valid or Invalid) or reaches the maximum retry limit. It's designed to handle the\n * asynchronous nature of document processing on the MyInvois platform.\n *\n * @param submissionUid - The unique identifier of the submission to check\n * @param pollInterval - Time in milliseconds between status checks (default: 1000ms)\n * @param maxRetries - Maximum number of retry attempts (default: 10)\n * @returns Promise resolving to submission status object with document summary and any errors\n *\n * @example\n * ```typescript\n * // Check submission status with default polling\n * const result = await client.getSubmissionStatus('submission-uid-123');\n * if (result.status === 'Valid') {\n * console.log('All documents processed successfully');\n * console.log('Document summaries:', result.documentSummary);\n * }\n *\n * // Custom polling interval and retry count\n * const result = await client.getSubmissionStatus(\n * 'submission-uid-123',\n * 2000, // Poll every 2 seconds\n * 20 // Try up to 20 times\n * );\n * ```\n *\n * @remarks\n * - Automatically retries on network errors until maxRetries is reached\n * - Returns 'Invalid' status with timeout error if submission processing takes too long\n * - Debug mode provides detailed logging of polling attempts and responses\n * - Use reasonable poll intervals to avoid overwhelming the API\n */\n getSubmissionStatus(submissionUid: string, pollInterval?: number, maxRetries?: number): Promise<{\n status: SubmissionStatus;\n documentSummary?: DocumentSummary[];\n error?: {\n code: string;\n message: string | null;\n target: string;\n details: {\n code: string;\n message: string;\n target: string;\n }[];\n };\n }>;\n /**\n * Retrieves a document by its unique identifier with the raw document content.\n *\n * @param documentUid - The unique identifier of the document to retrieve\n * @returns Promise resolving to document summary with raw document content as a string\n * @throws {Error} If the document is not found or request fails\n *\n * @example\n * ```typescript\n * const document = await client.getDocument('doc-uuid-123');\n * console.log(document.document); // Raw XML/JSON content\n * console.log(document.uuid); // Document UUID\n * ```\n */\n getDocument(documentUid: string): Promise<DocumentSummary & {\n document: string;\n }>;\n /**\n * Retrieves detailed information about a document including validation results.\n *\n * @param documentUid - The unique identifier of the document to get details for\n * @returns Promise resolving to document summary with detailed validation results\n * @throws {Error} If the document is not found or request fails\n *\n * @example\n * ```typescript\n * const details = await client.getDocumentDetails('doc-uuid-123');\n * console.log(details.validationResults.status); // 'Valid' | 'Invalid' | 'Processing'\n * console.log(details.validationResults.validationSteps); // Array of validation step results\n * ```\n */\n getDocumentDetails(documentUid: string): Promise<DocumentSummary & {\n validationResults: {\n status: DocumentValidationResult;\n validationSteps: DocumentValidationStepResult[];\n };\n }>;\n /**\n * Searches for documents based on various filter criteria.\n *\n * @param params - Search parameters object\n * @param params.uuid - Optional specific document UUID to search for\n * @param params.submissionDateFrom - Required start date for submission date range (ISO date string)\n * @param params.submissionDateTo - Optional end date for submission date range (ISO date string)\n * @param params.pageSize - Optional number of results per page (default handled by API)\n * @param params.pageNo - Optional page number for pagination (0-based)\n * @param params.issueDateFrom - Optional start date for issue date range (ISO date string)\n * @param params.issueDateTo - Optional end date for issue date range (ISO date string)\n * @param params.invoiceDirection - Optional filter by invoice direction ('Sent' or 'Received')\n * @param params.status - Optional filter by document status\n * @param params.documentType - Optional filter by e-invoice type code\n * @param params.searchQuery - Optional text search across uuid, buyerTIN, supplierTIN, buyerName, supplierName, internalID, total\n * @returns Promise resolving to array of document summaries matching the search criteria\n * @throws {Error} If the search request fails\n *\n * @example\n * ```typescript\n * // Search for documents submitted in the last 30 days\n * const documents = await client.searchDocuments({\n * submissionDateFrom: '2024-01-01',\n * submissionDateTo: '2024-01-31',\n * status: 'Valid',\n * pageSize: 10\n * });\n *\n * // Search by supplier name\n * const supplierDocs = await client.searchDocuments({\n * submissionDateFrom: '2024-01-01',\n * searchQuery: 'ACME Corp',\n * invoiceDirection: 'Received'\n * });\n * ```\n */\n searchDocuments({ uuid, submissionDateFrom, submissionDateTo, pageSize, pageNo, issueDateFrom, issueDateTo, invoiceDirection, status, documentType, searchQuery, }: {\n uuid?: string;\n submissionDateFrom: string;\n submissionDateTo?: string;\n pageSize?: number;\n pageNo?: number;\n issueDateFrom?: string;\n issueDateTo?: string;\n invoiceDirection?: 'Sent' | 'Received';\n status?: DocumentStatus;\n documentType?: EInvoiceTypeCode;\n searchQuery?: string;\n }): Promise<DocumentSummary[]>;\n /**\n * Retrieves notifications from the MyInvois platform based on specified search criteria.\n *\n * This method allows you to search for system notifications, alerts, and messages\n * sent by the MyInvois platform regarding document processing, system updates,\n * or account-related information.\n *\n * @param params - Search parameters object for filtering notifications\n * @param params.dateFrom - Optional start date for notification date range (ISO date string)\n * @param params.dateTo - Optional end date for notification date range (ISO date string)\n * @param params.type - Optional notification type filter\n * @param params.language - Optional language preference for notifications\n * @param params.status - Optional notification status filter\n * @param params.pageNo - Optional page number for pagination (0-based)\n * @param params.pageSize - Optional number of results per page\n * @returns Promise resolving to notification response object or standard error\n *\n * @example\n * ```typescript\n * // Get all notifications from the last 7 days\n * const notifications = await client.getNotifications({\n * dateFrom: '2024-01-01',\n * dateTo: '2024-01-07',\n * pageSize: 20\n * });\n *\n * // Get unread notifications only\n * const unreadNotifications = await client.getNotifications({\n * status: 0, // Assuming 0 = unread\n * language: 'en'\n * });\n *\n * // Paginated notification retrieval\n * const firstPage = await client.getNotifications({\n * dateFrom: '2024-01-01',\n * pageNo: 0,\n * pageSize: 10\n * });\n * ```\n *\n * @remarks\n * - All parameters are optional, allowing flexible filtering\n * - Returns paginated results when pageNo and pageSize are specified\n * - Date parameters should be in ISO format (YYYY-MM-DD)\n * - May return StandardError object if the request fails\n */\n getNotifications({ dateFrom, dateTo, type, language, status, pageNo, pageSize, }: NotificationSearchParams): Promise<NotificationResponse>;\n getDocumentTypes(): Promise<DocumentTypesResponse>;\n /**\n * Retrieves detailed information about a specific document type from the MyInvois platform.\n *\n * This method fetches metadata and configuration details for a specific document type,\n * including supported versions, validation rules, and structural requirements.\n * Useful for understanding document format requirements before submission.\n *\n * @param id - The unique identifier of the document type to retrieve\n * @returns Promise resolving to document type response object or standard error\n *\n * @example\n * ```typescript\n * // Get details for e-invoice document type\n * const invoiceType = await client.getDocumentType(1);\n * if ('id' in invoiceType) {\n * console.log('Document type name:', invoiceType.name);\n * console.log('Available versions:', invoiceType.versionNumber);\n * console.log('Description:', invoiceType.description);\n * }\n *\n * // Handle potential errors\n * const documentType = await client.getDocumentType(999);\n * if ('error' in documentType) {\n * console.error('Failed to retrieve document type:', documentType.error.message);\n * }\n * ```\n *\n * @remarks\n * - Returns StandardError object if the document type ID doesn't exist\n * - Document type information includes validation schemas and business rules\n * - Use this method to discover supported document formats and versions\n * - Essential for understanding submission requirements for different document types\n */\n getDocumentType(id: number): Promise<DocumentTypeResponse>;\n /**\n * Retrieves detailed information about a specific version of a document type.\n *\n * This method fetches version-specific metadata, schema definitions, and validation rules\n * for a particular document type version. Essential for understanding the exact format\n * and requirements for document submission in a specific version.\n *\n * @param id - The unique identifier of the document type\n * @param versionId - The unique identifier of the specific version to retrieve\n * @returns Promise resolving to document type version response object or standard error\n *\n * @example\n * ```typescript\n * // Get specific version details for e-invoice\n * const invoiceV1_1 = await client.getDocumentTypeVersion(1, 1);\n * if ('id' in invoiceV1_1) {\n * console.log('Version number:', invoiceV1_1.versionNumber);\n * console.log('Schema:', invoiceV1_1.jsonSchema);\n * console.log('Status:', invoiceV1_1.status);\n * }\n *\n * // Compare different versions\n * const [v1_0, v1_1] = await Promise.all([\n * client.getDocumentTypeVersion(1, 0),\n * client.getDocumentTypeVersion(1, 1)\n * ]);\n *\n * // Handle version not found\n * const result = await client.getDocumentTypeVersion(1, 999);\n * if ('error' in result) {\n * console.error('Version not found:', result.error.message);\n * }\n * ```\n *\n * @remarks\n * - Returns StandardError object if document type ID or version ID doesn't exist\n * - Version information includes JSON schema for validation\n * - Different versions may have different validation rules and field requirements\n * - Use this to ensure your documents conform to the specific version requirements\n * - Version status indicates if the version is active, deprecated, or under development\n */\n getDocumentTypeVersion(id: number, versionId: number): Promise<DocumentTypeVersionResponse>;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,IAAW,iBAAiB;CAAC;CAAK,MAAE;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;AAAA"}
1
+ {"version":3,"file":"index67.cts","names":[],"sources":["../src/index.d.ts"],"sourcesContent":["import { DocumentStatus, DocumentSummary, DocumentTypeResponse, DocumentTypesResponse, DocumentTypeVersionResponse, DocumentValidationResult, DocumentValidationStepResult, EInvoiceTypeCode, NotificationResponse, NotificationSearchParams, RegistrationType, StandardError, SubmissionResponse, SubmissionStatus, TaxpayerQRCodeResponse, TinSearchParams, TinSearchResponse, AllDocumentsV1_1 } from './types';\nexport type * from './types/index.d.ts';\nexport declare class MyInvoisClient {\n private readonly baseUrl;\n private readonly clientId;\n private readonly clientSecret;\n private readonly onBehalfOf?;\n private readonly signingCredentials;\n private readonly debug;\n private token;\n private tokenExpiration;\n constructor(clientId: string, clientSecret: string, environment: 'sandbox' | 'production', certificatePem: string, privateKeyPem: string, onBehalfOf?: string, debug?: boolean);\n private refreshToken;\n private getToken;\n private fetch;\n /**\n * Validates a TIN against a NRIC/ARMY/PASSPORT/BRN (Business Registration Number)\n *\n * This method verifies if a given Tax Identification Number (TIN) is valid by checking it against\n * the provided identification type and value through the MyInvois platform's validation service.\n *\n * @param tin - The TIN to validate\n * @param idType - The type of ID to validate against ('NRIC', 'ARMY', 'PASSPORT', or 'BRN')\n * @param idValue - The value of the ID to validate against\n * @returns Promise resolving to true if the TIN is valid, false otherwise\n *\n * @example\n * ```typescript\n * // Validate TIN against NRIC\n * const isValid = await client.verifyTin('C12345678901234', 'NRIC', '123456789012');\n * if (isValid) {\n * console.log('TIN is valid');\n * }\n *\n * // Validate TIN against Business Registration Number\n * const isValidBusiness = await client.verifyTin('C98765432109876', 'BRN', '123456-K');\n * ```\n *\n * @remarks\n * - Returns false if validation fails due to network errors or invalid credentials\n * - Debug mode provides error logging for troubleshooting validation failures\n * - This is a non-blocking validation that won't throw exceptions on failure\n */\n verifyTin(tin: string, idType: RegistrationType, idValue: string): Promise<boolean>;\n /**\n * Searches for a Tax Identification Number (TIN) using taxpayer information.\n *\n * This method allows searching for a TIN using either a taxpayer name or a combination\n * of identification type and value. The search is flexible and supports multiple\n * identification types including NRIC, ARMY, PASSPORT, and BRN.\n *\n * @param params - Search parameters object\n * @param params.taxpayerName - Optional name of the taxpayer to search for\n * @param params.idType - Optional type of ID to search with (NRIC, ARMY, PASSPORT, BRN)\n * @param params.idValue - Optional value of the ID to search with\n * @returns Promise resolving to TIN search response or standard error\n *\n * @example\n * ```typescript\n * // Search by taxpayer name\n * const result = await client.searchTin({ taxpayerName: 'John Doe' });\n * if ('tin' in result) {\n * console.log('Found TIN:', result.tin);\n * }\n *\n * // Search by ID type and value\n * const result = await client.searchTin({\n * idType: 'NRIC',\n * idValue: '123456789012'\n * });\n * ```\n *\n * @remarks\n * - Either taxpayerName or both idType and idValue must be provided\n * - Returns StandardError object if search criteria are invalid or inconclusive\n * - Debug mode provides detailed error logging for troubleshooting\n * - Search results are not guaranteed to be unique\n */\n searchTin(params: TinSearchParams): Promise<TinSearchResponse>;\n /**\n * Retrieves taxpayer information from a QR code.\n *\n * This method decodes a QR code containing taxpayer information and returns\n * detailed taxpayer data including TIN, name, contact details, and business information.\n *\n * @param qrCodeText - The QR code text to decode\n * @returns Promise resolving to taxpayer QR code response or standard error\n *\n * @example\n * ```typescript\n * // Get taxpayer info from QR code\n * const taxpayerInfo = await client.getTaxpayerQRCode('QR_CODE_TEXT');\n * if ('tin' in taxpayerInfo) {\n * console.log('Taxpayer TIN:', taxpayerInfo.tin);\n * console.log('Business Name:', taxpayerInfo.name);\n * console.log('Address:', taxpayerInfo.addressLine1);\n * }\n * ```\n *\n * @remarks\n * - QR code must be in the correct format specified by MyInvois\n * - Returns StandardError if QR code is invalid or cannot be decoded\n * - Debug mode provides detailed error logging\n */\n getTaxpayerQRCode(qrCodeText: string): Promise<TaxpayerQRCodeResponse>;\n /**\n * Performs an action on a document such as rejection or cancellation.\n *\n * This method allows updating the status of a document to either rejected or cancelled,\n * along with providing a reason for the action. Useful for managing document workflow\n * and maintaining audit trails.\n *\n * @param documentUid - The unique identifier of the document\n * @param status - The new status to set ('rejected' or 'cancelled')\n * @param reason - The reason for the status change\n * @returns Promise resolving to document action response containing UUID, status, and any errors\n *\n * @example\n * ```typescript\n * // Reject a document with reason\n * const result = await client.performDocumentAction(\n * 'doc-123',\n * 'rejected',\n * 'Invalid tax calculation'\n * );\n *\n * // Cancel a document\n * const result = await client.performDocumentAction(\n * 'doc-456',\n * 'cancelled',\n * 'Duplicate submission'\n * );\n * ```\n *\n * @remarks\n * - Only valid for documents in appropriate states\n * - Reason is required and should be descriptive\n * - Action is irreversible once completed\n * - Returns error if document cannot be found or action is invalid\n */\n performDocumentAction(documentUid: string, status: 'rejected' | 'cancelled', reason: string): Promise<{\n uuid: string;\n status: string;\n error: StandardError;\n }>;\n /**\n * Submits one or more e-invoice documents to the MyInvois platform for processing.\n *\n * This method digitally signs each document using the provided certificate and private key,\n * generates document hashes, encodes them for submission, and sends them to the platform.\n * The method includes comprehensive validation warnings for document size and count limits.\n *\n * @param documents - Array of InvoiceV1_1 documents to be submitted\n * @returns Promise resolving to submission response containing the submission data and HTTP status\n * @throws {Error} If PRIVATE_KEY or CERTIFICATE environment variables are missing\n * @throws {Error} If document signing, encoding, or API submission fails\n *\n * @example\n * ```typescript\n * // Submit a single invoice\n * const result = await client.submitDocument([invoiceData]);\n * console.log(result.data.submissionUid); // Track submission with this UID\n *\n * // Submit multiple invoices\n * const result = await client.submitDocument([invoice1, invoice2, invoice3]);\n * if (result.status === 202) {\n * console.log('Documents submitted successfully');\n * }\n * ```\n *\n * @remarks\n * - Requires PRIVATE_KEY and CERTIFICATE environment variables for document signing\n * - Each document is digitally signed with XML-DSIG before submission\n * - Documents are base64-encoded for transmission\n * - API limits: Max 100 documents per submission, 5MB total payload, 300KB per document\n * - Debug mode provides detailed logging of payload sizes and validation warnings\n * - Returns HTTP 202 for successful submissions that require processing\n */\n submitDocument(documents: AllDocumentsV1_1[]): Promise<{\n data: SubmissionResponse;\n status: number;\n }>;\n /**\n * Polls the MyInvois platform to get the current status of a document submission.\n *\n * This method continuously checks the submission status until it receives a final result\n * (Valid or Invalid) or reaches the maximum retry limit. It's designed to handle the\n * asynchronous nature of document processing on the MyInvois platform.\n *\n * @param submissionUid - The unique identifier of the submission to check\n * @param pollInterval - Time in milliseconds between status checks (default: 1000ms)\n * @param maxRetries - Maximum number of retry attempts (default: 10)\n * @returns Promise resolving to submission status object with document summary and any errors\n *\n * @example\n * ```typescript\n * // Check submission status with default polling\n * const result = await client.getSubmissionStatus('submission-uid-123');\n * if (result.status === 'Valid') {\n * console.log('All documents processed successfully');\n * console.log('Document summaries:', result.documentSummary);\n * }\n *\n * // Custom polling interval and retry count\n * const result = await client.getSubmissionStatus(\n * 'submission-uid-123',\n * 2000, // Poll every 2 seconds\n * 20 // Try up to 20 times\n * );\n * ```\n *\n * @remarks\n * - Automatically retries on network errors until maxRetries is reached\n * - Returns 'Invalid' status with timeout error if submission processing takes too long\n * - Debug mode provides detailed logging of polling attempts and responses\n * - Use reasonable poll intervals to avoid overwhelming the API\n */\n getSubmissionStatus(submissionUid: string, pollInterval?: number, maxRetries?: number): Promise<{\n status: SubmissionStatus;\n documentSummary?: DocumentSummary[];\n error?: {\n code: string;\n message: string | null;\n target: string;\n details: {\n code: string;\n message: string;\n target: string;\n }[];\n };\n }>;\n /**\n * Retrieves a document by its unique identifier with the raw document content.\n *\n * @param documentUid - The unique identifier of the document to retrieve\n * @returns Promise resolving to document summary with raw document content as a string\n * @throws {Error} If the document is not found or request fails\n *\n * @example\n * ```typescript\n * const document = await client.getDocument('doc-uuid-123');\n * console.log(document.document); // Raw XML/JSON content\n * console.log(document.uuid); // Document UUID\n * ```\n */\n getDocument(documentUid: string): Promise<DocumentSummary & {\n document: string;\n }>;\n /**\n * Retrieves detailed information about a document including validation results.\n *\n * @param documentUid - The unique identifier of the document to get details for\n * @returns Promise resolving to document summary with detailed validation results\n * @throws {Error} If the document is not found or request fails\n *\n * @example\n * ```typescript\n * const details = await client.getDocumentDetails('doc-uuid-123');\n * console.log(details.validationResults.status); // 'Valid' | 'Invalid' | 'Processing'\n * console.log(details.validationResults.validationSteps); // Array of validation step results\n * ```\n */\n getDocumentDetails(documentUid: string): Promise<DocumentSummary & {\n validationResults: {\n status: DocumentValidationResult;\n validationSteps: DocumentValidationStepResult[];\n };\n }>;\n /**\n * Searches for documents based on various filter criteria.\n *\n * @param params - Search parameters object\n * @param params.uuid - Optional specific document UUID to search for\n * @param params.submissionDateFrom - Required start date for submission date range (ISO date string)\n * @param params.submissionDateTo - Optional end date for submission date range (ISO date string)\n * @param params.pageSize - Optional number of results per page (default handled by API)\n * @param params.pageNo - Optional page number for pagination (0-based)\n * @param params.issueDateFrom - Optional start date for issue date range (ISO date string)\n * @param params.issueDateTo - Optional end date for issue date range (ISO date string)\n * @param params.invoiceDirection - Optional filter by invoice direction ('Sent' or 'Received')\n * @param params.status - Optional filter by document status\n * @param params.documentType - Optional filter by e-invoice type code\n * @param params.searchQuery - Optional text search across uuid, buyerTIN, supplierTIN, buyerName, supplierName, internalID, total\n * @returns Promise resolving to array of document summaries matching the search criteria\n * @throws {Error} If the search request fails\n *\n * @example\n * ```typescript\n * // Search for documents submitted in the last 30 days\n * const documents = await client.searchDocuments({\n * submissionDateFrom: '2024-01-01',\n * submissionDateTo: '2024-01-31',\n * status: 'Valid',\n * pageSize: 10\n * });\n *\n * // Search by supplier name\n * const supplierDocs = await client.searchDocuments({\n * submissionDateFrom: '2024-01-01',\n * searchQuery: 'ACME Corp',\n * invoiceDirection: 'Received'\n * });\n * ```\n */\n searchDocuments({ uuid, submissionDateFrom, submissionDateTo, pageSize, pageNo, issueDateFrom, issueDateTo, invoiceDirection, status, documentType, searchQuery, }: {\n uuid?: string;\n submissionDateFrom: string;\n submissionDateTo?: string;\n pageSize?: number;\n pageNo?: number;\n issueDateFrom?: string;\n issueDateTo?: string;\n invoiceDirection?: 'Sent' | 'Received';\n status?: DocumentStatus;\n documentType?: EInvoiceTypeCode;\n searchQuery?: string;\n }): Promise<DocumentSummary[]>;\n /**\n * Retrieves notifications from the MyInvois platform based on specified search criteria.\n *\n * This method allows you to search for system notifications, alerts, and messages\n * sent by the MyInvois platform regarding document processing, system updates,\n * or account-related information.\n *\n * @param params - Search parameters object for filtering notifications\n * @param params.dateFrom - Optional start date for notification date range (ISO date string)\n * @param params.dateTo - Optional end date for notification date range (ISO date string)\n * @param params.type - Optional notification type filter\n * @param params.language - Optional language preference for notifications\n * @param params.status - Optional notification status filter\n * @param params.pageNo - Optional page number for pagination (0-based)\n * @param params.pageSize - Optional number of results per page\n * @returns Promise resolving to notification response object or standard error\n *\n * @example\n * ```typescript\n * // Get all notifications from the last 7 days\n * const notifications = await client.getNotifications({\n * dateFrom: '2024-01-01',\n * dateTo: '2024-01-07',\n * pageSize: 20\n * });\n *\n * // Get unread notifications only\n * const unreadNotifications = await client.getNotifications({\n * status: 0, // Assuming 0 = unread\n * language: 'en'\n * });\n *\n * // Paginated notification retrieval\n * const firstPage = await client.getNotifications({\n * dateFrom: '2024-01-01',\n * pageNo: 0,\n * pageSize: 10\n * });\n * ```\n *\n * @remarks\n * - All parameters are optional, allowing flexible filtering\n * - Returns paginated results when pageNo and pageSize are specified\n * - Date parameters should be in ISO format (YYYY-MM-DD)\n * - May return StandardError object if the request fails\n */\n getNotifications({ dateFrom, dateTo, type, language, status, pageNo, pageSize, }: NotificationSearchParams): Promise<NotificationResponse>;\n getDocumentTypes(): Promise<DocumentTypesResponse>;\n /**\n * Retrieves detailed information about a specific document type from the MyInvois platform.\n *\n * This method fetches metadata and configuration details for a specific document type,\n * including supported versions, validation rules, and structural requirements.\n * Useful for understanding document format requirements before submission.\n *\n * @param id - The unique identifier of the document type to retrieve\n * @returns Promise resolving to document type response object or standard error\n *\n * @example\n * ```typescript\n * // Get details for e-invoice document type\n * const invoiceType = await client.getDocumentType(1);\n * if ('id' in invoiceType) {\n * console.log('Document type name:', invoiceType.name);\n * console.log('Available versions:', invoiceType.versionNumber);\n * console.log('Description:', invoiceType.description);\n * }\n *\n * // Handle potential errors\n * const documentType = await client.getDocumentType(999);\n * if ('error' in documentType) {\n * console.error('Failed to retrieve document type:', documentType.error.message);\n * }\n * ```\n *\n * @remarks\n * - Returns StandardError object if the document type ID doesn't exist\n * - Document type information includes validation schemas and business rules\n * - Use this method to discover supported document formats and versions\n * - Essential for understanding submission requirements for different document types\n */\n getDocumentType(id: number): Promise<DocumentTypeResponse>;\n /**\n * Retrieves detailed information about a specific version of a document type.\n *\n * This method fetches version-specific metadata, schema definitions, and validation rules\n * for a particular document type version. Essential for understanding the exact format\n * and requirements for document submission in a specific version.\n *\n * @param id - The unique identifier of the document type\n * @param versionId - The unique identifier of the specific version to retrieve\n * @returns Promise resolving to document type version response object or standard error\n *\n * @example\n * ```typescript\n * // Get specific version details for e-invoice\n * const invoiceV1_1 = await client.getDocumentTypeVersion(1, 1);\n * if ('id' in invoiceV1_1) {\n * console.log('Version number:', invoiceV1_1.versionNumber);\n * console.log('Schema:', invoiceV1_1.jsonSchema);\n * console.log('Status:', invoiceV1_1.status);\n * }\n *\n * // Compare different versions\n * const [v1_0, v1_1] = await Promise.all([\n * client.getDocumentTypeVersion(1, 0),\n * client.getDocumentTypeVersion(1, 1)\n * ]);\n *\n * // Handle version not found\n * const result = await client.getDocumentTypeVersion(1, 999);\n * if ('error' in result) {\n * console.error('Version not found:', result.error.message);\n * }\n * ```\n *\n * @remarks\n * - Returns StandardError object if document type ID or version ID doesn't exist\n * - Version information includes JSON schema for validation\n * - Different versions may have different validation rules and field requirements\n * - Use this to ensure your documents conform to the specific version requirements\n * - Version status indicates if the version is active, deprecated, or under development\n */\n getDocumentTypeVersion(id: number, versionId: number): Promise<DocumentTypeVersionResponse>;\n static fromP12(clientId: string, clientSecret: string, environment: 'sandbox' | 'production', p12Input: Buffer | string, passphrase: string, onBehalfOf?: string, debug?: boolean): MyInvoisClient;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,IAAW,iBAAiB;CAAC;CAAK,MAAE;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;CAAA,MAAA;AAAA"}
package/dist/index7.cjs CHANGED
@@ -0,0 +1,6 @@
1
+ require('./formatIdValue-i67o4kyD.cjs');
2
+ const require_taxpayerValidation = require('./taxpayerValidation-D_jGaVty.cjs');
3
+
4
+ exports.taxpayerQRCode = require_taxpayerValidation.taxpayerQRCode;
5
+ exports.tinSearch = require_taxpayerValidation.tinSearch;
6
+ exports.verifyTin = require_taxpayerValidation.verifyTin;
@@ -1 +1 @@
1
- {"version":3,"file":"index70.cts","names":[],"sources":["../src/utils/certificate.d.ts"],"sourcesContent":["/**\n * Extracts certificate information from PEM certificate\n * Converts hex serial number to decimal as required by MyInvois\n *\n * @param certificatePem - Certificate in PEM format\n * @returns Object with issuer name and decimal serial number\n */\nexport declare const extractCertificateInfo: (certificatePem: string) => {\n issuerName: string;\n serialNumber: string;\n};\n/**\n * Validates that certificate and private key form a valid pair\n *\n * @param certificatePem - Certificate in PEM format\n * @param privateKeyPem - Private key in PEM format\n * @returns Boolean indicating if key pair is valid\n */\nexport declare const validateKeyPair: (certificatePem: string, privateKeyPem: string) => boolean;\n"],"mappings":";AAAA,IAAE,yBAAA,CAAA,GAAA;AACF,IAAW,kBAAkB,CAAC,GAAI"}
1
+ {"version":3,"file":"index70.cts","names":[],"sources":["../src/utils/certificate.d.ts"],"sourcesContent":["/**\n * Extracts certificate information from PEM certificate\n * Converts hex serial number to decimal as required by MyInvois\n *\n * @param certificatePem - Certificate in PEM format\n * @returns Object with issuer name and decimal serial number\n */\nexport declare const extractCertificateInfo: (certificatePem: string) => {\n issuerName: string;\n serialNumber: string;\n};\n/**\n * Validates that certificate and private key form a valid pair\n *\n * @param certificatePem - Certificate in PEM format\n * @param privateKeyPem - Private key in PEM format\n * @returns Boolean indicating if key pair is valid\n */\nexport declare const validateKeyPair: (certificatePem: string, privateKeyPem: string) => boolean;\nexport declare const getPemFromP12: (p12Input: Buffer | string, passphrase: string) => {\n certificatePem: string;\n privateKeyPem: string;\n};\n"],"mappings":";AAAA,IAAE,yBAAA,CAAA,GAAA;AACF,IAAW,kBAAkB,CAAC,GAAI;AAClC,IAAW,gBAAgB,CAAC,KAAK,MAAM,MAAO"}
package/dist/index8.cjs CHANGED
@@ -0,0 +1,4 @@
1
+ const require_apiQueue = require('./apiQueue-sL4mNlVz.cjs');
2
+
3
+ exports.categorizeRequest = require_apiQueue.categorizeRequest;
4
+ exports.queueRequest = require_apiQueue.queueRequest;
package/dist/index9.cjs CHANGED
@@ -1,29 +1,13 @@
1
1
 
2
- //#region src/types/notifications.d.ts
3
- let NotificationTypeEnum = /* @__PURE__ */ function(NotificationTypeEnum$1) {
4
- NotificationTypeEnum$1[NotificationTypeEnum$1["Profile data validation"] = 3] = "Profile data validation";
5
- NotificationTypeEnum$1[NotificationTypeEnum$1["Document received"] = 6] = "Document received";
6
- NotificationTypeEnum$1[NotificationTypeEnum$1["Document validated"] = 7] = "Document validated";
7
- NotificationTypeEnum$1[NotificationTypeEnum$1["Document cancelled"] = 8] = "Document cancelled";
8
- NotificationTypeEnum$1[NotificationTypeEnum$1["User profile changed"] = 10] = "User profile changed";
9
- NotificationTypeEnum$1[NotificationTypeEnum$1["Taxpayer profile changed"] = 11] = "Taxpayer profile changed";
10
- NotificationTypeEnum$1[NotificationTypeEnum$1["Document rejection initiated"] = 15] = "Document rejection initiated";
11
- NotificationTypeEnum$1[NotificationTypeEnum$1["ERP data validation"] = 26] = "ERP data validation";
12
- NotificationTypeEnum$1[NotificationTypeEnum$1["Documents processing summary"] = 33] = "Documents processing summary";
13
- NotificationTypeEnum$1[NotificationTypeEnum$1["Document Template Published"] = 34] = "Document Template Published";
14
- NotificationTypeEnum$1[NotificationTypeEnum$1["Document Template Deletion"] = 35] = "Document Template Deletion";
15
- return NotificationTypeEnum$1;
16
- }({});
17
- let NotificationStatusEnum = /* @__PURE__ */ function(NotificationStatusEnum$1) {
18
- NotificationStatusEnum$1[NotificationStatusEnum$1["New"] = 1] = "New";
19
- NotificationStatusEnum$1[NotificationStatusEnum$1["Pending"] = 2] = "Pending";
20
- NotificationStatusEnum$1[NotificationStatusEnum$1["Batched"] = 3] = "Batched";
21
- NotificationStatusEnum$1[NotificationStatusEnum$1["Delivered"] = 4] = "Delivered";
22
- NotificationStatusEnum$1[NotificationStatusEnum$1["Error"] = 5] = "Error";
23
- return NotificationStatusEnum$1;
24
- }({});
2
+ //#region src/utils/base64.ts
3
+ function encodeToBase64(content) {
4
+ return Buffer.from(content).toString("base64");
5
+ }
6
+ function decodeFromBase64(content) {
7
+ return Buffer.from(content, "base64").toString("utf-8");
8
+ }
25
9
 
26
10
  //#endregion
27
- exports.NotificationStatusEnum = NotificationStatusEnum;
28
- exports.NotificationTypeEnum = NotificationTypeEnum;
11
+ exports.decodeFromBase64 = decodeFromBase64;
12
+ exports.encodeToBase64 = encodeToBase64;
29
13
  //# sourceMappingURL=index9.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index9.cjs","names":[],"sources":["../src/types/notifications.d.ts"],"sourcesContent":["export type NotificationType = 3 | 6 | 7 | 8 | 10 | 11 | 15 | 26 | 33 | 34 | 35\n\nexport enum NotificationTypeEnum {\n 'Profile data validation' = 3,\n 'Document received' = 6,\n 'Document validated' = 7,\n 'Document cancelled' = 8,\n 'User profile changed' = 10,\n 'Taxpayer profile changed' = 11,\n 'Document rejection initiated' = 15,\n 'ERP data validation' = 26,\n 'Documents processing summary' = 33,\n 'Document Template Published' = 34,\n 'Document Template Deletion' = 35,\n}\n\nexport type NotificationStatus = 1 | 2 | 3 | 4 | 5\n\nexport enum NotificationStatusEnum {\n 'New' = 1,\n 'Pending' = 2,\n 'Batched' = 3,\n 'Delivered' = 4,\n 'Error' = 5,\n}\n\nexport type NotificationDeliveryAttempt = {\n attemptDateTime: string\n status: string\n statusDetails: string\n}\n\nexport type NotificationMetadata = {\n hasNext: boolean\n}\n\nexport type Notification = {\n notificationId: string\n receiverNName: string\n notificationDeliveryId: string\n creationDateTime: string\n receivedDateTime: string\n notificationSubject: string\n deliveredDateTime: string\n typeId: string\n typeName: string\n finalMessage: string\n address: string\n language: string\n status: string\n deliveryAttempts: NotificationDeliveryAttempt[]\n}\n\nexport type NotificationResponse = {\n notifications: Notification[]\n metadata: NotificationMetadata\n}\n\nexport type NotificationSearchParams = {\n dateFrom?: string\n dateTo?: string\n type?: NotificationType\n language?: string\n status?: NotificationStatus\n pageNo?: number\n pageSize?: number\n}\n"],"mappings":";;AAEA,IAAY,wEAAL;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACD;AAID,IAAY,4EAAL;AACL;AACA;AACA;AACA;AACA;;AACD"}
1
+ {"version":3,"file":"index9.cjs","names":["content: string"],"sources":["../src/utils/base64.ts"],"sourcesContent":["export function encodeToBase64(content: string): string {\n return Buffer.from(content).toString('base64')\n}\n\nexport function decodeFromBase64(content: string): string {\n return Buffer.from(content, 'base64').toString('utf-8')\n}\n"],"mappings":";;AAAA,SAAgB,eAAeA,SAAyB;AACtD,QAAO,OAAO,KAAK,QAAQ,CAAC,SAAS,SAAS;AAC/C;AAED,SAAgB,iBAAiBA,SAAyB;AACxD,QAAO,OAAO,KAAK,SAAS,SAAS,CAAC,SAAS,QAAQ;AACxD"}
@@ -1,5 +1,5 @@
1
1
  import { MSICCode } from "./msic-codes-CIKdPqag.cjs";
2
- import { RegistrationType } from "./documents-BXxJLeMe.cjs";
2
+ import { RegistrationType } from "./documents-DSZZujgx.cjs";
3
3
 
4
4
  //#region src/types/taxpayer.d.ts
5
5
  interface TaxpayerQRCodeResponse {
@@ -32,4 +32,4 @@ interface TinSearchResponse {
32
32
  }
33
33
  //#endregion
34
34
  export { TaxpayerQRCodeResponse, TinSearchParams, TinSearchResponse };
35
- //# sourceMappingURL=taxpayer-ONpnw0na.d.cts.map
35
+ //# sourceMappingURL=taxpayer-CYHwMpau.d.cts.map
@@ -1,5 +1,5 @@
1
1
  import { MSICCode } from "./msic-codes-CjrrJmzb.js";
2
- import { RegistrationType } from "./documents-BPawWCi-.js";
2
+ import { RegistrationType } from "./documents-CkoydYUK.js";
3
3
 
4
4
  //#region src/types/taxpayer.d.ts
5
5
  interface TaxpayerQRCodeResponse {
@@ -51,5 +51,5 @@ import "../YX-F34sJ7Ik.js";
51
51
  import "../ZX-CDQOfsHh.js";
52
52
  import "../XX-DOA-10JW.js";
53
53
  import "../unit-types-VgYXIwTT.js";
54
- import { Address, AllDocumentsV1_1, Buyer, CompleteInvoice, CreditNoteV1_1, DebitNoteV1_1, DocumentStatus, DocumentSummary, DocumentTypeResponse, DocumentTypeVersion, DocumentTypeVersionResponse, DocumentTypesResponse, DocumentValidationResult, DocumentValidationStepResult, FinalDocumentData, GetSubmissionResponse, InvoiceLineItem, InvoiceSubmission, InvoiceV1_1, LegalMonetaryTotal, RefundNoteV1_1, RegistrationType, ResponseDocument, SelfBilledCreditNoteV1_1, SelfBilledInvoiceV1_1, SelfBilledRefundNoteV1_1, SignedInfoObject, SignedInvoiceSubmission, SignedPropertiesData, SignedPropertiesObject, SigningCredentials, StandardError, SubmissionResponse, SubmissionStatus, Supplier, TaxCategory, TaxSubtotal, TaxTotal, UBLDocument, WorkflowParameter } from "../documents-BPawWCi-.js";
54
+ import { Address, AllDocumentsV1_1, Buyer, CompleteInvoice, CreditNoteV1_1, DebitNoteV1_1, DocumentStatus, DocumentSummary, DocumentTypeResponse, DocumentTypeVersion, DocumentTypeVersionResponse, DocumentTypesResponse, DocumentValidationResult, DocumentValidationStepResult, FinalDocumentData, GetSubmissionResponse, InvoiceLineItem, InvoiceSubmission, InvoiceV1_1, LegalMonetaryTotal, RefundNoteV1_1, RegistrationType, ResponseDocument, SelfBilledCreditNoteV1_1, SelfBilledInvoiceV1_1, SelfBilledRefundNoteV1_1, SignedInfoObject, SignedInvoiceSubmission, SignedPropertiesData, SignedPropertiesObject, SigningCredentials, StandardError, SubmissionResponse, SubmissionStatus, Supplier, TaxCategory, TaxSubtotal, TaxTotal, UBLDocument, WorkflowParameter } from "../documents-CkoydYUK.js";
55
55
  export { Address, AllDocumentsV1_1, Buyer, CompleteInvoice, CreditNoteV1_1, DebitNoteV1_1, DocumentStatus, DocumentSummary, DocumentTypeResponse, DocumentTypeVersion, DocumentTypeVersionResponse, DocumentTypesResponse, DocumentValidationResult, DocumentValidationStepResult, FinalDocumentData, GetSubmissionResponse, InvoiceLineItem, InvoiceSubmission, InvoiceV1_1, LegalMonetaryTotal, RefundNoteV1_1, RegistrationType, ResponseDocument, SelfBilledCreditNoteV1_1, SelfBilledInvoiceV1_1, SelfBilledRefundNoteV1_1, SignedInfoObject, SignedInvoiceSubmission, SignedPropertiesData, SignedPropertiesObject, SigningCredentials, StandardError, SubmissionResponse, SubmissionStatus, Supplier, TaxCategory, TaxSubtotal, TaxTotal, UBLDocument, WorkflowParameter };