@integry/sdk 3.0.16-beta.7 → 3.0.17-beta.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.
@@ -32,6 +32,15 @@ type IntegrySDKEvents = {
32
32
  stepId: number;
33
33
  stepType: "AUTH" | "CONFIGURATION" | "SECTION" | "CONFIRMATION";
34
34
  }) => void;
35
+ "did-add-authorization": (data: {
36
+ identity: string;
37
+ authorizationId: number;
38
+ flowId: number;
39
+ alreadyExists: boolean;
40
+ }) => void;
41
+ "did-remove-authorization": (data: {
42
+ authorizationId: number;
43
+ }) => void;
35
44
  };
36
45
  declare enum TemplateFormRenderModes {
37
46
  MODAL = "MODAL",
@@ -123,6 +132,7 @@ interface TemplateField {
123
132
  weight: number;
124
133
  is_required: boolean;
125
134
  child_fields: string | null;
135
+ placeholder: string | null;
126
136
  is_dynamic: boolean;
127
137
  data_src: string | null;
128
138
  data_src_endpoint: number | null;