diff --git a/.changeset/great-olives-listen.md b/.changeset/great-olives-listen.md new file mode 100644 index 00000000..2046aa88 --- /dev/null +++ b/.changeset/great-olives-listen.md @@ -0,0 +1,16 @@ +--- +"@dojoengine/sdk": patch +"template-vite-ts": patch +"@dojoengine/core": patch +"@dojoengine/create-burner": patch +"@dojoengine/create-dojo": patch +"@dojoengine/predeployed-connector": patch +"@dojoengine/react": patch +"@dojoengine/state": patch +"@dojoengine/torii-client": patch +"@dojoengine/torii-wasm": patch +"@dojoengine/utils": patch +"@dojoengine/utils-wasm": patch +--- + +feat: remove field order and bump torii-client diff --git a/packages/sdk/src/types.ts b/packages/sdk/src/types.ts index 7f856743..2ee7b1ad 100644 --- a/packages/sdk/src/types.ts +++ b/packages/sdk/src/types.ts @@ -61,11 +61,6 @@ export type SchemaType = { * For example, 'Player', 'Item', 'Quest', etc. */ [model: string]: { - /** - * fieldOrder: An array of strings representing the order of fields in the model. - * This is crucial for maintaining consistent field ordering across your application. - */ - fieldOrder: string[]; /** * Dynamic fields of the model. * These can be of any type, typically representing the properties of your model.