Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@microsoft/msgraph-sdk-search

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/msgraph-sdk-search - npm Package Compare versions

Comparing version 1.0.0-preview.17 to 1.0.0-preview.18

6

package.json
{
"name": "@microsoft/msgraph-sdk-search",
"version": "1.0.0-preview.17",
"version": "1.0.0-preview.18",
"description": "Search fluent API for Microsoft Graph",

@@ -40,3 +40,3 @@ "keywords": [

"@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
"@microsoft/msgraph-sdk": "^1.0.0-preview.17",
"@microsoft/msgraph-sdk": "^1.0.0-preview.18",
"guid-typescript": "^1.0.9",

@@ -48,3 +48,3 @@ "tslib": "^2.6.2"

},
"gitHead": "cf9344aac51247cf524bc8163ff07531d51c9b6c"
"gitHead": "676c51d42cfb2332eb189ce7cfbc7e7dc08659b8"
}

@@ -20,10 +20,11 @@ import { type Acronym, type AcronymCollectionResponse } from '@microsoft/msgraph-sdk/models/search/';

/**
* Get acronyms from search
* Get a list of the acronym objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<AcronymCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-searchentity-list-acronyms?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<AcronymsRequestBuilderGetQueryParameters> | undefined): Promise<AcronymCollectionResponse | undefined>;
/**
* Create new navigation property to acronyms for search
* Create a new acronym object.
* @param body The request body

@@ -33,6 +34,7 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-searchentity-post-acronyms?view=graph-rest-1.0|Find more info here}
*/
post(body: Acronym, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Acronym | undefined>;
/**
* Get acronyms from search
* Get a list of the acronym objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -43,3 +45,3 @@ * @returns {RequestInformation}

/**
* Create new navigation property to acronyms for search
* Create a new acronym object.
* @param body The request body

@@ -52,3 +54,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

/**
* Get acronyms from search
* Get a list of the acronym objects and their properties.
*/

@@ -55,0 +57,0 @@ export interface AcronymsRequestBuilderGetQueryParameters {

@@ -8,16 +8,18 @@ import { type Acronym } from '@microsoft/msgraph-sdk/models/search/';

/**
* Delete navigation property acronyms for search
* Delete an acronym object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-acronym-delete?view=graph-rest-1.0|Find more info here}
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
/**
* Get acronyms from search
* Read the properties and relationships of an acronym object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Acronym>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-acronym-get?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<AcronymItemRequestBuilderGetQueryParameters> | undefined): Promise<Acronym | undefined>;
/**
* Update the navigation property acronyms in search
* Update the properties of an acronym object.
* @param body The request body

@@ -27,6 +29,7 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-acronym-update?view=graph-rest-1.0|Find more info here}
*/
patch(body: Acronym, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Acronym | undefined>;
/**
* Delete navigation property acronyms for search
* Delete an acronym object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -37,3 +40,3 @@ * @returns {RequestInformation}

/**
* Get acronyms from search
* Read the properties and relationships of an acronym object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -44,3 +47,3 @@ * @returns {RequestInformation}

/**
* Update the navigation property acronyms in search
* Update the properties of an acronym object.
* @param body The request body

@@ -53,3 +56,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

/**
* Get acronyms from search
* Read the properties and relationships of an acronym object.
*/

@@ -56,0 +59,0 @@ export interface AcronymItemRequestBuilderGetQueryParameters {

@@ -20,10 +20,11 @@ import { type Bookmark, type BookmarkCollectionResponse } from '@microsoft/msgraph-sdk/models/search/';

/**
* Get bookmarks from search
* Get a list of bookmark objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<BookmarkCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-searchentity-list-bookmarks?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<BookmarksRequestBuilderGetQueryParameters> | undefined): Promise<BookmarkCollectionResponse | undefined>;
/**
* Create new navigation property to bookmarks for search
* Create a new bookmark object.
* @param body The request body

@@ -33,6 +34,7 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-searchentity-post-bookmarks?view=graph-rest-1.0|Find more info here}
*/
post(body: Bookmark, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Bookmark | undefined>;
/**
* Get bookmarks from search
* Get a list of bookmark objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -43,3 +45,3 @@ * @returns {RequestInformation}

/**
* Create new navigation property to bookmarks for search
* Create a new bookmark object.
* @param body The request body

@@ -52,3 +54,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

/**
* Get bookmarks from search
* Get a list of bookmark objects and their properties.
*/

@@ -55,0 +57,0 @@ export interface BookmarksRequestBuilderGetQueryParameters {

@@ -8,16 +8,18 @@ import { type Bookmark } from '@microsoft/msgraph-sdk/models/search/';

/**
* Delete navigation property bookmarks for search
* Delete a bookmark object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-bookmark-delete?view=graph-rest-1.0|Find more info here}
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
/**
* Get bookmarks from search
* Read the properties and relationships of a bookmark object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Bookmark>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-bookmark-get?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<BookmarkItemRequestBuilderGetQueryParameters> | undefined): Promise<Bookmark | undefined>;
/**
* Update the navigation property bookmarks in search
* Update the properties of a bookmark object.
* @param body The request body

@@ -27,6 +29,7 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-bookmark-update?view=graph-rest-1.0|Find more info here}
*/
patch(body: Bookmark, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Bookmark | undefined>;
/**
* Delete navigation property bookmarks for search
* Delete a bookmark object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -37,3 +40,3 @@ * @returns {RequestInformation}

/**
* Get bookmarks from search
* Read the properties and relationships of a bookmark object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -44,3 +47,3 @@ * @returns {RequestInformation}

/**
* Update the navigation property bookmarks in search
* Update the properties of a bookmark object.
* @param body The request body

@@ -53,3 +56,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

/**
* Get bookmarks from search
* Read the properties and relationships of a bookmark object.
*/

@@ -56,0 +59,0 @@ export interface BookmarkItemRequestBuilderGetQueryParameters {

@@ -20,10 +20,11 @@ import { type Qna, type QnaCollectionResponse } from '@microsoft/msgraph-sdk/models/search/';

/**
* Get qnas from search
* Get a list of the qna objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<QnaCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-searchentity-list-qnas?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<QnasRequestBuilderGetQueryParameters> | undefined): Promise<QnaCollectionResponse | undefined>;
/**
* Create new navigation property to qnas for search
* Create a new qna object.
* @param body The request body

@@ -33,6 +34,7 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-searchentity-post-qnas?view=graph-rest-1.0|Find more info here}
*/
post(body: Qna, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Qna | undefined>;
/**
* Get qnas from search
* Get a list of the qna objects and their properties.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -43,3 +45,3 @@ * @returns {RequestInformation}

/**
* Create new navigation property to qnas for search
* Create a new qna object.
* @param body The request body

@@ -52,3 +54,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

/**
* Get qnas from search
* Get a list of the qna objects and their properties.
*/

@@ -55,0 +57,0 @@ export interface QnasRequestBuilderGetQueryParameters {

@@ -8,16 +8,18 @@ import { type Qna } from '@microsoft/msgraph-sdk/models/search/';

/**
* Delete navigation property qnas for search
* Delete a qna object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-qna-delete?view=graph-rest-1.0|Find more info here}
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
/**
* Get qnas from search
* Read the properties and relationships of a qna object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Qna>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-qna-get?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<QnaItemRequestBuilderGetQueryParameters> | undefined): Promise<Qna | undefined>;
/**
* Update the navigation property qnas in search
* Update the properties of a qna object.
* @param body The request body

@@ -27,6 +29,7 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/search-qna-update?view=graph-rest-1.0|Find more info here}
*/
patch(body: Qna, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Qna | undefined>;
/**
* Delete navigation property qnas for search
* Delete a qna object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -37,3 +40,3 @@ * @returns {RequestInformation}

/**
* Get qnas from search
* Read the properties and relationships of a qna object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

@@ -44,3 +47,3 @@ * @returns {RequestInformation}

/**
* Update the navigation property qnas in search
* Update the properties of a qna object.
* @param body The request body

@@ -53,3 +56,3 @@ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.

/**
* Get qnas from search
* Read the properties and relationships of a qna object.
*/

@@ -56,0 +59,0 @@ export interface QnaItemRequestBuilderGetQueryParameters {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc