orderiom-api-package 0.4.14 → 0.4.15

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.
Files changed (3) hide show
  1. package/index.d.ts +2 -0
  2. package/index.js +1 -2
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3,6 +3,8 @@ export const deMsg: Object;
3
3
  export const install: any;
4
4
  export const modules: Object;
5
5
  export const $http: Object;
6
+ export const weekdays: string[];
7
+
6
8
 
7
9
  export interface AuthState<SignedIn extends boolean> {
8
10
  publicToken: string | null,
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import apiStore from './src';
2
2
  import enMsg from "./src/messages/en-api.json";
3
3
  import deMsg from "./src/messages/de-api.json";
4
- import {$http, deliveryCodeToName, weekdays} from './src/common';
4
+ import {$http, weekdays} from './src/common';
5
5
 
6
6
  function install(Vue, options = {}, config = {}) {
7
7
  if (!options.store) console.log('Please provide a store!!');
@@ -14,5 +14,4 @@ export default {
14
14
  modules: apiStore.modules,
15
15
  $http,
16
16
  weekdays,
17
- deliveryCodeToName
18
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orderiom-api-package",
3
- "version": "0.4.14",
3
+ "version": "0.4.15",
4
4
  "description": "This package will install all necessary API calls for every orderiom restaurant",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",