@targetprocess/shared-data-model-client 1.23.0 → 1.26.0
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.
- package/dist/api/sdm/fetch/index.js +0 -1
- package/dist/api/sdm/fetch/item/index.d.ts +1 -25
- package/dist/api/sdm/fetch/item/index.js +3 -28
- package/dist/api/sdm/item/item/index.d.ts +2 -1
- package/dist/api/sdm/item/item/index.js +1 -1
- package/dist/api/sdm/schema/item/index.d.ts +2 -1
- package/dist/api/sdm/schema/item/index.js +1 -1
- package/dist/mcp/index.d.ts +19 -0
- package/dist/mcp/index.js +22 -0
- package/dist/mcp/wellKnown/index.d.ts +19 -0
- package/dist/mcp/wellKnown/index.js +22 -0
- package/dist/mcp/wellKnown/openidConfiguration/index.d.ts +24 -0
- package/dist/mcp/wellKnown/openidConfiguration/index.js +19 -0
- package/dist/tpSharedDataModelClient.d.ts +5 -0
- package/dist/tpSharedDataModelClient.js +5 -0
- package/package.json +1 -1
- package/src/api/sdm/fetch/index.ts +1 -2
- package/src/api/sdm/fetch/item/index.ts +1 -43
- package/src/api/sdm/item/item/index.ts +2 -1
- package/src/api/sdm/schema/item/index.ts +2 -1
- package/src/kiota-lock.json +1 -1
- package/src/mcp/index.ts +31 -0
- package/src/mcp/wellKnown/index.ts +31 -0
- package/src/mcp/wellKnown/openidConfiguration/index.ts +37 -0
- package/src/tpSharedDataModelClient.ts +9 -0
- package/src/v1.json +27 -99
|
@@ -15,7 +15,6 @@ exports.FetchRequestBuilderUriTemplate = "{+baseurl}/api/sdm/fetch";
|
|
|
15
15
|
*/
|
|
16
16
|
exports.FetchRequestBuilderNavigationMetadata = {
|
|
17
17
|
byEntityType: {
|
|
18
|
-
requestsMetadata: index_js_1.WithEntityTypeItemRequestBuilderRequestsMetadata,
|
|
19
18
|
navigationMetadata: index_js_1.WithEntityTypeItemRequestBuilderNavigationMetadata,
|
|
20
19
|
pathParametersMappings: ["entityType"],
|
|
21
20
|
},
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { type QueryFiltersDto } from '../../../../models/index.js';
|
|
2
1
|
import { type EntityTypeItemRequestBuilder } from './item/index.js';
|
|
3
|
-
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata
|
|
2
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
4
3
|
/**
|
|
5
4
|
* Builds and executes requests for operations under /api/sdm/fetch/{entityType}
|
|
6
5
|
*/
|
|
@@ -11,25 +10,6 @@ export interface WithEntityTypeItemRequestBuilder extends BaseRequestBuilder<Wit
|
|
|
11
10
|
* @returns {EntityTypeItemRequestBuilder}
|
|
12
11
|
*/
|
|
13
12
|
byId(id: number): EntityTypeItemRequestBuilder;
|
|
14
|
-
/**
|
|
15
|
-
* Fetches entities using POST with complex filters
|
|
16
|
-
* @param body The request body
|
|
17
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
|
-
* @returns {Promise<UntypedNode>}
|
|
19
|
-
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
20
|
-
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
21
|
-
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
22
|
-
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
23
|
-
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
24
|
-
*/
|
|
25
|
-
post(body: QueryFiltersDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
|
|
26
|
-
/**
|
|
27
|
-
* Fetches entities using POST with complex filters
|
|
28
|
-
* @param body The request body
|
|
29
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
|
-
* @returns {RequestInformation}
|
|
31
|
-
*/
|
|
32
|
-
toPostRequestInformation(body: QueryFiltersDto, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
33
13
|
}
|
|
34
14
|
/**
|
|
35
15
|
* Uri template for the request builder.
|
|
@@ -39,7 +19,3 @@ export declare const WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/a
|
|
|
39
19
|
* Metadata for all the navigation properties in the request builder.
|
|
40
20
|
*/
|
|
41
21
|
export declare const WithEntityTypeItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WithEntityTypeItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
42
|
-
/**
|
|
43
|
-
* Metadata for all the requests in the request builder.
|
|
44
|
-
*/
|
|
45
|
-
export declare const WithEntityTypeItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.WithEntityTypeItemRequestBuilderNavigationMetadata = exports.WithEntityTypeItemRequestBuilderUriTemplate = void 0;
|
|
4
4
|
/* tslint:disable */
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
// Generated by Microsoft Kiota
|
|
7
7
|
// @ts-ignore
|
|
8
|
-
const index_js_1 = require("
|
|
9
|
-
// @ts-ignore
|
|
10
|
-
const index_js_2 = require("./item/index.js");
|
|
11
|
-
// @ts-ignore
|
|
12
|
-
const kiota_abstractions_1 = require("@microsoft/kiota-abstractions");
|
|
8
|
+
const index_js_1 = require("./item/index.js");
|
|
13
9
|
/**
|
|
14
10
|
* Uri template for the request builder.
|
|
15
11
|
*/
|
|
@@ -19,30 +15,9 @@ exports.WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/fetch/
|
|
|
19
15
|
*/
|
|
20
16
|
exports.WithEntityTypeItemRequestBuilderNavigationMetadata = {
|
|
21
17
|
byId: {
|
|
22
|
-
requestsMetadata:
|
|
18
|
+
requestsMetadata: index_js_1.EntityTypeItemRequestBuilderRequestsMetadata,
|
|
23
19
|
pathParametersMappings: ["id"],
|
|
24
20
|
},
|
|
25
21
|
};
|
|
26
|
-
/**
|
|
27
|
-
* Metadata for all the requests in the request builder.
|
|
28
|
-
*/
|
|
29
|
-
exports.WithEntityTypeItemRequestBuilderRequestsMetadata = {
|
|
30
|
-
post: {
|
|
31
|
-
uriTemplate: exports.WithEntityTypeItemRequestBuilderUriTemplate,
|
|
32
|
-
responseBodyContentType: "application/json",
|
|
33
|
-
errorMappings: {
|
|
34
|
-
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
35
|
-
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
36
|
-
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
37
|
-
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
38
|
-
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
39
|
-
},
|
|
40
|
-
adapterMethodName: "send",
|
|
41
|
-
responseBodyFactory: kiota_abstractions_1.createUntypedNodeFromDiscriminatorValue,
|
|
42
|
-
requestBodyContentType: "application/json",
|
|
43
|
-
requestBodySerializer: index_js_1.serializeQueryFiltersDto,
|
|
44
|
-
requestInformationContentSetMethod: "setContentFromParsable",
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
22
|
/* tslint:enable */
|
|
48
23
|
/* eslint-enable */
|
|
@@ -26,6 +26,7 @@ export interface EntityTypeItemRequestBuilder extends BaseRequestBuilder<EntityT
|
|
|
26
26
|
*/
|
|
27
27
|
export interface EntityTypeItemRequestBuilderGetQueryParameters {
|
|
28
28
|
convertAttachmentsHost?: string;
|
|
29
|
+
dateFormat?: string;
|
|
29
30
|
disableProfileValidation?: boolean;
|
|
30
31
|
filter?: string;
|
|
31
32
|
orderBy?: string;
|
|
@@ -38,7 +39,7 @@ export interface EntityTypeItemRequestBuilderGetQueryParameters {
|
|
|
38
39
|
/**
|
|
39
40
|
* Uri template for the request builder.
|
|
40
41
|
*/
|
|
41
|
-
export declare const EntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/{entityType}/{id}?disableProfileValidation={disableProfileValidation}{&convertAttachmentsHost*,filter*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
42
|
+
export declare const EntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/{entityType}/{id}?disableProfileValidation={disableProfileValidation}{&convertAttachmentsHost*,dateFormat*,filter*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
42
43
|
/**
|
|
43
44
|
* Metadata for all the requests in the request builder.
|
|
44
45
|
*/
|
|
@@ -11,7 +11,7 @@ const kiota_abstractions_1 = require("@microsoft/kiota-abstractions");
|
|
|
11
11
|
/**
|
|
12
12
|
* Uri template for the request builder.
|
|
13
13
|
*/
|
|
14
|
-
exports.EntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/{entityType}/{id}?disableProfileValidation={disableProfileValidation}{&convertAttachmentsHost*,filter*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
14
|
+
exports.EntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/{entityType}/{id}?disableProfileValidation={disableProfileValidation}{&convertAttachmentsHost*,dateFormat*,filter*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
15
15
|
/**
|
|
16
16
|
* Metadata for all the requests in the request builder.
|
|
17
17
|
*/
|
|
@@ -26,6 +26,7 @@ export interface WithEntityTypeItemRequestBuilder extends BaseRequestBuilder<Wit
|
|
|
26
26
|
*/
|
|
27
27
|
export interface WithEntityTypeItemRequestBuilderGetQueryParameters {
|
|
28
28
|
convertAttachmentsHost?: string;
|
|
29
|
+
dateFormat?: string;
|
|
29
30
|
disableProfileValidation?: boolean;
|
|
30
31
|
filter?: string;
|
|
31
32
|
id?: number;
|
|
@@ -40,7 +41,7 @@ export interface WithEntityTypeItemRequestBuilderGetQueryParameters {
|
|
|
40
41
|
/**
|
|
41
42
|
* Uri template for the request builder.
|
|
42
43
|
*/
|
|
43
|
-
export declare const WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/schema/{entityType}?disableProfileValidation={disableProfileValidation}&useDefaultProfile={useDefaultProfile}{&convertAttachmentsHost*,filter*,id*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
44
|
+
export declare const WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/schema/{entityType}?disableProfileValidation={disableProfileValidation}&useDefaultProfile={useDefaultProfile}{&convertAttachmentsHost*,dateFormat*,filter*,id*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
44
45
|
/**
|
|
45
46
|
* Metadata for all the requests in the request builder.
|
|
46
47
|
*/
|
|
@@ -11,7 +11,7 @@ const kiota_abstractions_1 = require("@microsoft/kiota-abstractions");
|
|
|
11
11
|
/**
|
|
12
12
|
* Uri template for the request builder.
|
|
13
13
|
*/
|
|
14
|
-
exports.WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/schema/{entityType}?disableProfileValidation={disableProfileValidation}&useDefaultProfile={useDefaultProfile}{&convertAttachmentsHost*,filter*,id*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
14
|
+
exports.WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/schema/{entityType}?disableProfileValidation={disableProfileValidation}&useDefaultProfile={useDefaultProfile}{&convertAttachmentsHost*,dateFormat*,filter*,id*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
15
15
|
/**
|
|
16
16
|
* Metadata for all the requests in the request builder.
|
|
17
17
|
*/
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type WellKnownRequestBuilder } from './wellKnown/index.js';
|
|
2
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Builds and executes requests for operations under /mcp
|
|
5
|
+
*/
|
|
6
|
+
export interface McpRequestBuilder extends BaseRequestBuilder<McpRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* The wellKnown property
|
|
9
|
+
*/
|
|
10
|
+
get wellKnown(): WellKnownRequestBuilder;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Uri template for the request builder.
|
|
14
|
+
*/
|
|
15
|
+
export declare const McpRequestBuilderUriTemplate = "{+baseurl}/mcp";
|
|
16
|
+
/**
|
|
17
|
+
* Metadata for all the navigation properties in the request builder.
|
|
18
|
+
*/
|
|
19
|
+
export declare const McpRequestBuilderNavigationMetadata: Record<Exclude<keyof McpRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.McpRequestBuilderNavigationMetadata = exports.McpRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const index_js_1 = require("./wellKnown/index.js");
|
|
9
|
+
/**
|
|
10
|
+
* Uri template for the request builder.
|
|
11
|
+
*/
|
|
12
|
+
exports.McpRequestBuilderUriTemplate = "{+baseurl}/mcp";
|
|
13
|
+
/**
|
|
14
|
+
* Metadata for all the navigation properties in the request builder.
|
|
15
|
+
*/
|
|
16
|
+
exports.McpRequestBuilderNavigationMetadata = {
|
|
17
|
+
wellKnown: {
|
|
18
|
+
navigationMetadata: index_js_1.WellKnownRequestBuilderNavigationMetadata,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
/* tslint:enable */
|
|
22
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type OpenidConfigurationRequestBuilder } from './openidConfiguration/index.js';
|
|
2
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Builds and executes requests for operations under /mcp/.well-known
|
|
5
|
+
*/
|
|
6
|
+
export interface WellKnownRequestBuilder extends BaseRequestBuilder<WellKnownRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* The openidConfiguration property
|
|
9
|
+
*/
|
|
10
|
+
get openidConfiguration(): OpenidConfigurationRequestBuilder;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Uri template for the request builder.
|
|
14
|
+
*/
|
|
15
|
+
export declare const WellKnownRequestBuilderUriTemplate = "{+baseurl}/mcp/.well-known";
|
|
16
|
+
/**
|
|
17
|
+
* Metadata for all the navigation properties in the request builder.
|
|
18
|
+
*/
|
|
19
|
+
export declare const WellKnownRequestBuilderNavigationMetadata: Record<Exclude<keyof WellKnownRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WellKnownRequestBuilderNavigationMetadata = exports.WellKnownRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const index_js_1 = require("./openidConfiguration/index.js");
|
|
9
|
+
/**
|
|
10
|
+
* Uri template for the request builder.
|
|
11
|
+
*/
|
|
12
|
+
exports.WellKnownRequestBuilderUriTemplate = "{+baseurl}/mcp/.well-known";
|
|
13
|
+
/**
|
|
14
|
+
* Metadata for all the navigation properties in the request builder.
|
|
15
|
+
*/
|
|
16
|
+
exports.WellKnownRequestBuilderNavigationMetadata = {
|
|
17
|
+
openidConfiguration: {
|
|
18
|
+
requestsMetadata: index_js_1.OpenidConfigurationRequestBuilderRequestsMetadata,
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
/* tslint:enable */
|
|
22
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
2
|
+
/**
|
|
3
|
+
* Builds and executes requests for operations under /mcp/.well-known/openid-configuration
|
|
4
|
+
*/
|
|
5
|
+
export interface OpenidConfigurationRequestBuilder extends BaseRequestBuilder<OpenidConfigurationRequestBuilder> {
|
|
6
|
+
/**
|
|
7
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
8
|
+
* @returns {Promise<ArrayBuffer>}
|
|
9
|
+
*/
|
|
10
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
|
|
11
|
+
/**
|
|
12
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
13
|
+
* @returns {RequestInformation}
|
|
14
|
+
*/
|
|
15
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Uri template for the request builder.
|
|
19
|
+
*/
|
|
20
|
+
export declare const OpenidConfigurationRequestBuilderUriTemplate = "{+baseurl}/mcp/.well-known/openid-configuration";
|
|
21
|
+
/**
|
|
22
|
+
* Metadata for all the requests in the request builder.
|
|
23
|
+
*/
|
|
24
|
+
export declare const OpenidConfigurationRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OpenidConfigurationRequestBuilderRequestsMetadata = exports.OpenidConfigurationRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Uri template for the request builder.
|
|
6
|
+
*/
|
|
7
|
+
exports.OpenidConfigurationRequestBuilderUriTemplate = "{+baseurl}/mcp/.well-known/openid-configuration";
|
|
8
|
+
/**
|
|
9
|
+
* Metadata for all the requests in the request builder.
|
|
10
|
+
*/
|
|
11
|
+
exports.OpenidConfigurationRequestBuilderRequestsMetadata = {
|
|
12
|
+
get: {
|
|
13
|
+
uriTemplate: exports.OpenidConfigurationRequestBuilderUriTemplate,
|
|
14
|
+
adapterMethodName: "sendPrimitive",
|
|
15
|
+
responseBodyFactory: "ArrayBuffer",
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
/* tslint:enable */
|
|
19
|
+
/* eslint-enable */
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type ApiRequestBuilder } from './api/index.js';
|
|
2
|
+
import { type McpRequestBuilder } from './mcp/index.js';
|
|
2
3
|
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
|
|
3
4
|
/**
|
|
4
5
|
* Instantiates a new {@link TpSharedDataModelClient} and sets the default values.
|
|
@@ -13,6 +14,10 @@ export interface TpSharedDataModelClient extends BaseRequestBuilder<TpSharedData
|
|
|
13
14
|
* The api property
|
|
14
15
|
*/
|
|
15
16
|
get api(): ApiRequestBuilder;
|
|
17
|
+
/**
|
|
18
|
+
* The mcp property
|
|
19
|
+
*/
|
|
20
|
+
get mcp(): McpRequestBuilder;
|
|
16
21
|
}
|
|
17
22
|
/**
|
|
18
23
|
* Uri template for the request builder.
|
|
@@ -8,6 +8,8 @@ exports.createTpSharedDataModelClient = createTpSharedDataModelClient;
|
|
|
8
8
|
// @ts-ignore
|
|
9
9
|
const index_js_1 = require("./api/index.js");
|
|
10
10
|
// @ts-ignore
|
|
11
|
+
const index_js_2 = require("./mcp/index.js");
|
|
12
|
+
// @ts-ignore
|
|
11
13
|
const kiota_abstractions_1 = require("@microsoft/kiota-abstractions");
|
|
12
14
|
// @ts-ignore
|
|
13
15
|
const kiota_serialization_form_1 = require("@microsoft/kiota-serialization-form");
|
|
@@ -56,6 +58,9 @@ exports.TpSharedDataModelClientNavigationMetadata = {
|
|
|
56
58
|
api: {
|
|
57
59
|
navigationMetadata: index_js_1.ApiRequestBuilderNavigationMetadata,
|
|
58
60
|
},
|
|
61
|
+
mcp: {
|
|
62
|
+
navigationMetadata: index_js_2.McpRequestBuilderNavigationMetadata,
|
|
63
|
+
},
|
|
59
64
|
};
|
|
60
65
|
/* tslint:enable */
|
|
61
66
|
/* eslint-enable */
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
// Generated by Microsoft Kiota
|
|
4
4
|
// @ts-ignore
|
|
5
|
-
import { type WithEntityTypeItemRequestBuilder, WithEntityTypeItemRequestBuilderNavigationMetadata
|
|
5
|
+
import { type WithEntityTypeItemRequestBuilder, WithEntityTypeItemRequestBuilderNavigationMetadata } from './item/index.js';
|
|
6
6
|
// @ts-ignore
|
|
7
7
|
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
8
8
|
|
|
@@ -26,7 +26,6 @@ export const FetchRequestBuilderUriTemplate = "{+baseurl}/api/sdm/fetch";
|
|
|
26
26
|
*/
|
|
27
27
|
export const FetchRequestBuilderNavigationMetadata: Record<Exclude<keyof FetchRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata> = {
|
|
28
28
|
byEntityType: {
|
|
29
|
-
requestsMetadata: WithEntityTypeItemRequestBuilderRequestsMetadata,
|
|
30
29
|
navigationMetadata: WithEntityTypeItemRequestBuilderNavigationMetadata,
|
|
31
30
|
pathParametersMappings: ["entityType"],
|
|
32
31
|
},
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
// Generated by Microsoft Kiota
|
|
4
4
|
// @ts-ignore
|
|
5
|
-
import { createHttpValidationProblemDetailsFromDiscriminatorValue, createProblemDetailsFromDiscriminatorValue, serializeQueryFiltersDto, type HttpValidationProblemDetails, type ProblemDetails, type QueryFiltersDto } from '../../../../models/index.js';
|
|
6
|
-
// @ts-ignore
|
|
7
5
|
import { EntityTypeItemRequestBuilderRequestsMetadata, type EntityTypeItemRequestBuilder } from './item/index.js';
|
|
8
6
|
// @ts-ignore
|
|
9
|
-
import {
|
|
7
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
10
8
|
|
|
11
9
|
/**
|
|
12
10
|
* Builds and executes requests for operations under /api/sdm/fetch/{entityType}
|
|
@@ -18,25 +16,6 @@ export interface WithEntityTypeItemRequestBuilder extends BaseRequestBuilder<Wit
|
|
|
18
16
|
* @returns {EntityTypeItemRequestBuilder}
|
|
19
17
|
*/
|
|
20
18
|
byId(id: number) : EntityTypeItemRequestBuilder;
|
|
21
|
-
/**
|
|
22
|
-
* Fetches entities using POST with complex filters
|
|
23
|
-
* @param body The request body
|
|
24
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
|
-
* @returns {Promise<UntypedNode>}
|
|
26
|
-
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
27
|
-
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
28
|
-
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
29
|
-
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
30
|
-
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
31
|
-
*/
|
|
32
|
-
post(body: QueryFiltersDto, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<UntypedNode | undefined>;
|
|
33
|
-
/**
|
|
34
|
-
* Fetches entities using POST with complex filters
|
|
35
|
-
* @param body The request body
|
|
36
|
-
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
|
-
* @returns {RequestInformation}
|
|
38
|
-
*/
|
|
39
|
-
toPostRequestInformation(body: QueryFiltersDto, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
|
|
40
19
|
}
|
|
41
20
|
/**
|
|
42
21
|
* Uri template for the request builder.
|
|
@@ -51,26 +30,5 @@ export const WithEntityTypeItemRequestBuilderNavigationMetadata: Record<Exclude<
|
|
|
51
30
|
pathParametersMappings: ["id"],
|
|
52
31
|
},
|
|
53
32
|
};
|
|
54
|
-
/**
|
|
55
|
-
* Metadata for all the requests in the request builder.
|
|
56
|
-
*/
|
|
57
|
-
export const WithEntityTypeItemRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
58
|
-
post: {
|
|
59
|
-
uriTemplate: WithEntityTypeItemRequestBuilderUriTemplate,
|
|
60
|
-
responseBodyContentType: "application/json",
|
|
61
|
-
errorMappings: {
|
|
62
|
-
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
63
|
-
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
64
|
-
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
65
|
-
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
66
|
-
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
67
|
-
},
|
|
68
|
-
adapterMethodName: "send",
|
|
69
|
-
responseBodyFactory: createUntypedNodeFromDiscriminatorValue,
|
|
70
|
-
requestBodyContentType: "application/json",
|
|
71
|
-
requestBodySerializer: serializeQueryFiltersDto,
|
|
72
|
-
requestInformationContentSetMethod: "setContentFromParsable",
|
|
73
|
-
},
|
|
74
|
-
};
|
|
75
33
|
/* tslint:enable */
|
|
76
34
|
/* eslint-enable */
|
|
@@ -33,6 +33,7 @@ export interface EntityTypeItemRequestBuilder extends BaseRequestBuilder<EntityT
|
|
|
33
33
|
*/
|
|
34
34
|
export interface EntityTypeItemRequestBuilderGetQueryParameters {
|
|
35
35
|
convertAttachmentsHost?: string;
|
|
36
|
+
dateFormat?: string;
|
|
36
37
|
disableProfileValidation?: boolean;
|
|
37
38
|
filter?: string;
|
|
38
39
|
orderBy?: string;
|
|
@@ -45,7 +46,7 @@ export interface EntityTypeItemRequestBuilderGetQueryParameters {
|
|
|
45
46
|
/**
|
|
46
47
|
* Uri template for the request builder.
|
|
47
48
|
*/
|
|
48
|
-
export const EntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/{entityType}/{id}?disableProfileValidation={disableProfileValidation}{&convertAttachmentsHost*,filter*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
49
|
+
export const EntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/{entityType}/{id}?disableProfileValidation={disableProfileValidation}{&convertAttachmentsHost*,dateFormat*,filter*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
49
50
|
/**
|
|
50
51
|
* Metadata for all the requests in the request builder.
|
|
51
52
|
*/
|
|
@@ -33,6 +33,7 @@ export interface WithEntityTypeItemRequestBuilder extends BaseRequestBuilder<Wit
|
|
|
33
33
|
*/
|
|
34
34
|
export interface WithEntityTypeItemRequestBuilderGetQueryParameters {
|
|
35
35
|
convertAttachmentsHost?: string;
|
|
36
|
+
dateFormat?: string;
|
|
36
37
|
disableProfileValidation?: boolean;
|
|
37
38
|
filter?: string;
|
|
38
39
|
id?: number;
|
|
@@ -47,7 +48,7 @@ export interface WithEntityTypeItemRequestBuilderGetQueryParameters {
|
|
|
47
48
|
/**
|
|
48
49
|
* Uri template for the request builder.
|
|
49
50
|
*/
|
|
50
|
-
export const WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/schema/{entityType}?disableProfileValidation={disableProfileValidation}&useDefaultProfile={useDefaultProfile}{&convertAttachmentsHost*,filter*,id*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
51
|
+
export const WithEntityTypeItemRequestBuilderUriTemplate = "{+baseurl}/api/sdm/schema/{entityType}?disableProfileValidation={disableProfileValidation}&useDefaultProfile={useDefaultProfile}{&convertAttachmentsHost*,dateFormat*,filter*,id*,orderBy*,result*,select*,skip*,take*,where*}";
|
|
51
52
|
/**
|
|
52
53
|
* Metadata for all the requests in the request builder.
|
|
53
54
|
*/
|
package/src/kiota-lock.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"descriptionHash": "
|
|
2
|
+
"descriptionHash": "0099C6AB65CCE8E0C9BAC0A0E9C2A29B82CBDFD01EA41BFDAB3DE445E5CB556555F18467B2E4E04C8CD81575FCF40EB68464DF44ED1665BDCB4C986F8130F5A7",
|
|
3
3
|
"descriptionLocation": "v1.json",
|
|
4
4
|
"lockFileVersion": "1.0.0",
|
|
5
5
|
"kiotaVersion": "1.29.0",
|
package/src/mcp/index.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { type WellKnownRequestBuilder, WellKnownRequestBuilderNavigationMetadata } from './wellKnown/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Builds and executes requests for operations under /mcp
|
|
11
|
+
*/
|
|
12
|
+
export interface McpRequestBuilder extends BaseRequestBuilder<McpRequestBuilder> {
|
|
13
|
+
/**
|
|
14
|
+
* The wellKnown property
|
|
15
|
+
*/
|
|
16
|
+
get wellKnown(): WellKnownRequestBuilder;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Uri template for the request builder.
|
|
20
|
+
*/
|
|
21
|
+
export const McpRequestBuilderUriTemplate = "{+baseurl}/mcp";
|
|
22
|
+
/**
|
|
23
|
+
* Metadata for all the navigation properties in the request builder.
|
|
24
|
+
*/
|
|
25
|
+
export const McpRequestBuilderNavigationMetadata: Record<Exclude<keyof McpRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata> = {
|
|
26
|
+
wellKnown: {
|
|
27
|
+
navigationMetadata: WellKnownRequestBuilderNavigationMetadata,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
/* tslint:enable */
|
|
31
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { OpenidConfigurationRequestBuilderRequestsMetadata, type OpenidConfigurationRequestBuilder } from './openidConfiguration/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Builds and executes requests for operations under /mcp/.well-known
|
|
11
|
+
*/
|
|
12
|
+
export interface WellKnownRequestBuilder extends BaseRequestBuilder<WellKnownRequestBuilder> {
|
|
13
|
+
/**
|
|
14
|
+
* The openidConfiguration property
|
|
15
|
+
*/
|
|
16
|
+
get openidConfiguration(): OpenidConfigurationRequestBuilder;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Uri template for the request builder.
|
|
20
|
+
*/
|
|
21
|
+
export const WellKnownRequestBuilderUriTemplate = "{+baseurl}/mcp/.well-known";
|
|
22
|
+
/**
|
|
23
|
+
* Metadata for all the navigation properties in the request builder.
|
|
24
|
+
*/
|
|
25
|
+
export const WellKnownRequestBuilderNavigationMetadata: Record<Exclude<keyof WellKnownRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata> = {
|
|
26
|
+
openidConfiguration: {
|
|
27
|
+
requestsMetadata: OpenidConfigurationRequestBuilderRequestsMetadata,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
/* tslint:enable */
|
|
31
|
+
/* eslint-enable */
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Builds and executes requests for operations under /mcp/.well-known/openid-configuration
|
|
9
|
+
*/
|
|
10
|
+
export interface OpenidConfigurationRequestBuilder extends BaseRequestBuilder<OpenidConfigurationRequestBuilder> {
|
|
11
|
+
/**
|
|
12
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
13
|
+
* @returns {Promise<ArrayBuffer>}
|
|
14
|
+
*/
|
|
15
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ArrayBuffer | undefined>;
|
|
16
|
+
/**
|
|
17
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
|
+
* @returns {RequestInformation}
|
|
19
|
+
*/
|
|
20
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Uri template for the request builder.
|
|
24
|
+
*/
|
|
25
|
+
export const OpenidConfigurationRequestBuilderUriTemplate = "{+baseurl}/mcp/.well-known/openid-configuration";
|
|
26
|
+
/**
|
|
27
|
+
* Metadata for all the requests in the request builder.
|
|
28
|
+
*/
|
|
29
|
+
export const OpenidConfigurationRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
30
|
+
get: {
|
|
31
|
+
uriTemplate: OpenidConfigurationRequestBuilderUriTemplate,
|
|
32
|
+
adapterMethodName: "sendPrimitive",
|
|
33
|
+
responseBodyFactory: "ArrayBuffer",
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
/* tslint:enable */
|
|
37
|
+
/* eslint-enable */
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
// @ts-ignore
|
|
5
5
|
import { ApiRequestBuilderNavigationMetadata, type ApiRequestBuilder } from './api/index.js';
|
|
6
6
|
// @ts-ignore
|
|
7
|
+
import { McpRequestBuilderNavigationMetadata, type McpRequestBuilder } from './mcp/index.js';
|
|
8
|
+
// @ts-ignore
|
|
7
9
|
import { apiClientProxifier, ParseNodeFactoryRegistry, SerializationWriterFactoryRegistry, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
|
|
8
10
|
// @ts-ignore
|
|
9
11
|
import { FormParseNodeFactory, FormSerializationWriterFactory } from '@microsoft/kiota-serialization-form';
|
|
@@ -53,6 +55,10 @@ export interface TpSharedDataModelClient extends BaseRequestBuilder<TpSharedData
|
|
|
53
55
|
* The api property
|
|
54
56
|
*/
|
|
55
57
|
get api(): ApiRequestBuilder;
|
|
58
|
+
/**
|
|
59
|
+
* The mcp property
|
|
60
|
+
*/
|
|
61
|
+
get mcp(): McpRequestBuilder;
|
|
56
62
|
}
|
|
57
63
|
/**
|
|
58
64
|
* Uri template for the request builder.
|
|
@@ -65,6 +71,9 @@ export const TpSharedDataModelClientNavigationMetadata: Record<Exclude<keyof TpS
|
|
|
65
71
|
api: {
|
|
66
72
|
navigationMetadata: ApiRequestBuilderNavigationMetadata,
|
|
67
73
|
},
|
|
74
|
+
mcp: {
|
|
75
|
+
navigationMetadata: McpRequestBuilderNavigationMetadata,
|
|
76
|
+
},
|
|
68
77
|
};
|
|
69
78
|
/* tslint:enable */
|
|
70
79
|
/* eslint-enable */
|
package/src/v1.json
CHANGED
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
"version": "v1"
|
|
7
7
|
},
|
|
8
8
|
"paths": {
|
|
9
|
+
"/mcp/.well-known/openid-configuration": {
|
|
10
|
+
"get": {
|
|
11
|
+
"operationId": "GetMcp.wellKnownOpenidConfiguration",
|
|
12
|
+
"responses": {
|
|
13
|
+
"200": {
|
|
14
|
+
"description": ""
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
9
19
|
"/api/sdm/terms": {
|
|
10
20
|
"get": {
|
|
11
21
|
"tags": [
|
|
@@ -465,6 +475,14 @@
|
|
|
465
475
|
"nullable": true
|
|
466
476
|
}
|
|
467
477
|
},
|
|
478
|
+
{
|
|
479
|
+
"name": "dateFormat",
|
|
480
|
+
"in": "query",
|
|
481
|
+
"schema": {
|
|
482
|
+
"type": "string",
|
|
483
|
+
"nullable": true
|
|
484
|
+
}
|
|
485
|
+
},
|
|
468
486
|
{
|
|
469
487
|
"name": "disableProfileValidation",
|
|
470
488
|
"in": "query",
|
|
@@ -638,6 +656,14 @@
|
|
|
638
656
|
"nullable": true
|
|
639
657
|
}
|
|
640
658
|
},
|
|
659
|
+
{
|
|
660
|
+
"name": "dateFormat",
|
|
661
|
+
"in": "query",
|
|
662
|
+
"schema": {
|
|
663
|
+
"type": "string",
|
|
664
|
+
"nullable": true
|
|
665
|
+
}
|
|
666
|
+
},
|
|
641
667
|
{
|
|
642
668
|
"name": "disableProfileValidation",
|
|
643
669
|
"in": "query",
|
|
@@ -726,7 +752,7 @@
|
|
|
726
752
|
"Sdm"
|
|
727
753
|
],
|
|
728
754
|
"summary": "Fetches entities using POST with complex filters",
|
|
729
|
-
"operationId": "
|
|
755
|
+
"operationId": "SharedDataFetchPostEndpoint",
|
|
730
756
|
"parameters": [
|
|
731
757
|
{
|
|
732
758
|
"name": "entityType",
|
|
@@ -827,104 +853,6 @@
|
|
|
827
853
|
]
|
|
828
854
|
}
|
|
829
855
|
},
|
|
830
|
-
"/api/sdm/fetch/{entityType}": {
|
|
831
|
-
"post": {
|
|
832
|
-
"tags": [
|
|
833
|
-
"Sdm"
|
|
834
|
-
],
|
|
835
|
-
"summary": "Fetches entities using POST with complex filters",
|
|
836
|
-
"operationId": "SharedDataFetchPostEndpoint2",
|
|
837
|
-
"parameters": [
|
|
838
|
-
{
|
|
839
|
-
"name": "entityType",
|
|
840
|
-
"in": "path",
|
|
841
|
-
"required": true,
|
|
842
|
-
"schema": {
|
|
843
|
-
"type": "string"
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
],
|
|
847
|
-
"requestBody": {
|
|
848
|
-
"x-name": "payload",
|
|
849
|
-
"content": {
|
|
850
|
-
"application/json": {
|
|
851
|
-
"schema": {
|
|
852
|
-
"$ref": "#/components/schemas/QueryFiltersDto"
|
|
853
|
-
}
|
|
854
|
-
}
|
|
855
|
-
},
|
|
856
|
-
"required": true
|
|
857
|
-
},
|
|
858
|
-
"responses": {
|
|
859
|
-
"400": {
|
|
860
|
-
"description": "Validation error",
|
|
861
|
-
"content": {
|
|
862
|
-
"application/problem+json": {
|
|
863
|
-
"schema": {
|
|
864
|
-
"$ref": "#/components/schemas/HttpValidationProblemDetails"
|
|
865
|
-
}
|
|
866
|
-
}
|
|
867
|
-
}
|
|
868
|
-
},
|
|
869
|
-
"401": {
|
|
870
|
-
"description": "Unauthorized",
|
|
871
|
-
"content": {
|
|
872
|
-
"application/problem+json": {
|
|
873
|
-
"schema": {
|
|
874
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
|
-
}
|
|
878
|
-
},
|
|
879
|
-
"404": {
|
|
880
|
-
"description": "Unable to find resource",
|
|
881
|
-
"content": {
|
|
882
|
-
"application/problem+json": {
|
|
883
|
-
"schema": {
|
|
884
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
885
|
-
}
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
},
|
|
889
|
-
"409": {
|
|
890
|
-
"description": "Conflict",
|
|
891
|
-
"content": {
|
|
892
|
-
"application/problem+json": {
|
|
893
|
-
"schema": {
|
|
894
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
895
|
-
}
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
},
|
|
899
|
-
"500": {
|
|
900
|
-
"description": "Internal server error",
|
|
901
|
-
"content": {
|
|
902
|
-
"application/problem+json": {
|
|
903
|
-
"schema": {
|
|
904
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
905
|
-
}
|
|
906
|
-
}
|
|
907
|
-
}
|
|
908
|
-
},
|
|
909
|
-
"200": {
|
|
910
|
-
"description": "Success",
|
|
911
|
-
"content": {
|
|
912
|
-
"application/json": {
|
|
913
|
-
"schema": {}
|
|
914
|
-
}
|
|
915
|
-
}
|
|
916
|
-
},
|
|
917
|
-
"403": {
|
|
918
|
-
"description": "Forbidden"
|
|
919
|
-
}
|
|
920
|
-
},
|
|
921
|
-
"security": [
|
|
922
|
-
{
|
|
923
|
-
"apptio-token-scheme": []
|
|
924
|
-
}
|
|
925
|
-
]
|
|
926
|
-
}
|
|
927
|
-
},
|
|
928
856
|
"/api/sdm/{entityType}/count": {
|
|
929
857
|
"get": {
|
|
930
858
|
"tags": [
|