@periskope/types 0.6.115 → 0.6.116

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/types.d.ts CHANGED
@@ -189,7 +189,7 @@ export type SendMessageContent = {
189
189
  media?: MediaType;
190
190
  contact_ids?: string[];
191
191
  location?: {
192
- latitute: string;
192
+ latitude: string;
193
193
  longitude: string;
194
194
  options?: {
195
195
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.115",
3
+ "version": "0.6.116",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -276,7 +276,7 @@ export type SendMessageContent = {
276
276
  media?: MediaType;
277
277
  contact_ids?: string[];
278
278
  location?: {
279
- latitute: string;
279
+ latitude: string;
280
280
  longitude: string;
281
281
  options?: { name?: string; address?: string; url?: string };
282
282
  };