@pinelab/vendure-plugin-e-boekhouden 1.3.0 → 1.4.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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # 1.4.1 (2025-11-06)
2
+
3
+ - Updated official documentation URL
4
+
5
+ # 1.4.0 (2025-06-04)
6
+
7
+ - Upgrade to Vendure to 3.3.2
8
+
1
9
  # 1.3.0 (2024-12-19)
2
10
 
3
11
  - Update Vendure to 3.1.1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Vendure E-boekhouden plugin
2
2
 
3
- ### [Official documentation here](https://pinelab-plugins.com/plugin/vendure-plugin-e-boekhouden)
3
+ ### [Official documentation here](https://plugins.pinelab.studio/plugin/vendure-plugin-e-boekhouden)
4
4
 
5
5
  Plugin for syncing orders to the Dutch accounting platform E-boekhouden.nl.
6
6
 
@@ -1,9 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createClientAsync = void 0;
3
+ exports.createClientAsync = createClientAsync;
4
4
  const soap_1 = require("soap");
5
5
  /** Create EBoekhoudenWsdlClient */
6
6
  function createClientAsync(...args) {
7
7
  return (0, soap_1.createClientAsync)(args[0], args[1], args[2]);
8
8
  }
9
- exports.createClientAsync = createClientAsync;
@@ -12,6 +12,7 @@ import {
12
12
  } from './generated/graphql';
13
13
 
14
14
  @Component({
15
+ standalone: false,
15
16
  selector: 'e-boekhouden-component',
16
17
  template: `
17
18
  <form class="form" [formGroup]="form">
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@pinelab/vendure-plugin-e-boekhouden",
3
- "version": "1.3.0",
3
+ "version": "1.4.1",
4
4
  "description": "Vendure plugin for integration with the e-boekhouden accounting platform",
5
5
  "author": "Martijn van de Brug <martijn@pinelab.studio>",
6
- "homepage": "https://pinelab-plugins.com/",
6
+ "homepage": "https://plugins.pinelab.studio/",
7
7
  "repository": "https://github.com/Pinelab-studio/pinelab-vendure-plugins",
8
8
  "license": "MIT",
9
9
  "private": false,
@@ -28,5 +28,5 @@
28
28
  "dependencies": {
29
29
  "soap": "^0.43.0"
30
30
  },
31
- "gitHead": "9c5bcd59af3ebeb3287084e495d7c5c359cf5d40"
31
+ "gitHead": "0564435781055813435b8c6a71baa2a6d27ddc08"
32
32
  }