@chopkola/common 1.0.172 → 1.0.174

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.
@@ -0,0 +1,22 @@
1
+ export interface GoogleDistanceMatrixResponse {
2
+ status: string;
3
+ origin_addresses: string[];
4
+ destination_addresses: string[];
5
+ rows: {
6
+ elements: {
7
+ status: string;
8
+ duration: {
9
+ text: string;
10
+ value: number;
11
+ };
12
+ distance: {
13
+ text: string;
14
+ value: number;
15
+ };
16
+ }[];
17
+ }[];
18
+ }
19
+ export interface DistanceMatrixResult {
20
+ distance: string;
21
+ duration: string;
22
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -7,3 +7,4 @@ export * from './administrator/administrator.category.management.type';
7
7
  export * from './vendor/vendor.user.summary.statistics.resource.data';
8
8
  export * from './vendor/active.business';
9
9
  export * from './vendor/active.business.summary.statistics.and.page.resource';
10
+ export * from './google';
@@ -23,3 +23,4 @@ __exportStar(require("./administrator/administrator.category.management.type"),
23
23
  __exportStar(require("./vendor/vendor.user.summary.statistics.resource.data"), exports);
24
24
  __exportStar(require("./vendor/active.business"), exports);
25
25
  __exportStar(require("./vendor/active.business.summary.statistics.and.page.resource"), exports);
26
+ __exportStar(require("./google"), exports);
@@ -143,3 +143,6 @@ export interface VendorCreateOrEditProductPageData {
143
143
  export interface ProductDetailsData {
144
144
  product: ProductAggregate;
145
145
  }
146
+ export type WebApplicationProductsResourceData = {
147
+ products: ProductAggregate[];
148
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chopkola/common",
3
- "version": "1.0.172",
3
+ "version": "1.0.174",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "akrosoft technology ltd",