@overmap-ai/core 1.0.78-bump-page-sizes.0 → 1.0.78-bump-attachment-services-page-size.0
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/overmap-core.js +3055 -3043
- package/dist/overmap-core.umd.cjs +7 -7
- package/dist/sdk/constants.d.ts +4 -2
- package/dist/typings/models/assets.d.ts +3 -3
- package/dist/typings/models/base.d.ts +3 -0
- package/dist/typings/models/issues.d.ts +2 -2
- package/dist/typings/models/teams.d.ts +2 -2
- package/package.json +1 -1
package/dist/sdk/constants.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
/** Default pagination page size
|
|
2
|
-
export declare const DEFAULT_PAGINATION_PAGE_SIZE =
|
|
1
|
+
/** Default pagination page size */
|
|
2
|
+
export declare const DEFAULT_PAGINATION_PAGE_SIZE = 1000;
|
|
3
|
+
/** Attachment model pagination page size */
|
|
4
|
+
export declare const ATTACHMENT_PAGINATION_PAGE_SIZE = 200;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SerializedCondition } from '@overmap-ai/forms';
|
|
2
|
-
import { ColorModel, CreatedByModel, GeometryModel, IconModel, IdentifierModel, IdentifierValueModel, IndexedModel, SubmittedAtModel, TimestampedModel, UUIDModel } from './base';
|
|
2
|
+
import { AbbreviationModel, ColorModel, CreatedByModel, GeometryModel, IconModel, IdentifierModel, IdentifierValueModel, IndexedModel, SubmittedAtModel, TimestampedModel, UUIDModel } from './base';
|
|
3
3
|
import { FieldsAttachmentModel, FieldsModel, FieldValuesModel } from './fields';
|
|
4
4
|
export interface Asset extends UUIDModel, TimestampedModel, SubmittedAtModel, CreatedByModel, GeometryModel, IndexedModel {
|
|
5
5
|
asset_type: string;
|
|
@@ -7,13 +7,13 @@ export interface Asset extends UUIDModel, TimestampedModel, SubmittedAtModel, Cr
|
|
|
7
7
|
description?: string;
|
|
8
8
|
project: string;
|
|
9
9
|
}
|
|
10
|
-
export interface AssetType extends UUIDModel, TimestampedModel, SubmittedAtModel, CreatedByModel, IconModel, ColorModel {
|
|
10
|
+
export interface AssetType extends UUIDModel, TimestampedModel, SubmittedAtModel, CreatedByModel, IconModel, ColorModel, AbbreviationModel {
|
|
11
11
|
organization: string;
|
|
12
12
|
name?: string;
|
|
13
13
|
description?: string;
|
|
14
14
|
order: number;
|
|
15
15
|
}
|
|
16
|
-
export interface AssetProcedure extends UUIDModel, TimestampedModel, SubmittedAtModel, CreatedByModel, IconModel, ColorModel {
|
|
16
|
+
export interface AssetProcedure extends UUIDModel, TimestampedModel, SubmittedAtModel, CreatedByModel, IconModel, ColorModel, AbbreviationModel {
|
|
17
17
|
organization: string;
|
|
18
18
|
name?: string | null;
|
|
19
19
|
description?: string | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IssuePriority, IssueStatus, IssueUpdateChange } from '../../enums';
|
|
2
2
|
import { CSSColor } from '../colors';
|
|
3
|
-
import { CanvasMarkableModel, ColorModel, CreatedByModel, IconModel, IdentifierModel, IdentifierValueModel, IndexedModel, MarkableModel, SubmittedAtModel, TimestampedModel, UUIDModel } from './base';
|
|
3
|
+
import { AbbreviationModel, CanvasMarkableModel, ColorModel, CreatedByModel, IconModel, IdentifierModel, IdentifierValueModel, IndexedModel, MarkableModel, SubmittedAtModel, TimestampedModel, UUIDModel } from './base';
|
|
4
4
|
import { FieldsAttachmentModel, FieldsModel, FieldValuesModel } from './fields';
|
|
5
5
|
import { Organization } from './organizations';
|
|
6
6
|
import { User } from './users';
|
|
@@ -58,7 +58,7 @@ export interface IssueTypeFieldValues extends UUIDModel, SubmittedAtModel, Times
|
|
|
58
58
|
export interface IssueTypeFieldValuesAttachment extends UUIDModel, SubmittedAtModel, TimestampedModel, CreatedByModel, FieldsAttachmentModel {
|
|
59
59
|
field_values: string;
|
|
60
60
|
}
|
|
61
|
-
export interface IssueType extends UUIDModel, SubmittedAtModel, IconModel, ColorModel, TimestampedModel, CreatedByModel {
|
|
61
|
+
export interface IssueType extends UUIDModel, SubmittedAtModel, IconModel, ColorModel, TimestampedModel, CreatedByModel, AbbreviationModel {
|
|
62
62
|
name?: string;
|
|
63
63
|
description?: string;
|
|
64
64
|
organization: Organization["uuid"];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ColorModel, CreatedByModel, IconModel, SubmittedAtModel, TimestampedModel, UUIDModel } from './base';
|
|
1
|
+
import { AbbreviationModel, ColorModel, CreatedByModel, IconModel, SubmittedAtModel, TimestampedModel, UUIDModel } from './base';
|
|
2
2
|
import { Organization, OrganizationAccess } from './organizations';
|
|
3
3
|
import { User } from './users';
|
|
4
|
-
export interface Team extends UUIDModel, TimestampedModel, SubmittedAtModel, IconModel, ColorModel, CreatedByModel {
|
|
4
|
+
export interface Team extends UUIDModel, TimestampedModel, SubmittedAtModel, IconModel, ColorModel, CreatedByModel, AbbreviationModel {
|
|
5
5
|
name: string;
|
|
6
6
|
parent: Team["uuid"] | null;
|
|
7
7
|
organization: Organization["uuid"];
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.78-bump-page-
|
|
6
|
+
"version": "1.0.78-bump-attachment-services-page-size.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|