@trackunit/iris-app-api 1.14.52 → 1.14.54

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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 1.14.54 (2026-03-04)
2
+
3
+ This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
4
+
5
+ ## 1.14.53 (2026-03-04)
6
+
7
+ This was a version bump only for iris-app-api to align it with other projects, there were no code changes.
8
+
1
9
  ## 1.14.52 (2026-03-04)
2
10
 
3
11
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-api",
3
- "version": "1.14.52",
3
+ "version": "1.14.54",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -1,5 +1,5 @@
1
1
  import { TranslationKey, TranslationLanguageKeys } from "./irisAppExtensionManifest";
2
- export declare type CustomFieldDefinitionType = "STRING" | "STRING_LIST" | "NUMBER" | "DATE" | "BOOLEAN" | "DROPDOWN" | "EMAIL" | "PHONE_NUMBER" | "WEB_ADDRESS" | "JSON" | "MONETARY";
2
+ export declare type CustomFieldDefinitionType = "STRING" | "STRING_LIST" | "NUMBER" | "DATE" | "BOOLEAN" | "DROPDOWN" | "EMAIL" | "PHONE_NUMBER" | "WEB_ADDRESS" | "JSON" | "MONETARY" | "FILE";
3
3
  export declare type EntityType = "ASSET" | "ACCOUNT" | "SITE" | "GROUP" | "CUSTOMER";
4
4
  export declare const ScopeType: {
5
5
  /**
@@ -267,3 +267,6 @@ export interface MonetaryFieldDefinition extends AbstractCustomFieldDefinition {
267
267
  */
268
268
  currency: string;
269
269
  }
270
+ export interface FileFieldDefinition extends AbstractCustomFieldDefinition {
271
+ type: "FILE";
272
+ }
@@ -10,7 +10,7 @@ import { ReportExtensionManifest } from "./extensions/reportExtensionManifest";
10
10
  import { ServerlessFunctionExtensionManifest } from "./extensions/serverlessFunctionExtensionManifest";
11
11
  import { SiteHomeExtensionManifest } from "./extensions/siteHomeExtensionManifest";
12
12
  import { WidgetExtensionManifest } from "./extensions/widgetExtensionManifest";
13
- import { BooleanFieldDefinition, DateFieldDefinition, DecimalNumberFieldDefinition, DropDownFieldDefinition, EmailFieldDefinition, IntegerNumberFieldDefinition, JsonFieldDefinition, MonetaryFieldDefinition, PhoneNumberFieldDefinition, StringFieldDefinition, StringListFieldDefinition, WebAddressFieldDefinition } from "./irisAppCustomFields";
13
+ import { BooleanFieldDefinition, DateFieldDefinition, DecimalNumberFieldDefinition, DropDownFieldDefinition, EmailFieldDefinition, FileFieldDefinition, IntegerNumberFieldDefinition, JsonFieldDefinition, MonetaryFieldDefinition, PhoneNumberFieldDefinition, StringFieldDefinition, StringListFieldDefinition, WebAddressFieldDefinition } from "./irisAppCustomFields";
14
14
  import { InstallationConfig, InstallationConfigAllowOrganizationIds, InstallationConfigExcludeAccountIds, InstallationConfigLegacy } from "./irisAppInstallationConfig";
15
15
  import { Marketplace, MarketplaceOneZero } from "./irisAppMarketplace";
16
16
  import { PermissionsPolicy } from "./permissionsPolicy";
@@ -85,7 +85,7 @@ export type RequiredOrOptionalScope = {
85
85
  optional?: boolean;
86
86
  };
87
87
  export declare type IrisAppExtension = AssetHomeExtensionManifest | IrisAppSettingsExtensionManifest | AdminExtensionManifest | FleetExtensionManifest | SiteHomeExtensionManifest | WidgetExtensionManifest | ReportExtensionManifest | CustomerHomeExtensionManifest | AssetEventsActionsExtensionManifest | LifecycleExtensionManifest | ServerlessFunctionExtensionManifest;
88
- export declare type CustomFieldDefinition = BooleanFieldDefinition | DecimalNumberFieldDefinition | IntegerNumberFieldDefinition | DateFieldDefinition | DropDownFieldDefinition | StringFieldDefinition | StringListFieldDefinition | EmailFieldDefinition | PhoneNumberFieldDefinition | WebAddressFieldDefinition | JsonFieldDefinition | MonetaryFieldDefinition;
88
+ export declare type CustomFieldDefinition = BooleanFieldDefinition | DecimalNumberFieldDefinition | IntegerNumberFieldDefinition | DateFieldDefinition | DropDownFieldDefinition | StringFieldDefinition | StringListFieldDefinition | EmailFieldDefinition | PhoneNumberFieldDefinition | WebAddressFieldDefinition | JsonFieldDefinition | MonetaryFieldDefinition | FileFieldDefinition;
89
89
  /**
90
90
  * @deprecated
91
91
  */