@coast/core-api-types 1.2.254 → 1.2.255

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,10 +1,12 @@
1
1
  import { Audit } from '../application/Audit';
2
+ import { BusinessId } from '../business/BusinessId';
2
3
  import { WorkspaceId } from '../channel/WorkspaceId';
3
4
  import { WorkspaceSectionId } from '../workspace-section/WorkspaceSectionId';
4
5
  import { AppListingId } from './AppListingId';
5
6
  export interface AppListing extends Audit {
6
7
  id: AppListingId;
7
8
  sectionId?: WorkspaceSectionId;
9
+ businessId: BusinessId;
8
10
  workspaceId?: WorkspaceId;
9
11
  enabled: boolean;
10
12
  name: string;
@@ -1,3 +1,3 @@
1
1
  import { AppListing } from './AppListing';
2
- export interface CreateAppListing extends Omit<AppListing, 'id' | 'createdAt' | 'updatedAt'> {
2
+ export interface CreateAppListing extends Omit<AppListing, 'id' | 'createdAt' | 'updatedAt' | 'businessId'> {
3
3
  }
@@ -0,0 +1,7 @@
1
+ import { WorkspaceId } from '../channel/WorkspaceId';
2
+ import { OffsetPaginatedRequest } from '../pagination/OffsetPaginatedRequest';
3
+ import { WorkspaceSectionId } from '../workspace-section/WorkspaceSectionId';
4
+ export interface ListAppListings extends OffsetPaginatedRequest {
5
+ workspaceIds?: WorkspaceId[];
6
+ sectionIds?: WorkspaceSectionId[];
7
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListAppListings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListAppListings.js","sourceRoot":"","sources":["../../../src/models/workflow-app/ListAppListings.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { OffsetPaginatedResult } from '../pagination/OffsetPaginatedResult';
2
+ import { AppListing } from './AppListing';
3
+ export interface ListAppListingsResult extends OffsetPaginatedResult {
4
+ appListings: AppListing[];
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListAppListingsResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListAppListingsResult.js","sourceRoot":"","sources":["../../../src/models/workflow-app/ListAppListingsResult.ts"],"names":[],"mappings":""}
@@ -1,3 +1,3 @@
1
1
  import { AppListing } from './AppListing';
2
- export interface UpdateAppListing extends Omit<AppListing, 'createdAt' | 'updatedAt' | 'sectionId' | 'workspaceId'> {
2
+ export interface UpdateAppListing extends Omit<AppListing, 'createdAt' | 'updatedAt' | 'sectionId' | 'workspaceId' | 'businessId'> {
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.254",
3
+ "version": "1.2.255",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {