@lilaquadrat/interfaces 1.15.0 → 1.16.0
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 +7 -0
- package/lib/cjs/PaymentProvider.d.ts +5 -0
- package/lib/cjs/PaymentProviderShopify .d.ts +5 -0
- package/lib/cjs/index.d.ts +2 -0
- package/lib/esm/PaymentProvider.d.ts +5 -0
- package/lib/esm/PaymentProvider.js +2 -0
- package/lib/esm/PaymentProvider.js.map +1 -0
- package/lib/esm/PaymentProviderShopify .d.ts +5 -0
- package/lib/esm/PaymentProviderShopify .js +2 -0
- package/lib/esm/PaymentProviderShopify .js.map +1 -0
- package/lib/esm/index.d.ts +2 -0
- package/package.json +2 -2
- package/src/PaymentProvider.ts +10 -0
- package/src/PaymentProviderShopify .ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.16.0](https://github.com/lilaquadrat/interfaces/compare/v1.15.0...v1.16.0) (2025-01-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **paymentprovider:** added paymentProviders interfaced and updated mongodb ([0437ae9](https://github.com/lilaquadrat/interfaces/commit/0437ae97d4a0c737564219868d495e23fbfe5d1b))
|
|
11
|
+
|
|
5
12
|
## [1.15.0](https://github.com/lilaquadrat/interfaces/compare/v1.14.1...v1.15.0) (2025-01-03)
|
|
6
13
|
|
|
7
14
|
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -100,6 +100,8 @@ export * from './ObjectIdString';
|
|
|
100
100
|
export * from './Options';
|
|
101
101
|
export * from './Partner';
|
|
102
102
|
export * from './Payment';
|
|
103
|
+
export * from './PaymentProvider';
|
|
104
|
+
export * from './PaymentProviderShopify ';
|
|
103
105
|
export * from './PaymentWithCustomer';
|
|
104
106
|
export * from './Permissions';
|
|
105
107
|
export * from './PermissionsWithScope';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentProvider.js","sourceRoot":"","sources":["../../src/PaymentProvider.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentProviderShopify .js","sourceRoot":"","sources":["../../src/PaymentProviderShopify .ts"],"names":[],"mappings":""}
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -100,6 +100,8 @@ export * from './ObjectIdString';
|
|
|
100
100
|
export * from './Options';
|
|
101
101
|
export * from './Partner';
|
|
102
102
|
export * from './Payment';
|
|
103
|
+
export * from './PaymentProvider';
|
|
104
|
+
export * from './PaymentProviderShopify ';
|
|
103
105
|
export * from './PaymentWithCustomer';
|
|
104
106
|
export * from './Permissions';
|
|
105
107
|
export * from './PermissionsWithScope';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lilaquadrat/interfaces",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "interfaces in context of lilaquadrat STUDIO",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "m.schuebel@lila2.de",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@types/node": "^20.11.9",
|
|
32
32
|
"ajv": "^8.12.0",
|
|
33
33
|
"cz-conventional-changelog": "^3.3.0",
|
|
34
|
-
"mongodb": "^
|
|
34
|
+
"mongodb": "^6.12.0",
|
|
35
35
|
"standard-version": "^9.5.0"
|
|
36
36
|
},
|
|
37
37
|
"config": {
|