@ripwords/myinvois-client 0.2.38 → 0.2.39
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.
- package/dist/api/platformLogin.d.ts +1 -1
- package/dist/api/platformLogin.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index10.cjs +187 -16
- package/dist/index10.cjs.map +1 -1
- package/dist/index12.cjs +16 -25
- package/dist/index12.cjs.map +1 -1
- package/dist/index13.cjs +0 -24
- package/dist/index15.cjs +29 -0
- package/dist/index15.cjs.map +1 -0
- package/dist/index16.cjs +25 -0
- package/dist/index16.cjs.map +1 -0
- package/dist/index17.cjs +0 -5
- package/dist/index18.cjs +33 -6
- package/dist/index18.cjs.map +1 -0
- package/dist/index19.cjs +23 -4
- package/dist/{index13.cjs.map → index19.cjs.map} +1 -1
- package/dist/index2.cjs +4 -61
- package/dist/index20.cjs +0 -3
- package/dist/index21.cjs +0 -3
- package/dist/index22.cjs +0 -6
- package/dist/index23.cjs +3 -207
- package/dist/index24.cjs +9 -105
- package/dist/index24.cjs.map +1 -1
- package/dist/index25.cjs +4 -136
- package/dist/index26.cjs +21 -63
- package/dist/index27.cjs +2 -266
- package/dist/index28.cjs +2 -78
- package/dist/index29.cjs +326 -103
- package/dist/index29.cjs.map +1 -1
- package/dist/index3.cjs +6 -531
- package/dist/index30.cjs +189 -69
- package/dist/index30.cjs.map +1 -1
- package/dist/index31.cjs +203 -107
- package/dist/index31.cjs.map +1 -1
- package/dist/index32.cjs +104 -95
- package/dist/index32.cjs.map +1 -1
- package/dist/index33.cjs +136 -3
- package/dist/{index25.cjs.map → index33.cjs.map} +1 -1
- package/dist/index34.cjs +60 -9
- package/dist/index34.cjs.map +1 -1
- package/dist/index35.cjs +266 -4
- package/dist/{index27.cjs.map → index35.cjs.map} +1 -1
- package/dist/index36.cjs +78 -21
- package/dist/{index28.cjs.map → index36.cjs.map} +1 -1
- package/dist/index37.cjs +106 -2
- package/dist/index37.cjs.map +1 -0
- package/dist/index38.cjs +72 -2
- package/dist/index38.cjs.map +1 -0
- package/dist/index39.cjs +108 -326
- package/dist/index39.cjs.map +1 -1
- package/dist/index4.cjs +4 -195
- package/dist/index40.cjs +96 -189
- package/dist/index40.cjs.map +1 -1
- package/dist/index5.cjs +3 -0
- package/dist/index6.cjs +2 -24
- package/dist/index65.cts.map +1 -1
- package/dist/index7.cjs +6 -0
- package/dist/index8.cjs +62 -0
- package/dist/{index2.cjs.map → index8.cjs.map} +1 -1
- package/dist/index9.cjs +526 -23
- package/dist/index9.cjs.map +1 -1
- package/dist/{platformLogin-BVTUzLjd.cjs → platformLogin-Ch6hFKoU.cjs} +3 -3
- package/dist/platformLogin-Ch6hFKoU.cjs.map +1 -0
- package/dist/{platformLogin-B6f18bB7.js → platformLogin-CqI9OLYP.js} +2 -2
- package/package.json +1 -1
- package/dist/index23.cjs.map +0 -1
- package/dist/index26.cjs.map +0 -1
- package/dist/index3.cjs.map +0 -1
- package/dist/index4.cjs.map +0 -1
- package/dist/index6.cjs.map +0 -1
- package/dist/platformLogin-BVTUzLjd.cjs.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index16.cjs","names":[],"sources":["../src/types/payment-modes.d.ts"],"sourcesContent":["/**\n * Represents the allowed codes for payment modes.\n * Based on the documentation: https://sdk.myinvois.hasil.gov.my/codes/payment-methods/\n */\nexport type PaymentModeCode =\n | '01' // Cash\n | '02' // Cheque\n | '03' // Bank Transfer\n | '04' // Credit Card\n | '05' // Debit Card\n | '06' // e-Wallet / Digital Wallet\n | '07' // Digital Bank\n | '08' // Others\n\n/**\n * Enum representing the allowed payment mode codes with descriptive names.\n * Provides a more readable way to reference payment modes.\n *\n * @example\n * const mode = PaymentModeCodeEnum.Cash;\n * console.log(mode); // Output: \"01\"\n */\nexport enum PaymentModeCodeEnum {\n Cash = '01',\n Cheque = '02',\n BankTransfer = '03',\n CreditCard = '04',\n DebitCard = '05',\n EWalletDigitalWallet = '06',\n DigitalBank = '07',\n Others = '08',\n}\n\n/**\n * Interface representing a payment mode entry.\n * Contains the code and its corresponding description.\n */\nexport interface PaymentMode {\n code: PaymentModeCode\n description: string\n}\n"],"mappings":";;;;;;;;;;AAsBA,IAAY,sEAAL;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACD"}
|
package/dist/index17.cjs
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
const require_documentManagement = require('./documentManagement-CyPwiyP4.cjs');
|
|
2
|
-
|
|
3
|
-
exports.getDocument = require_documentManagement.getDocument;
|
|
4
|
-
exports.getDocumentDetails = require_documentManagement.getDocumentDetails;
|
|
5
|
-
exports.searchDocuments = require_documentManagement.searchDocuments;
|
package/dist/index18.cjs
CHANGED
|
@@ -1,7 +1,34 @@
|
|
|
1
|
-
require('./formatIdValue-i67o4kyD.cjs');
|
|
2
|
-
require('./document-CCza2JPL.cjs');
|
|
3
|
-
const require_documentSubmission = require('./documentSubmission-M4UlirJ7.cjs');
|
|
4
1
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
//#region src/types/state-codes.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* Enum representing the allowed state codes with descriptive names.
|
|
5
|
+
* Provides a more readable way to reference states.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* const code = StateCodeEnum.Selangor;
|
|
9
|
+
* console.log(code); // Output: "10"
|
|
10
|
+
*/
|
|
11
|
+
let StateCodeEnum = /* @__PURE__ */ function(StateCodeEnum$1) {
|
|
12
|
+
StateCodeEnum$1["Johor"] = "01";
|
|
13
|
+
StateCodeEnum$1["Kedah"] = "02";
|
|
14
|
+
StateCodeEnum$1["Kelantan"] = "03";
|
|
15
|
+
StateCodeEnum$1["Melaka"] = "04";
|
|
16
|
+
StateCodeEnum$1["NegeriSembilan"] = "05";
|
|
17
|
+
StateCodeEnum$1["Pahang"] = "06";
|
|
18
|
+
StateCodeEnum$1["PulauPinang"] = "07";
|
|
19
|
+
StateCodeEnum$1["Perak"] = "08";
|
|
20
|
+
StateCodeEnum$1["Perlis"] = "09";
|
|
21
|
+
StateCodeEnum$1["Selangor"] = "10";
|
|
22
|
+
StateCodeEnum$1["Terengganu"] = "11";
|
|
23
|
+
StateCodeEnum$1["Sabah"] = "12";
|
|
24
|
+
StateCodeEnum$1["Sarawak"] = "13";
|
|
25
|
+
StateCodeEnum$1["WPKualaLumpur"] = "14";
|
|
26
|
+
StateCodeEnum$1["WPLabuan"] = "15";
|
|
27
|
+
StateCodeEnum$1["WPPutrajaya"] = "16";
|
|
28
|
+
StateCodeEnum$1["NotApplicable"] = "17";
|
|
29
|
+
return StateCodeEnum$1;
|
|
30
|
+
}({});
|
|
31
|
+
|
|
32
|
+
//#endregion
|
|
33
|
+
exports.StateCodeEnum = StateCodeEnum;
|
|
34
|
+
//# sourceMappingURL=index18.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index18.cjs","names":[],"sources":["../src/types/state-codes.d.ts"],"sourcesContent":["/**\n * Represents the allowed codes for Malaysian states and federal territories.\n * Based on the documentation: https://sdk.myinvois.hasil.gov.my/codes/state-codes/\n */\nexport type StateCode =\n | '01' // Johor\n | '02' // Kedah\n | '03' // Kelantan\n | '04' // Melaka\n | '05' // Negeri Sembilan\n | '06' // Pahang\n | '07' // Pulau Pinang\n | '08' // Perak\n | '09' // Perlis\n | '10' // Selangor\n | '11' // Terengganu\n | '12' // Sabah\n | '13' // Sarawak\n | '14' // Wilayah Persekutuan Kuala Lumpur\n | '15' // Wilayah Persekutuan Labuan\n | '16' // Wilayah Persekutuan Putrajaya\n | '17' // Not Applicable\n\n/**\n * Enum representing the allowed state codes with descriptive names.\n * Provides a more readable way to reference states.\n *\n * @example\n * const code = StateCodeEnum.Selangor;\n * console.log(code); // Output: \"10\"\n */\nexport enum StateCodeEnum {\n Johor = '01',\n Kedah = '02',\n Kelantan = '03',\n Melaka = '04',\n NegeriSembilan = '05',\n Pahang = '06',\n PulauPinang = '07',\n Perak = '08',\n Perlis = '09',\n Selangor = '10',\n Terengganu = '11',\n Sabah = '12',\n Sarawak = '13',\n WPKualaLumpur = '14',\n WPLabuan = '15',\n WPPutrajaya = '16',\n NotApplicable = '17',\n}\n\n/**\n * Interface representing a state code entry.\n * Contains the code and its corresponding name.\n */\nexport interface State {\n code: StateCode\n name: string\n}\n"],"mappings":";;;;;;;;;;AA+BA,IAAY,0DAAL;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACD"}
|
package/dist/index19.cjs
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
|
-
const require_documentTypeManagement = require('./documentTypeManagement-D_-LiQVg.cjs');
|
|
2
1
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
//#region src/types/tax-types.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* Enum representing the allowed tax type codes with descriptive names.
|
|
5
|
+
* Provides a more readable way to reference tax types.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* const code = TaxTypeCodeEnum.SalesTax;
|
|
9
|
+
* console.log(code); // Output: "01"
|
|
10
|
+
*/
|
|
11
|
+
let TaxTypeCodeEnum = /* @__PURE__ */ function(TaxTypeCodeEnum$1) {
|
|
12
|
+
TaxTypeCodeEnum$1["SalesTax"] = "01";
|
|
13
|
+
TaxTypeCodeEnum$1["ServiceTax"] = "02";
|
|
14
|
+
TaxTypeCodeEnum$1["TourismTax"] = "03";
|
|
15
|
+
TaxTypeCodeEnum$1["HighValueGoodsTax"] = "04";
|
|
16
|
+
TaxTypeCodeEnum$1["SalesTaxLowValueGoods"] = "05";
|
|
17
|
+
TaxTypeCodeEnum$1["NotApplicable"] = "06";
|
|
18
|
+
TaxTypeCodeEnum$1["TaxExemption"] = "E";
|
|
19
|
+
return TaxTypeCodeEnum$1;
|
|
20
|
+
}({});
|
|
21
|
+
|
|
22
|
+
//#endregion
|
|
23
|
+
exports.TaxTypeCodeEnum = TaxTypeCodeEnum;
|
|
24
|
+
//# sourceMappingURL=index19.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"index19.cjs","names":[],"sources":["../src/types/tax-types.d.ts"],"sourcesContent":["/**\n * Represents the allowed codes for tax types.\n * Based on the documentation: https://sdk.myinvois.hasil.gov.my/codes/tax-types/\n */\nexport type TaxTypeCode =\n | '01' // Sales Tax\n | '02' // Service Tax\n | '03' // Tourism Tax\n | '04' // High-Value Goods Tax\n | '05' // Sales Tax on Low Value Goods\n | '06' // Not Applicable\n | 'E' // Tax exemption (where applicable)\n\n/**\n * Enum representing the allowed tax type codes with descriptive names.\n * Provides a more readable way to reference tax types.\n *\n * @example\n * const code = TaxTypeCodeEnum.SalesTax;\n * console.log(code); // Output: \"01\"\n */\nexport enum TaxTypeCodeEnum {\n SalesTax = '01',\n ServiceTax = '02',\n TourismTax = '03',\n HighValueGoodsTax = '04',\n SalesTaxLowValueGoods = '05',\n NotApplicable = '06',\n TaxExemption = 'E',\n}\n\n/**\n * Interface representing a tax type entry.\n * Contains the code and its corresponding description.\n */\nexport interface TaxType {\n code: TaxTypeCode\n description: string\n}\n"],"mappings":";;;;;;;;;;AAqBA,IAAY,8DAAL;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AACD"}
|
package/dist/index2.cjs
CHANGED
|
@@ -1,62 +1,5 @@
|
|
|
1
|
+
const require_documentManagement = require('./documentManagement-CyPwiyP4.cjs');
|
|
1
2
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
* Provides a more readable way to reference classification codes.
|
|
6
|
-
*
|
|
7
|
-
* @example
|
|
8
|
-
* const code = ClassificationCodeEnum.ComputerSmartphoneOrTablet;
|
|
9
|
-
* console.log(code); // Output: "003"
|
|
10
|
-
*/
|
|
11
|
-
let ClassificationCodeEnum = /* @__PURE__ */ function(ClassificationCodeEnum$1) {
|
|
12
|
-
ClassificationCodeEnum$1["BreastfeedingEquipment"] = "001";
|
|
13
|
-
ClassificationCodeEnum$1["ChildCareCentresAndKindergartensFees"] = "002";
|
|
14
|
-
ClassificationCodeEnum$1["ComputerSmartphoneOrTablet"] = "003";
|
|
15
|
-
ClassificationCodeEnum$1["ConsolidatedEInvoice"] = "004";
|
|
16
|
-
ClassificationCodeEnum$1["ConstructionMaterials"] = "005";
|
|
17
|
-
ClassificationCodeEnum$1["Disbursement"] = "006";
|
|
18
|
-
ClassificationCodeEnum$1["Donation"] = "007";
|
|
19
|
-
ClassificationCodeEnum$1["ECommerceEInvoiceToBuyer"] = "008";
|
|
20
|
-
ClassificationCodeEnum$1["ECommerceSelfBilledToSellerLogistics"] = "009";
|
|
21
|
-
ClassificationCodeEnum$1["EducationFees"] = "010";
|
|
22
|
-
ClassificationCodeEnum$1["GoodsOnConsignmentConsignor"] = "011";
|
|
23
|
-
ClassificationCodeEnum$1["GoodsOnConsignmentConsignee"] = "012";
|
|
24
|
-
ClassificationCodeEnum$1["GymMembership"] = "013";
|
|
25
|
-
ClassificationCodeEnum$1["InsuranceEducationMedicalBenefits"] = "014";
|
|
26
|
-
ClassificationCodeEnum$1["InsuranceTakafulLife"] = "015";
|
|
27
|
-
ClassificationCodeEnum$1["InterestFinancingExpenses"] = "016";
|
|
28
|
-
ClassificationCodeEnum$1["InternetSubscription"] = "017";
|
|
29
|
-
ClassificationCodeEnum$1["LandAndBuilding"] = "018";
|
|
30
|
-
ClassificationCodeEnum$1["MedicalExamLearningDisabilities"] = "019";
|
|
31
|
-
ClassificationCodeEnum$1["MedicalExamVaccination"] = "020";
|
|
32
|
-
ClassificationCodeEnum$1["MedicalExpensesSeriousDiseases"] = "021";
|
|
33
|
-
ClassificationCodeEnum$1["Others"] = "022";
|
|
34
|
-
ClassificationCodeEnum$1["PetroleumOperations"] = "023";
|
|
35
|
-
ClassificationCodeEnum$1["PrivateRetirementSchemeDeferredAnnuity"] = "024";
|
|
36
|
-
ClassificationCodeEnum$1["MotorVehicle"] = "025";
|
|
37
|
-
ClassificationCodeEnum$1["SubscriptionBooksJournalsEtc"] = "026";
|
|
38
|
-
ClassificationCodeEnum$1["Reimbursement"] = "027";
|
|
39
|
-
ClassificationCodeEnum$1["RentalOfMotorVehicle"] = "028";
|
|
40
|
-
ClassificationCodeEnum$1["EVChargingFacilities"] = "029";
|
|
41
|
-
ClassificationCodeEnum$1["RepairAndMaintenance"] = "030";
|
|
42
|
-
ClassificationCodeEnum$1["ResearchAndDevelopment"] = "031";
|
|
43
|
-
ClassificationCodeEnum$1["ForeignIncome"] = "032";
|
|
44
|
-
ClassificationCodeEnum$1["SelfBilledBettingGaming"] = "033";
|
|
45
|
-
ClassificationCodeEnum$1["SelfBilledImportationGoods"] = "034";
|
|
46
|
-
ClassificationCodeEnum$1["SelfBilledImportationServices"] = "035";
|
|
47
|
-
ClassificationCodeEnum$1["SelfBilledOthers"] = "036";
|
|
48
|
-
ClassificationCodeEnum$1["SelfBilledMonetaryPaymentToAgents"] = "037";
|
|
49
|
-
ClassificationCodeEnum$1["SportsEquipmentRentalFeesEtc"] = "038";
|
|
50
|
-
ClassificationCodeEnum$1["SupportingEquipmentDisabledPerson"] = "039";
|
|
51
|
-
ClassificationCodeEnum$1["VoluntaryContributionProvidentFund"] = "040";
|
|
52
|
-
ClassificationCodeEnum$1["DentalExamTreatment"] = "041";
|
|
53
|
-
ClassificationCodeEnum$1["FertilityTreatment"] = "042";
|
|
54
|
-
ClassificationCodeEnum$1["TreatmentHomeCareNursingEtc"] = "043";
|
|
55
|
-
ClassificationCodeEnum$1["VouchersGiftCardsLoyaltyPoints"] = "044";
|
|
56
|
-
ClassificationCodeEnum$1["SelfBilledNonMonetaryPaymentToAgents"] = "045";
|
|
57
|
-
return ClassificationCodeEnum$1;
|
|
58
|
-
}({});
|
|
59
|
-
|
|
60
|
-
//#endregion
|
|
61
|
-
exports.ClassificationCodeEnum = ClassificationCodeEnum;
|
|
62
|
-
//# sourceMappingURL=index2.cjs.map
|
|
3
|
+
exports.getDocument = require_documentManagement.getDocument;
|
|
4
|
+
exports.getDocumentDetails = require_documentManagement.getDocumentDetails;
|
|
5
|
+
exports.searchDocuments = require_documentManagement.searchDocuments;
|
package/dist/index20.cjs
CHANGED
package/dist/index21.cjs
CHANGED
package/dist/index22.cjs
CHANGED
|
@@ -1,6 +0,0 @@
|
|
|
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;
|
package/dist/index23.cjs
CHANGED
|
@@ -1,208 +1,4 @@
|
|
|
1
|
+
const require_apiQueue = require('./apiQueue-kVoJdrS-.cjs');
|
|
1
2
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
MSIC_0X$1["NOT_APPLICABLE"] = "00000";
|
|
5
|
-
MSIC_0X$1["GROWING_OF_MAIZE"] = "01111";
|
|
6
|
-
MSIC_0X$1["GROWING_OF_LEGUMINOUS_CROPS"] = "01112";
|
|
7
|
-
MSIC_0X$1["GROWING_OF_OIL_SEEDS"] = "01113";
|
|
8
|
-
MSIC_0X$1["GROWING_OF_OTHER_CEREALS"] = "01119";
|
|
9
|
-
MSIC_0X$1["GROWING_OF_PADDY"] = "01120";
|
|
10
|
-
MSIC_0X$1["GROWING_OF_LEAFY_OR_STEM_VEGETABLES"] = "01131";
|
|
11
|
-
MSIC_0X$1["GROWING_OF_FRUITS_BEARING_VEGETABLES"] = "01132";
|
|
12
|
-
MSIC_0X$1["GROWING_OF_MELONS"] = "01133";
|
|
13
|
-
MSIC_0X$1["GROWING_OF_MUSHROOMS_AND_TRUFFLES"] = "01134";
|
|
14
|
-
MSIC_0X$1["GROWING_OF_VEGETABLES_SEEDS"] = "01135";
|
|
15
|
-
MSIC_0X$1["GROWING_OF_OTHER_VEGETABLES"] = "01136";
|
|
16
|
-
MSIC_0X$1["GROWING_OF_SUGAR_BEET"] = "01137";
|
|
17
|
-
MSIC_0X$1["GROWING_OF_ROOTS_TUBERS"] = "01138";
|
|
18
|
-
MSIC_0X$1["GROWING_OF_SUGAR_CANE"] = "01140";
|
|
19
|
-
MSIC_0X$1["GROWING_OF_TOBACCO"] = "01150";
|
|
20
|
-
MSIC_0X$1["GROWING_OF_FIBRE_CROPS"] = "01160";
|
|
21
|
-
MSIC_0X$1["GROWING_OF_FLOWERS"] = "01191";
|
|
22
|
-
MSIC_0X$1["GROWING_OF_FLOWER_SEEDS"] = "01192";
|
|
23
|
-
MSIC_0X$1["GROWING_OF_SAGO"] = "01193";
|
|
24
|
-
MSIC_0X$1["GROWING_OF_OTHER_NON_PERENNIAL_CROPS"] = "01199";
|
|
25
|
-
MSIC_0X$1["GROWING_OF_GRAPES"] = "01210";
|
|
26
|
-
MSIC_0X$1["GROWING_OF_BANANA"] = "01221";
|
|
27
|
-
MSIC_0X$1["GROWING_OF_MANGO"] = "01222";
|
|
28
|
-
MSIC_0X$1["GROWING_OF_DURIAN"] = "01223";
|
|
29
|
-
MSIC_0X$1["GROWING_OF_RAMBUTAN"] = "01224";
|
|
30
|
-
MSIC_0X$1["GROWING_OF_STAR_FRUIT"] = "01225";
|
|
31
|
-
MSIC_0X$1["GROWING_OF_PAPAYA"] = "01226";
|
|
32
|
-
MSIC_0X$1["GROWING_OF_PINEAPPLE"] = "01227";
|
|
33
|
-
MSIC_0X$1["GROWING_OF_PITAYA"] = "01228";
|
|
34
|
-
MSIC_0X$1["GROWING_OF_OTHER_TROPICAL_FRUITS"] = "01229";
|
|
35
|
-
MSIC_0X$1["GROWING_OF_POMELO"] = "01231";
|
|
36
|
-
MSIC_0X$1["GROWING_OF_LEMON_AND_LIMES"] = "01232";
|
|
37
|
-
MSIC_0X$1["GROWING_OF_TANGERINES_AND_MANDARIN"] = "01233";
|
|
38
|
-
MSIC_0X$1["GROWING_OF_OTHER_CITRUS_FRUITS"] = "01239";
|
|
39
|
-
MSIC_0X$1["GROWING_OF_GUAVA"] = "01241";
|
|
40
|
-
MSIC_0X$1["GROWING_OF_OTHER_POME_FRUITS"] = "01249";
|
|
41
|
-
MSIC_0X$1["GROWING_OF_BERRIES"] = "01251";
|
|
42
|
-
MSIC_0X$1["GROWING_OF_FRUIT_SEEDS"] = "01252";
|
|
43
|
-
MSIC_0X$1["GROWING_OF_EDIBLE_NUTS"] = "01253";
|
|
44
|
-
MSIC_0X$1["GROWING_OF_OTHER_TREE_AND_BUSH_FRUITS"] = "01259";
|
|
45
|
-
MSIC_0X$1["GROWING_OF_OIL_PALM_ESTATE"] = "01261";
|
|
46
|
-
MSIC_0X$1["GROWING_OF_OIL_PALM_SMALLHOLDINGS"] = "01262";
|
|
47
|
-
MSIC_0X$1["GROWING_OF_COCONUT"] = "01263";
|
|
48
|
-
MSIC_0X$1["GROWING_OF_OTHER_OLEAGINOUS_FRUITS"] = "01269";
|
|
49
|
-
MSIC_0X$1["GROWING_OF_COFFEE"] = "01271";
|
|
50
|
-
MSIC_0X$1["GROWING_OF_TEA"] = "01272";
|
|
51
|
-
MSIC_0X$1["GROWING_OF_COCOA"] = "01273";
|
|
52
|
-
MSIC_0X$1["GROWING_OF_OTHER_BEVERAGE_CROPS"] = "01279";
|
|
53
|
-
MSIC_0X$1["GROWING_OF_PEPPER"] = "01281";
|
|
54
|
-
MSIC_0X$1["GROWING_OF_CHILIES"] = "01282";
|
|
55
|
-
MSIC_0X$1["GROWING_OF_NUTMEG"] = "01283";
|
|
56
|
-
MSIC_0X$1["GROWING_OF_GINGER"] = "01284";
|
|
57
|
-
MSIC_0X$1["GROWING_OF_PLANTS_FOR_PHARMACY"] = "01285";
|
|
58
|
-
MSIC_0X$1["GROWING_OF_OTHER_SPICES"] = "01289";
|
|
59
|
-
MSIC_0X$1["GROWING_OF_RUBBER_TREES_ESTATE"] = "01291";
|
|
60
|
-
MSIC_0X$1["GROWING_OF_RUBBER_TREES_SMALLHOLDINGS"] = "01292";
|
|
61
|
-
MSIC_0X$1["GROWING_OF_TREES_FOR_SAP"] = "01293";
|
|
62
|
-
MSIC_0X$1["GROWING_OF_NIPA_PALM"] = "01294";
|
|
63
|
-
MSIC_0X$1["GROWING_OF_ARECA"] = "01295";
|
|
64
|
-
MSIC_0X$1["GROWING_OF_ROSELLE"] = "01296";
|
|
65
|
-
MSIC_0X$1["GROWING_OF_OTHER_PERENNIAL_CROPS"] = "01299";
|
|
66
|
-
MSIC_0X$1["GROWING_OF_PLANTS_FOR_PLANTING"] = "01301";
|
|
67
|
-
MSIC_0X$1["GROWING_OF_PLANTS_FOR_ORNAMENTAL"] = "01302";
|
|
68
|
-
MSIC_0X$1["GROWING_OF_LIVE_PLANTS"] = "01303";
|
|
69
|
-
MSIC_0X$1["OPERATION_OF_TREE_NURSERIES"] = "01304";
|
|
70
|
-
MSIC_0X$1["RAISING_CATTLE_OR_BUFFALOES"] = "01411";
|
|
71
|
-
MSIC_0X$1["PRODUCTION_OF_RAW_MILK"] = "01412";
|
|
72
|
-
MSIC_0X$1["PRODUCTION_OF_BOVINE_SEMEN"] = "01413";
|
|
73
|
-
MSIC_0X$1["RAISING_OF_HORSES"] = "01420";
|
|
74
|
-
MSIC_0X$1["RAISING_OF_CAMELS"] = "01430";
|
|
75
|
-
MSIC_0X$1["RAISING_OF_SHEEP_AND_GOATS"] = "01441";
|
|
76
|
-
MSIC_0X$1["PRODUCTION_OF_SHEEP_MILK"] = "01442";
|
|
77
|
-
MSIC_0X$1["PRODUCTION_OF_RAW_WOOL"] = "01443";
|
|
78
|
-
MSIC_0X$1["RAISING_OF_SWINE"] = "01450";
|
|
79
|
-
MSIC_0X$1["RAISING_OF_CHICKEN"] = "01461";
|
|
80
|
-
MSIC_0X$1["RAISING_OF_DUCKS"] = "01462";
|
|
81
|
-
MSIC_0X$1["RAISING_OF_GEESE"] = "01463";
|
|
82
|
-
MSIC_0X$1["RAISING_OF_QUAILS"] = "01464";
|
|
83
|
-
MSIC_0X$1["RAISING_OF_OTHER_POULTRY"] = "01465";
|
|
84
|
-
MSIC_0X$1["PRODUCTION_OF_CHICKEN_EGGS"] = "01466";
|
|
85
|
-
MSIC_0X$1["PRODUCTION_OF_DUCK_EGGS"] = "01467";
|
|
86
|
-
MSIC_0X$1["PRODUCTION_OF_OTHER_POULTRY_EGGS"] = "01468";
|
|
87
|
-
MSIC_0X$1["OPERATION_OF_POULTRY_HATCHERIES"] = "01469";
|
|
88
|
-
MSIC_0X$1["RAISING_OF_SEMI_DOMESTICATED"] = "01491";
|
|
89
|
-
MSIC_0X$1["PRODUCTION_OF_FUR_SKINS"] = "01492";
|
|
90
|
-
MSIC_0X$1["OPERATION_OF_WORM_FARMS"] = "01493";
|
|
91
|
-
MSIC_0X$1["RAISING_OF_SILK_WORMS"] = "01494";
|
|
92
|
-
MSIC_0X$1["BEE_KEEPING"] = "01495";
|
|
93
|
-
MSIC_0X$1["RAISING_OF_PET_ANIMALS"] = "01496";
|
|
94
|
-
MSIC_0X$1["RAISING_OF_SWIFLET"] = "01497";
|
|
95
|
-
MSIC_0X$1["RAISING_OF_DIVERSE_ANIMALS"] = "01499";
|
|
96
|
-
MSIC_0X$1["MIXED_FARMING"] = "01500";
|
|
97
|
-
MSIC_0X$1["AGRICULTURAL_ACTIVITIES_FOR_CROPS"] = "01610";
|
|
98
|
-
MSIC_0X$1["AGRICULTURAL_ACTIVITIES_FOR_ANIMALS"] = "01620";
|
|
99
|
-
MSIC_0X$1["PREPARATION_OF_CROPS"] = "01631";
|
|
100
|
-
MSIC_0X$1["PREPARATION_OF_TOBACCO_LEAVES"] = "01632";
|
|
101
|
-
MSIC_0X$1["PREPARATION_OF_COCOA_BEANS"] = "01633";
|
|
102
|
-
MSIC_0X$1["SUN_DRYING_OF_FRUITS"] = "01634";
|
|
103
|
-
MSIC_0X$1["SEED_PROCESSING"] = "01640";
|
|
104
|
-
MSIC_0X$1["HUNTING_AND_TRAPPING"] = "01701";
|
|
105
|
-
MSIC_0X$1["TAKING_OF_ANIMALS"] = "01702";
|
|
106
|
-
MSIC_0X$1["PLANTING_OF_FORESTS"] = "02101";
|
|
107
|
-
MSIC_0X$1["GROWING_OF_COPPICE"] = "02102";
|
|
108
|
-
MSIC_0X$1["OPERATION_OF_FOREST_NURSERIES"] = "02103";
|
|
109
|
-
MSIC_0X$1["COLLECTION_OF_WILDINGS"] = "02104";
|
|
110
|
-
MSIC_0X$1["FOREST_PLANTATION"] = "02105";
|
|
111
|
-
MSIC_0X$1["PRODUCTION_OF_ROUND_WOOD"] = "02201";
|
|
112
|
-
MSIC_0X$1["PRODUCTION_OF_UNPROCESSED_WOOD"] = "02202";
|
|
113
|
-
MSIC_0X$1["PRODUCTION_OF_CHARCOAL"] = "02203";
|
|
114
|
-
MSIC_0X$1["RUBBER_WOOD_LOGGING"] = "02204";
|
|
115
|
-
MSIC_0X$1["COLLECTION_OF_RATTAN"] = "02301";
|
|
116
|
-
MSIC_0X$1["BIRDS_NEST_COLLECTION"] = "02302";
|
|
117
|
-
MSIC_0X$1["WILD_SAGO_PALM_COLLECTION"] = "02303";
|
|
118
|
-
MSIC_0X$1["GATHERING_OF_NON_WOOD_FOREST"] = "02309";
|
|
119
|
-
MSIC_0X$1["FORESTRY_SERVICE_ACTIVITIES"] = "02401";
|
|
120
|
-
MSIC_0X$1["LOGGING_SERVICE_ACTIVITIES"] = "02402";
|
|
121
|
-
MSIC_0X$1["COMMERCIAL_OCEAN_FISHING"] = "03111";
|
|
122
|
-
MSIC_0X$1["COLLECTION_OF_MARINE_CRUSTACEANS"] = "03112";
|
|
123
|
-
MSIC_0X$1["TAKING_OF_AQUATIC_ANIMALS"] = "03113";
|
|
124
|
-
MSIC_0X$1["VESSELS_FOR_FISHING"] = "03114";
|
|
125
|
-
MSIC_0X$1["GATHERING_OF_MARINE_ORGANISMS"] = "03115";
|
|
126
|
-
MSIC_0X$1["MARINE_FISHING"] = "03119";
|
|
127
|
-
MSIC_0X$1["COMMERCIAL_INLAND_FISHING"] = "03121";
|
|
128
|
-
MSIC_0X$1["TAKING_OF_FRESHWATER_CRUSTACEANS"] = "03122";
|
|
129
|
-
MSIC_0X$1["TAKING_OF_FRESHWATER_ANIMALS"] = "03123";
|
|
130
|
-
MSIC_0X$1["GATHERING_OF_FRESHWATER_FLORA"] = "03124";
|
|
131
|
-
MSIC_0X$1["FRESHWATER_FISHING"] = "03129";
|
|
132
|
-
MSIC_0X$1["FISH_FARMING_SEA_WATER"] = "03211";
|
|
133
|
-
MSIC_0X$1["PRODUCTION_OF_BIVALVE_SPAT"] = "03212";
|
|
134
|
-
MSIC_0X$1["GROWING_OF_SEAWEEDS"] = "03213";
|
|
135
|
-
MSIC_0X$1["CULTURE_OF_CRUSTACEANS"] = "03214";
|
|
136
|
-
MSIC_0X$1["AQUACULTURE_IN_BRACKISH"] = "03215";
|
|
137
|
-
MSIC_0X$1["AQUACULTURE_IN_SALT_WATER"] = "03216";
|
|
138
|
-
MSIC_0X$1["OPERATION_OF_MARINE_HATCHERIES"] = "03217";
|
|
139
|
-
MSIC_0X$1["OPERATION_OF_MARINE_WORM_FARMS"] = "03218";
|
|
140
|
-
MSIC_0X$1["MARINE_AQUACULTURE"] = "03219";
|
|
141
|
-
MSIC_0X$1["FISH_FARMING_FRESHWATER"] = "03221";
|
|
142
|
-
MSIC_0X$1["SHRIMP_FARMING_FRESHWATER"] = "03222";
|
|
143
|
-
MSIC_0X$1["CULTURE_OF_FRESHWATER_CRUSTACEANS"] = "03223";
|
|
144
|
-
MSIC_0X$1["OPERATION_OF_FRESHWATER_HATCHERIES"] = "03224";
|
|
145
|
-
MSIC_0X$1["FARMING_OF_FROGS"] = "03225";
|
|
146
|
-
MSIC_0X$1["FRESHWATER_AQUACULTURE"] = "03229";
|
|
147
|
-
MSIC_0X$1["MINING_OF_HARD_COAL"] = "05100";
|
|
148
|
-
MSIC_0X$1["MINING_OF_LIGNITE"] = "05200";
|
|
149
|
-
MSIC_0X$1["EXTRACTION_OF_CRUDE_PETROLEUM"] = "06101";
|
|
150
|
-
MSIC_0X$1["EXTRACTION_OF_BITUMINOUS"] = "06102";
|
|
151
|
-
MSIC_0X$1["PRODUCTION_OF_CRUDE_PETROLEUM"] = "06103";
|
|
152
|
-
MSIC_0X$1["PROCESSES_TO_OBTAIN_CRUDE_OILS"] = "06104";
|
|
153
|
-
MSIC_0X$1["PRODUCTION_OF_NATURAL_GAS"] = "06201";
|
|
154
|
-
MSIC_0X$1["EXTRACTION_OF_CONDENSATES"] = "06202";
|
|
155
|
-
MSIC_0X$1["DRAINING_OF_HYDROCARBON"] = "06203";
|
|
156
|
-
MSIC_0X$1["GAS_DESULPHURIZATION"] = "06204";
|
|
157
|
-
MSIC_0X$1["MINING_OF_HYDROCARBON_LIQUIDS"] = "06205";
|
|
158
|
-
MSIC_0X$1["MINING_OF_IRON_ORES"] = "07101";
|
|
159
|
-
MSIC_0X$1["BENEFICIATION_OF_IRON_ORES"] = "07102";
|
|
160
|
-
MSIC_0X$1["MINING_OF_URANIUM"] = "07210";
|
|
161
|
-
MSIC_0X$1["MINING_OF_TIN"] = "07291";
|
|
162
|
-
MSIC_0X$1["MINING_OF_COPPER"] = "07292";
|
|
163
|
-
MSIC_0X$1["MINING_OF_BAUXITE"] = "07293";
|
|
164
|
-
MSIC_0X$1["MINING_OF_ILMENITE"] = "07294";
|
|
165
|
-
MSIC_0X$1["MINING_OF_GOLD"] = "07295";
|
|
166
|
-
MSIC_0X$1["MINING_OF_SILVER"] = "07296";
|
|
167
|
-
MSIC_0X$1["MINING_OF_PLATINUM"] = "07297";
|
|
168
|
-
MSIC_0X$1["AMANG_RETREATMENT"] = "07298";
|
|
169
|
-
MSIC_0X$1["MINING_OF_OTHER_NON_FERROUS"] = "07299";
|
|
170
|
-
MSIC_0X$1["QUARRYING_OF_STONE"] = "08101";
|
|
171
|
-
MSIC_0X$1["QUARRYING_OF_LIMESTONE"] = "08102";
|
|
172
|
-
MSIC_0X$1["MINING_OF_GYPSUM"] = "08103";
|
|
173
|
-
MSIC_0X$1["MINING_OF_CHALK"] = "08104";
|
|
174
|
-
MSIC_0X$1["EXTRACTION_OF_SAND"] = "08105";
|
|
175
|
-
MSIC_0X$1["BREAKING_OF_STONE"] = "08106";
|
|
176
|
-
MSIC_0X$1["QUARRYING_OF_SAND"] = "08107";
|
|
177
|
-
MSIC_0X$1["MINING_OF_CLAYS"] = "08108";
|
|
178
|
-
MSIC_0X$1["QUARRYING_OF_GRANITE"] = "08109";
|
|
179
|
-
MSIC_0X$1["MINING_OF_PHOSPHATES"] = "08911";
|
|
180
|
-
MSIC_0X$1["MINING_OF_POTASSIUM"] = "08912";
|
|
181
|
-
MSIC_0X$1["MINING_OF_SULPHUR"] = "08913";
|
|
182
|
-
MSIC_0X$1["EXTRACTION_OF_PYRITES"] = "08914";
|
|
183
|
-
MSIC_0X$1["MINING_OF_BARIUM"] = "08915";
|
|
184
|
-
MSIC_0X$1["MINING_OF_BORATES"] = "08916";
|
|
185
|
-
MSIC_0X$1["MINING_OF_EARTH_COLOURS"] = "08917";
|
|
186
|
-
MSIC_0X$1["GUANO_MINING"] = "08918";
|
|
187
|
-
MSIC_0X$1["PEAT_DIGGING"] = "08921";
|
|
188
|
-
MSIC_0X$1["PEAT_AGGLOMERATION"] = "08922";
|
|
189
|
-
MSIC_0X$1["PREPARATION_OF_PEAT"] = "08923";
|
|
190
|
-
MSIC_0X$1["EXTRACTION_OF_UNDERGROUND_SALT"] = "08931";
|
|
191
|
-
MSIC_0X$1["SALT_PRODUCTION"] = "08932";
|
|
192
|
-
MSIC_0X$1["CRUSHING_OF_SALT"] = "08933";
|
|
193
|
-
MSIC_0X$1["MINING_OF_ABRASIVE_MATERIALS"] = "08991";
|
|
194
|
-
MSIC_0X$1["MINING_OF_ASBESTOS"] = "08992";
|
|
195
|
-
MSIC_0X$1["MINING_OF_SILICEOUS"] = "08993";
|
|
196
|
-
MSIC_0X$1["MINING_OF_GRAPHITE"] = "08994";
|
|
197
|
-
MSIC_0X$1["MINING_OF_STEATITE"] = "08995";
|
|
198
|
-
MSIC_0X$1["MINING_OF_GEMSTONES"] = "08996";
|
|
199
|
-
MSIC_0X$1["OTHER_MINING"] = "08999";
|
|
200
|
-
MSIC_0X$1["OIL_AND_GAS_EXTRACTION"] = "09101";
|
|
201
|
-
MSIC_0X$1["OIL_AND_GAS_FIREFIGHTING"] = "09102";
|
|
202
|
-
MSIC_0X$1["SUPPORT_FOR_MINING"] = "09900";
|
|
203
|
-
return MSIC_0X$1;
|
|
204
|
-
}({});
|
|
205
|
-
|
|
206
|
-
//#endregion
|
|
207
|
-
exports.MSIC_0X = MSIC_0X;
|
|
208
|
-
//# sourceMappingURL=index23.cjs.map
|
|
3
|
+
exports.categorizeRequest = require_apiQueue.categorizeRequest;
|
|
4
|
+
exports.queueRequest = require_apiQueue.queueRequest;
|
package/dist/index24.cjs
CHANGED
|
@@ -1,109 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
//#region src/
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
MSIC_1X$1["CANNING_OF_FISH"] = "10201";
|
|
10
|
-
MSIC_1X$1["PROCESSING_OF_FISH"] = "10202";
|
|
11
|
-
MSIC_1X$1["PRODUCTION_OF_FISH_MEALS"] = "10203";
|
|
12
|
-
MSIC_1X$1["PRODUCTION_OF_KEROPOK"] = "10204";
|
|
13
|
-
MSIC_1X$1["PROCESSING_OF_SEAWEED"] = "10205";
|
|
14
|
-
MSIC_1X$1["MANUFACTURE_OF_FRUITS_AND_VEGETABLES"] = "10301";
|
|
15
|
-
MSIC_1X$1["MANUFACTURE_OF_FRUIT_JUICES"] = "10302";
|
|
16
|
-
MSIC_1X$1["PINEAPPLE_CANNING"] = "10303";
|
|
17
|
-
MSIC_1X$1["MANUFACTURE_OF_JAMS"] = "10304";
|
|
18
|
-
MSIC_1X$1["MANUFACTURE_OF_NUTS"] = "10305";
|
|
19
|
-
MSIC_1X$1["MANUFACTURE_OF_BEAN_CURD"] = "10306";
|
|
20
|
-
MSIC_1X$1["MANUFACTURE_OF_CRUDE_PALM_OIL"] = "10401";
|
|
21
|
-
MSIC_1X$1["MANUFACTURE_OF_REFINED_PALM_OIL"] = "10402";
|
|
22
|
-
MSIC_1X$1["MANUFACTURE_OF_PALM_KERNEL_OIL"] = "10403";
|
|
23
|
-
MSIC_1X$1["MANUFACTURE_OF_VEGETABLE_OIL"] = "10404";
|
|
24
|
-
MSIC_1X$1["MANUFACTURE_OF_COCONUT_OIL"] = "10405";
|
|
25
|
-
MSIC_1X$1["MANUFACTURE_OF_COOKING_FATS"] = "10406";
|
|
26
|
-
MSIC_1X$1["MANUFACTURE_OF_ANIMAL_OILS"] = "10407";
|
|
27
|
-
MSIC_1X$1["MANUFACTURE_OF_ICE_CREAM"] = "10501";
|
|
28
|
-
MSIC_1X$1["MANUFACTURE_OF_MILK_PRODUCTS"] = "10502";
|
|
29
|
-
MSIC_1X$1["MANUFACTURE_OF_DAIRY_PRODUCTS"] = "10509";
|
|
30
|
-
MSIC_1X$1["RICE_MILLING"] = "10611";
|
|
31
|
-
MSIC_1X$1["PROVISION_OF_MILLING_SERVICES"] = "10612";
|
|
32
|
-
MSIC_1X$1["FLOUR_MILLING"] = "10613";
|
|
33
|
-
MSIC_1X$1["MANUFACTURE_OF_GRAIN_MILL_PRODUCTS"] = "10619";
|
|
34
|
-
MSIC_1X$1["MANUFACTURE_OF_STARCHES"] = "10621";
|
|
35
|
-
MSIC_1X$1["MANUFACTURE_OF_GLUCOSE"] = "10622";
|
|
36
|
-
MSIC_1X$1["MANUFACTURE_OF_SAGO"] = "10623";
|
|
37
|
-
MSIC_1X$1["MANUFACTURE_OF_BISCUITS"] = "10711";
|
|
38
|
-
MSIC_1X$1["MANUFACTURE_OF_BREAD"] = "10712";
|
|
39
|
-
MSIC_1X$1["MANUFACTURE_OF_SNACKS"] = "10713";
|
|
40
|
-
MSIC_1X$1["MANUFACTURE_OF_FROZEN_BAKERY"] = "10714";
|
|
41
|
-
MSIC_1X$1["MANUFACTURE_OF_SUGAR"] = "10721";
|
|
42
|
-
MSIC_1X$1["MANUFACTURE_OF_SUGAR_PRODUCTS"] = "10722";
|
|
43
|
-
MSIC_1X$1["MANUFACTURE_OF_COCOA"] = "10731";
|
|
44
|
-
MSIC_1X$1["MANUFACTURE_OF_CHOCOLATE"] = "10732";
|
|
45
|
-
MSIC_1X$1["MANUFACTURE_OF_CONFECTIONERY"] = "10733";
|
|
46
|
-
MSIC_1X$1["MANUFACTURE_OF_NOODLES"] = "10741";
|
|
47
|
-
MSIC_1X$1["MANUFACTURE_OF_PASTAS"] = "10742";
|
|
48
|
-
MSIC_1X$1["MANUFACTURE_OF_PREPARED_MEALS"] = "10750";
|
|
49
|
-
MSIC_1X$1["MANUFACTURE_OF_COFFEE"] = "10791";
|
|
50
|
-
MSIC_1X$1["MANUFACTURE_OF_TEA"] = "10792";
|
|
51
|
-
MSIC_1X$1["MANUFACTURE_OF_SAUCES"] = "10793";
|
|
52
|
-
MSIC_1X$1["MANUFACTURE_OF_SPICES"] = "10794";
|
|
53
|
-
MSIC_1X$1["MANUFACTURE_OF_EGG_PRODUCTS"] = "10795";
|
|
54
|
-
MSIC_1X$1["MANUFACTURE_OF_OTHER_FOOD"] = "10799";
|
|
55
|
-
MSIC_1X$1["MANUFACTURE_OF_ANIMAL_FEEDS"] = "10800";
|
|
56
|
-
MSIC_1X$1["DISTILLING_OF_SPIRITS"] = "11010";
|
|
57
|
-
MSIC_1X$1["MANUFACTURE_OF_WINES"] = "11020";
|
|
58
|
-
MSIC_1X$1["MANUFACTURE_OF_MALT"] = "11030";
|
|
59
|
-
MSIC_1X$1["MANUFACTURE_OF_SOFT_DRINKS"] = "11041";
|
|
60
|
-
MSIC_1X$1["PRODUCTION_OF_MINERAL_WATER"] = "11042";
|
|
61
|
-
MSIC_1X$1["MANUFACTURE_OF_TOBACCO"] = "12000";
|
|
62
|
-
MSIC_1X$1["PREPARATION_OF_TEXTILE_FIBRES"] = "13110";
|
|
63
|
-
MSIC_1X$1["WEAVING_OF_TEXTILES"] = "13120";
|
|
64
|
-
MSIC_1X$1["BATIK_MAKING"] = "13131";
|
|
65
|
-
MSIC_1X$1["DYEING_OF_YARNS"] = "13132";
|
|
66
|
-
MSIC_1X$1["OTHER_FINISHING_TEXTILES"] = "13139";
|
|
67
|
-
MSIC_1X$1["MANUFACTURE_OF_KNITTED_FABRICS"] = "13910";
|
|
68
|
-
MSIC_1X$1["MANUFACTURE_OF_TEXTILE_ARTICLES"] = "13921";
|
|
69
|
-
MSIC_1X$1["MANUFACTURE_OF_FURNISHING"] = "13922";
|
|
70
|
-
MSIC_1X$1["MANUFACTURE_OF_CARPETS"] = "13930";
|
|
71
|
-
MSIC_1X$1["MANUFACTURE_OF_CORDAGE"] = "13940";
|
|
72
|
-
MSIC_1X$1["MANUFACTURE_OF_OTHER_TEXTILES"] = "13990";
|
|
73
|
-
MSIC_1X$1["MANUFACTURE_OF_SPECIFIC_APPAREL"] = "14101";
|
|
74
|
-
MSIC_1X$1["MANUFACTURE_OF_CLOTHINGS"] = "14102";
|
|
75
|
-
MSIC_1X$1["CUSTOM_TAILORING"] = "14103";
|
|
76
|
-
MSIC_1X$1["MANUFACTURE_OF_CLOTHING_ACCESSORIES"] = "14109";
|
|
77
|
-
MSIC_1X$1["MANUFACTURE_OF_FUR_ARTICLES"] = "14200";
|
|
78
|
-
MSIC_1X$1["MANUFACTURE_OF_KNITTED_APPAREL"] = "14300";
|
|
79
|
-
MSIC_1X$1["TANNING_OF_LEATHER"] = "15110";
|
|
80
|
-
MSIC_1X$1["MANUFACTURE_OF_LUGGAGE"] = "15120";
|
|
81
|
-
MSIC_1X$1["MANUFACTURE_OF_LEATHER_FOOTWEAR"] = "15201";
|
|
82
|
-
MSIC_1X$1["MANUFACTURE_OF_PLASTIC_FOOTWEAR"] = "15202";
|
|
83
|
-
MSIC_1X$1["MANUFACTURE_OF_RUBBER_FOOTWEAR"] = "15203";
|
|
84
|
-
MSIC_1X$1["MANUFACTURE_OF_OTHER_FOOTWEAR"] = "15209";
|
|
85
|
-
MSIC_1X$1["MANUFACTURE_OF_PLYWOOD"] = "16211";
|
|
86
|
-
MSIC_1X$1["MANUFACTURE_OF_CARPENTRY"] = "16221";
|
|
87
|
-
MSIC_1X$1["MANUFACTURE_OF_JOINERY"] = "16222";
|
|
88
|
-
MSIC_1X$1["MANUFACTURE_OF_WOODEN_CONTAINERS"] = "16230";
|
|
89
|
-
MSIC_1X$1["MANUFACTURE_OF_WOOD_CHARCOAL"] = "16291";
|
|
90
|
-
MSIC_1X$1["MANUFACTURE_OF_WOOD_PRODUCTS"] = "16292";
|
|
91
|
-
MSIC_1X$1["MANUFACTURE_OF_PULP"] = "17010";
|
|
92
|
-
MSIC_1X$1["MANUFACTURE_OF_PAPER_CONTAINERS"] = "17020";
|
|
93
|
-
MSIC_1X$1["MANUFACTURE_OF_ENVELOPES"] = "17091";
|
|
94
|
-
MSIC_1X$1["MANUFACTURE_OF_HYGIENE_PAPER"] = "17092";
|
|
95
|
-
MSIC_1X$1["MANUFACTURE_OF_ADHESIVE_PAPER"] = "17093";
|
|
96
|
-
MSIC_1X$1["MANUFACTURE_OF_FUNERAL_PAPER"] = "17094";
|
|
97
|
-
MSIC_1X$1["MANUFACTURE_OF_OTHER_PAPER"] = "17099";
|
|
98
|
-
MSIC_1X$1["PRINTING"] = "18110";
|
|
99
|
-
MSIC_1X$1["PRINTING_SERVICE_ACTIVITIES"] = "18120";
|
|
100
|
-
MSIC_1X$1["REPRODUCTION_OF_MEDIA"] = "18200";
|
|
101
|
-
MSIC_1X$1["MANUFACTURE_OF_COKE"] = "19100";
|
|
102
|
-
MSIC_1X$1["MANUFACTURE_OF_PETROLEUM"] = "19201";
|
|
103
|
-
MSIC_1X$1["MANUFACTURE_OF_BIODIESEL"] = "19202";
|
|
104
|
-
return MSIC_1X$1;
|
|
105
|
-
}({});
|
|
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
|
+
}
|
|
106
9
|
|
|
107
10
|
//#endregion
|
|
108
|
-
exports.
|
|
11
|
+
exports.decodeFromBase64 = decodeFromBase64;
|
|
12
|
+
exports.encodeToBase64 = encodeToBase64;
|
|
109
13
|
//# sourceMappingURL=index24.cjs.map
|
package/dist/index24.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index24.cjs","names":[],"sources":["../src/
|
|
1
|
+
{"version":3,"file":"index24.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"}
|