@integry/sdk 3.9.1 → 3.9.3

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.
@@ -113,6 +113,10 @@ type IntegrySDKEvents = {
113
113
  "did-click-close-button": EventCallback<"did-click-close-button">;
114
114
  "did-app-load": EventCallback<"did-app-load">;
115
115
  };
116
+ declare enum ViewStyles {
117
+ COMPACT = "COMPACT",
118
+ COMFORTABLE = "COMFORTABLE"
119
+ }
116
120
  declare enum TemplateFormRenderModes {
117
121
  MODAL = "MODAL",
118
122
  INLINE = "INLINE",
@@ -277,6 +281,7 @@ interface TemplateField {
277
281
  description: string;
278
282
  summary: string | null;
279
283
  activity_field: {
284
+ is_editable?: boolean;
280
285
  id: number;
281
286
  machine_name: string;
282
287
  type: string;
@@ -363,6 +368,7 @@ interface InitConfig {
363
368
  skipAccountConnectionOnLoad?: boolean;
364
369
  deploymentIdFromConfig?: number;
365
370
  testMultipurpose?: boolean;
371
+ viewStyle?: string;
366
372
  }
367
373
  interface MarketplaceConfig {
368
374
  containerId: string;
@@ -432,6 +438,7 @@ declare class IntegryJS {
432
438
  // allow customers to use template tagging
433
439
  static html: (strings: TemplateStringsArray, ...values: any[]) => import("preact").VNode<{}>;
434
440
  static RenderModes: typeof TemplateFormRenderModes;
441
+ static ViewStyles: typeof ViewStyles;
435
442
  static MarketplaceRenderModes: typeof MarketplaceRenderModes;
436
443
  static Helpers: {
437
444
  getAuthHash: (key: string, message: string) => Promise<string>;