mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
98 lines
2.5 KiB
JavaScript
98 lines
2.5 KiB
JavaScript
/*
|
|
* ---------------------------------------------------------
|
|
* Copyright(C) Microsoft Corporation. All rights reserved.
|
|
* ---------------------------------------------------------
|
|
*
|
|
* ---------------------------------------------------------
|
|
* Generated file, DO NOT EDIT
|
|
* ---------------------------------------------------------
|
|
*/
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
/**
|
|
* Status of a container item.
|
|
*/
|
|
var ContainerItemStatus;
|
|
(function (ContainerItemStatus) {
|
|
/**
|
|
* Item is created.
|
|
*/
|
|
ContainerItemStatus[ContainerItemStatus["Created"] = 1] = "Created";
|
|
/**
|
|
* Item is a file pending for upload.
|
|
*/
|
|
ContainerItemStatus[ContainerItemStatus["PendingUpload"] = 2] = "PendingUpload";
|
|
})(ContainerItemStatus = exports.ContainerItemStatus || (exports.ContainerItemStatus = {}));
|
|
/**
|
|
* Type of a container item.
|
|
*/
|
|
var ContainerItemType;
|
|
(function (ContainerItemType) {
|
|
/**
|
|
* Any item type.
|
|
*/
|
|
ContainerItemType[ContainerItemType["Any"] = 0] = "Any";
|
|
/**
|
|
* Item is a folder which can have child items.
|
|
*/
|
|
ContainerItemType[ContainerItemType["Folder"] = 1] = "Folder";
|
|
/**
|
|
* Item is a file which is stored in the file service.
|
|
*/
|
|
ContainerItemType[ContainerItemType["File"] = 2] = "File";
|
|
})(ContainerItemType = exports.ContainerItemType || (exports.ContainerItemType = {}));
|
|
/**
|
|
* Options a container can have.
|
|
*/
|
|
var ContainerOptions;
|
|
(function (ContainerOptions) {
|
|
/**
|
|
* No option.
|
|
*/
|
|
ContainerOptions[ContainerOptions["None"] = 0] = "None";
|
|
})(ContainerOptions = exports.ContainerOptions || (exports.ContainerOptions = {}));
|
|
exports.TypeInfo = {
|
|
ContainerItemStatus: {
|
|
enumValues: {
|
|
"created": 1,
|
|
"pendingUpload": 2
|
|
}
|
|
},
|
|
ContainerItemType: {
|
|
enumValues: {
|
|
"any": 0,
|
|
"folder": 1,
|
|
"file": 2
|
|
}
|
|
},
|
|
ContainerOptions: {
|
|
enumValues: {
|
|
"none": 0
|
|
}
|
|
},
|
|
FileContainer: {},
|
|
FileContainerItem: {},
|
|
};
|
|
exports.TypeInfo.FileContainer.fields = {
|
|
dateCreated: {
|
|
isDate: true,
|
|
},
|
|
options: {
|
|
enumType: exports.TypeInfo.ContainerOptions
|
|
}
|
|
};
|
|
exports.TypeInfo.FileContainerItem.fields = {
|
|
dateCreated: {
|
|
isDate: true,
|
|
},
|
|
dateLastModified: {
|
|
isDate: true,
|
|
},
|
|
itemType: {
|
|
enumType: exports.TypeInfo.ContainerItemType
|
|
},
|
|
status: {
|
|
enumType: exports.TypeInfo.ContainerItemStatus
|
|
}
|
|
};
|