@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 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
 
@@ -0,0 +1,5 @@
1
+ export interface PaymentProvider {
2
+ type: 'shopify';
3
+ active: boolean;
4
+ label: string;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { PaymentProvider } from "./PaymentProvider";
2
+ export interface PaymentProviderShopify extends PaymentProvider {
3
+ type: 'shopify';
4
+ validationKey: string;
5
+ }
@@ -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,5 @@
1
+ export interface PaymentProvider {
2
+ type: 'shopify';
3
+ active: boolean;
4
+ label: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=PaymentProvider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PaymentProvider.js","sourceRoot":"","sources":["../../src/PaymentProvider.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { PaymentProvider } from "./PaymentProvider";
2
+ export interface PaymentProviderShopify extends PaymentProvider {
3
+ type: 'shopify';
4
+ validationKey: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=PaymentProviderShopify%20.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PaymentProviderShopify .js","sourceRoot":"","sources":["../../src/PaymentProviderShopify .ts"],"names":[],"mappings":""}
@@ -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.15.0",
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": "^5.9.2",
34
+ "mongodb": "^6.12.0",
35
35
  "standard-version": "^9.5.0"
36
36
  },
37
37
  "config": {
@@ -0,0 +1,10 @@
1
+
2
+ export interface PaymentProvider {
3
+
4
+ type: 'shopify'
5
+
6
+ active: boolean
7
+
8
+ label: string
9
+
10
+ }
@@ -0,0 +1,9 @@
1
+ import { PaymentProvider } from "./PaymentProvider";
2
+
3
+ export interface PaymentProviderShopify extends PaymentProvider {
4
+
5
+ type: 'shopify'
6
+
7
+ validationKey: string
8
+
9
+ }