@momo-cloud/gami-sdk 0.0.37 → 0.0.39

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.
@@ -117,13 +117,15 @@ declare const GamiSDK: {
117
117
  useCloudMsg?: boolean;
118
118
  mockData?: any;
119
119
  }) => Promise<any>;
120
- fetch: ({ path, method, subDomain, params, body, extraHeader }: {
120
+ fetch: ({ path, method, subDomain, params, body, formData, extraHeader, mockData }: {
121
121
  path: string;
122
122
  method: string;
123
123
  params?: any[];
124
124
  subDomain?: string;
125
125
  body?: any;
126
+ formData?: any;
126
127
  extraHeader?: any;
128
+ mockData?: any;
127
129
  }) => Promise<any>;
128
130
  fetchBinary: ({ url }: {
129
131
  url: string;