Skip to content

Commit

Permalink
fix: adopt correct role, app, org interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Harasz committed Feb 8, 2022
1 parent 8801bef commit b1141eb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/api/interfaces/IApp.md
Expand Up @@ -22,7 +22,7 @@ ___

### id

**id**: `string`
**id**: `number`

___

Expand Down
2 changes: 1 addition & 1 deletion docs/api/interfaces/IOrganization.md
Expand Up @@ -30,7 +30,7 @@ ___

### id

**id**: `string`
**id**: `number`

___

Expand Down
2 changes: 1 addition & 1 deletion docs/api/interfaces/IRole.md
Expand Up @@ -21,7 +21,7 @@ ___

### id

**id**: `string`
**id**: `number`

___

Expand Down
6 changes: 3 additions & 3 deletions src/modules/domains/domains.types.ts
Expand Up @@ -7,7 +7,7 @@ export enum NamespaceType {
}

export interface IRole {
id: string;
id: number;
name: string;
namespace: string;
owner: string;
Expand All @@ -16,7 +16,7 @@ export interface IRole {
}

export interface IOrganization {
id: string;
id: number;
name: string;
namespace: string;
owner: string;
Expand All @@ -28,7 +28,7 @@ export interface IOrganization {
}

export interface IApp {
id: string;
id: number;
name: string;
namespace: string;
owner: string;
Expand Down

0 comments on commit b1141eb

Please sign in to comment.