@openbox/shared-types 0.1.74 → 0.1.76

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.
@@ -1,9 +1,12 @@
1
+ import { ServicesSellingTypeMany } from '../../SellingTypes';
1
2
  export interface ServicesMany {
2
3
  id: string;
4
+ index: number;
3
5
  name: string;
4
6
  description: string;
5
7
  active: boolean;
6
8
  cost: number;
9
+ sellingType: ServicesSellingTypeMany;
7
10
  }
8
11
  export interface ServicesGetManyResponse {
9
12
  data: ServicesMany[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.1.74",
3
+ "version": "0.1.76",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -1,9 +1,13 @@
1
+ import { ServicesSellingTypeMany } from '../../SellingTypes'
2
+
1
3
  export interface ServicesMany {
2
4
  id: string
5
+ index: number
3
6
  name: string
4
7
  description: string
5
8
  active: boolean
6
9
  cost: number
10
+ sellingType: ServicesSellingTypeMany
7
11
  }
8
12
 
9
13
  export interface ServicesGetManyResponse {