@integry/sdk 3.9.1 → 3.10.0-beta.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.
@@ -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",
@@ -363,6 +367,7 @@ interface InitConfig {
363
367
  skipAccountConnectionOnLoad?: boolean;
364
368
  deploymentIdFromConfig?: number;
365
369
  testMultipurpose?: boolean;
370
+ viewStyle?: string;
366
371
  }
367
372
  interface MarketplaceConfig {
368
373
  containerId: string;
@@ -432,6 +437,7 @@ declare class IntegryJS {
432
437
  // allow customers to use template tagging
433
438
  static html: (strings: TemplateStringsArray, ...values: any[]) => import("preact").VNode<{}>;
434
439
  static RenderModes: typeof TemplateFormRenderModes;
440
+ static ViewStyles: typeof ViewStyles;
435
441
  static MarketplaceRenderModes: typeof MarketplaceRenderModes;
436
442
  static Helpers: {
437
443
  getAuthHash: (key: string, message: string) => Promise<string>;