Skip to content

Commit

Permalink
Merge pull request #29 from equinor/chore/newest-api-updates
Browse files Browse the repository at this point in the history
chore/newest-api-updates
  • Loading branch information
mariush2 authored Aug 14, 2024
2 parents de2dce0 + 8069135 commit 06cfd69
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/subsurface-app-management",
"version": "1.1.6",
"version": "1.1.7",
"description": "React Typescript components/hooks to communicate with equinor/sam",
"types": "dist/index.d.ts",
"type": "module",
Expand Down
14 changes: 7 additions & 7 deletions src/api/models/GraphAppRole.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
/* tslint:disable */
/* eslint-disable */
export type GraphAppRole = {
allowedMemberTypes?: Array<string> | null;
description?: string | null;
displayName?: string | null;
id?: string | null;
isEnabled?: boolean | null;
origin?: string | null;
value?: string | null;
allowedMemberTypes: Array<string>;
description: string;
displayName: string;
id: string;
isEnabled: boolean;
origin: string;
value: string;
};

0 comments on commit 06cfd69

Please sign in to comment.