@integry/sdk 3.7.3 → 3.7.5
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_INTERNAL.md +24 -0
- package/dist/esm/index.csm.d.ts +7 -2
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG_INTERNAL.md
CHANGED
|
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.7.4] - 2023-09-11
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Made deployment ID opetional in SDK config.
|
|
13
|
+
|
|
14
|
+
## [3.7.2] - 2023-09-11
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Refresh SDK when authorization is deleted using `removeAuthorization` funtion.
|
|
19
|
+
|
|
20
|
+
## [3.7.1] - 2023-09-11
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Added ‘Did-app-load’ when App loading is completed
|
|
25
|
+
|
|
26
|
+
## [3.6.9] - 2023-09-11
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- Added function called `removeAuthorization` to deleted end-user authorization.
|
|
31
|
+
|
|
8
32
|
## [3.6.7] - 2023-09-11
|
|
9
33
|
|
|
10
34
|
### Changed
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -315,7 +315,13 @@ interface TemplateField {
|
|
|
315
315
|
app_user: number;
|
|
316
316
|
id: number;
|
|
317
317
|
value: string | number;
|
|
318
|
-
is_changed: boolean
|
|
318
|
+
is_changed: boolean /**
|
|
319
|
+
* Render the template form we ship
|
|
320
|
+
* @param data
|
|
321
|
+
*/; /**
|
|
322
|
+
* Render the template form we ship
|
|
323
|
+
* @param data
|
|
324
|
+
*/
|
|
319
325
|
changed_dynamic_fields: string;
|
|
320
326
|
}[];
|
|
321
327
|
added_in_mapping?: boolean;
|
|
@@ -502,7 +508,6 @@ declare class IntegryJS {
|
|
|
502
508
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
503
509
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
504
510
|
verifyAuthConfig: () => Promise<{
|
|
505
|
-
/** REMOVED THIS TO SUPPRESS x-integry-layout dom attribute to avoid grid */
|
|
506
511
|
config_verified: boolean;
|
|
507
512
|
} | null>;
|
|
508
513
|
/**
|