Skip to content

Commit

Permalink
excluding privileges according to authentication scopes (#151)
Browse files Browse the repository at this point in the history
* exclude privileges by validating authentication scopes

* 2.6.49
  • Loading branch information
kbarbounakis authored Jul 11, 2024
1 parent ef80e9b commit bb98840
Show file tree
Hide file tree
Showing 11 changed files with 1,305 additions and 2,197 deletions.
13 changes: 13 additions & 0 deletions data-attribute-resolver.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { QueryEntity, QueryField } from '@themost/query';

export declare class DataAttributeResolver {
orderByNestedAttribute(attr: string): any;
selectNestedAttribute(attr: string): any;
selectAggregatedAttribute(aggregation: string, attribute: string, alias: string): any;
resolveNestedAttribute(attr: string): any;
resolveNestedAttributeJoin(memberExpr: string): { $select?: QueryField, $expand?: QueryEntity[] };
testAttribute(s: string): any;
testAggregatedNestedAttribute(s: string): any;
testNestedAttribute(s: string): any;
resolveJunctionAttributeJoin(attr: string): { $select?: QueryField, $expand?: QueryEntity[] };
}
Loading

0 comments on commit bb98840

Please sign in to comment.