@microsoft/msgraph-sdk-search 1.0.0-preview.16 → 1.0.0-preview.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BookmarksRequestBuilderRequestsMetadata = exports.BookmarksRequestBuilderNavigationMetadata = exports.BookmarksRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ const search_1 = require("@microsoft/msgraph-sdk/models/search/");
9
+ const count_1 = require("./count/");
10
+ const item_1 = require("./item/");
11
+ /**
12
+ * Uri template for the request builder.
13
+ */
14
+ exports.BookmarksRequestBuilderUriTemplate = "{+baseurl}/search/bookmarks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
15
+ /**
16
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
17
+ */
18
+ const BookmarksRequestBuilderGetQueryParametersMapper = {
19
+ "count": "%24count",
20
+ "expand": "%24expand",
21
+ "filter": "%24filter",
22
+ "orderby": "%24orderby",
23
+ "search": "%24search",
24
+ "select": "%24select",
25
+ "skip": "%24skip",
26
+ "top": "%24top",
27
+ };
28
+ /**
29
+ * Metadata for all the navigation properties in the request builder.
30
+ */
31
+ exports.BookmarksRequestBuilderNavigationMetadata = {
32
+ byBookmarkId: {
33
+ requestsMetadata: item_1.BookmarkItemRequestBuilderRequestsMetadata,
34
+ pathParametersMappings: ["bookmark%2Did"],
35
+ },
36
+ count: {
37
+ requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
38
+ },
39
+ };
40
+ /**
41
+ * Metadata for all the requests in the request builder.
42
+ */
43
+ exports.BookmarksRequestBuilderRequestsMetadata = {
44
+ get: {
45
+ uriTemplate: exports.BookmarksRequestBuilderUriTemplate,
46
+ responseBodyContentType: "application/json",
47
+ errorMappings: {
48
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
49
+ },
50
+ adapterMethodName: "send",
51
+ responseBodyFactory: search_1.createBookmarkCollectionResponseFromDiscriminatorValue,
52
+ queryParametersMapper: BookmarksRequestBuilderGetQueryParametersMapper,
53
+ },
54
+ post: {
55
+ uriTemplate: exports.BookmarksRequestBuilderUriTemplate,
56
+ responseBodyContentType: "application/json",
57
+ errorMappings: {
58
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
59
+ },
60
+ adapterMethodName: "send",
61
+ responseBodyFactory: search_1.createBookmarkFromDiscriminatorValue,
62
+ requestBodyContentType: "application/json",
63
+ requestBodySerializer: search_1.serializeBookmark,
64
+ requestInformationContentSetMethod: "setContentFromParsable",
65
+ },
66
+ };
67
+ /* tslint:enable */
68
+ /* eslint-enable */
@@ -0,0 +1,72 @@
1
+ import { type Bookmark } from '@microsoft/msgraph-sdk/models/search/';
2
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
3
+ /**
4
+ * Provides operations to manage the bookmarks property of the microsoft.graph.searchEntity entity.
5
+ */
6
+ export interface BookmarkItemRequestBuilder extends BaseRequestBuilder<BookmarkItemRequestBuilder> {
7
+ /**
8
+ * Delete a bookmark object.
9
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
+ * @see {@link https://learn.microsoft.com/graph/api/search-bookmark-delete?view=graph-rest-1.0|Find more info here}
12
+ */
13
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
14
+ /**
15
+ * Read the properties and relationships of a bookmark object.
16
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
+ * @returns {Promise<Bookmark>}
18
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
19
+ * @see {@link https://learn.microsoft.com/graph/api/search-bookmark-get?view=graph-rest-1.0|Find more info here}
20
+ */
21
+ get(requestConfiguration?: RequestConfiguration<BookmarkItemRequestBuilderGetQueryParameters> | undefined): Promise<Bookmark | undefined>;
22
+ /**
23
+ * Update the properties of a bookmark object.
24
+ * @param body The request body
25
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
26
+ * @returns {Promise<Bookmark>}
27
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
28
+ * @see {@link https://learn.microsoft.com/graph/api/search-bookmark-update?view=graph-rest-1.0|Find more info here}
29
+ */
30
+ patch(body: Bookmark, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Bookmark | undefined>;
31
+ /**
32
+ * Delete a bookmark object.
33
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
+ * @returns {RequestInformation}
35
+ */
36
+ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
37
+ /**
38
+ * Read the properties and relationships of a bookmark object.
39
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
40
+ * @returns {RequestInformation}
41
+ */
42
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<BookmarkItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
43
+ /**
44
+ * Update the properties of a bookmark object.
45
+ * @param body The request body
46
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
47
+ * @returns {RequestInformation}
48
+ */
49
+ toPatchRequestInformation(body: Bookmark, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
50
+ }
51
+ /**
52
+ * Read the properties and relationships of a bookmark object.
53
+ */
54
+ export interface BookmarkItemRequestBuilderGetQueryParameters {
55
+ /**
56
+ * Expand related entities
57
+ */
58
+ expand?: string[];
59
+ /**
60
+ * Select properties to be returned
61
+ */
62
+ select?: string[];
63
+ }
64
+ /**
65
+ * Uri template for the request builder.
66
+ */
67
+ export declare const BookmarkItemRequestBuilderUriTemplate = "{+baseurl}/search/bookmarks/{bookmark%2Did}{?%24expand,%24select}";
68
+ /**
69
+ * Metadata for all the requests in the request builder.
70
+ */
71
+ export declare const BookmarkItemRequestBuilderRequestsMetadata: RequestsMetadata;
72
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA2D,KAAK,QAAQ,EAAE,MAAM,uCAAuC,CAAC;AAC/H,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,0BAA2B,SAAQ,kBAAkB,CAAC,0BAA0B,CAAC;IAC9F;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4CAA4C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IAC5I;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IACxH;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4CAA4C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACrJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,QAAQ,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpI;AACD;;GAEG;AACH,MAAM,WAAW,4CAA4C;IACzD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,qCAAqC,sEAAsE,CAAC;AAQzH;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,gBA+BxD,CAAC"}
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BookmarkItemRequestBuilderRequestsMetadata = exports.BookmarkItemRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ const search_1 = require("@microsoft/msgraph-sdk/models/search/");
9
+ /**
10
+ * Uri template for the request builder.
11
+ */
12
+ exports.BookmarkItemRequestBuilderUriTemplate = "{+baseurl}/search/bookmarks/{bookmark%2Did}{?%24expand,%24select}";
13
+ /**
14
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
15
+ */
16
+ const BookmarkItemRequestBuilderGetQueryParametersMapper = {
17
+ "expand": "%24expand",
18
+ "select": "%24select",
19
+ };
20
+ /**
21
+ * Metadata for all the requests in the request builder.
22
+ */
23
+ exports.BookmarkItemRequestBuilderRequestsMetadata = {
24
+ delete: {
25
+ uriTemplate: exports.BookmarkItemRequestBuilderUriTemplate,
26
+ responseBodyContentType: "application/json",
27
+ errorMappings: {
28
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
29
+ },
30
+ adapterMethodName: "sendNoResponseContent",
31
+ },
32
+ get: {
33
+ uriTemplate: exports.BookmarkItemRequestBuilderUriTemplate,
34
+ responseBodyContentType: "application/json",
35
+ errorMappings: {
36
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
37
+ },
38
+ adapterMethodName: "send",
39
+ responseBodyFactory: search_1.createBookmarkFromDiscriminatorValue,
40
+ queryParametersMapper: BookmarkItemRequestBuilderGetQueryParametersMapper,
41
+ },
42
+ patch: {
43
+ uriTemplate: exports.BookmarkItemRequestBuilderUriTemplate,
44
+ responseBodyContentType: "application/json",
45
+ errorMappings: {
46
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
47
+ },
48
+ adapterMethodName: "send",
49
+ responseBodyFactory: search_1.createBookmarkFromDiscriminatorValue,
50
+ requestBodyContentType: "application/json",
51
+ requestBodySerializer: search_1.serializeBookmark,
52
+ requestInformationContentSetMethod: "setContentFromParsable",
53
+ },
54
+ };
55
+ /* tslint:enable */
56
+ /* eslint-enable */
package/search/index.d.ts CHANGED
@@ -1,10 +1,25 @@
1
1
  import { type SearchEntity } from '@microsoft/msgraph-sdk/models/';
2
+ import { type AcronymsRequestBuilder } from './acronyms/';
3
+ import { type BookmarksRequestBuilder } from './bookmarks/';
4
+ import { type QnasRequestBuilder } from './qnas/';
2
5
  import { type QueryRequestBuilder } from './query/';
3
6
  import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
4
7
  /**
5
8
  * Provides operations to manage the searchEntity singleton.
6
9
  */
7
10
  export interface SearchRequestBuilder extends BaseRequestBuilder<SearchRequestBuilder> {
11
+ /**
12
+ * Provides operations to manage the acronyms property of the microsoft.graph.searchEntity entity.
13
+ */
14
+ get acronyms(): AcronymsRequestBuilder;
15
+ /**
16
+ * Provides operations to manage the bookmarks property of the microsoft.graph.searchEntity entity.
17
+ */
18
+ get bookmarks(): BookmarksRequestBuilder;
19
+ /**
20
+ * Provides operations to manage the qnas property of the microsoft.graph.searchEntity entity.
21
+ */
22
+ get qnas(): QnasRequestBuilder;
8
23
  /**
9
24
  * Provides operations to call the query method.
10
25
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAEpI,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,kBAAkB,CAAC,oBAAoB,CAAC;IAClF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAC1I;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/I;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+BAA+B,4CAA4C,CAAC;AAQzF;;GAEG;AACH,eAAO,MAAM,sCAAsC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oBAAoB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAItJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oCAAoC,EAAE,gBAuBlD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAEpI,OAAO,EAAoF,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAC5I,OAAO,EAAsF,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAChJ,OAAO,EAA4E,KAAK,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAC5H,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,kBAAkB,CAAC,oBAAoB,CAAC;IAClF;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,IAAI,IAAI,kBAAkB,CAAC;IAC/B;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAC1I;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/I;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+BAA+B,4CAA4C,CAAC;AAQzF;;GAEG;AACH,eAAO,MAAM,sCAAsC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oBAAoB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAgBtJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oCAAoC,EAAE,gBAuBlD,CAAC"}
package/search/index.js CHANGED
@@ -6,6 +6,9 @@ exports.SearchRequestBuilderRequestsMetadata = exports.SearchRequestBuilderNavig
6
6
  // Generated by Microsoft Kiota
7
7
  const models_1 = require("@microsoft/msgraph-sdk/models/");
8
8
  const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ const acronyms_1 = require("./acronyms/");
10
+ const bookmarks_1 = require("./bookmarks/");
11
+ const qnas_1 = require("./qnas/");
9
12
  const query_1 = require("./query/");
10
13
  /**
11
14
  * Uri template for the request builder.
@@ -22,6 +25,18 @@ const SearchRequestBuilderGetQueryParametersMapper = {
22
25
  * Metadata for all the navigation properties in the request builder.
23
26
  */
24
27
  exports.SearchRequestBuilderNavigationMetadata = {
28
+ acronyms: {
29
+ requestsMetadata: acronyms_1.AcronymsRequestBuilderRequestsMetadata,
30
+ navigationMetadata: acronyms_1.AcronymsRequestBuilderNavigationMetadata,
31
+ },
32
+ bookmarks: {
33
+ requestsMetadata: bookmarks_1.BookmarksRequestBuilderRequestsMetadata,
34
+ navigationMetadata: bookmarks_1.BookmarksRequestBuilderNavigationMetadata,
35
+ },
36
+ qnas: {
37
+ requestsMetadata: qnas_1.QnasRequestBuilderRequestsMetadata,
38
+ navigationMetadata: qnas_1.QnasRequestBuilderNavigationMetadata,
39
+ },
25
40
  query: {
26
41
  requestsMetadata: query_1.QueryRequestBuilderRequestsMetadata,
27
42
  },
@@ -0,0 +1,41 @@
1
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
2
+ /**
3
+ * Provides operations to count the resources in the collection.
4
+ */
5
+ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuilder> {
6
+ /**
7
+ * Get the number of the resource
8
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9
+ * @returns {Promise<number>}
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
+ */
12
+ get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
13
+ /**
14
+ * Get the number of the resource
15
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
+ * @returns {RequestInformation}
17
+ */
18
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): RequestInformation;
19
+ }
20
+ /**
21
+ * Get the number of the resource
22
+ */
23
+ export interface CountRequestBuilderGetQueryParameters {
24
+ /**
25
+ * Filter items by property values
26
+ */
27
+ filter?: string;
28
+ /**
29
+ * Search items by search phrases
30
+ */
31
+ search?: string;
32
+ }
33
+ /**
34
+ * Uri template for the request builder.
35
+ */
36
+ export declare const CountRequestBuilderUriTemplate = "{+baseurl}/search/qnas/$count{?%24filter,%24search}";
37
+ /**
38
+ * Metadata for all the requests in the request builder.
39
+ */
40
+ export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata;
41
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,kBAAkB,CAAC,mBAAmB,CAAC;IAChF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,qCAAqC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AACD;;GAEG;AACH,eAAO,MAAM,8BAA8B,wDAAwD,CAAC;AAQpG;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,gBAWjD,CAAC"}
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CountRequestBuilderRequestsMetadata = exports.CountRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ /**
9
+ * Uri template for the request builder.
10
+ */
11
+ exports.CountRequestBuilderUriTemplate = "{+baseurl}/search/qnas/$count{?%24filter,%24search}";
12
+ /**
13
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
14
+ */
15
+ const CountRequestBuilderGetQueryParametersMapper = {
16
+ "filter": "%24filter",
17
+ "search": "%24search",
18
+ };
19
+ /**
20
+ * Metadata for all the requests in the request builder.
21
+ */
22
+ exports.CountRequestBuilderRequestsMetadata = {
23
+ get: {
24
+ uriTemplate: exports.CountRequestBuilderUriTemplate,
25
+ responseBodyContentType: "text/plain;q=0.9",
26
+ errorMappings: {
27
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
28
+ },
29
+ adapterMethodName: "sendPrimitive",
30
+ responseBodyFactory: "number",
31
+ queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
32
+ },
33
+ };
34
+ /* tslint:enable */
35
+ /* eslint-enable */
@@ -0,0 +1,99 @@
1
+ import { type Qna, type QnaCollectionResponse } from '@microsoft/msgraph-sdk/models/search/';
2
+ import { type CountRequestBuilder } from './count/';
3
+ import { type QnaItemRequestBuilder } from './item/';
4
+ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
5
+ /**
6
+ * Provides operations to manage the qnas property of the microsoft.graph.searchEntity entity.
7
+ */
8
+ export interface QnasRequestBuilder extends BaseRequestBuilder<QnasRequestBuilder> {
9
+ /**
10
+ * Provides operations to count the resources in the collection.
11
+ */
12
+ get count(): CountRequestBuilder;
13
+ /**
14
+ * Provides operations to manage the qnas property of the microsoft.graph.searchEntity entity.
15
+ * @param qnaId The unique identifier of qna
16
+ * @returns {QnaItemRequestBuilder}
17
+ */
18
+ byQnaId(qnaId: string): QnaItemRequestBuilder;
19
+ /**
20
+ * Get a list of the qna objects and their properties.
21
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
+ * @returns {Promise<QnaCollectionResponse>}
23
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
+ * @see {@link https://learn.microsoft.com/graph/api/search-searchentity-list-qnas?view=graph-rest-1.0|Find more info here}
25
+ */
26
+ get(requestConfiguration?: RequestConfiguration<QnasRequestBuilderGetQueryParameters> | undefined): Promise<QnaCollectionResponse | undefined>;
27
+ /**
28
+ * Create a new qna object.
29
+ * @param body The request body
30
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
31
+ * @returns {Promise<Qna>}
32
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
33
+ * @see {@link https://learn.microsoft.com/graph/api/search-searchentity-post-qnas?view=graph-rest-1.0|Find more info here}
34
+ */
35
+ post(body: Qna, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Qna | undefined>;
36
+ /**
37
+ * Get a list of the qna objects and their properties.
38
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
+ * @returns {RequestInformation}
40
+ */
41
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<QnasRequestBuilderGetQueryParameters> | undefined): RequestInformation;
42
+ /**
43
+ * Create a new qna object.
44
+ * @param body The request body
45
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
46
+ * @returns {RequestInformation}
47
+ */
48
+ toPostRequestInformation(body: Qna, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
+ }
50
+ /**
51
+ * Get a list of the qna objects and their properties.
52
+ */
53
+ export interface QnasRequestBuilderGetQueryParameters {
54
+ /**
55
+ * Include count of items
56
+ */
57
+ count?: boolean;
58
+ /**
59
+ * Expand related entities
60
+ */
61
+ expand?: string[];
62
+ /**
63
+ * Filter items by property values
64
+ */
65
+ filter?: string;
66
+ /**
67
+ * Order items by property values
68
+ */
69
+ orderby?: string[];
70
+ /**
71
+ * Search items by search phrases
72
+ */
73
+ search?: string;
74
+ /**
75
+ * Select properties to be returned
76
+ */
77
+ select?: string[];
78
+ /**
79
+ * Skip the first n items
80
+ */
81
+ skip?: number;
82
+ /**
83
+ * Show only the first n items
84
+ */
85
+ top?: number;
86
+ }
87
+ /**
88
+ * Uri template for the request builder.
89
+ */
90
+ export declare const QnasRequestBuilderUriTemplate = "{+baseurl}/search/qnas{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
91
+ /**
92
+ * Metadata for all the navigation properties in the request builder.
93
+ */
94
+ export declare const QnasRequestBuilderNavigationMetadata: Record<Exclude<keyof QnasRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
95
+ /**
96
+ * Metadata for all the requests in the request builder.
97
+ */
98
+ export declare const QnasRequestBuilderRequestsMetadata: RequestsMetadata;
99
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAoG,KAAK,GAAG,EAAE,KAAK,qBAAqB,EAAE,MAAM,uCAAuC,CAAC;AAC/L,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzF,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAC5F,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,kBAAmB,SAAQ,kBAAkB,CAAC,kBAAkB,CAAC;IAC9E;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,OAAO,CAAC,KAAK,EAAE,MAAM,GAAI,qBAAqB,CAAC;IAChD;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,oCAAoC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,GAAG,GAAG,SAAS,CAAC,CAAC;IAC7G;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,oCAAoC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC7I;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,GAAG,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9H;AACD;;GAEG;AACH,MAAM,WAAW,oCAAoC;IACjD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,6BAA6B,wGAAwG,CAAC;AAcnJ;;GAEG;AACH,eAAO,MAAM,oCAAoC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,kBAAkB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQlJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,kCAAkC,EAAE,gBAuBhD,CAAC"}
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.QnasRequestBuilderRequestsMetadata = exports.QnasRequestBuilderNavigationMetadata = exports.QnasRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ const search_1 = require("@microsoft/msgraph-sdk/models/search/");
9
+ const count_1 = require("./count/");
10
+ const item_1 = require("./item/");
11
+ /**
12
+ * Uri template for the request builder.
13
+ */
14
+ exports.QnasRequestBuilderUriTemplate = "{+baseurl}/search/qnas{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
15
+ /**
16
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
17
+ */
18
+ const QnasRequestBuilderGetQueryParametersMapper = {
19
+ "count": "%24count",
20
+ "expand": "%24expand",
21
+ "filter": "%24filter",
22
+ "orderby": "%24orderby",
23
+ "search": "%24search",
24
+ "select": "%24select",
25
+ "skip": "%24skip",
26
+ "top": "%24top",
27
+ };
28
+ /**
29
+ * Metadata for all the navigation properties in the request builder.
30
+ */
31
+ exports.QnasRequestBuilderNavigationMetadata = {
32
+ byQnaId: {
33
+ requestsMetadata: item_1.QnaItemRequestBuilderRequestsMetadata,
34
+ pathParametersMappings: ["qna%2Did"],
35
+ },
36
+ count: {
37
+ requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
38
+ },
39
+ };
40
+ /**
41
+ * Metadata for all the requests in the request builder.
42
+ */
43
+ exports.QnasRequestBuilderRequestsMetadata = {
44
+ get: {
45
+ uriTemplate: exports.QnasRequestBuilderUriTemplate,
46
+ responseBodyContentType: "application/json",
47
+ errorMappings: {
48
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
49
+ },
50
+ adapterMethodName: "send",
51
+ responseBodyFactory: search_1.createQnaCollectionResponseFromDiscriminatorValue,
52
+ queryParametersMapper: QnasRequestBuilderGetQueryParametersMapper,
53
+ },
54
+ post: {
55
+ uriTemplate: exports.QnasRequestBuilderUriTemplate,
56
+ responseBodyContentType: "application/json",
57
+ errorMappings: {
58
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
59
+ },
60
+ adapterMethodName: "send",
61
+ responseBodyFactory: search_1.createQnaFromDiscriminatorValue,
62
+ requestBodyContentType: "application/json",
63
+ requestBodySerializer: search_1.serializeQna,
64
+ requestInformationContentSetMethod: "setContentFromParsable",
65
+ },
66
+ };
67
+ /* tslint:enable */
68
+ /* eslint-enable */
@@ -0,0 +1,72 @@
1
+ import { type Qna } from '@microsoft/msgraph-sdk/models/search/';
2
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
3
+ /**
4
+ * Provides operations to manage the qnas property of the microsoft.graph.searchEntity entity.
5
+ */
6
+ export interface QnaItemRequestBuilder extends BaseRequestBuilder<QnaItemRequestBuilder> {
7
+ /**
8
+ * Delete a qna object.
9
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
+ * @see {@link https://learn.microsoft.com/graph/api/search-qna-delete?view=graph-rest-1.0|Find more info here}
12
+ */
13
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
14
+ /**
15
+ * Read the properties and relationships of a qna object.
16
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
+ * @returns {Promise<Qna>}
18
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
19
+ * @see {@link https://learn.microsoft.com/graph/api/search-qna-get?view=graph-rest-1.0|Find more info here}
20
+ */
21
+ get(requestConfiguration?: RequestConfiguration<QnaItemRequestBuilderGetQueryParameters> | undefined): Promise<Qna | undefined>;
22
+ /**
23
+ * Update the properties of a qna object.
24
+ * @param body The request body
25
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
26
+ * @returns {Promise<Qna>}
27
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
28
+ * @see {@link https://learn.microsoft.com/graph/api/search-qna-update?view=graph-rest-1.0|Find more info here}
29
+ */
30
+ patch(body: Qna, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Qna | undefined>;
31
+ /**
32
+ * Delete a qna object.
33
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
+ * @returns {RequestInformation}
35
+ */
36
+ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
37
+ /**
38
+ * Read the properties and relationships of a qna object.
39
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
40
+ * @returns {RequestInformation}
41
+ */
42
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<QnaItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
43
+ /**
44
+ * Update the properties of a qna object.
45
+ * @param body The request body
46
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
47
+ * @returns {RequestInformation}
48
+ */
49
+ toPatchRequestInformation(body: Qna, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
50
+ }
51
+ /**
52
+ * Read the properties and relationships of a qna object.
53
+ */
54
+ export interface QnaItemRequestBuilderGetQueryParameters {
55
+ /**
56
+ * Expand related entities
57
+ */
58
+ expand?: string[];
59
+ /**
60
+ * Select properties to be returned
61
+ */
62
+ select?: string[];
63
+ }
64
+ /**
65
+ * Uri template for the request builder.
66
+ */
67
+ export declare const QnaItemRequestBuilderUriTemplate = "{+baseurl}/search/qnas/{qna%2Did}{?%24expand,%24select}";
68
+ /**
69
+ * Metadata for all the requests in the request builder.
70
+ */
71
+ export declare const QnaItemRequestBuilderRequestsMetadata: RequestsMetadata;
72
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiD,KAAK,GAAG,EAAE,MAAM,uCAAuC,CAAC;AAChH,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,GAAG,GAAG,SAAS,CAAC,CAAC;IAClI;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,GAAG,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,GAAG,GAAG,SAAS,CAAC,CAAC;IAC9G;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,GAAG,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/H;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,4DAA4D,CAAC;AAQ1G;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBA+BnD,CAAC"}
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.QnaItemRequestBuilderRequestsMetadata = exports.QnaItemRequestBuilderUriTemplate = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ const search_1 = require("@microsoft/msgraph-sdk/models/search/");
9
+ /**
10
+ * Uri template for the request builder.
11
+ */
12
+ exports.QnaItemRequestBuilderUriTemplate = "{+baseurl}/search/qnas/{qna%2Did}{?%24expand,%24select}";
13
+ /**
14
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
15
+ */
16
+ const QnaItemRequestBuilderGetQueryParametersMapper = {
17
+ "expand": "%24expand",
18
+ "select": "%24select",
19
+ };
20
+ /**
21
+ * Metadata for all the requests in the request builder.
22
+ */
23
+ exports.QnaItemRequestBuilderRequestsMetadata = {
24
+ delete: {
25
+ uriTemplate: exports.QnaItemRequestBuilderUriTemplate,
26
+ responseBodyContentType: "application/json",
27
+ errorMappings: {
28
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
29
+ },
30
+ adapterMethodName: "sendNoResponseContent",
31
+ },
32
+ get: {
33
+ uriTemplate: exports.QnaItemRequestBuilderUriTemplate,
34
+ responseBodyContentType: "application/json",
35
+ errorMappings: {
36
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
37
+ },
38
+ adapterMethodName: "send",
39
+ responseBodyFactory: search_1.createQnaFromDiscriminatorValue,
40
+ queryParametersMapper: QnaItemRequestBuilderGetQueryParametersMapper,
41
+ },
42
+ patch: {
43
+ uriTemplate: exports.QnaItemRequestBuilderUriTemplate,
44
+ responseBodyContentType: "application/json",
45
+ errorMappings: {
46
+ XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
47
+ },
48
+ adapterMethodName: "send",
49
+ responseBodyFactory: search_1.createQnaFromDiscriminatorValue,
50
+ requestBodyContentType: "application/json",
51
+ requestBodySerializer: search_1.serializeQna,
52
+ requestInformationContentSetMethod: "setContentFromParsable",
53
+ },
54
+ };
55
+ /* tslint:enable */
56
+ /* eslint-enable */