@trackunit/iris-app-runtime-core-api 0.3.127 → 0.3.129

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core-api",
3
- "version": "0.3.127",
3
+ "version": "0.3.129",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -143,7 +143,7 @@ export type DateFieldValue = {
143
143
  };
144
144
  export type DropDownFieldValue = {
145
145
  type: "DROPDOWN";
146
- stringArrayValue?: string[];
146
+ stringArrayValue?: string[] | null;
147
147
  };
148
148
  export type EmailFieldValue = {
149
149
  type: "EMAIL";
@@ -1,6 +1,5 @@
1
1
  import { ConfirmationDialogContextValue, FilterBarValues, IAnalyticsContextAsync, IAssetSortingContext, ICurrentUserContext, ICurrentUserPreferenceContext, IEnvironmentContext, INavigationContext, IOemBrandingContext, ITokenContext, IUserSubscriptionContext, SetDeepLinkPromise } from "@trackunit/react-core-contexts-api";
2
2
  import { AssetInfo } from "./AssetRuntime";
3
- import { CurrentUserRole } from "./CurrentUserRuntime";
4
3
  import { EntityIdentity, ValueAndDefinition, ValueAndDefinitionKey } from "./CustomFieldRuntime";
5
4
  import { EventInfo } from "./EventRuntime";
6
5
  import { BodyType, HttpResponse, RequestParams } from "./RestRuntime";
@@ -18,7 +17,6 @@ export interface HostConnectorApi extends IAnalyticsContextAsync<Record<string,
18
17
  getEnvironmentContext(): Promise<IEnvironmentContext>;
19
18
  getTokenContext(): Promise<ITokenContext>;
20
19
  getCurrentUserContext(): Promise<ICurrentUserContext>;
21
- getCurrentUserRole(userIds: string | string[]): Promise<CurrentUserRole | undefined>;
22
20
  getUserSubscriptionContext(): Promise<IUserSubscriptionContext>;
23
21
  /**
24
22
  * use this to keep the deep link in sync with the host page.