@foisit/angular-wrapper 2.4.2 → 2.4.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/README.md +2 -3
- package/fesm2022/foisit-angular-wrapper.mjs +2069 -255
- package/fesm2022/foisit-angular-wrapper.mjs.map +7 -1
- package/lib/angular-wrapper/angular-wrapper.component.d.ts +5 -0
- package/lib/assistant.module.d.ts +9 -0
- package/lib/service/assistant.service.d.ts +44 -0
- package/package.json +17 -4
package/README.md
CHANGED
|
@@ -559,8 +559,6 @@ this.assistant.addCommand({
|
|
|
559
559
|
### Full Type Definitions
|
|
560
560
|
|
|
561
561
|
```typescript
|
|
562
|
-
import { AssistantCommand, InteractiveResponse } from '@foisit/core';
|
|
563
|
-
|
|
564
562
|
// Type-safe command definition
|
|
565
563
|
const myCommand: AssistantCommand = {
|
|
566
564
|
command: 'update settings',
|
|
@@ -691,10 +689,11 @@ describe('AssistantService', () => {
|
|
|
691
689
|
|
|
692
690
|
## Related Packages
|
|
693
691
|
|
|
694
|
-
- **[@foisit/core](../core)** - Core engine (auto-installed)
|
|
695
692
|
- **[@foisit/react-wrapper](../react-wrapper)** - React integration
|
|
696
693
|
- **[@foisit/vue-wrapper](../vue-wrapper)** - Vue integration
|
|
697
694
|
|
|
695
|
+
> **Note:** The Angular wrapper includes the core runtime in its distributed bundle, so consuming applications do not need to separately install `@foisit/core` to use `@foisit/angular-wrapper`. This differs from the React wrapper which is also self-contained.
|
|
696
|
+
|
|
698
697
|
---
|
|
699
698
|
|
|
700
699
|
## Troubleshooting
|