@captureid/datatypes 1.0.27 → 1.0.29

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.
@@ -0,0 +1,26 @@
1
+ export declare const HEADER_TOKEN = "x-token";
2
+ export declare const HEADER_SECRET = "x-secret";
3
+ export declare const HEADER_CONFIG_TYPE = "x-configtype";
4
+ export declare const HEADER_PRINTERNAME = "x-printer";
5
+ export declare const HEADER_PRINTERNAMES = "x-printers";
6
+ export declare const HEADER_PROCESS_ID = "x-process-id";
7
+ export declare const HEADER_IPADDRESS = "x-ipaddress";
8
+ export declare const HEADER_LABEL_ID = "x-label-id";
9
+ export declare const HEADER_CORRELATION_ID = "x-correlation-id";
10
+ export declare const HEADER_REQUEST_ID = "x-requestid";
11
+ export declare const HEADER_APP_ID = "x-appid";
12
+ export declare const HEADER_REFRESH_TOKEN = "x-refreshtoken";
13
+ export declare const HEADER_RESET_TOKEN = "x-resettoken";
14
+ export declare const HEADER_INTERNAL = "x-internal";
15
+ export declare const HEADER_AUTHORIZATION = "Authorization";
16
+ export declare const HEADER_ACCEPT_LANGUAGE = "Accept-Language";
17
+ export declare const HEADER_PAGE = "x-page";
18
+ export declare const HEADER_COUNT = "x-count";
19
+ export declare const HEADER_CONTENT_TYPE = "Content-Type";
20
+ export declare const PARAM_USER_ID = "x-userid";
21
+ export declare const PARAM_COMPANY_ID = "x-companyid";
22
+ export declare const PARAM_BOX_ID = "x-boxid";
23
+ export declare const PARAM_STOCK_ID = "x-stockid";
24
+ export declare const PARAM_TERMINAL_ID = "x-terminalid";
25
+ export declare const PARAM_CART_ID = "x-cartid";
26
+ export declare const PARAM_CONTROLLER_ID = "x-controllerid";
@@ -7,10 +7,11 @@ export interface PaymentTerminal {
7
7
  wifiAddress: string;
8
8
  btAddress: string;
9
9
  ipAddress: string;
10
+ port: string;
10
11
  manufacturer: Manufacturer;
11
12
  }
12
13
  export declare class PaymentTerminal implements PaymentTerminal {
13
- constructor(id?: string, name?: string, terminalID?: string, wifiAddress?: string, btAddress?: string, ipAddress?: string, manufacturer?: Manufacturer);
14
+ constructor(id?: string, name?: string, terminalID?: string, wifiAddress?: string, btAddress?: string, ipAddress?: string, port?: string, manufacturer?: Manufacturer);
14
15
  }
15
16
  export interface PaymentTerminalObject {
16
17
  data: PaymentTerminal[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"
package/public-api.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from './lib/captureid-datatypes.service';
2
2
  export * from './lib/enums';
3
+ export * from './lib/constants';
3
4
  export * from './lib/logging';
4
5
  export * from './lib/model/data-dto';
5
6
  export * from './lib/model/data-object';