bruce-models 6.4.0 → 6.4.2

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,6 +1,5 @@
1
1
  import { Api } from "../api/api";
2
2
  import { BruceApi } from "../api/bruce-api";
3
- import { UTC } from "../common/utc";
4
3
  import { GlobalApi } from "../api/global-api";
5
4
  import { Transform } from "../common/transform";
6
5
  import { Carto } from "../common/carto";
@@ -30,8 +29,8 @@ export declare namespace Tileset {
30
29
  rootFileName?: string;
31
30
  settings?: Settings;
32
31
  fileIds?: string[];
33
- creationTime?: UTC.TUTC;
34
- modificationTime?: UTC.TUTC;
32
+ creationTime?: string;
33
+ modificationTime?: string;
35
34
  generateVersion?: number;
36
35
  isDeleteDisabled?: boolean;
37
36
  loadUrl?: string;
@@ -254,7 +253,7 @@ export declare namespace Tileset {
254
253
  "Tileset.ID"?: string;
255
254
  "PublishedBy.ClientAccount.ID"?: string;
256
255
  "PublishedBy.User.ID"?: string;
257
- "Published"?: UTC.TUTC;
256
+ "Published"?: string;
258
257
  IsPublic: boolean;
259
258
  "EnabledFor.ClientAccount.ID"?: string[];
260
259
  }
@@ -1,6 +1,5 @@
1
1
  import { Api } from "../api/api";
2
2
  import { GuardianApi } from "../api/guardian-api";
3
- import { UTC } from "../common/utc";
4
3
  /**
5
4
  * Represents tracked content cross accounts.
6
5
  * Used so we can determine what old API requests can be removed, and what accounts are causing most server load.
@@ -15,7 +14,7 @@ export declare namespace Tracking {
15
14
  "App": string | "BRUCE_API";
16
15
  "Type": string;
17
16
  "Account.ID"?: string;
18
- "Created": UTC.TUTC;
17
+ "Created": string;
19
18
  "Amount": number;
20
19
  }
21
20
  /**
@@ -1,6 +1,5 @@
1
1
  import { Api } from "../api/api";
2
2
  import { GuardianApi } from "../api/guardian-api";
3
- import { UTC } from "../common/utc";
4
3
  import { Permission } from "./permission";
5
4
  import { User } from "./user";
6
5
  import { UserGroup } from "./user-group";
@@ -19,7 +18,7 @@ export declare namespace Session {
19
18
  "ClientAccount.ID": string;
20
19
  ID: string;
21
20
  IP: string;
22
- LastAccess: UTC.TUTC;
21
+ LastAccess: string;
23
22
  User: User.IUser;
24
23
  }
25
24
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bruce-models",
3
- "version": "6.4.0",
3
+ "version": "6.4.2",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/bruce-models.umd.js",