gd-sprest
Advanced tools
Comparing version
{ | ||
"name": "gd-sprest", | ||
"version": "0.5.9", | ||
"version": "0.6.0", | ||
"description": "An easy way to develop against the SharePoint REST API.", | ||
@@ -5,0 +5,0 @@ "author": "Gunjan Datta <me@dattabase.com> (https://github.com/gunjandatta/sprest)", |
@@ -26,2 +26,3 @@ # SharePoint 2013/Online REST Library | ||
[Bootstrap List](https://github.com/gunjandatta/sprest-list) | ||
_Note - This is still in dev_ | ||
@@ -93,7 +94,9 @@ ## Documentation: | ||
// This will execute one request to the server to get list items | ||
// new $REST.ListItems("[List Name]", "[View XML or CAML Query]"); | ||
var items = (new $REST.ListItems("[List Name]", false)).query({ | ||
// OData properties | ||
}); | ||
// The query will default the parent to "<View>" | ||
new $REST.ListItems("Site Assets", "<Query><Where><Gt><FieldRef Name='ID' /><Value Type='Integer'>0</Value></Gt></Where></Query>"); | ||
new $REST.ListItems("Site Assets", "<View Scope='RecursiveAll'><Query><Where><Eq><FieldRef Name='FileLeafRef' /><Value Type='File'>sprest.js</Value></Eq></Where></Query></View>"); | ||
// Examples of getting items by CAML queries | ||
(new $REST.List("Site Assets", false)).getItemsByQuery("<Query><Where><Gt><FieldRef Name='ID' /><Value Type='Integer'>0</Value></Gt></Where></Query>"); | ||
(new $REST.List("Site Assets", false)).getItems("<View Scope='RecursiveAll'><Query><Where><Eq><FieldRef Name='FileLeafRef' /><Value Type='File'>sprest.js</Value></Eq></Where></Query></View>"); | ||
``` | ||
@@ -134,2 +137,39 @@ | ||
### OData Queries | ||
Each collection will have a generic "query" method with the input of the OData query operations. The oData object consists of the following properties: | ||
* Expand - A collection of strings representing the field names to expand. | ||
* Filter - A collection of strings representing the filters to apply. | ||
* OrderBy - A collection of strings representing the fields to order by. | ||
* QueryString - A read-only property representing the query string value of the oData object. | ||
* Select - A collection of strings representing the field names to select. | ||
* Skip - The number of objects to skip. | ||
* Top - The maximum number of objects to return. | ||
#### Query List Collection | ||
``` | ||
// Get the lists for the current web, but don't execute a request to the server | ||
var lists = new $REST.Lists(false); | ||
// Query for the 'Dev' list | ||
lists.query({ | ||
Filter: ["Title eq 'Dev'"] | ||
}); | ||
``` | ||
#### Query List Item Collection | ||
``` | ||
// Get the 'Dev' list, but don't execute a request to the server | ||
(new $REST.ListItems_Async("Dev", null, false)) | ||
// Query for my items, expanding the created by information | ||
.query({ | ||
Select: ["Title", "Author/Id", "Author/Title"], | ||
Expand: ["Author"], | ||
Filter: ["AuthorId eq 11"] | ||
}) | ||
// Execute code after the request is complete | ||
.done(function(items:$REST.ListItems) { | ||
// Code goes here | ||
}); | ||
``` | ||
## Test: | ||
@@ -280,3 +320,10 @@ I wrote a sample test file. To run it, upload the [test folder](https://github.com/gunjandatta/sprest/tree/master/test) contents to a SharePoint library and access to the "test.aspx" page. This will test the basic functionality of the library. | ||
``` | ||
new $REST.ListItems("documents", "<Query><Where><Gt><FieldRef Name='ID' /><Value Type='Integer'>0</Value></Gt></Where></Query>"); | ||
// Get the list items, but do not execute a request to the server | ||
(new $REST.ListItems_Async("documents", false)) | ||
// Get the items | ||
.getItemsByQuery("<Query><Where><Gt><FieldRef Name='ID' /><Value Type='Integer'>0</Value></Gt></Where></Query>") | ||
// Execute after the request completes | ||
.done(function(items)) { | ||
// Code goes here | ||
} | ||
``` | ||
@@ -283,0 +330,0 @@ |
@@ -209,2 +209,14 @@ module $REST { | ||
// See if this is the "Properties" definition for the object | ||
if(methodName == "properties") { | ||
// Parse the properties | ||
for(let property of methodInfo) { | ||
// Add the property | ||
obj["get_" + property] = new Function("return this.getProperty('" + property + "');"); | ||
} | ||
// Continue the loop | ||
continue; | ||
} | ||
// See if this object has a dynamic metadata type | ||
@@ -211,0 +223,0 @@ if(typeof(methodInfo.metadataType) === "function") { |
@@ -26,2 +26,8 @@ /// <reference path="../base.d.ts" /> | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
@@ -28,0 +34,0 @@ |
@@ -69,4 +69,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.GetReplace | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -56,4 +56,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.GetWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -36,3 +36,9 @@ /// <reference path="../base.d.ts" /> | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -88,4 +88,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.PostWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -53,56 +53,2 @@ /// <reference path="../base.d.ts" /> | ||
} | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
/** | ||
* Gets a value that specifies the user who added the file. | ||
*/ | ||
public get_Author() { return this.getProperty("Author"); } | ||
/** | ||
* Gets a value that returns the user who has checked out the file. | ||
*/ | ||
public get_CheckedOutByUser() { return this.getProperty("CheckedOutByUser"); } | ||
/** | ||
* | ||
*/ | ||
public get_EffectiveInformationRightsManagementSettings() { return this.getProperty("EffectiveInformationRightsManagementSettings"); } | ||
/** | ||
* | ||
*/ | ||
public get_InformationRightsManagementSettings() { return this.getProperty("InformationRightsManagementSettings"); } | ||
/** | ||
* Gets a value that specifies the list item field values for the list item corresponding to the file. | ||
*/ | ||
public get_ListItemAllFields() { return this.getProperty("ListItemAllFields"); } | ||
/** | ||
* Gets a value that returns the user that owns the current lock on the file. | ||
*/ | ||
public get_LockedByUser() { return this.getProperty("LockedByUser"); } | ||
/** | ||
* Gets a value that returns the user who last modified the file. | ||
*/ | ||
public get_ModifiedBy() { return this.getProperty("ModifiedBy"); } | ||
/** | ||
* | ||
*/ | ||
public get_Properties() { return this.getProperty("Properties"); } | ||
/** | ||
* | ||
*/ | ||
public get_VersionEvents() { return this.getProperty("VersionEvents"); } | ||
/** | ||
* Gets a value that returns a collection of file version objects that represent the versions of the file. | ||
*/ | ||
public get_Versions() { return this.getProperty("Versions"); } | ||
} | ||
@@ -121,5 +67,19 @@ | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
// Library | ||
/*********************************************************************************************************************************/ | ||
Library.file = { | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
properties: [ | ||
"Author", "CheckedOutByUser", "EffectiveInformationRightsManagementSettings", "InformationRightsManagementSettings", | ||
"ListItemAllFields", "LockedByUser", "ModifiedBy", "Properties", "VersionEvents", "Versions" | ||
], | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
/*********************************************************************************************************************************/ | ||
// Approves the file submitted for content approval with the specified comment. | ||
@@ -126,0 +86,0 @@ approve: { |
@@ -69,4 +69,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.GetWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -20,4 +20,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.Delete | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -60,36 +60,2 @@ /// <reference path="../base.d.ts" /> | ||
} | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
/** | ||
* Gets the collection of all files contained in the list folder. You can add a file to a folder by using the Add method on the folder’s FileCollection resource. | ||
*/ | ||
public get_Files() { return this.getProperty("Files"); } | ||
/** | ||
* Gets the collection of list folders contained in the list folder. | ||
*/ | ||
public get_Folders() { return this.getProperty("Folders"); } | ||
/** | ||
* Specifies the list item field (2) values for the list item corresponding to the file. | ||
*/ | ||
public get_ListItemAllFields() { return this.getProperty("ListItemAllFields"); } | ||
/** | ||
* Gets the parent list folder of the folder. | ||
*/ | ||
public get_ParentFolder() { return this.getProperty("ParentFolder"); } | ||
/** | ||
* Gets the collection of all files contained in the folder. | ||
*/ | ||
public get_Properties() { return this.getProperty("Properties"); } | ||
/** | ||
* | ||
*/ | ||
public get_StorageMetrics() { return this.getProperty("StorageMetrics"); } | ||
} | ||
@@ -108,5 +74,17 @@ | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
// Library | ||
/*********************************************************************************************************************************/ | ||
Library.folder = { | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
properties: [ | ||
"Files", "Folders", "ListItemAllFields", "ParentFolder", "Properties", "StorageMetrics" | ||
], | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
/*********************************************************************************************************************************/ | ||
// Adds a file to this folder. | ||
@@ -113,0 +91,0 @@ addFile: { |
@@ -55,4 +55,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.GetWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -11,3 +11,3 @@ /// <reference path="../base.d.ts" /> | ||
/*********************************************************************************************************************************/ | ||
constructor(listName:string, camlQuery?:string, ...args) { | ||
constructor(listName:string, ...args) { | ||
// Call the base constructor | ||
@@ -20,30 +20,10 @@ super(Base.getInputParmeters.apply(null, args)); | ||
// See if the caml query exists | ||
if(camlQuery) { | ||
// Create the parent | ||
this.parent = new $REST.List(listName, false, { asyncFl: this.targetInfo.asyncFl }); | ||
// Query the items | ||
let items = this.parent[/^<View/.test(camlQuery) ? "getItems" : "getItemsByQuery"](camlQuery); | ||
// See if this is an asynchronous request | ||
if(this.targetInfo.asyncFl) { | ||
// Resolve the parent request for asynchronous requests | ||
items.done((items) => { this.resolveParentRequest(items); }); | ||
} | ||
else { | ||
// Return the items | ||
return items; | ||
} | ||
// See if we are executing the request | ||
if(this.executeRequestFl) { | ||
// Execute the request | ||
this.execute(); | ||
} | ||
else { | ||
// See if we are executing the request | ||
if(this.executeRequestFl) { | ||
// Execute the request | ||
this.execute(); | ||
} | ||
else { | ||
// Add the methods | ||
this.addMethods(this, { __metadata: { type: "items" } } ); | ||
} | ||
// Add the methods | ||
this.addMethods(this, { __metadata: { type: "items" } } ); | ||
} | ||
@@ -57,5 +37,5 @@ } | ||
/*********************************************************************************************************************************/ | ||
constructor(listName:string, camlQuery?:string, ...args) { | ||
constructor(listName:string, ...args) { | ||
// Call the base constructor | ||
super(listName, camlQuery, Base.getAsyncInputParmeters.apply(null, args)); | ||
super(listName, Base.getAsyncInputParmeters.apply(null, args)); | ||
} | ||
@@ -78,4 +58,10 @@ } | ||
requestType: RequestType.GetWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -29,96 +29,2 @@ /// <reference path="../base.d.ts" /> | ||
} | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
/** | ||
* Gets the content types that are associated with the list. | ||
*/ | ||
public get_ContentTypes() { return this.getProperty("ContentTypes"); } | ||
/** | ||
* | ||
*/ | ||
public get_CreatablesInfo() { return this.getProperty("CreatablesInfo"); } | ||
/** | ||
* Gets the default view for the list. | ||
*/ | ||
public get_DefaultView() { return this.getProperty("DefaultView"); } | ||
/** | ||
* | ||
*/ | ||
public get_DescriptionResource() { return this.getProperty("DescriptionResource"); } | ||
/** | ||
* Gets the collection of event receiver definitions associated with the list. | ||
*/ | ||
public get_EventReceivers() { return this.getProperty("EventReceivers"); } | ||
/** | ||
* Gets the collection of field objects associated with the list. | ||
*/ | ||
public get_Fields() { return this.getProperty("Fields"); } | ||
/** | ||
* Gets the object where role assignments for this object are defined. If role assignments are defined directly on the current object, the current object is returned. | ||
*/ | ||
public get_FirstUniqueAncestorSecurableObject() { return this.getProperty("FirstUniqueAncestorSecurableObject"); } | ||
/** | ||
* Gets the collection of forms associated with the list. | ||
*/ | ||
public get_Forms() { return this.getProperty("Forms"); } | ||
/** | ||
* | ||
*/ | ||
public get_InformationRightsManagementSettings() { return this.getProperty("InformationRightsManagementSettings"); } | ||
/** | ||
* Gets all the items in the list. | ||
*/ | ||
public get_Items() { return this.getProperty("Items"); } | ||
/** | ||
* Gets a value that specifies the site that contains the list. | ||
*/ | ||
public get_ParentWeb() { return this.getProperty("ParentWeb"); } | ||
/** | ||
* Gets the collection of role assignments associated with the list. | ||
*/ | ||
public get_RoleAssignments() { return this.getProperty("RoleAssignments"); } | ||
/** | ||
* Gets the root folder for the list. | ||
*/ | ||
public get_RootFolder() { return this.getProperty("RootFolder"); } | ||
/** | ||
* | ||
*/ | ||
public get_Subscriptions() { return this.getProperty("Subscriptions"); } | ||
/** | ||
* | ||
*/ | ||
public get_TitleResource() { return this.getProperty("TitleResource"); } | ||
/** | ||
* Gets a value that specifies the collection of user custom actions associate with the list. | ||
*/ | ||
public get_UserCustomActions() { return this.getProperty("UserCustomActions"); } | ||
/** | ||
* Gets a value that specifies the collection of all views associated with the list. | ||
*/ | ||
public get_Views() { return this.getProperty("Views"); } | ||
/** | ||
* Gets a value that specifies the collection of all workflow associations for the list. | ||
*/ | ||
public get_WorkflowAssociations() { return this.getProperty("WorkflowAssociations"); } | ||
} | ||
@@ -137,6 +43,19 @@ | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
// Library | ||
/*********************************************************************************************************************************/ | ||
//{ name: "hasAccess", "function": function (userName, permissions) { return hasAccess(this, permissions, userName); } }, | ||
Library.list = { | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
properties: [ | ||
"ContentTypes", "CreatablesInfo", "DefaultView", "DescriptionResource", "EventReceivers", "Fields", "FirstUniqueAncestorSecurableObject", | ||
"Forms", "InformationRightsManagementSettings", "Items", "ParentWeb", "RoleAssignments", "RootFolder", "Subscriptions", "TitleResource", | ||
"UserCustomActions", "Views", "WorkflowAssociations" | ||
], | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
/*********************************************************************************************************************************/ | ||
// Adds an existing content type to this collection. | ||
@@ -143,0 +62,0 @@ addAvailableContentType: { |
@@ -29,61 +29,2 @@ /// <reference path="../base.d.ts" /> | ||
} | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
/** | ||
* Specifies the collection of attachments that are associated with the list item. | ||
*/ | ||
public get_AttachmentFiles() { return this.getProperty("AttachmentFiles"); } | ||
/** | ||
* Gets a value that specifies the content type of the list item. | ||
*/ | ||
public get_ContentType() { return this.getProperty("ContentType"); } | ||
/** | ||
* Gets the values for the list item as HTML. | ||
*/ | ||
public get_FieldValuesAsHtml() { return this.getProperty("FieldValuesAsHtml"); } | ||
/** | ||
* Gets the list item's field values as a collection of string values. | ||
*/ | ||
public get_FieldValuesAsText() { return this.getProperty("FieldValuesAsText"); } | ||
/** | ||
* Gets the formatted values to be displayed in an edit form. | ||
*/ | ||
public get_FieldValuesForEdit() { return this.getProperty("FieldValuesForEdit"); } | ||
/** | ||
* Gets the file that is represented by the item from a document library. | ||
*/ | ||
public get_File() { return this.getProperty("File"); } | ||
/** | ||
* Gets the object where role assignments for this object are defined. If role assignments are defined directly on the current object, the current object is returned. | ||
*/ | ||
public get_FirstUniqueAncestorSecurableObject() { return this.getProperty("FirstUniqueAncestorSecurableObject"); } | ||
/** | ||
* Gets a folder object that is associated with a folder item. | ||
*/ | ||
public get_Folder() { return this.getProperty("Folder"); } | ||
/** | ||
* | ||
*/ | ||
public get_GetDlpPolicyTip() { return this.getProperty("GetDlpPolicyTip"); } | ||
/** | ||
* Gets the parent list that contains the list item. | ||
*/ | ||
public get_ParentList() { return this.getProperty("ParentList"); } | ||
/** | ||
* Gets the role assignments for the securable object. | ||
*/ | ||
public get_RoleAssignments() { return this.getProperty("RoleAssignments"); } | ||
} | ||
@@ -102,5 +43,18 @@ | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
// Library | ||
/*********************************************************************************************************************************/ | ||
Library.listitem = { | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
properties: [ | ||
"AttachmentFiles", "ContentType", "FieldValuesAsHtml", "FieldValuesAsText", "FieldValuesForEdit", "File", | ||
"FirstUniqueAncestorSecurableObject", "Folder", "GetDlpPolicyTip", "ParentList", "RoleAssignments" | ||
], | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
/*********************************************************************************************************************************/ | ||
// Adds the attachment that is represented by the specified file name and byte array to the list item. | ||
@@ -107,0 +61,0 @@ addAttachment: { |
@@ -72,3 +72,9 @@ /// <reference path="../base.d.ts" /> | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -57,2 +57,8 @@ /// <reference path="../base.d.ts" /> | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
}, | ||
// Gets the role definition with the specified role type. | ||
@@ -59,0 +65,0 @@ removeRoleAssignment: { |
@@ -61,4 +61,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.GetWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -57,2 +57,8 @@ /// <reference path="../base.d.ts" /> | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
}, | ||
// Removes the group with the specified member ID from the collection. | ||
@@ -59,0 +65,0 @@ removeById: { |
@@ -75,4 +75,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.PostReplace | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -63,2 +63,8 @@ /// <reference path="../base.d.ts" /> | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
}, | ||
// Removes the user with the specified ID. | ||
@@ -65,0 +71,0 @@ removeById: { |
@@ -29,2 +29,8 @@ /// <reference path="../base.d.ts" /> | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
}, | ||
// Removes all the fields from the collection. | ||
@@ -31,0 +37,0 @@ removeAllViewFields: { |
@@ -61,4 +61,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.GetWithArgsValueOnly | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -36,205 +36,2 @@ /// <reference path="../base.d.ts" /> | ||
}; | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
/** | ||
* Gets a collection of metadata for the Web site. | ||
*/ | ||
public get_AllProperties() { return this.getProperty("AllProperties"); } | ||
/** | ||
* | ||
*/ | ||
public get_AppTiles() { return this.getProperty("AppTiles"); } | ||
/** | ||
* Gets or sets the group of users who have been given contribute permissions to the Web site. | ||
*/ | ||
public get_AssociatedMemberGroup() { return this.getProperty("AssociatedMemberGroup"); } | ||
/** | ||
* Gets or sets the associated owner group of the Web site. | ||
*/ | ||
public get_AssociatedOwnerGroup() { return this.getProperty("AssociatedOwnerGroup"); } | ||
/** | ||
* Gets or sets the associated visitor group of the Web site. | ||
*/ | ||
public get_AssociatedVisitorGroup() { return this.getProperty("AssociatedVisitorGroup"); } | ||
/** | ||
* | ||
*/ | ||
public get_Author() { return this.getProperty("Author"); } | ||
/** | ||
* Gets the collection of all content types that apply to the current scope, including those of the current Web site, as well as any parent Web sites. | ||
*/ | ||
public get_AvailableContentTypes() { return this.getProperty("AvailableContentTypes"); } | ||
/** | ||
* Gets a value that specifies the collection of all fields available for the current scope, including those of the current site, as well as any parent sites. | ||
*/ | ||
public get_AvailableFields() { return this.getProperty("AvailableFields"); } | ||
/** | ||
* | ||
*/ | ||
public get_ClientWebParts() { return this.getProperty("ClientWebParts"); } | ||
/** | ||
* Gets the collection of content types for the Web site. | ||
*/ | ||
public get_ContentTypes() { return this.getProperty("ContentTypes"); } | ||
/** | ||
* Gets the current user of the site. | ||
*/ | ||
public get_CurrentUser() { return this.getProperty("CurrentUser"); } | ||
/** | ||
* | ||
*/ | ||
public get_DataLeakagePreventionStatusInfo() { return this.getProperty("DataLeakagePreventionStatusInfo"); } | ||
/** | ||
* | ||
*/ | ||
public get_DescriptionResource() { return this.getProperty("DescriptionResource"); } | ||
/** | ||
* Gets the collection of event receiver definitions that are currently available on the website. | ||
*/ | ||
public get_EventReceivers() { return this.getProperty("EventReceivers"); } | ||
/** | ||
* Gets a value that specifies the collection of features that are currently activated in the site. | ||
*/ | ||
public get_Features() { return this.getProperty("Features"); } | ||
/** | ||
* Gets the collection of field objects that represents all the fields in the Web site. | ||
*/ | ||
public get_Fields() { return this.getProperty("Fields"); } | ||
/** | ||
* Gets the collection of all first-level files in the Web site. | ||
*/ | ||
public get_Files() { return this.getProperty("rootfolder/files"); } | ||
/** | ||
* Gets the object where role assignments for this object are defined. If role assignments are defined directly on the current object, the current object is returned. | ||
*/ | ||
public get_FirstUniqueAncestorSecurableObject() { return this.getProperty("FirstUniqueAncestorSecurableObject"); } | ||
/** | ||
* Gets the collection of all first-level folders in the Web site. | ||
*/ | ||
public get_Folders() { return this.getProperty("Folders"); } | ||
/** | ||
* Gets the collection of all lists that are contained in the Web site available to the current user based on the permissions of the current user. | ||
*/ | ||
public get_Lists() { return this.getProperty("Lists"); } | ||
/** | ||
* Gets a value that specifies the collection of list definitions and list templates available for creating lists on the site. | ||
*/ | ||
public get_ListTemplates() { return this.getProperty("ListTemplates"); } | ||
/** | ||
* Gets a value that specifies the navigation structure on the site, including the Quick Launch area and the top navigation bar. | ||
*/ | ||
public get_Navigation() { return this.getProperty("Navigation"); } | ||
/** | ||
* Gets the parent website of the specified website. | ||
*/ | ||
public get_ParentWeb() { return this.getProperty("ParentWeb"); } | ||
/** | ||
* Gets the collection of push notification subscribers over the site. | ||
*/ | ||
public get_PushNotificationSubscribers() { return this.getProperty("PushNotificationSubscribers"); } | ||
/** | ||
* Gets the collection of push notification subscribers over the site. | ||
*/ | ||
public get_RecycleBin() { return this.getProperty("RecycleBin"); } | ||
/** | ||
* Gets the regional settings that are currently implemented on the website. | ||
*/ | ||
public get_RegionalSettings() { return this.getProperty("RegionalSettings"); } | ||
/** | ||
* Gets the collection of role assignments for the Web site. | ||
*/ | ||
public get_RoleAssignments() { return this.getProperty("RoleAssignments"); } | ||
/** | ||
* Gets the collection of role definitions for the Web site. | ||
*/ | ||
public get_RoleDefinitions() { return this.getProperty("RoleDefinitions"); } | ||
/** | ||
* Gets the root folder for the Web site. | ||
*/ | ||
public get_RootFolder() { return this.getProperty("RootFolder"); } | ||
/** | ||
* Gets the collection of groups for the site collection. | ||
*/ | ||
public get_SiteGroups() { return this.getProperty("SiteGroups"); } | ||
/** | ||
* Gets the UserInfo list of the site collection that contains the Web site. | ||
*/ | ||
public get_SiteUserInfoList() { return this.getProperty("SiteUserInfoList"); } | ||
/** | ||
* Gets the collection of all users that belong to the site collection. | ||
*/ | ||
public get_SiteUsers() { return this.getProperty("SiteUsers"); } | ||
/** | ||
* The theming information for this site. This includes information like colors, fonts, border radii sizes etc. | ||
*/ | ||
public get_ThemeInfo() { return this.getProperty("ThemeInfo"); } | ||
/** | ||
* | ||
*/ | ||
public get_TitleResource() { return this.getProperty("TitleResource"); } | ||
/** | ||
* Gets a value that specifies the collection of user custom actions for the site. | ||
*/ | ||
public get_UserCustomActions() { return this.getProperty("UserCustomActions"); } | ||
/** | ||
* Represents key properties of the subsites of a site. | ||
*/ | ||
public get_WebInfos() { return this.getProperty("WebInfos"); } | ||
/** | ||
* Gets a Web site collection object that represents all Web sites immediately beneath the Web site, excluding children of those Web sites. | ||
*/ | ||
public get_Webs() { return this.getProperty("Webs"); } | ||
/** | ||
* Gets a value that specifies the collection of all workflow associations for the site. | ||
*/ | ||
public get_WorkflowAssociations() { return this.getProperty("WorkflowAssociations"); } | ||
/** | ||
* Gets a value that specifies the collection of workflow templates associated with the site. | ||
*/ | ||
public get_WorkflowTemplates() { return this.getProperty("WorkflowTemplates"); } | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
/*********************************************************************************************************************************/ | ||
} | ||
@@ -253,5 +50,22 @@ | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
// Library | ||
/*********************************************************************************************************************************/ | ||
Library.web = { | ||
/*********************************************************************************************************************************/ | ||
// Properties | ||
/*********************************************************************************************************************************/ | ||
properties: [ | ||
"AllProperties", "AppTiles", "AssociatedMemberGroup", "AssociatedOwnerGroup", "AssociatedVisitorGroup", "Author", | ||
"AvailableContentTypes", "AvailableFields", "ClientWebParts", "ContentTypes", "CurrentUser", "DataLeakagePreventionStatusInfo", | ||
"DescriptionResource", "EventReceivers", "Features", "Fields", "FirstUniqueAncestorSecurableObject", "Folders", "Lists", | ||
"ListTemplates", "Navigation", "ParentWeb", "PushNotificationSubscribers", "RecycleBin", "RegionalSettings", "RoleAssignments", | ||
"RoleDefinitions", "RootFolder", "SiteGroups", "SiteUserInfoList", "SiteUsers", "ThemeInfo", "TitleResource", | ||
"UserCustomActions", "WebInfos", "Webs", "WorkflowAssociations", "WorkflowTemplates" | ||
], | ||
/*********************************************************************************************************************************/ | ||
// Methods | ||
/*********************************************************************************************************************************/ | ||
// Adds a content type content type collection. | ||
@@ -258,0 +72,0 @@ addContentType: { |
@@ -21,4 +21,10 @@ /// <reference path="../base.d.ts" /> | ||
requestType: RequestType.PostWithArgsInBody | ||
}, | ||
// Queries the collection | ||
query: { | ||
argNames: ["oData"], | ||
requestType: RequestType.OData | ||
} | ||
}; | ||
} |
@@ -198,2 +198,9 @@ /// <reference path="methodInfo.d.ts" /> | ||
} | ||
// Else, see if this is an odata request | ||
else if(this.methodInfo.requestType == RequestType.OData) { | ||
let oData = new OData(this.methodParams["oData"]); | ||
// Update the url | ||
url = "?" + oData.QueryString; | ||
} | ||
// Else, see if we are not passing the data in the body or query string | ||
@@ -200,0 +207,0 @@ else if(!this.passDataInBody && !this.passDataInQS) { |
@@ -13,2 +13,3 @@ /// <reference path="./request.d.ts" /> | ||
Merge = 2, | ||
OData = 3, | ||
// Get Requests | ||
@@ -15,0 +16,0 @@ Get = 10, |
@@ -0,1 +1,9 @@ | ||
/// <reference path="../tsd/sprest.d.ts" /> | ||
(new $REST.Lists(false).query({ | ||
Select: ["Title", "ID"], | ||
Filter: ["Title eq 'Dev'"], | ||
Top: 3 | ||
})); | ||
var log = document.querySelector("#log"); | ||
@@ -381,3 +389,3 @@ var LogType = { | ||
// Get the items | ||
items = new $REST.ListItems(list.Title, caml); | ||
items = (new $REST.List(list.Title, false)).getItemsByQuery(caml); | ||
@@ -384,0 +392,0 @@ // Test |
@@ -12,2 +12,3 @@ // TypeScript configuration file | ||
"src/methodInfo.ts", | ||
"src/oData.ts", | ||
"src/promise.ts", | ||
@@ -14,0 +15,0 @@ "src/request.ts", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
77
2.67%383
13.99%1454916
-0.97%23049
-0.41%