Skip to content

Commit 2fe95f4

Browse files
author
Kaushik Shetty
authored
Merge pull request #66 from contentstack/develop
v1.4.1
2 parents 655496c + 3d1ddde commit 2fe95f4

File tree

8 files changed

+9
-7
lines changed

8 files changed

+9
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ npm install @contentstack/app-sdk
1313
Alternatively, you can use the following command within the script tag to install the App SDK:
1414

1515
```html
16-
<script src="https://unpkg.com/@contentstack/app-sdk@^1.4.0/dist/index.js"></script>
16+
<script src="https://unpkg.com/@contentstack/app-sdk@^1.4.1/dist/index.js"></script>
1717
```
1818

1919
### Initializing the App SDK

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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@contentstack/app-sdk",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"types": "dist/src/index.d.ts",
55
"description": "This SDK helps connect to the development server of the Contentstack and sync the data.",
66
"main": "dist/index.js",

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)