@emilgroup/payment-sdk 1.8.1-beta.1 → 1.11.1-beta.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/README.md +2 -2
- package/base.ts +1 -0
- package/dist/base.d.ts +1 -0
- package/dist/base.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/payment-sdk@1.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.11.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.11.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
package/base.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface LoginClass {
|
|
|
40
40
|
export enum Environment {
|
|
41
41
|
Production = 'https://apiv2.emil.de',
|
|
42
42
|
Test = 'https://apiv2-test.emil.de',
|
|
43
|
+
Staging = 'https://apiv2-staging.emil.de',
|
|
43
44
|
Development = 'https://apiv2-dev.emil.de',
|
|
44
45
|
ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
|
|
45
46
|
}
|
package/dist/base.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export interface LoginClass {
|
|
|
29
29
|
export declare enum Environment {
|
|
30
30
|
Production = "https://apiv2.emil.de",
|
|
31
31
|
Test = "https://apiv2-test.emil.de",
|
|
32
|
+
Staging = "https://apiv2-staging.emil.de",
|
|
32
33
|
Development = "https://apiv2-dev.emil.de",
|
|
33
34
|
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
34
35
|
}
|
package/dist/base.js
CHANGED
|
@@ -99,6 +99,7 @@ var Environment;
|
|
|
99
99
|
(function (Environment) {
|
|
100
100
|
Environment["Production"] = "https://apiv2.emil.de";
|
|
101
101
|
Environment["Test"] = "https://apiv2-test.emil.de";
|
|
102
|
+
Environment["Staging"] = "https://apiv2-staging.emil.de";
|
|
102
103
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
103
104
|
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
104
105
|
})(Environment = exports.Environment || (exports.Environment = {}));
|