myinvois-sdk
Version:
TypeScript SDK for interacting with the Malaysia e-invoicing system (MyInvois) API
17 lines (16 loc) • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultUrls = void 0;
/**
* Default URLs for different environments
*/
exports.DefaultUrls = {
production: {
authUrl: 'https://identity.myinvois.hasil.gov.my/connect/token',
transactionUrl: 'https://api.myinvois.hasil.gov.my'
},
sandbox: {
authUrl: 'https://preprod-api.myinvois.hasil.gov.my/connect/token',
transactionUrl: 'https://preprod-api.myinvois.hasil.gov.my'
}
};