@fluentcommerce/fc-connect-sdk 0.1.52 → 0.1.53
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.md +514 -506
- package/README.md +13 -3
- package/dist/cjs/types/index.d.ts +1 -1
- package/dist/esm/types/index.d.ts +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/types/index.d.ts +1 -1
- package/docs/02-CORE-GUIDES/api-reference/event-api-input-output-reference.md +9 -0
- package/package.json +1 -1
|
@@ -118,6 +118,15 @@ interface FluentEventQueryParams {
|
|
|
118
118
|
}
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
+
> **Note:** Context parameters use dot-notation (`context.rootEntityType`). In JavaScript/TypeScript, keys with dots **must be quoted**:
|
|
122
|
+
> ```typescript
|
|
123
|
+
> // ✅ Correct - quotes required for dot-notation keys
|
|
124
|
+
> { 'context.rootEntityType': 'ORDER', eventType: 'ORCHESTRATION_AUDIT' }
|
|
125
|
+
>
|
|
126
|
+
> // ❌ Wrong - will cause syntax error
|
|
127
|
+
> { context.rootEntityType: 'ORDER' }
|
|
128
|
+
> ```
|
|
129
|
+
|
|
121
130
|
### Output: FluentEventLogResponse (SUCCESS)
|
|
122
131
|
|
|
123
132
|
```typescript
|