@microsoft/sp-odata-types
Advanced tools
Comparing version 1.15.0-beta.1 to 1.15.0-beta.6
@@ -37,2 +37,66 @@ /** | ||
/** | ||
* Represents OData SP.ContentType object. | ||
* | ||
* @public | ||
*/ | ||
export declare interface IODataContentType extends IODataFormsClientSideConfiguration { | ||
/** | ||
* Content type ID | ||
*/ | ||
Id: IODataContentTypeId; | ||
/** | ||
* Content type name | ||
*/ | ||
Name: string; | ||
/** | ||
* Content type description | ||
*/ | ||
Description: string; | ||
/** | ||
* Content type schema XML | ||
*/ | ||
SchemaXml: string; | ||
/** | ||
* Content type string id | ||
*/ | ||
StringId: string; | ||
/** | ||
* Specifies whether content type is read-only | ||
*/ | ||
ReadOnly: boolean; | ||
/** | ||
* Content type group | ||
*/ | ||
Group: string; | ||
/** | ||
* Content type display form URL | ||
*/ | ||
DisplayFormUrl: string; | ||
/** | ||
* Content type edit form URL | ||
*/ | ||
EditFormUrl: string; | ||
/** | ||
* Content type new form URL | ||
*/ | ||
NewFormUrl: string; | ||
/** | ||
* Custom formatter (JSON) for the content type forms | ||
*/ | ||
ClientFormCustomFormatter: string; | ||
} | ||
/** | ||
* Represents OData SP.ContentTypeId object. | ||
* | ||
* @public | ||
*/ | ||
declare interface IODataContentTypeId { | ||
/** | ||
* Example: 0x010031F2C5695B275B4DB1A3EB7847DFB019 | ||
*/ | ||
StringValue: string; | ||
} | ||
/** | ||
* Represents an OData SP.ContextWebInformation object. For more information about this object, | ||
@@ -63,2 +127,46 @@ * see {@link https://msdn.microsoft.com/en-us/library/office/jj860569.aspx} | ||
/** | ||
* Represents a set of OData properties for objects that allow forms customizations (e.g. SP.List, SP.ContentType). | ||
* | ||
* @public | ||
*/ | ||
export declare interface IODataFormsClientSideConfiguration { | ||
/** | ||
* New Form Customizer component id | ||
*/ | ||
NewFormClientSideComponentId: string | undefined; | ||
/** | ||
* New Form Customizer component properties | ||
*/ | ||
NewFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* New Form display target (new tab, panel) | ||
*/ | ||
NewFormClientSideDisplayTarget: string | undefined; | ||
/** | ||
* Edit Form Customizer component id | ||
*/ | ||
EditFormClientSideComponentId: string | undefined; | ||
/** | ||
* Edit Form Customizer component properties | ||
*/ | ||
EditFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* Edit Form display target (new tab, panel) | ||
*/ | ||
EditFormClientSideDisplayTarget: string | undefined; | ||
/** | ||
* Display Form Customizer component id | ||
*/ | ||
DisplayFormClientSideComponentId: string | undefined; | ||
/** | ||
* Display Form Customizer component properties | ||
*/ | ||
DisplayFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* Display Form display target (new tab, panel) | ||
*/ | ||
DislpayFormClientSideDisplayTarget: string | undefined; | ||
} | ||
/** | ||
* Represents an OData SP.List object. For more information about this object | ||
@@ -70,3 +178,3 @@ * see the MSDN documentation here: | ||
*/ | ||
export declare interface IODataList { | ||
export declare interface IODataList extends IODataFormsClientSideConfiguration { | ||
/** | ||
@@ -73,0 +181,0 @@ * The list definition type on which the list is based. |
@@ -37,2 +37,66 @@ /** | ||
/** | ||
* Represents OData SP.ContentType object. | ||
* | ||
* @public | ||
*/ | ||
export declare interface IODataContentType extends IODataFormsClientSideConfiguration { | ||
/** | ||
* Content type ID | ||
*/ | ||
Id: IODataContentTypeId; | ||
/** | ||
* Content type name | ||
*/ | ||
Name: string; | ||
/** | ||
* Content type description | ||
*/ | ||
Description: string; | ||
/** | ||
* Content type schema XML | ||
*/ | ||
SchemaXml: string; | ||
/** | ||
* Content type string id | ||
*/ | ||
StringId: string; | ||
/** | ||
* Specifies whether content type is read-only | ||
*/ | ||
ReadOnly: boolean; | ||
/** | ||
* Content type group | ||
*/ | ||
Group: string; | ||
/** | ||
* Content type display form URL | ||
*/ | ||
DisplayFormUrl: string; | ||
/** | ||
* Content type edit form URL | ||
*/ | ||
EditFormUrl: string; | ||
/** | ||
* Content type new form URL | ||
*/ | ||
NewFormUrl: string; | ||
/** | ||
* Custom formatter (JSON) for the content type forms | ||
*/ | ||
ClientFormCustomFormatter: string; | ||
} | ||
/** | ||
* Represents OData SP.ContentTypeId object. | ||
* | ||
* @public | ||
*/ | ||
declare interface IODataContentTypeId { | ||
/** | ||
* Example: 0x010031F2C5695B275B4DB1A3EB7847DFB019 | ||
*/ | ||
StringValue: string; | ||
} | ||
/** | ||
* Represents an OData SP.ContextWebInformation object. For more information about this object, | ||
@@ -63,2 +127,46 @@ * see {@link https://msdn.microsoft.com/en-us/library/office/jj860569.aspx} | ||
/** | ||
* Represents a set of OData properties for objects that allow forms customizations (e.g. SP.List, SP.ContentType). | ||
* | ||
* @public | ||
*/ | ||
export declare interface IODataFormsClientSideConfiguration { | ||
/** | ||
* New Form Customizer component id | ||
*/ | ||
NewFormClientSideComponentId: string | undefined; | ||
/** | ||
* New Form Customizer component properties | ||
*/ | ||
NewFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* New Form display target (new tab, panel) | ||
*/ | ||
NewFormClientSideDisplayTarget: string | undefined; | ||
/** | ||
* Edit Form Customizer component id | ||
*/ | ||
EditFormClientSideComponentId: string | undefined; | ||
/** | ||
* Edit Form Customizer component properties | ||
*/ | ||
EditFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* Edit Form display target (new tab, panel) | ||
*/ | ||
EditFormClientSideDisplayTarget: string | undefined; | ||
/** | ||
* Display Form Customizer component id | ||
*/ | ||
DisplayFormClientSideComponentId: string | undefined; | ||
/** | ||
* Display Form Customizer component properties | ||
*/ | ||
DisplayFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* Display Form display target (new tab, panel) | ||
*/ | ||
DislpayFormClientSideDisplayTarget: string | undefined; | ||
} | ||
/** | ||
* Represents an OData SP.List object. For more information about this object | ||
@@ -70,3 +178,3 @@ * see the MSDN documentation here: | ||
*/ | ||
export declare interface IODataList { | ||
export declare interface IODataList extends IODataFormsClientSideConfiguration { | ||
/** | ||
@@ -73,0 +181,0 @@ * The list definition type on which the list is based. |
@@ -37,2 +37,66 @@ /** | ||
/** | ||
* Represents OData SP.ContentType object. | ||
* | ||
* @public | ||
*/ | ||
export declare interface IODataContentType extends IODataFormsClientSideConfiguration { | ||
/** | ||
* Content type ID | ||
*/ | ||
Id: IODataContentTypeId; | ||
/** | ||
* Content type name | ||
*/ | ||
Name: string; | ||
/** | ||
* Content type description | ||
*/ | ||
Description: string; | ||
/** | ||
* Content type schema XML | ||
*/ | ||
SchemaXml: string; | ||
/** | ||
* Content type string id | ||
*/ | ||
StringId: string; | ||
/** | ||
* Specifies whether content type is read-only | ||
*/ | ||
ReadOnly: boolean; | ||
/** | ||
* Content type group | ||
*/ | ||
Group: string; | ||
/** | ||
* Content type display form URL | ||
*/ | ||
DisplayFormUrl: string; | ||
/** | ||
* Content type edit form URL | ||
*/ | ||
EditFormUrl: string; | ||
/** | ||
* Content type new form URL | ||
*/ | ||
NewFormUrl: string; | ||
/** | ||
* Custom formatter (JSON) for the content type forms | ||
*/ | ||
ClientFormCustomFormatter: string; | ||
} | ||
/** | ||
* Represents OData SP.ContentTypeId object. | ||
* | ||
* @public | ||
*/ | ||
declare interface IODataContentTypeId { | ||
/** | ||
* Example: 0x010031F2C5695B275B4DB1A3EB7847DFB019 | ||
*/ | ||
StringValue: string; | ||
} | ||
/** | ||
* Represents an OData SP.ContextWebInformation object. For more information about this object, | ||
@@ -63,2 +127,46 @@ * see {@link https://msdn.microsoft.com/en-us/library/office/jj860569.aspx} | ||
/** | ||
* Represents a set of OData properties for objects that allow forms customizations (e.g. SP.List, SP.ContentType). | ||
* | ||
* @public | ||
*/ | ||
export declare interface IODataFormsClientSideConfiguration { | ||
/** | ||
* New Form Customizer component id | ||
*/ | ||
NewFormClientSideComponentId: string | undefined; | ||
/** | ||
* New Form Customizer component properties | ||
*/ | ||
NewFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* New Form display target (new tab, panel) | ||
*/ | ||
NewFormClientSideDisplayTarget: string | undefined; | ||
/** | ||
* Edit Form Customizer component id | ||
*/ | ||
EditFormClientSideComponentId: string | undefined; | ||
/** | ||
* Edit Form Customizer component properties | ||
*/ | ||
EditFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* Edit Form display target (new tab, panel) | ||
*/ | ||
EditFormClientSideDisplayTarget: string | undefined; | ||
/** | ||
* Display Form Customizer component id | ||
*/ | ||
DisplayFormClientSideComponentId: string | undefined; | ||
/** | ||
* Display Form Customizer component properties | ||
*/ | ||
DisplayFormClientSideComponentProperties: string | undefined; | ||
/** | ||
* Display Form display target (new tab, panel) | ||
*/ | ||
DislpayFormClientSideDisplayTarget: string | undefined; | ||
} | ||
/** | ||
* Represents an OData SP.List object. For more information about this object | ||
@@ -70,3 +178,3 @@ * see the MSDN documentation here: | ||
*/ | ||
export declare interface IODataList { | ||
export declare interface IODataList extends IODataFormsClientSideConfiguration { | ||
/** | ||
@@ -73,0 +181,0 @@ * The list definition type on which the list is based. |
{ | ||
"name": "@microsoft/sp-odata-types", | ||
"version": "1.15.0-beta.1", | ||
"version": "1.15.0-beta.6", | ||
"description": "TypeScript interfaces for working with SharePoint REST APIs", | ||
@@ -14,3 +14,3 @@ "license": "SEE LICENSE IN \"EULA\" FOLDER", | ||
"dependencies": { | ||
"tslib": "~1.10.0" | ||
"tslib": "2.3.1" | ||
}, | ||
@@ -17,0 +17,0 @@ "scripts": {}, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1735720
1748
1
+ Addedtslib@2.3.1(transitive)
- Removedtslib@1.10.0(transitive)
Updatedtslib@2.3.1