https://github.com/adobe/genstudio-extensibility-sdk
GenStudio Extensibility SDK
https://github.com/adobe/genstudio-extensibility-sdk
Last synced: 4 months ago
JSON representation
GenStudio Extensibility SDK
- Host: GitHub
- URL: https://github.com/adobe/genstudio-extensibility-sdk
- Owner: adobe
- License: apache-2.0
- Created: 2025-01-15T19:46:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-12T20:02:51.000Z (4 months ago)
- Last Synced: 2026-02-20T19:02:52.539Z (4 months ago)
- Language: TypeScript
- Homepage: http://opensource.adobe.com/genstudio-extensibility-sdk/
- Size: 422 KB
- Stars: 9
- Watchers: 11
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Copyright: COPYRIGHT
Awesome Lists containing this project
README
# genstudio-extensibility-sdk
GenStudio Extensibility SDK
**This repo is still WIP. Please use caution and reach out to GS team before using**
## API Documentation
Please refer to the [API Documentation](https://opensource.adobe.com/genstudio-extensibility-sdk/) for more information.
## Changelog
See versioned change logs in [docs/changelog](./docs/changelog/README.md).
## Usage
```
npm install @adobe/genstudio-extensibility-sdk
```
## Import
```ts
import {
Experience,
ExperienceField,
} from "@adobe/genstudio-extensibility-sdk";
const experienceFields = new Map([
[
"subject",
{
fieldRole: {
name: "subject",
},
fieldName: "subject",
fieldValue: "test field value",
readonly: false,
},
],
[
"section2_image",
{
fieldRole: {
name: "image",
},
fieldName: "section2_image",
fieldValue: {
test: "1",
},
readonly: true,
},
],
]);
const experience: Experience = {
id: "230853274642",
experienceFields: experienceFields,
};
```
## Contributing
Contributions are welcomed! Read the [Contributing Guide](./.github/CONTRIBUTING.md) for more information.
## Licensing
This project is licensed under the Apache V2 License. See [LICENSE](./LICENSE) for more information.