1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | "use strict";
|
11 | Object.defineProperty(exports, "__esModule", { value: true });
|
12 | exports.TypeInfo = exports.GraphTraversalDirection = void 0;
|
13 | const IdentitiesInterfaces = require("../interfaces/IdentitiesInterfaces");
|
14 | var GraphTraversalDirection;
|
15 | (function (GraphTraversalDirection) {
|
16 | GraphTraversalDirection[GraphTraversalDirection["Unknown"] = 0] = "Unknown";
|
17 | GraphTraversalDirection[GraphTraversalDirection["Down"] = 1] = "Down";
|
18 | GraphTraversalDirection[GraphTraversalDirection["Up"] = 2] = "Up";
|
19 | })(GraphTraversalDirection = exports.GraphTraversalDirection || (exports.GraphTraversalDirection = {}));
|
20 | exports.TypeInfo = {
|
21 | AadGraphMember: {},
|
22 | GraphScope: {},
|
23 | GraphScopeCreationContext: {},
|
24 | GraphServicePrincipal: {},
|
25 | GraphTraversalDirection: {
|
26 | enumValues: {
|
27 | "unknown": 0,
|
28 | "down": 1,
|
29 | "up": 2
|
30 | }
|
31 | },
|
32 | GraphUser: {},
|
33 | PagedGraphServicePrincipals: {},
|
34 | PagedGraphUsers: {},
|
35 | };
|
36 | exports.TypeInfo.AadGraphMember.fields = {
|
37 | metadataUpdateDate: {
|
38 | isDate: true,
|
39 | }
|
40 | };
|
41 | exports.TypeInfo.GraphScope.fields = {
|
42 | scopeType: {
|
43 | enumType: IdentitiesInterfaces.TypeInfo.GroupScopeType
|
44 | }
|
45 | };
|
46 | exports.TypeInfo.GraphScopeCreationContext.fields = {
|
47 | scopeType: {
|
48 | enumType: IdentitiesInterfaces.TypeInfo.GroupScopeType
|
49 | }
|
50 | };
|
51 | exports.TypeInfo.GraphServicePrincipal.fields = {
|
52 | metadataUpdateDate: {
|
53 | isDate: true,
|
54 | }
|
55 | };
|
56 | exports.TypeInfo.GraphUser.fields = {
|
57 | metadataUpdateDate: {
|
58 | isDate: true,
|
59 | }
|
60 | };
|
61 | exports.TypeInfo.PagedGraphServicePrincipals.fields = {
|
62 | graphServicePrincipals: {
|
63 | isArray: true,
|
64 | typeInfo: exports.TypeInfo.GraphServicePrincipal
|
65 | }
|
66 | };
|
67 | exports.TypeInfo.PagedGraphUsers.fields = {
|
68 | graphUsers: {
|
69 | isArray: true,
|
70 | typeInfo: exports.TypeInfo.GraphUser
|
71 | }
|
72 | };
|