We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada43f7 commit f77c974Copy full SHA for f77c974
docs/sdks/customize/data-model/additionalproperties.mdx
@@ -71,25 +71,3 @@ components:
71
additionalProperties:
72
type: string
73
```
74
-
75
-### Generated type structure
76
77
-```typescript
78
-export type StringOnlyObject = {
79
- title: string;
80
- description: string;
81
- additionalProperties: Record<string, string>; // Internal field - do not interact directly
82
-};
83
-```
84
85
-### Usage
86
87
88
-await sdk.items.create({
89
- title: "My Item",
90
- description: "A typed item",
91
- category: "electronics",
92
- brand: "Acme",
93
- sku: "ABC-123"
94
-});
95
0 commit comments