@getpeppr/cli 0.5.2 → 0.5.3
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 +7 -7
- package/dist/index.js +15 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ getpeppr init --credit-note # credit note template
|
|
|
26
26
|
getpeppr init --force # overwrite existing file
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
The generated template includes a Belgian seller,
|
|
29
|
+
The generated template includes a Belgian seller, the sandbox test receiver as buyer, and two invoice lines — ready to edit, validate, convert, and send from a sandbox account.
|
|
30
30
|
|
|
31
31
|
### `getpeppr validate` — Validate an invoice
|
|
32
32
|
|
|
@@ -218,12 +218,12 @@ The input file must be a JSON object matching the getpeppr `InvoiceInput` type.
|
|
|
218
218
|
"country": "BE"
|
|
219
219
|
},
|
|
220
220
|
"to": {
|
|
221
|
-
"name": "
|
|
222
|
-
"peppolId": "
|
|
223
|
-
"street": "
|
|
224
|
-
"city": "
|
|
225
|
-
"postalCode": "
|
|
226
|
-
"country": "
|
|
221
|
+
"name": "SPF Economie (test receiver)",
|
|
222
|
+
"peppolId": "9925:BE0314595348",
|
|
223
|
+
"street": "Rue du Progrès 50",
|
|
224
|
+
"city": "Brussels",
|
|
225
|
+
"postalCode": "1210",
|
|
226
|
+
"country": "BE"
|
|
227
227
|
},
|
|
228
228
|
"lines": [
|
|
229
229
|
{
|
package/dist/index.js
CHANGED
|
@@ -3171,13 +3171,15 @@ var INVOICE_TEMPLATE = {
|
|
|
3171
3171
|
postalCode: "1050",
|
|
3172
3172
|
country: "BE"
|
|
3173
3173
|
},
|
|
3174
|
+
// Sandbox test receiver (GPR-828): the only recipient guaranteed reachable on
|
|
3175
|
+
// the Storecove test network -- real directory companies make sandbox sends fail.
|
|
3174
3176
|
to: {
|
|
3175
|
-
name: "
|
|
3176
|
-
peppolId: "
|
|
3177
|
-
street: "
|
|
3178
|
-
city: "
|
|
3179
|
-
postalCode: "
|
|
3180
|
-
country: "
|
|
3177
|
+
name: "SPF Economie (test receiver)",
|
|
3178
|
+
peppolId: "9925:BE0314595348",
|
|
3179
|
+
street: "Rue du Progr\xE8s 50",
|
|
3180
|
+
city: "Brussels",
|
|
3181
|
+
postalCode: "1210",
|
|
3182
|
+
country: "BE"
|
|
3181
3183
|
},
|
|
3182
3184
|
lines: [
|
|
3183
3185
|
{
|
|
@@ -3213,13 +3215,14 @@ var CREDIT_NOTE_TEMPLATE = {
|
|
|
3213
3215
|
postalCode: "1050",
|
|
3214
3216
|
country: "BE"
|
|
3215
3217
|
},
|
|
3218
|
+
// Sandbox test receiver (GPR-828) \u2014 keep in sync with templates/invoice.ts.
|
|
3216
3219
|
to: {
|
|
3217
|
-
name: "
|
|
3218
|
-
peppolId: "
|
|
3219
|
-
street: "
|
|
3220
|
-
city: "
|
|
3221
|
-
postalCode: "
|
|
3222
|
-
country: "
|
|
3220
|
+
name: "SPF Economie (test receiver)",
|
|
3221
|
+
peppolId: "9925:BE0314595348",
|
|
3222
|
+
street: "Rue du Progr\xE8s 50",
|
|
3223
|
+
city: "Brussels",
|
|
3224
|
+
postalCode: "1210",
|
|
3225
|
+
country: "BE"
|
|
3223
3226
|
},
|
|
3224
3227
|
lines: [
|
|
3225
3228
|
{
|