azure-devops-node-api
Version:
Node client for Azure DevOps and TFS REST APIs
53 lines (52 loc) • 1.72 kB
JavaScript
/*
* ---------------------------------------------------------
* Copyright(C) Microsoft Corporation. All rights reserved.
* ---------------------------------------------------------
*
* ---------------------------------------------------------
* Generated file, DO NOT EDIT
* ---------------------------------------------------------
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
const IdentitiesInterfaces = require("../interfaces/IdentitiesInterfaces");
var GraphTraversalDirection;
(function (GraphTraversalDirection) {
GraphTraversalDirection[GraphTraversalDirection["Unknown"] = 0] = "Unknown";
GraphTraversalDirection[GraphTraversalDirection["Down"] = 1] = "Down";
GraphTraversalDirection[GraphTraversalDirection["Up"] = 2] = "Up";
})(GraphTraversalDirection = exports.GraphTraversalDirection || (exports.GraphTraversalDirection = {}));
exports.TypeInfo = {
GraphScope: {},
GraphScopeCreationContext: {},
GraphTraversalDirection: {
enumValues: {
"unknown": 0,
"down": 1,
"up": 2
}
},
GraphUser: {},
PagedGraphUsers: {},
};
exports.TypeInfo.GraphScope.fields = {
scopeType: {
enumType: IdentitiesInterfaces.TypeInfo.GroupScopeType
}
};
exports.TypeInfo.GraphScopeCreationContext.fields = {
scopeType: {
enumType: IdentitiesInterfaces.TypeInfo.GroupScopeType
}
};
exports.TypeInfo.GraphUser.fields = {
metadataUpdateDate: {
isDate: true,
}
};
exports.TypeInfo.PagedGraphUsers.fields = {
graphUsers: {
isArray: true,
typeInfo: exports.TypeInfo.GraphUser
}
};