Skip to content

Commit c386d12

Browse files
committed
fix(arc-saas): changes in structure
changes in structure GH-34
1 parent 3f54a0e commit c386d12

File tree

12 files changed

+19
-11
lines changed

12 files changed

+19
-11
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {ApiService, IAdapter, PostAPICommand} from '@project-lib/core/api';
22

33
import {IAnyObject} from '@project-lib/core/i-any-object';
4-
import {Tenant} from '../../../../on-boarding/models';
4+
import {Tenant} from '../../on-boarding/models';
55

66
export class AddTenantCommand<T> extends PostAPICommand<T> {
77
parameters: {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {ApiService, IAdapter, PatchAPICommand} from '@project-lib/core/api';
22

33
import {IAnyObject} from '@project-lib/core/i-any-object';
4-
import {Tenant} from '../../../model/tenant.model';
4+
import {Tenant} from '../model/tenant.model';
55

66
export class EditTenantCommand<T> extends PatchAPICommand<T> {
77
data: Tenant;
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export * from './add-tenant.command';
2+
export * from './delete-tenant.command';
3+
export * from './edit-tenant.command';
4+
export * from './get-tenant-by-id.command';
5+
export * from './get-tenant-lead.command';
6+
export * from './add-plan.command';
7+
export * from './delete-plan.command';
8+
export * from './edit-plan.command';
9+
export * from './get-billing-cycles-command';
10+
export * from './get-billing.command';
11+
export * from './get-currency-command';
12+
export * from './get-plan-by-id.command';
13+
export * from './get-plan.command';

projects/saas-ui/src/app/main/components/lead-list/commands/index.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

projects/saas-ui/src/app/main/services/billing-plan-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {Lead, Plan} from '../../on-boarding/models';
1616
import {Tenant} from '../model/tenant.model';
1717
import {GetBillingCycles} from '../commands/get-billing-cycles-command';
1818
import {GetCurrencyDetails} from '../commands/get-currency-command';
19-
import {GetBillingDetails} from '../components/lead-list/commands/get-billing.command';
19+
import {GetBillingDetails} from '../commands/get-billing.command';
2020
import {IAnyObject} from '@project-lib/core/i-any-object';
2121
import {APP_CONFIG} from '@project-lib/app-config';
2222
import {AddPlanCommand} from '../commands/add-plan.command';

projects/saas-ui/src/app/main/services/tenant-list-facade.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
GetTenantByIdCommand,
1414
EditTenantCommand,
1515
DeleteTenantCommand,
16-
} from '../components/lead-list/commands';
16+
} from '../commands';
1717

1818
import {HttpParams} from '@angular/common/http';
1919
import {APP_CONFIG} from '@project-lib/app-config';

0 commit comments

Comments
 (0)