@graphlit/durable-agents-sdk 1.0.20260610015-dev → 1.0.20260610017-dev
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/src/build-info.d.ts +1 -1
- package/dist/src/build-info.js +1 -1
- package/dist/src/generated/api/durable/billing/fundingRequests/index.d.ts +42 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/index.js +41 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/index.js.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.d.ts +38 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.js +36 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/index.js.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.d.ts +32 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.js +30 -0
- package/dist/src/generated/api/durable/billing/fundingRequests/item/mpp/index.js.map +1 -0
- package/dist/src/generated/api/durable/billing/index.d.ts +5 -0
- package/dist/src/generated/api/durable/billing/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/billing/index.js +6 -0
- package/dist/src/generated/api/durable/billing/index.js.map +1 -1
- package/dist/src/generated/api/durable/content/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/content/index.js +2 -1
- package/dist/src/generated/api/durable/content/index.js.map +1 -1
- package/dist/src/generated/api/durable/content/item/index.d.ts +10 -1
- package/dist/src/generated/api/durable/content/item/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/content/item/index.js +10 -0
- package/dist/src/generated/api/durable/content/item/index.js.map +1 -1
- package/dist/src/generated/api/durable/content/item/inspect/index.d.ts +29 -0
- package/dist/src/generated/api/durable/content/item/inspect/index.d.ts.map +1 -0
- package/dist/src/generated/api/durable/content/item/inspect/index.js +26 -0
- package/dist/src/generated/api/durable/content/item/inspect/index.js.map +1 -0
- package/dist/src/generated/api/durable/vfs/search/index.d.ts +10 -1
- package/dist/src/generated/api/durable/vfs/search/index.d.ts.map +1 -1
- package/dist/src/generated/api/durable/vfs/search/index.js +6 -1
- package/dist/src/generated/api/durable/vfs/search/index.js.map +1 -1
- package/dist/src/generated/models/index.d.ts +926 -23
- package/dist/src/generated/models/index.d.ts.map +1 -1
- package/dist/src/generated/models/index.js +920 -7
- package/dist/src/generated/models/index.js.map +1 -1
- package/openapi/durable-agents.sdk.yaml +629 -1
- package/package.json +1 -1
package/dist/src/build-info.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.0.
|
|
1
|
+
export declare const SDK_VERSION = "1.0.20260610017-dev";
|
|
2
2
|
export declare const SDK_CHANNEL = "dev";
|
|
3
3
|
export declare const DEFAULT_BASE_URL = "https://dev.durableagents.ai";
|
|
4
4
|
//# sourceMappingURL=build-info.d.ts.map
|
package/dist/src/build-info.js
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { type BillingFundingRequest, type BillingFundingRequestCreate } from '../../../../models/index.js';
|
|
2
|
+
import { type WithFunding_request_ItemRequestBuilder } from './item/index.js';
|
|
3
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
4
|
+
/**
|
|
5
|
+
* Builds and executes requests for operations under /api/durable/billing/funding-requests
|
|
6
|
+
*/
|
|
7
|
+
export interface FundingRequestsRequestBuilder extends BaseRequestBuilder<FundingRequestsRequestBuilder> {
|
|
8
|
+
/**
|
|
9
|
+
* Gets an item from the durable_agents.generated.api.durable.billing.fundingRequests.item collection
|
|
10
|
+
* @param funding_request_id Unique identifier of the item
|
|
11
|
+
* @returns {WithFunding_request_ItemRequestBuilder}
|
|
12
|
+
*/
|
|
13
|
+
byFunding_request_id(funding_request_id: string): WithFunding_request_ItemRequestBuilder;
|
|
14
|
+
/**
|
|
15
|
+
* Create a wallet funding request for Link MPP payment.
|
|
16
|
+
* @param body The request body
|
|
17
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
18
|
+
* @returns {Promise<BillingFundingRequest>}
|
|
19
|
+
* @throws {ErrorEnvelope} error when the service returns a 4XX or 5XX status code
|
|
20
|
+
*/
|
|
21
|
+
post(body: BillingFundingRequestCreate, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<BillingFundingRequest | undefined>;
|
|
22
|
+
/**
|
|
23
|
+
* Create a wallet funding request for Link MPP payment.
|
|
24
|
+
* @param body The request body
|
|
25
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
|
+
* @returns {RequestInformation}
|
|
27
|
+
*/
|
|
28
|
+
toPostRequestInformation(body: BillingFundingRequestCreate, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Uri template for the request builder.
|
|
32
|
+
*/
|
|
33
|
+
export declare const FundingRequestsRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing/funding-requests";
|
|
34
|
+
/**
|
|
35
|
+
* Metadata for all the navigation properties in the request builder.
|
|
36
|
+
*/
|
|
37
|
+
export declare const FundingRequestsRequestBuilderNavigationMetadata: Record<Exclude<keyof FundingRequestsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
38
|
+
/**
|
|
39
|
+
* Metadata for all the requests in the request builder.
|
|
40
|
+
*/
|
|
41
|
+
export declare const FundingRequestsRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
42
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/billing/fundingRequests/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAsK,KAAK,qBAAqB,EAAE,KAAK,2BAA2B,EAAsB,MAAM,6BAA6B,CAAC;AAEnS,OAAO,EAAE,KAAK,sCAAsC,EAAoH,MAAM,iBAAiB,CAAC;AAEhM,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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;;;OAIG;IACF,oBAAoB,CAAC,kBAAkB,EAAE,MAAM,GAAI,sCAAsC,CAAC;IAC3F;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,2BAA2B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACvJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,2BAA2B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACtJ;AACD;;GAEG;AACH,eAAO,MAAM,wCAAwC,oDAAoD,CAAC;AAC1G;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6BAA6B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAMxK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBAa3D,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createBillingFundingRequestFromDiscriminatorValue, createErrorEnvelopeFromDiscriminatorValue, serializeBillingFundingRequestCreate } from '../../../../models/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { WithFunding_request_ItemRequestBuilderNavigationMetadata, WithFunding_request_ItemRequestBuilderRequestsMetadata } from './item/index.js';
|
|
8
|
+
/**
|
|
9
|
+
* Uri template for the request builder.
|
|
10
|
+
*/
|
|
11
|
+
export const FundingRequestsRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing/funding-requests";
|
|
12
|
+
/**
|
|
13
|
+
* Metadata for all the navigation properties in the request builder.
|
|
14
|
+
*/
|
|
15
|
+
export const FundingRequestsRequestBuilderNavigationMetadata = {
|
|
16
|
+
byFunding_request_id: {
|
|
17
|
+
requestsMetadata: WithFunding_request_ItemRequestBuilderRequestsMetadata,
|
|
18
|
+
navigationMetadata: WithFunding_request_ItemRequestBuilderNavigationMetadata,
|
|
19
|
+
pathParametersMappings: ["funding_request_id"],
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Metadata for all the requests in the request builder.
|
|
24
|
+
*/
|
|
25
|
+
export const FundingRequestsRequestBuilderRequestsMetadata = {
|
|
26
|
+
post: {
|
|
27
|
+
uriTemplate: FundingRequestsRequestBuilderUriTemplate,
|
|
28
|
+
responseBodyContentType: "application/json",
|
|
29
|
+
errorMappings: {
|
|
30
|
+
XXX: createErrorEnvelopeFromDiscriminatorValue,
|
|
31
|
+
},
|
|
32
|
+
adapterMethodName: "send",
|
|
33
|
+
responseBodyFactory: createBillingFundingRequestFromDiscriminatorValue,
|
|
34
|
+
requestBodyContentType: "application/json",
|
|
35
|
+
requestBodySerializer: serializeBillingFundingRequestCreate,
|
|
36
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
/* tslint:enable */
|
|
40
|
+
/* eslint-enable */
|
|
41
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/billing/fundingRequests/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,iDAAiD,EAAE,yCAAyC,EAAkC,oCAAoC,EAAoF,MAAM,6BAA6B,CAAC;AACnS,aAAa;AACb,OAAO,EAA+C,wDAAwD,EAAE,sDAAsD,EAAE,MAAM,iBAAiB,CAAC;AA8BhM;;GAEG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAG,iDAAiD,CAAC;AAC1G;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAiH;IACzK,oBAAoB,EAAE;QAClB,gBAAgB,EAAE,sDAAsD;QACxE,kBAAkB,EAAE,wDAAwD;QAC5E,sBAAsB,EAAE,CAAC,oBAAoB,CAAC;KACjD;CACJ,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,6CAA6C,GAAqB;IAC3E,IAAI,EAAE;QACF,WAAW,EAAE,wCAAwC;QACrD,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,iDAAiD;QACvE,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,oCAAoC;QAC3D,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { type BillingFundingRequest } from '../../../../../models/index.js';
|
|
2
|
+
import { type MppRequestBuilder } from './mpp/index.js';
|
|
3
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
4
|
+
/**
|
|
5
|
+
* Builds and executes requests for operations under /api/durable/billing/funding-requests/{funding_request_id}
|
|
6
|
+
*/
|
|
7
|
+
export interface WithFunding_request_ItemRequestBuilder extends BaseRequestBuilder<WithFunding_request_ItemRequestBuilder> {
|
|
8
|
+
/**
|
|
9
|
+
* The mpp property
|
|
10
|
+
*/
|
|
11
|
+
get mpp(): MppRequestBuilder;
|
|
12
|
+
/**
|
|
13
|
+
* Get a wallet funding request.
|
|
14
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
|
+
* @returns {Promise<BillingFundingRequest>}
|
|
16
|
+
* @throws {ErrorEnvelope} error when the service returns a 4XX or 5XX status code
|
|
17
|
+
*/
|
|
18
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<BillingFundingRequest | undefined>;
|
|
19
|
+
/**
|
|
20
|
+
* Get a wallet funding request.
|
|
21
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
|
+
* @returns {RequestInformation}
|
|
23
|
+
*/
|
|
24
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Uri template for the request builder.
|
|
28
|
+
*/
|
|
29
|
+
export declare const WithFunding_request_ItemRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing/funding-requests/{funding_request_id}";
|
|
30
|
+
/**
|
|
31
|
+
* Metadata for all the navigation properties in the request builder.
|
|
32
|
+
*/
|
|
33
|
+
export declare const WithFunding_request_ItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WithFunding_request_ItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
34
|
+
/**
|
|
35
|
+
* Metadata for all the requests in the request builder.
|
|
36
|
+
*/
|
|
37
|
+
export declare const WithFunding_request_ItemRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
38
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/generated/api/durable/billing/fundingRequests/item/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAgG,KAAK,qBAAqB,EAAsB,MAAM,gCAAgC,CAAC;AAE9L,OAAO,EAAqC,KAAK,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAE3F,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,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH;;OAEG;IACH,IAAI,GAAG,IAAI,iBAAiB,CAAC;IAC7B;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACnH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClH;AACD;;GAEG;AACH,eAAO,MAAM,iDAAiD,yEAAyE,CAAC;AACxI;;GAEG;AACH,eAAO,MAAM,wDAAwD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,sCAAsC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAI1L,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,gBAUpE,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createBillingFundingRequestFromDiscriminatorValue, createErrorEnvelopeFromDiscriminatorValue } from '../../../../../models/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { MppRequestBuilderRequestsMetadata } from './mpp/index.js';
|
|
8
|
+
/**
|
|
9
|
+
* Uri template for the request builder.
|
|
10
|
+
*/
|
|
11
|
+
export const WithFunding_request_ItemRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing/funding-requests/{funding_request_id}";
|
|
12
|
+
/**
|
|
13
|
+
* Metadata for all the navigation properties in the request builder.
|
|
14
|
+
*/
|
|
15
|
+
export const WithFunding_request_ItemRequestBuilderNavigationMetadata = {
|
|
16
|
+
mpp: {
|
|
17
|
+
requestsMetadata: MppRequestBuilderRequestsMetadata,
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Metadata for all the requests in the request builder.
|
|
22
|
+
*/
|
|
23
|
+
export const WithFunding_request_ItemRequestBuilderRequestsMetadata = {
|
|
24
|
+
get: {
|
|
25
|
+
uriTemplate: WithFunding_request_ItemRequestBuilderUriTemplate,
|
|
26
|
+
responseBodyContentType: "application/json",
|
|
27
|
+
errorMappings: {
|
|
28
|
+
XXX: createErrorEnvelopeFromDiscriminatorValue,
|
|
29
|
+
},
|
|
30
|
+
adapterMethodName: "send",
|
|
31
|
+
responseBodyFactory: createBillingFundingRequestFromDiscriminatorValue,
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
/* tslint:enable */
|
|
35
|
+
/* eslint-enable */
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../src/generated/api/durable/billing/fundingRequests/item/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,iDAAiD,EAAE,yCAAyC,EAAkD,MAAM,gCAAgC,CAAC;AAC9L,aAAa;AACb,OAAO,EAAE,iCAAiC,EAA0B,MAAM,gBAAgB,CAAC;AA0B3F;;GAEG;AACH,MAAM,CAAC,MAAM,iDAAiD,GAAG,sEAAsE,CAAC;AACxI;;GAEG;AACH,MAAM,CAAC,MAAM,wDAAwD,GAA0H;IAC3L,GAAG,EAAE;QACD,gBAAgB,EAAE,iCAAiC;KACtD;CACJ,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,sDAAsD,GAAqB;IACpF,GAAG,EAAE;QACD,WAAW,EAAE,iDAAiD;QAC9D,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,iDAAiD;KAC1E;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { type BillingFundingCompletion, type BillingFundingMppComplete } from '../../../../../../models/index.js';
|
|
2
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Builds and executes requests for operations under /api/durable/billing/funding-requests/{funding_request_id}/mpp
|
|
5
|
+
*/
|
|
6
|
+
export interface MppRequestBuilder extends BaseRequestBuilder<MppRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* This endpoint is called by Link CLI `mpp pay`. Durable API-key bearer auth isnot used here; the `Authorization` header carries the MPP `Payment` credential.
|
|
9
|
+
* @param body The request body
|
|
10
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
11
|
+
* @returns {Promise<BillingFundingCompletion>}
|
|
12
|
+
* @throws {BillingFundingRequest} error when the service returns a 402 status code
|
|
13
|
+
* @throws {ErrorEnvelope} error when the service returns a 4XX or 5XX status code
|
|
14
|
+
*/
|
|
15
|
+
post(body: BillingFundingMppComplete, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<BillingFundingCompletion | undefined>;
|
|
16
|
+
/**
|
|
17
|
+
* This endpoint is called by Link CLI `mpp pay`. Durable API-key bearer auth isnot used here; the `Authorization` header carries the MPP `Payment` credential.
|
|
18
|
+
* @param body The request body
|
|
19
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
20
|
+
* @returns {RequestInformation}
|
|
21
|
+
*/
|
|
22
|
+
toPostRequestInformation(body: BillingFundingMppComplete, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Uri template for the request builder.
|
|
26
|
+
*/
|
|
27
|
+
export declare const MppRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing/funding-requests/{funding_request_id}/mpp";
|
|
28
|
+
/**
|
|
29
|
+
* Metadata for all the requests in the request builder.
|
|
30
|
+
*/
|
|
31
|
+
export declare const MppRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
32
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/generated/api/durable/billing/fundingRequests/item/mpp/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6N,KAAK,wBAAwB,EAAE,KAAK,yBAAyB,EAAkD,MAAM,mCAAmC,CAAC;AAE7X,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IAC5E;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wBAAwB,GAAG,SAAS,CAAC,CAAC;IACxJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,yBAAyB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpJ;AACD;;GAEG;AACH,eAAO,MAAM,4BAA4B,6EAA6E,CAAC;AACvH;;GAEG;AACH,eAAO,MAAM,iCAAiC,EAAE,gBAc/C,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createBillingFundingCompletionFromDiscriminatorValue, createBillingFundingRequestFromDiscriminatorValue, createErrorEnvelopeFromDiscriminatorValue, serializeBillingFundingMppComplete } from '../../../../../../models/index.js';
|
|
6
|
+
/**
|
|
7
|
+
* Uri template for the request builder.
|
|
8
|
+
*/
|
|
9
|
+
export const MppRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing/funding-requests/{funding_request_id}/mpp";
|
|
10
|
+
/**
|
|
11
|
+
* Metadata for all the requests in the request builder.
|
|
12
|
+
*/
|
|
13
|
+
export const MppRequestBuilderRequestsMetadata = {
|
|
14
|
+
post: {
|
|
15
|
+
uriTemplate: MppRequestBuilderUriTemplate,
|
|
16
|
+
responseBodyContentType: "application/json",
|
|
17
|
+
errorMappings: {
|
|
18
|
+
402: createBillingFundingRequestFromDiscriminatorValue,
|
|
19
|
+
XXX: createErrorEnvelopeFromDiscriminatorValue,
|
|
20
|
+
},
|
|
21
|
+
adapterMethodName: "send",
|
|
22
|
+
responseBodyFactory: createBillingFundingCompletionFromDiscriminatorValue,
|
|
23
|
+
requestBodyContentType: "application/json",
|
|
24
|
+
requestBodySerializer: serializeBillingFundingMppComplete,
|
|
25
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
/* tslint:enable */
|
|
29
|
+
/* eslint-enable */
|
|
30
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/generated/api/durable/billing/fundingRequests/item/mpp/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,oDAAoD,EAAE,iDAAiD,EAAE,yCAAyC,EAAqC,kCAAkC,EAAiH,MAAM,mCAAmC,CAAC;AAyB7X;;GAEG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAG,0EAA0E,CAAC;AACvH;;GAEG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAqB;IAC/D,IAAI,EAAE;QACF,WAAW,EAAE,4BAA4B;QACzC,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,iDAA8E;YACnF,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,oDAAoD;QAC1E,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,kCAAkC;QACzD,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
+
import { type FundingRequestsRequestBuilder } from './fundingRequests/index.js';
|
|
1
2
|
import { type UsageRequestBuilder } from './usage/index.js';
|
|
2
3
|
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
|
|
3
4
|
/**
|
|
4
5
|
* Builds and executes requests for operations under /api/durable/billing
|
|
5
6
|
*/
|
|
6
7
|
export interface BillingRequestBuilder extends BaseRequestBuilder<BillingRequestBuilder> {
|
|
8
|
+
/**
|
|
9
|
+
* The fundingRequests property
|
|
10
|
+
*/
|
|
11
|
+
get fundingRequests(): FundingRequestsRequestBuilder;
|
|
7
12
|
/**
|
|
8
13
|
* The usage property
|
|
9
14
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/billing/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,mBAAmB,EAAuC,MAAM,kBAAkB,CAAC;AAEjG,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAE1I;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;CACpC;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,mCAAmC,CAAC;AACjF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qBAAqB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/billing/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,4BAA4B,CAAC;AAEhL,OAAO,EAAE,KAAK,mBAAmB,EAAuC,MAAM,kBAAkB,CAAC;AAEjG,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAE1I;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;OAEG;IACH,IAAI,eAAe,IAAI,6BAA6B,CAAC;IACrD;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;CACpC;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,mCAAmC,CAAC;AACjF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qBAAqB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQxJ,CAAC"}
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
// Generated by Microsoft Kiota
|
|
4
4
|
// @ts-ignore
|
|
5
|
+
import { FundingRequestsRequestBuilderNavigationMetadata, FundingRequestsRequestBuilderRequestsMetadata } from './fundingRequests/index.js';
|
|
6
|
+
// @ts-ignore
|
|
5
7
|
import { UsageRequestBuilderRequestsMetadata } from './usage/index.js';
|
|
6
8
|
/**
|
|
7
9
|
* Uri template for the request builder.
|
|
@@ -11,6 +13,10 @@ export const BillingRequestBuilderUriTemplate = "{+baseurl}/api/durable/billing"
|
|
|
11
13
|
* Metadata for all the navigation properties in the request builder.
|
|
12
14
|
*/
|
|
13
15
|
export const BillingRequestBuilderNavigationMetadata = {
|
|
16
|
+
fundingRequests: {
|
|
17
|
+
requestsMetadata: FundingRequestsRequestBuilderRequestsMetadata,
|
|
18
|
+
navigationMetadata: FundingRequestsRequestBuilderNavigationMetadata,
|
|
19
|
+
},
|
|
14
20
|
usage: {
|
|
15
21
|
requestsMetadata: UsageRequestBuilderRequestsMetadata,
|
|
16
22
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/billing/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAA4B,mCAAmC,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/billing/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,+CAA+C,EAAE,6CAA6C,EAAsC,MAAM,4BAA4B,CAAC;AAChL,aAAa;AACb,OAAO,EAA4B,mCAAmC,EAAE,MAAM,kBAAkB,CAAC;AAiBjG;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,gCAAgC,CAAC;AACjF;;GAEG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAyG;IACzJ,eAAe,EAAE;QACb,gBAAgB,EAAE,6CAA6C;QAC/D,kBAAkB,EAAE,+CAA+C;KACtE;IACD,KAAK,EAAE;QACH,gBAAgB,EAAE,mCAAmC;KACxD;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/content/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqK,KAAK,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAsB,MAAM,0BAA0B,CAAC;AAErR,OAAO,EAAE,KAAK,6BAA6B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/content/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqK,KAAK,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAsB,MAAM,0BAA0B,CAAC;AAErR,OAAO,EAAE,KAAK,6BAA6B,EAAkG,MAAM,iBAAiB,CAAC;AAErK,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,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;;;OAIG;IACF,SAAS,CAAC,OAAO,EAAE,MAAM,GAAI,6BAA6B,CAAC;IAC5D;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAC1I;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,aAAa,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC3H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,aAAa,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,sGAAsG,CAAC;AACpJ;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qBAAqB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAMxJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBAsBnD,CAAC"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// @ts-ignore
|
|
5
5
|
import { createContentFromDiscriminatorValue, createContentListFromDiscriminatorValue, createErrorEnvelopeFromDiscriminatorValue, serializeContentCreate } from '../../../models/index.js';
|
|
6
6
|
// @ts-ignore
|
|
7
|
-
import { WithContentItemRequestBuilderRequestsMetadata } from './item/index.js';
|
|
7
|
+
import { WithContentItemRequestBuilderNavigationMetadata, WithContentItemRequestBuilderRequestsMetadata } from './item/index.js';
|
|
8
8
|
/**
|
|
9
9
|
* Uri template for the request builder.
|
|
10
10
|
*/
|
|
@@ -15,6 +15,7 @@ export const ContentRequestBuilderUriTemplate = "{+baseurl}/api/durable/content{
|
|
|
15
15
|
export const ContentRequestBuilderNavigationMetadata = {
|
|
16
16
|
byContent: {
|
|
17
17
|
requestsMetadata: WithContentItemRequestBuilderRequestsMetadata,
|
|
18
|
+
navigationMetadata: WithContentItemRequestBuilderNavigationMetadata,
|
|
18
19
|
pathParametersMappings: ["content"],
|
|
19
20
|
},
|
|
20
21
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/content/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,mCAAmC,EAAE,uCAAuC,EAAE,yCAAyC,EAAoB,sBAAsB,EAA0E,MAAM,0BAA0B,CAAC;AACrR,aAAa;AACb,OAAO,EAAsC,6CAA6C,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/api/durable/content/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,mCAAmC,EAAE,uCAAuC,EAAE,yCAAyC,EAAoB,sBAAsB,EAA0E,MAAM,0BAA0B,CAAC;AACrR,aAAa;AACb,OAAO,EAAsC,+CAA+C,EAAE,6CAA6C,EAAE,MAAM,iBAAiB,CAAC;AAuErK;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,mGAAmG,CAAC;AACpJ;;GAEG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAyG;IACzJ,SAAS,EAAE;QACP,gBAAgB,EAAE,6CAA6C;QAC/D,kBAAkB,EAAE,+CAA+C;QACnE,sBAAsB,EAAE,CAAC,SAAS,CAAC;KACtC;CACJ,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAqB;IACnE,GAAG,EAAE;QACD,WAAW,EAAE,gCAAgC;QAC7C,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,uCAAuC;KAChE;IACD,IAAI,EAAE;QACF,WAAW,EAAE,gCAAgC;QAC7C,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,mCAAmC;QACzD,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,sBAAsB;QAC7C,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { type Content, type ContentPatch, type DeletedResponse } from '../../../../models/index.js';
|
|
2
|
-
import { type
|
|
2
|
+
import { type InspectRequestBuilder } from './inspect/index.js';
|
|
3
|
+
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
4
|
/**
|
|
4
5
|
* Builds and executes requests for operations under /api/durable/content/{content}
|
|
5
6
|
*/
|
|
6
7
|
export interface WithContentItemRequestBuilder extends BaseRequestBuilder<WithContentItemRequestBuilder> {
|
|
8
|
+
/**
|
|
9
|
+
* The inspect property
|
|
10
|
+
*/
|
|
11
|
+
get inspect(): InspectRequestBuilder;
|
|
7
12
|
/**
|
|
8
13
|
* Delete content.
|
|
9
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -50,6 +55,10 @@ export interface WithContentItemRequestBuilder extends BaseRequestBuilder<WithCo
|
|
|
50
55
|
* Uri template for the request builder.
|
|
51
56
|
*/
|
|
52
57
|
export declare const WithContentItemRequestBuilderUriTemplate = "{+baseurl}/api/durable/content/{content}";
|
|
58
|
+
/**
|
|
59
|
+
* Metadata for all the navigation properties in the request builder.
|
|
60
|
+
*/
|
|
61
|
+
export declare const WithContentItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WithContentItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
|
|
53
62
|
/**
|
|
54
63
|
* Metadata for all the requests in the request builder.
|
|
55
64
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/content/item/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAwK,KAAK,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,eAAe,EAAsB,MAAM,6BAA6B,CAAC;AAE9R,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/content/item/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAwK,KAAK,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,eAAe,EAAsB,MAAM,6BAA6B,CAAC;AAE9R,OAAO,EAAyC,KAAK,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEvG,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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;IAChH;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACrG;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC3H;;;;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,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/G;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,eAAO,MAAM,wCAAwC,6CAA6C,CAAC;AACnG;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6BAA6B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAIxK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBA+B3D,CAAC"}
|
|
@@ -3,10 +3,20 @@
|
|
|
3
3
|
// Generated by Microsoft Kiota
|
|
4
4
|
// @ts-ignore
|
|
5
5
|
import { createContentFromDiscriminatorValue, createDeletedResponseFromDiscriminatorValue, createErrorEnvelopeFromDiscriminatorValue, serializeContentPatch } from '../../../../models/index.js';
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
import { InspectRequestBuilderRequestsMetadata } from './inspect/index.js';
|
|
6
8
|
/**
|
|
7
9
|
* Uri template for the request builder.
|
|
8
10
|
*/
|
|
9
11
|
export const WithContentItemRequestBuilderUriTemplate = "{+baseurl}/api/durable/content/{content}";
|
|
12
|
+
/**
|
|
13
|
+
* Metadata for all the navigation properties in the request builder.
|
|
14
|
+
*/
|
|
15
|
+
export const WithContentItemRequestBuilderNavigationMetadata = {
|
|
16
|
+
inspect: {
|
|
17
|
+
requestsMetadata: InspectRequestBuilderRequestsMetadata,
|
|
18
|
+
},
|
|
19
|
+
};
|
|
10
20
|
/**
|
|
11
21
|
* Metadata for all the requests in the request builder.
|
|
12
22
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/content/item/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,mCAAmC,EAAE,2CAA2C,EAAE,yCAAyC,EAAoB,qBAAqB,EAA6E,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/content/item/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,mCAAmC,EAAE,2CAA2C,EAAE,yCAAyC,EAAoB,qBAAqB,EAA6E,MAAM,6BAA6B,CAAC;AAC9R,aAAa;AACb,OAAO,EAAE,qCAAqC,EAA8B,MAAM,oBAAoB,CAAC;AAsDvG;;GAEG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAG,0CAA0C,CAAC;AACnG;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAiH;IACzK,OAAO,EAAE;QACL,gBAAgB,EAAE,qCAAqC;KAC1D;CACJ,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,6CAA6C,GAAqB;IAC3E,MAAM,EAAE;QACJ,WAAW,EAAE,wCAAwC;QACrD,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,2CAA2C;KACpE;IACD,GAAG,EAAE;QACD,WAAW,EAAE,wCAAwC;QACrD,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,mCAAmC;KAC5D;IACD,KAAK,EAAE;QACH,WAAW,EAAE,wCAAwC;QACrD,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,mCAAmC;QACzD,sBAAsB,EAAE,kBAAkB;QAC1C,qBAAqB,EAAE,qBAAqB;QAC5C,kCAAkC,EAAE,wBAAwB;KAC/D;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { type ContentInspection } from '../../../../../models/index.js';
|
|
2
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Builds and executes requests for operations under /api/durable/content/{content}/inspect
|
|
5
|
+
*/
|
|
6
|
+
export interface InspectRequestBuilder extends BaseRequestBuilder<InspectRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* Returns a content-ID addressed inspection payload modeled on MCP `inspect(contents://{id})`, including public content metadata, selected rendered text, sidecars, related content refs, provenance, and coverage.
|
|
9
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
|
+
* @returns {Promise<ContentInspection>}
|
|
11
|
+
* @throws {ErrorEnvelope} error when the service returns a 4XX or 5XX status code
|
|
12
|
+
*/
|
|
13
|
+
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ContentInspection | undefined>;
|
|
14
|
+
/**
|
|
15
|
+
* Returns a content-ID addressed inspection payload modeled on MCP `inspect(contents://{id})`, including public content metadata, selected rendered text, sidecars, related content refs, provenance, and coverage.
|
|
16
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
|
+
* @returns {RequestInformation}
|
|
18
|
+
*/
|
|
19
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Uri template for the request builder.
|
|
23
|
+
*/
|
|
24
|
+
export declare const InspectRequestBuilderUriTemplate = "{+baseurl}/api/durable/content/{content}/inspect";
|
|
25
|
+
/**
|
|
26
|
+
* Metadata for all the requests in the request builder.
|
|
27
|
+
*/
|
|
28
|
+
export declare const InspectRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
29
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/generated/api/durable/content/item/inspect/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA4F,KAAK,iBAAiB,EAAsB,MAAM,gCAAgC,CAAC;AAEtL,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,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAAC;IAC/G;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClH;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,qDAAqD,CAAC;AACnG;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBAUnD,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createContentInspectionFromDiscriminatorValue, createErrorEnvelopeFromDiscriminatorValue } from '../../../../../models/index.js';
|
|
6
|
+
/**
|
|
7
|
+
* Uri template for the request builder.
|
|
8
|
+
*/
|
|
9
|
+
export const InspectRequestBuilderUriTemplate = "{+baseurl}/api/durable/content/{content}/inspect";
|
|
10
|
+
/**
|
|
11
|
+
* Metadata for all the requests in the request builder.
|
|
12
|
+
*/
|
|
13
|
+
export const InspectRequestBuilderRequestsMetadata = {
|
|
14
|
+
get: {
|
|
15
|
+
uriTemplate: InspectRequestBuilderUriTemplate,
|
|
16
|
+
responseBodyContentType: "application/json",
|
|
17
|
+
errorMappings: {
|
|
18
|
+
XXX: createErrorEnvelopeFromDiscriminatorValue,
|
|
19
|
+
},
|
|
20
|
+
adapterMethodName: "send",
|
|
21
|
+
responseBodyFactory: createContentInspectionFromDiscriminatorValue,
|
|
22
|
+
},
|
|
23
|
+
};
|
|
24
|
+
/* tslint:enable */
|
|
25
|
+
/* eslint-enable */
|
|
26
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../src/generated/api/durable/content/item/inspect/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,6CAA6C,EAAE,yCAAyC,EAA8C,MAAM,gCAAgC,CAAC;AAsBtL;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,kDAAkD,CAAC;AACnG;;GAEG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAqB;IACnE,GAAG,EAAE;QACD,WAAW,EAAE,gCAAgC;QAC7C,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,6CAA6C;KACtE;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type VfsSearchMatchList } from '../../../../models/index.js';
|
|
2
2
|
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
export type GetSearch_typeQueryParameterType = (typeof GetSearch_typeQueryParameterTypeObject)[keyof typeof GetSearch_typeQueryParameterTypeObject];
|
|
3
4
|
/**
|
|
4
5
|
* Builds and executes requests for operations under /api/durable/vfs/search
|
|
5
6
|
*/
|
|
@@ -46,6 +47,10 @@ export interface SearchRequestBuilderGetQueryParameters {
|
|
|
46
47
|
*/
|
|
47
48
|
path?: string;
|
|
48
49
|
pattern?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Search mode. `keyword` uses Graphlit keyword search for `durable fs grep`; `hybrid` uses Graphlit hybrid semantic search for `durable fs sgrep`.
|
|
52
|
+
*/
|
|
53
|
+
searchType?: GetSearch_typeQueryParameterType;
|
|
49
54
|
/**
|
|
50
55
|
* Optional Graphlit feed/source GUID or unique name filter. Repeatable.
|
|
51
56
|
*/
|
|
@@ -54,7 +59,11 @@ export interface SearchRequestBuilderGetQueryParameters {
|
|
|
54
59
|
/**
|
|
55
60
|
* Uri template for the request builder.
|
|
56
61
|
*/
|
|
57
|
-
export declare const SearchRequestBuilderUriTemplate = "{+baseurl}/api/durable/vfs/search?pattern={pattern}{&collection*,cursor*,ignore_case*,kind*,label*,limit*,mention*,path*,source*}";
|
|
62
|
+
export declare const SearchRequestBuilderUriTemplate = "{+baseurl}/api/durable/vfs/search?pattern={pattern}{&collection*,cursor*,ignore_case*,kind*,label*,limit*,mention*,path*,search_type*,source*}";
|
|
63
|
+
export declare const GetSearch_typeQueryParameterTypeObject: {
|
|
64
|
+
readonly Keyword: "keyword";
|
|
65
|
+
readonly Hybrid: "hybrid";
|
|
66
|
+
};
|
|
58
67
|
/**
|
|
59
68
|
* Metadata for all the requests in the request builder.
|
|
60
69
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/vfs/search/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiH,KAAK,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAErL,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,kBAAkB,CAAC,oBAAoB,CAAC;IAClF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClJ;AACD;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+BAA+B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/vfs/search/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiH,KAAK,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAErL,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL,MAAM,MAAM,gCAAgC,GAAG,CAAC,OAAO,sCAAsC,CAAC,CAAC,MAAM,OAAO,sCAAsC,CAAC,CAAC;AACpJ;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,kBAAkB,CAAC,oBAAoB,CAAC;IAClF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClJ;AACD;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,UAAU,CAAC,EAAE,gCAAgC,CAAC;IAC9C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+BAA+B,mJAAmJ,CAAC;AAChM,eAAO,MAAM,sCAAsC;;;CAGzC,CAAC;AAQX;;GAEG;AACH,eAAO,MAAM,oCAAoC,EAAE,gBAWlD,CAAC"}
|
|
@@ -6,12 +6,17 @@ import { createErrorEnvelopeFromDiscriminatorValue, createVfsSearchMatchListFrom
|
|
|
6
6
|
/**
|
|
7
7
|
* Uri template for the request builder.
|
|
8
8
|
*/
|
|
9
|
-
export const SearchRequestBuilderUriTemplate = "{+baseurl}/api/durable/vfs/search?pattern={pattern}{&collection*,cursor*,ignore_case*,kind*,label*,limit*,mention*,path*,source*}";
|
|
9
|
+
export const SearchRequestBuilderUriTemplate = "{+baseurl}/api/durable/vfs/search?pattern={pattern}{&collection*,cursor*,ignore_case*,kind*,label*,limit*,mention*,path*,search_type*,source*}";
|
|
10
|
+
export const GetSearch_typeQueryParameterTypeObject = {
|
|
11
|
+
Keyword: "keyword",
|
|
12
|
+
Hybrid: "hybrid",
|
|
13
|
+
};
|
|
10
14
|
/**
|
|
11
15
|
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
12
16
|
*/
|
|
13
17
|
const SearchRequestBuilderGetQueryParametersMapper = {
|
|
14
18
|
"ignoreCase": "ignore_case",
|
|
19
|
+
"searchType": "search_type",
|
|
15
20
|
};
|
|
16
21
|
/**
|
|
17
22
|
* Metadata for all the requests in the request builder.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/vfs/search/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,yCAAyC,EAAE,8CAA8C,EAA+C,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/generated/api/durable/vfs/search/index.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,+BAA+B;AAC/B,aAAa;AACb,OAAO,EAAE,yCAAyC,EAAE,8CAA8C,EAA+C,MAAM,6BAA6B,CAAC;AA4DrL;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG,gJAAgJ,CAAC;AAChM,MAAM,CAAC,MAAM,sCAAsC,GAAG;IAClD,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;CACV,CAAC;AACX;;GAEG;AACH,MAAM,4CAA4C,GAA2B;IACzE,YAAY,EAAE,aAAa;IAC3B,YAAY,EAAE,aAAa;CAC9B,CAAC;AACF;;GAEG;AACH,MAAM,CAAC,MAAM,oCAAoC,GAAqB;IAClE,GAAG,EAAE;QACD,WAAW,EAAE,+BAA+B;QAC5C,uBAAuB,EAAE,kBAAkB;QAC3C,aAAa,EAAE;YACX,GAAG,EAAE,yCAAsE;SAC9E;QACD,iBAAiB,EAAE,MAAM;QACzB,mBAAmB,EAAG,8CAA8C;QACpE,qBAAqB,EAAE,4CAA4C;KACtE;CACJ,CAAC;AACF,mBAAmB;AACnB,mBAAmB"}
|