@uniformdev/mesh-sdk-react 17.5.0 → 17.5.1-alpha.105

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/dist/index.d.ts CHANGED
@@ -446,6 +446,9 @@ declare type VariablesAction = {
446
446
  type: 'set';
447
447
  variable: DataVariableDefinitionWithName;
448
448
  openEditor?: boolean;
449
+ } | {
450
+ type: 'reorder';
451
+ result: Record<string, DataVariableDefinitionWithName>;
449
452
  };
450
453
  declare type VariablesContext = {
451
454
  dispatch: (event: VariablesAction) => void;
@@ -520,6 +523,7 @@ declare type RequestAction = {
520
523
  } | {
521
524
  type: 'setBody';
522
525
  body: string;
526
+ contentType: string;
523
527
  };
524
528
  declare type RequestContext = {
525
529
  dispatch: (event: RequestAction) => void;