@momo-cloud/gami-sdk 0.0.36 → 0.0.37

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.
@@ -106,12 +106,13 @@ declare const GamiSDK: {
106
106
  checkPermission: (permission: string) => Promise<any>;
107
107
  getContacts: () => Promise<any>;
108
108
  formatUrl: (origin: string, args?: any[]) => string;
109
- request: ({ path, method, subDomain, params, body, extraHeader, useCloudMsg, mockData }: {
109
+ request: ({ path, method, subDomain, params, body, formData, extraHeader, useCloudMsg, mockData }: {
110
110
  path: string;
111
111
  method: string;
112
112
  subDomain?: string;
113
113
  params?: any[];
114
114
  body?: any;
115
+ formData?: any;
115
116
  extraHeader?: any;
116
117
  useCloudMsg?: boolean;
117
118
  mockData?: any;