@coast/core-api-types 1.2.284 → 1.2.285

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,6 @@
1
+ import { OffsetPaginatedRequest } from '../pagination/OffsetPaginatedRequest';
2
+ import { ListBusinessesOrder } from './ListBusinessesOrder';
3
+ export interface ListBusinesses extends OffsetPaginatedRequest {
4
+ name?: string;
5
+ orderBys?: ListBusinessesOrder[];
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListBusinesses.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListBusinesses.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinesses.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { ListBusinessesOrderBy } from '@coast/core-types/business/ListBusinessesOrderBy';
2
+ import { SortDirection } from '@coast/core-types/common/SortDirection';
3
+ export interface ListBusinessesOrder {
4
+ orderBy: ListBusinessesOrderBy;
5
+ direction: SortDirection;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListBusinessesOrder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListBusinessesOrder.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinessesOrder.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { OffsetPaginatedResult } from '../pagination/OffsetPaginatedResult';
2
+ import { Business } from './Business';
3
+ export interface ListBusinessesResult extends OffsetPaginatedResult {
4
+ businesses: Business[];
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListBusinessesResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListBusinessesResult.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinessesResult.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.284",
3
+ "version": "1.2.285",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {
@@ -23,7 +23,7 @@
23
23
  "author": "Coast Engineering",
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@coast/core-types": "0.0.29",
26
+ "@coast/core-types": "0.0.30",
27
27
  "@coast/core-utils": "0.0.12",
28
28
  "@coast/schemas": "^4.0.0",
29
29
  "@coast/service-common": "^2.0.69",