@bloonio/lokotro-pay 1.5.0 → 1.5.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/README.md CHANGED
@@ -576,7 +576,7 @@ The component handles these payment states:
576
576
  ```typescript
577
577
  const devConfig: LokotroPayConfig = {
578
578
  token: 'your_dev_token',
579
- isProduction: false // Uses dev.apps.api.bloonio.com
579
+ isProduction: false // Uses dev-apps-api.bloonio.com
580
580
  };
581
581
  ```
582
582
 
@@ -585,7 +585,7 @@ const devConfig: LokotroPayConfig = {
585
585
  ```typescript
586
586
  const prodConfig: LokotroPayConfig = {
587
587
  token: 'your_prod_token',
588
- isProduction: true // Uses apps.api.bloonio.com
588
+ isProduction: true // Uses apps-api.bloonio.com
589
589
  };
590
590
  ```
591
591
 
@@ -18,7 +18,7 @@ import { HttpHeaders, HttpErrorResponse } from '@angular/common/http';
18
18
  const LOKOTRO_DEV_ENV = {
19
19
  environment: 'development',
20
20
  // apiBaseUrl: 'http://192.168.30.123:6495',
21
- apiBaseUrl: 'https://app.api.gtwy.lokotro.com',
21
+ apiBaseUrl: 'https://app-api-gtwy.lokotro.com',
22
22
  paymentApiVersion: 'v1',
23
23
  debugMode: true,
24
24
  logLevel: 'debug',
@@ -29,7 +29,7 @@ const LOKOTRO_DEV_ENV = {
29
29
  */
30
30
  const LOKOTRO_PROD_ENV = {
31
31
  environment: 'production',
32
- apiBaseUrl: 'https://app.api.gtwy.lokotro.com',
32
+ apiBaseUrl: 'https://app-api-gtwy.lokotro.com',
33
33
  paymentApiVersion: 'v1',
34
34
  debugMode: false,
35
35
  logLevel: 'error',