adamo-types 2.1.34-sit → 2.1.35-sit

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.
@@ -1,15 +1,12 @@
1
1
  import { ShoppingCartItemAction } from './bp.constants';
2
2
  import { ProductOrderItemActionType, ProductOrderStateType } from '../product';
3
3
  import { BpProductOrderItemActionType, BpProductOrderStateType } from '../bearingpoint';
4
+ import { RegexpWithCode } from '../../common/common.entity';
4
5
  export declare const WITHOUT_CONTRACT_KEY = "WITHOUT_CONTRACT";
5
6
  export declare enum BpViolations {
6
7
  '{javax.validation.constraints.NotNull.message}' = "isNotNull"
7
8
  }
8
- export interface BpMessageRegexp {
9
- regexp: RegExp;
10
- i18n: string;
11
- }
12
- export declare const BpMessageToI18n: BpMessageRegexp[];
9
+ export declare const BpMessageToI18n: RegexpWithCode[];
13
10
  export declare enum BssChargeType {
14
11
  INSTALMENT_CHARGE = "INSTALMENT_CHARGE",
15
12
  ONCE_ONLY_CHARGE = "ONCE_ONLY_CHARGE",
@@ -1,5 +1,9 @@
1
1
  import { PaginateSortType } from './constants';
2
2
  import { CustomerAccountAdditionalContactContactMediumType } from '../sys03/customer';
3
+ export interface RegexpWithCode {
4
+ regexp: RegExp;
5
+ i18n: string;
6
+ }
3
7
  export interface AuthTokenData {
4
8
  access_token: string;
5
9
  expires_in: number;
@@ -1,2 +1,3 @@
1
1
  export declare const E_IOSMVNA = "E_IOSMVNA";
2
2
  export declare const E_IOSMVNA_CREATE_SIM = "E_IOSMVNA_CREATE_SIM";
3
+ export declare const E_IOSMVNA_CALL_FORWARDING_PHONE_NUMBER = "E_IOSMVNA_CALL_FORWARDING_PHONE_NUMBER";
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.E_IOSMVNA_CREATE_SIM = exports.E_IOSMVNA = void 0;
3
+ exports.E_IOSMVNA_CALL_FORWARDING_PHONE_NUMBER = exports.E_IOSMVNA_CREATE_SIM = exports.E_IOSMVNA = void 0;
4
4
  exports.E_IOSMVNA = 'E_IOSMVNA';
5
5
  exports.E_IOSMVNA_CREATE_SIM = 'E_IOSMVNA_CREATE_SIM';
6
+ exports.E_IOSMVNA_CALL_FORWARDING_PHONE_NUMBER = 'E_IOSMVNA_CALL_FORWARDING_PHONE_NUMBER';