Skip to content

Commit 2b56f96

Browse files
author
Kaushik Shetty
authored
Merge pull request #65 from contentstack/CS-27915/event-based-notification
fix: update app config types to include setValidity method
2 parents 3538a6e + e0228fc commit 2b56f96

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/types.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export declare interface IAppConfigWidget {
2525
installation: {
2626
setInstallationData: (installationData: IInstallationData) => Promise<AnyObject>;
2727
getInstallationData: () => Promise<IInstallationData>;
28+
setValidity: (isValid: boolean, options?: ValidationOptions) => void;
2829
[key: string]: any;
2930
};
3031
stack: AnyObject;

dist/src/types.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export declare interface IAppConfigWidget {
3636
installationData: IInstallationData
3737
) => Promise<AnyObject>;
3838
getInstallationData: () => Promise<IInstallationData>;
39+
setValidity: (isValid: boolean, options?: ValidationOptions) => void;
3940
[key: string]: any;
4041
};
4142
stack: AnyObject;

0 commit comments

Comments
 (0)