rotacloud 1.0.51 → 1.0.52
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/dist/cjs/interfaces/terminal.interface.d.ts +1 -1
- package/dist/cjs/models/terminal.model.d.ts +2 -2
- package/dist/cjs/version.js +1 -1
- package/dist/mjs/interfaces/terminal.interface.d.ts +1 -1
- package/dist/mjs/models/terminal.model.d.ts +2 -2
- package/dist/mjs/version.js +1 -1
- package/package.json +1 -1
- package/src/interfaces/terminal.interface.ts +1 -1
- package/src/models/terminal.model.ts +2 -2
- package/src/version.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApiTerminalLocation, ApiTerminal } from '../interfaces/index.js';
|
|
2
2
|
export declare class Terminal {
|
|
3
3
|
id: number;
|
|
4
4
|
deleted: boolean;
|
|
@@ -8,7 +8,7 @@ export declare class Terminal {
|
|
|
8
8
|
device: string | null;
|
|
9
9
|
version: string | null;
|
|
10
10
|
ip: string | null;
|
|
11
|
-
location:
|
|
11
|
+
location: ApiTerminalLocation | null;
|
|
12
12
|
timezone: number;
|
|
13
13
|
require_photo: boolean;
|
|
14
14
|
require_photo_breaks: boolean;
|
package/dist/cjs/version.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApiTerminalLocation, ApiTerminal } from '../interfaces/index.js';
|
|
2
2
|
export declare class Terminal {
|
|
3
3
|
id: number;
|
|
4
4
|
deleted: boolean;
|
|
@@ -8,7 +8,7 @@ export declare class Terminal {
|
|
|
8
8
|
device: string | null;
|
|
9
9
|
version: string | null;
|
|
10
10
|
ip: string | null;
|
|
11
|
-
location:
|
|
11
|
+
location: ApiTerminalLocation | null;
|
|
12
12
|
timezone: number;
|
|
13
13
|
require_photo: boolean;
|
|
14
14
|
require_photo_breaks: boolean;
|
package/dist/mjs/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const Version = { version: '1.0.
|
|
1
|
+
export const Version = { version: '1.0.52' };
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApiTerminalLocation, ApiTerminal } from '../interfaces/index.js';
|
|
2
2
|
|
|
3
3
|
export class Terminal {
|
|
4
4
|
public id: number;
|
|
@@ -9,7 +9,7 @@ export class Terminal {
|
|
|
9
9
|
public device: string | null;
|
|
10
10
|
public version: string | null;
|
|
11
11
|
public ip: string | null;
|
|
12
|
-
public location:
|
|
12
|
+
public location: ApiTerminalLocation | null;
|
|
13
13
|
public timezone: number;
|
|
14
14
|
public require_photo: boolean;
|
|
15
15
|
public require_photo_breaks: boolean;
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const Version = { version: '1.0.
|
|
1
|
+
export const Version = { version: '1.0.52' };
|