factuplan 0.2.0 → 0.2.1
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/README.md +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ console.log(`Expira en ${cert.daysUntilExpiry} dias`);
|
|
|
145
145
|
|
|
146
146
|
```typescript
|
|
147
147
|
const factuplan = new Factuplan('tu-api-key', {
|
|
148
|
-
baseUrl: '
|
|
148
|
+
baseUrl: 'https://api-rest.factuplan.com.ec/api/v1', // default
|
|
149
149
|
timeout: 30000, // 30s default
|
|
150
150
|
});
|
|
151
151
|
```
|
package/dist/index.js
CHANGED
|
@@ -117,7 +117,7 @@ var ProductsResource = class {
|
|
|
117
117
|
};
|
|
118
118
|
|
|
119
119
|
// src/client.ts
|
|
120
|
-
var DEFAULT_BASE_URL = "
|
|
120
|
+
var DEFAULT_BASE_URL = "https://api-rest.factuplan.com.ec/api/v1";
|
|
121
121
|
var DEFAULT_TIMEOUT = 3e4;
|
|
122
122
|
var Factuplan = class {
|
|
123
123
|
constructor(apiKey, options) {
|
package/dist/index.mjs
CHANGED
|
@@ -88,7 +88,7 @@ var ProductsResource = class {
|
|
|
88
88
|
};
|
|
89
89
|
|
|
90
90
|
// src/client.ts
|
|
91
|
-
var DEFAULT_BASE_URL = "
|
|
91
|
+
var DEFAULT_BASE_URL = "https://api-rest.factuplan.com.ec/api/v1";
|
|
92
92
|
var DEFAULT_TIMEOUT = 3e4;
|
|
93
93
|
var Factuplan = class {
|
|
94
94
|
constructor(apiKey, options) {
|
package/package.json
CHANGED