@targetprocess/shared-data-model-client 0.7.0-us817837-mapping.23 → 0.7.0-us817837-mapping.26
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/attachments/item/index.d.ts +2 -0
- package/dist/api/sdm/attachments/item/index.js +2 -0
- package/dist/api/sdm/item/count/index.d.ts +1 -0
- package/dist/api/sdm/item/count/index.js +1 -0
- package/dist/api/sdm/item/index.d.ts +1 -0
- package/dist/api/sdm/item/index.js +1 -0
- package/dist/api/sdm/item/item/index.d.ts +1 -0
- package/dist/api/sdm/item/item/index.js +1 -0
- package/dist/api/settings/entityTypes/index.d.ts +1 -0
- package/dist/api/settings/entityTypes/index.js +1 -0
- package/dist/api/settings/profile/copy/index.d.ts +1 -0
- package/dist/api/settings/profile/copy/index.js +1 -0
- package/dist/api/settings/profile/current/index.d.ts +2 -0
- package/dist/api/settings/profile/current/index.js +2 -0
- package/dist/api/settings/profile/index.d.ts +11 -3
- package/dist/api/settings/profile/index.js +3 -1
- package/dist/api/settings/profile/testTypeMapping/index.d.ts +1 -0
- package/dist/api/settings/profile/testTypeMapping/index.js +1 -0
- package/dist/api/settings/profile/validate/index.d.ts +1 -0
- package/dist/api/settings/profile/validate/index.js +1 -0
- package/package.json +1 -1
- package/src/api/sdm/attachments/item/index.ts +4 -0
- package/src/api/sdm/item/count/index.ts +2 -0
- package/src/api/sdm/item/index.ts +2 -0
- package/src/api/sdm/item/item/index.ts +2 -0
- package/src/api/settings/entityTypes/index.ts +2 -0
- package/src/api/settings/profile/copy/index.ts +2 -0
- package/src/api/settings/profile/current/index.ts +4 -0
- package/src/api/settings/profile/index.ts +13 -3
- package/src/api/settings/profile/testTypeMapping/index.ts +2 -0
- package/src/api/settings/profile/validate/index.ts +2 -0
- package/src/kiota-lock.json +1 -1
- package/src/v1.json +199 -57
|
@@ -10,6 +10,7 @@ export interface EntityItemRequestBuilder extends BaseRequestBuilder<EntityItemR
|
|
|
10
10
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
11
11
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
12
12
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
13
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
13
14
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
14
15
|
*/
|
|
15
16
|
get(requestConfiguration?: RequestConfiguration<EntityItemRequestBuilderGetQueryParameters> | undefined): Promise<void>;
|
|
@@ -21,6 +22,7 @@ export interface EntityItemRequestBuilder extends BaseRequestBuilder<EntityItemR
|
|
|
21
22
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
22
23
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
23
24
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
25
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
24
26
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
25
27
|
*/
|
|
26
28
|
post(body: MultipartBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SharedDataCreateAttachmentResponseDto | undefined>;
|
|
@@ -23,6 +23,7 @@ exports.EntityItemRequestBuilderRequestsMetadata = {
|
|
|
23
23
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
24
24
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
25
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
26
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
26
27
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
27
28
|
},
|
|
28
29
|
adapterMethodName: "sendNoResponseContent",
|
|
@@ -34,6 +35,7 @@ exports.EntityItemRequestBuilderRequestsMetadata = {
|
|
|
34
35
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
35
36
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
36
37
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
38
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
37
39
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
38
40
|
},
|
|
39
41
|
adapterMethodName: "send",
|
|
@@ -10,6 +10,7 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
10
10
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
11
11
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
12
12
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
13
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
13
14
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
14
15
|
*/
|
|
15
16
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined): Promise<number | undefined>;
|
|
@@ -21,6 +21,7 @@ exports.CountRequestBuilderRequestsMetadata = {
|
|
|
21
21
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
22
22
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
23
23
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
25
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
26
|
},
|
|
26
27
|
adapterMethodName: "sendPrimitive",
|
|
@@ -23,6 +23,7 @@ export interface WithEntityTypeItemRequestBuilder extends BaseRequestBuilder<Wit
|
|
|
23
23
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
24
24
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
25
25
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
26
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
26
27
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
27
28
|
*/
|
|
28
29
|
post(body: UntypedNode, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
|
|
@@ -39,6 +39,7 @@ exports.WithEntityTypeItemRequestBuilderRequestsMetadata = {
|
|
|
39
39
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
40
40
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
41
41
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
42
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
42
43
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
43
44
|
},
|
|
44
45
|
adapterMethodName: "send",
|
|
@@ -10,6 +10,7 @@ export interface EntityTypeItemRequestBuilder extends BaseRequestBuilder<EntityT
|
|
|
10
10
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
11
11
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
12
12
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
13
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
13
14
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
14
15
|
*/
|
|
15
16
|
get(requestConfiguration?: RequestConfiguration<EntityTypeItemRequestBuilderGetQueryParameters> | undefined): Promise<UntypedNode | undefined>;
|
|
@@ -23,6 +23,7 @@ exports.EntityTypeItemRequestBuilderRequestsMetadata = {
|
|
|
23
23
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
24
24
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
25
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
26
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
26
27
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
27
28
|
},
|
|
28
29
|
adapterMethodName: "send",
|
|
@@ -11,6 +11,7 @@ export interface EntityTypesRequestBuilder extends BaseRequestBuilder<EntityType
|
|
|
11
11
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
12
12
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
13
13
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
14
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
14
15
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
15
16
|
*/
|
|
16
17
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<GetEntityTypesDto | undefined>;
|
|
@@ -21,6 +21,7 @@ exports.EntityTypesRequestBuilderRequestsMetadata = {
|
|
|
21
21
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
22
22
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
23
23
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
25
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
26
|
},
|
|
26
27
|
adapterMethodName: "send",
|
|
@@ -12,6 +12,7 @@ export interface CopyRequestBuilder extends BaseRequestBuilder<CopyRequestBuilde
|
|
|
12
12
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
13
13
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
14
14
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
15
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
15
16
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
16
17
|
*/
|
|
17
18
|
post(body: CopyCurrentProfileRequestDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProfileDto | undefined>;
|
|
@@ -21,6 +21,7 @@ exports.CopyRequestBuilderRequestsMetadata = {
|
|
|
21
21
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
22
22
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
23
23
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
25
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
26
|
},
|
|
26
27
|
adapterMethodName: "send",
|
|
@@ -11,6 +11,7 @@ export interface CurrentRequestBuilder extends BaseRequestBuilder<CurrentRequest
|
|
|
11
11
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
12
12
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
13
13
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
14
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
14
15
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
15
16
|
*/
|
|
16
17
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProfileDto | undefined>;
|
|
@@ -22,6 +23,7 @@ export interface CurrentRequestBuilder extends BaseRequestBuilder<CurrentRequest
|
|
|
22
23
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
23
24
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
24
25
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
26
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
25
27
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
26
28
|
*/
|
|
27
29
|
put(body: SetCurrentProfileRequestDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProfileDto | undefined>;
|
|
@@ -21,6 +21,7 @@ exports.CurrentRequestBuilderRequestsMetadata = {
|
|
|
21
21
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
22
22
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
23
23
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
25
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
26
|
},
|
|
26
27
|
adapterMethodName: "send",
|
|
@@ -33,6 +34,7 @@ exports.CurrentRequestBuilderRequestsMetadata = {
|
|
|
33
34
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
34
35
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
35
36
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
37
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
36
38
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
37
39
|
},
|
|
38
40
|
adapterMethodName: "send",
|
|
@@ -31,6 +31,7 @@ export interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequest
|
|
|
31
31
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
32
32
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
33
33
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
34
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
34
35
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
35
36
|
*/
|
|
36
37
|
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ProfileIdDto[] | undefined>;
|
|
@@ -42,9 +43,10 @@ export interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequest
|
|
|
42
43
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
43
44
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
44
45
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
46
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
45
47
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
46
48
|
*/
|
|
47
|
-
put(body: ProfileDto, requestConfiguration?: RequestConfiguration<
|
|
49
|
+
put(body: ProfileDto, requestConfiguration?: RequestConfiguration<ProfileRequestBuilderPutQueryParameters> | undefined): Promise<ProfileDto | undefined>;
|
|
48
50
|
/**
|
|
49
51
|
* Get settings profile
|
|
50
52
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -57,12 +59,18 @@ export interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequest
|
|
|
57
59
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
58
60
|
* @returns {RequestInformation}
|
|
59
61
|
*/
|
|
60
|
-
toPutRequestInformation(body: ProfileDto, requestConfiguration?: RequestConfiguration<
|
|
62
|
+
toPutRequestInformation(body: ProfileDto, requestConfiguration?: RequestConfiguration<ProfileRequestBuilderPutQueryParameters> | undefined): RequestInformation;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Update settings profile
|
|
66
|
+
*/
|
|
67
|
+
export interface ProfileRequestBuilderPutQueryParameters {
|
|
68
|
+
forceUpdate?: boolean;
|
|
61
69
|
}
|
|
62
70
|
/**
|
|
63
71
|
* Uri template for the request builder.
|
|
64
72
|
*/
|
|
65
|
-
export declare const ProfileRequestBuilderUriTemplate = "{+baseurl}/api/settings/profile";
|
|
73
|
+
export declare const ProfileRequestBuilderUriTemplate = "{+baseurl}/api/settings/profile{?forceUpdate*}";
|
|
66
74
|
/**
|
|
67
75
|
* Metadata for all the navigation properties in the request builder.
|
|
68
76
|
*/
|
|
@@ -17,7 +17,7 @@ const index_js_5 = require("./validate/index.js");
|
|
|
17
17
|
/**
|
|
18
18
|
* Uri template for the request builder.
|
|
19
19
|
*/
|
|
20
|
-
exports.ProfileRequestBuilderUriTemplate = "{+baseurl}/api/settings/profile";
|
|
20
|
+
exports.ProfileRequestBuilderUriTemplate = "{+baseurl}/api/settings/profile{?forceUpdate*}";
|
|
21
21
|
/**
|
|
22
22
|
* Metadata for all the navigation properties in the request builder.
|
|
23
23
|
*/
|
|
@@ -46,6 +46,7 @@ exports.ProfileRequestBuilderRequestsMetadata = {
|
|
|
46
46
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
47
47
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
48
48
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
49
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
49
50
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
50
51
|
},
|
|
51
52
|
adapterMethodName: "sendCollection",
|
|
@@ -58,6 +59,7 @@ exports.ProfileRequestBuilderRequestsMetadata = {
|
|
|
58
59
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
59
60
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
60
61
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
62
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
61
63
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
62
64
|
},
|
|
63
65
|
adapterMethodName: "send",
|
|
@@ -12,6 +12,7 @@ export interface TestTypeMappingRequestBuilder extends BaseRequestBuilder<TestTy
|
|
|
12
12
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
13
13
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
14
14
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
15
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
15
16
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
16
17
|
*/
|
|
17
18
|
put(body: TestTypeMappingDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
|
|
@@ -23,6 +23,7 @@ exports.TestTypeMappingRequestBuilderRequestsMetadata = {
|
|
|
23
23
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
24
24
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
25
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
26
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
26
27
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
27
28
|
},
|
|
28
29
|
adapterMethodName: "send",
|
|
@@ -12,6 +12,7 @@ export interface ValidateRequestBuilder extends BaseRequestBuilder<ValidateReque
|
|
|
12
12
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
13
13
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
14
14
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
15
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
15
16
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
16
17
|
*/
|
|
17
18
|
put(body: ProfileDto, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ValidatedProfileDto | undefined>;
|
|
@@ -21,6 +21,7 @@ exports.ValidateRequestBuilderRequestsMetadata = {
|
|
|
21
21
|
400: index_js_1.createHttpValidationProblemDetailsFromDiscriminatorValue,
|
|
22
22
|
401: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
23
23
|
404: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
|
+
409: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
24
25
|
500: index_js_1.createProblemDetailsFromDiscriminatorValue,
|
|
25
26
|
},
|
|
26
27
|
adapterMethodName: "send",
|
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ export interface EntityItemRequestBuilder extends BaseRequestBuilder<EntityItemR
|
|
|
16
16
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
17
17
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
18
18
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
19
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
19
20
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
20
21
|
*/
|
|
21
22
|
get(requestConfiguration?: RequestConfiguration<EntityItemRequestBuilderGetQueryParameters> | undefined) : Promise<void>;
|
|
@@ -27,6 +28,7 @@ export interface EntityItemRequestBuilder extends BaseRequestBuilder<EntityItemR
|
|
|
27
28
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
28
29
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
29
30
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
31
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
30
32
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
31
33
|
*/
|
|
32
34
|
post(body: MultipartBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<SharedDataCreateAttachmentResponseDto | undefined>;
|
|
@@ -65,6 +67,7 @@ export const EntityItemRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
65
67
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
66
68
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
67
69
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
70
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
68
71
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
69
72
|
},
|
|
70
73
|
adapterMethodName: "sendNoResponseContent",
|
|
@@ -76,6 +79,7 @@ export const EntityItemRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
76
79
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
77
80
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
78
81
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
82
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
79
83
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
80
84
|
},
|
|
81
85
|
adapterMethodName: "send",
|
|
@@ -17,6 +17,7 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
|
|
|
17
17
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
18
18
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
20
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
20
21
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
21
22
|
*/
|
|
22
23
|
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined) : Promise<number | undefined>;
|
|
@@ -49,6 +50,7 @@ export const CountRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
49
50
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
50
51
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
51
52
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
53
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
52
54
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
53
55
|
},
|
|
54
56
|
adapterMethodName: "sendPrimitive",
|
|
@@ -32,6 +32,7 @@ export interface WithEntityTypeItemRequestBuilder extends BaseRequestBuilder<Wit
|
|
|
32
32
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
33
33
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
34
34
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
35
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
35
36
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
36
37
|
*/
|
|
37
38
|
post(body: UntypedNode, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<UntypedNode | undefined>;
|
|
@@ -70,6 +71,7 @@ export const WithEntityTypeItemRequestBuilderRequestsMetadata: RequestsMetadata
|
|
|
70
71
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
71
72
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
72
73
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
74
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
73
75
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
74
76
|
},
|
|
75
77
|
adapterMethodName: "send",
|
|
@@ -17,6 +17,7 @@ export interface EntityTypeItemRequestBuilder extends BaseRequestBuilder<EntityT
|
|
|
17
17
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
18
18
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
20
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
20
21
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
21
22
|
*/
|
|
22
23
|
get(requestConfiguration?: RequestConfiguration<EntityTypeItemRequestBuilderGetQueryParameters> | undefined) : Promise<UntypedNode | undefined>;
|
|
@@ -56,6 +57,7 @@ export const EntityTypeItemRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
56
57
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
57
58
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
58
59
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
60
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
59
61
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
60
62
|
},
|
|
61
63
|
adapterMethodName: "send",
|
|
@@ -17,6 +17,7 @@ export interface EntityTypesRequestBuilder extends BaseRequestBuilder<EntityType
|
|
|
17
17
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
18
18
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
20
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
20
21
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
21
22
|
*/
|
|
22
23
|
get(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<GetEntityTypesDto | undefined>;
|
|
@@ -42,6 +43,7 @@ export const EntityTypesRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
42
43
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
43
44
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
44
45
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
46
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
45
47
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
46
48
|
},
|
|
47
49
|
adapterMethodName: "send",
|
|
@@ -18,6 +18,7 @@ export interface CopyRequestBuilder extends BaseRequestBuilder<CopyRequestBuilde
|
|
|
18
18
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
20
20
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
21
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
21
22
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
22
23
|
*/
|
|
23
24
|
post(body: CopyCurrentProfileRequestDto, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ProfileDto | undefined>;
|
|
@@ -44,6 +45,7 @@ export const CopyRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
44
45
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
45
46
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
46
47
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
48
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
47
49
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
48
50
|
},
|
|
49
51
|
adapterMethodName: "send",
|
|
@@ -17,6 +17,7 @@ export interface CurrentRequestBuilder extends BaseRequestBuilder<CurrentRequest
|
|
|
17
17
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
18
18
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
20
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
20
21
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
21
22
|
*/
|
|
22
23
|
get(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ProfileDto | undefined>;
|
|
@@ -28,6 +29,7 @@ export interface CurrentRequestBuilder extends BaseRequestBuilder<CurrentRequest
|
|
|
28
29
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
29
30
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
30
31
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
32
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
31
33
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
32
34
|
*/
|
|
33
35
|
put(body: SetCurrentProfileRequestDto, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ProfileDto | undefined>;
|
|
@@ -60,6 +62,7 @@ export const CurrentRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
60
62
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
61
63
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
62
64
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
65
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
63
66
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
64
67
|
},
|
|
65
68
|
adapterMethodName: "send",
|
|
@@ -72,6 +75,7 @@ export const CurrentRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
72
75
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
73
76
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
74
77
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
78
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
75
79
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
76
80
|
},
|
|
77
81
|
adapterMethodName: "send",
|
|
@@ -41,6 +41,7 @@ export interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequest
|
|
|
41
41
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
42
42
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
43
43
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
44
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
44
45
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
45
46
|
*/
|
|
46
47
|
get(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ProfileIdDto[] | undefined>;
|
|
@@ -52,9 +53,10 @@ export interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequest
|
|
|
52
53
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
53
54
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
54
55
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
56
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
55
57
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
56
58
|
*/
|
|
57
|
-
put(body: ProfileDto, requestConfiguration?: RequestConfiguration<
|
|
59
|
+
put(body: ProfileDto, requestConfiguration?: RequestConfiguration<ProfileRequestBuilderPutQueryParameters> | undefined) : Promise<ProfileDto | undefined>;
|
|
58
60
|
/**
|
|
59
61
|
* Get settings profile
|
|
60
62
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
@@ -67,12 +69,18 @@ export interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequest
|
|
|
67
69
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
68
70
|
* @returns {RequestInformation}
|
|
69
71
|
*/
|
|
70
|
-
toPutRequestInformation(body: ProfileDto, requestConfiguration?: RequestConfiguration<
|
|
72
|
+
toPutRequestInformation(body: ProfileDto, requestConfiguration?: RequestConfiguration<ProfileRequestBuilderPutQueryParameters> | undefined) : RequestInformation;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Update settings profile
|
|
76
|
+
*/
|
|
77
|
+
export interface ProfileRequestBuilderPutQueryParameters {
|
|
78
|
+
forceUpdate?: boolean;
|
|
71
79
|
}
|
|
72
80
|
/**
|
|
73
81
|
* Uri template for the request builder.
|
|
74
82
|
*/
|
|
75
|
-
export const ProfileRequestBuilderUriTemplate = "{+baseurl}/api/settings/profile";
|
|
83
|
+
export const ProfileRequestBuilderUriTemplate = "{+baseurl}/api/settings/profile{?forceUpdate*}";
|
|
76
84
|
/**
|
|
77
85
|
* Metadata for all the navigation properties in the request builder.
|
|
78
86
|
*/
|
|
@@ -101,6 +109,7 @@ export const ProfileRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
101
109
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
102
110
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
103
111
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
112
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
104
113
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
105
114
|
},
|
|
106
115
|
adapterMethodName: "sendCollection",
|
|
@@ -113,6 +122,7 @@ export const ProfileRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
113
122
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
114
123
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
115
124
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
125
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
116
126
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
117
127
|
},
|
|
118
128
|
adapterMethodName: "send",
|
|
@@ -18,6 +18,7 @@ export interface TestTypeMappingRequestBuilder extends BaseRequestBuilder<TestTy
|
|
|
18
18
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
20
20
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
21
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
21
22
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
22
23
|
*/
|
|
23
24
|
put(body: TestTypeMappingDto, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<UntypedNode | undefined>;
|
|
@@ -44,6 +45,7 @@ export const TestTypeMappingRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
44
45
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
45
46
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
46
47
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
48
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
47
49
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
48
50
|
},
|
|
49
51
|
adapterMethodName: "send",
|
|
@@ -18,6 +18,7 @@ export interface ValidateRequestBuilder extends BaseRequestBuilder<ValidateReque
|
|
|
18
18
|
* @throws {HttpValidationProblemDetails} error when the service returns a 400 status code
|
|
19
19
|
* @throws {ProblemDetails} error when the service returns a 401 status code
|
|
20
20
|
* @throws {ProblemDetails} error when the service returns a 404 status code
|
|
21
|
+
* @throws {ProblemDetails} error when the service returns a 409 status code
|
|
21
22
|
* @throws {ProblemDetails} error when the service returns a 500 status code
|
|
22
23
|
*/
|
|
23
24
|
put(body: ProfileDto, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ValidatedProfileDto | undefined>;
|
|
@@ -44,6 +45,7 @@ export const ValidateRequestBuilderRequestsMetadata: RequestsMetadata = {
|
|
|
44
45
|
400: createHttpValidationProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
45
46
|
401: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
46
47
|
404: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
48
|
+
409: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
47
49
|
500: createProblemDetailsFromDiscriminatorValue as ParsableFactory<Parsable>,
|
|
48
50
|
},
|
|
49
51
|
adapterMethodName: "send",
|
package/src/kiota-lock.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"descriptionHash": "
|
|
2
|
+
"descriptionHash": "2F1BDB2CECCC78EF8A34B3547C5E34A1FFD550A91D1BCA473079D37A3D941BAEE002BC188EDECCFEB8D4C8A5E0EAD255A7BE2866C070FB81CE382CCB87338B38",
|
|
3
3
|
"descriptionLocation": "v1.json",
|
|
4
4
|
"lockFileVersion": "1.0.0",
|
|
5
5
|
"kiotaVersion": "1.22.3",
|
package/src/v1.json
CHANGED
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"
|
|
68
|
-
"description": "
|
|
67
|
+
"404": {
|
|
68
|
+
"description": "Unable to find resource",
|
|
69
69
|
"content": {
|
|
70
70
|
"application/problem+json": {
|
|
71
71
|
"schema": {
|
|
@@ -74,8 +74,18 @@
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
|
-
"
|
|
78
|
-
"description": "
|
|
77
|
+
"409": {
|
|
78
|
+
"description": "Conflict",
|
|
79
|
+
"content": {
|
|
80
|
+
"application/problem+json": {
|
|
81
|
+
"schema": {
|
|
82
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"500": {
|
|
88
|
+
"description": "Internal server error",
|
|
79
89
|
"content": {
|
|
80
90
|
"application/problem+json": {
|
|
81
91
|
"schema": {
|
|
@@ -231,8 +241,8 @@
|
|
|
231
241
|
}
|
|
232
242
|
}
|
|
233
243
|
},
|
|
234
|
-
"
|
|
235
|
-
"description": "
|
|
244
|
+
"404": {
|
|
245
|
+
"description": "Unable to find resource",
|
|
236
246
|
"content": {
|
|
237
247
|
"application/problem+json": {
|
|
238
248
|
"schema": {
|
|
@@ -241,8 +251,18 @@
|
|
|
241
251
|
}
|
|
242
252
|
}
|
|
243
253
|
},
|
|
244
|
-
"
|
|
245
|
-
"description": "
|
|
254
|
+
"409": {
|
|
255
|
+
"description": "Conflict",
|
|
256
|
+
"content": {
|
|
257
|
+
"application/problem+json": {
|
|
258
|
+
"schema": {
|
|
259
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"500": {
|
|
265
|
+
"description": "Internal server error",
|
|
246
266
|
"content": {
|
|
247
267
|
"application/problem+json": {
|
|
248
268
|
"schema": {
|
|
@@ -330,8 +350,8 @@
|
|
|
330
350
|
}
|
|
331
351
|
}
|
|
332
352
|
},
|
|
333
|
-
"
|
|
334
|
-
"description": "
|
|
353
|
+
"404": {
|
|
354
|
+
"description": "Unable to find resource",
|
|
335
355
|
"content": {
|
|
336
356
|
"application/problem+json": {
|
|
337
357
|
"schema": {
|
|
@@ -340,8 +360,18 @@
|
|
|
340
360
|
}
|
|
341
361
|
}
|
|
342
362
|
},
|
|
343
|
-
"
|
|
344
|
-
"description": "
|
|
363
|
+
"409": {
|
|
364
|
+
"description": "Conflict",
|
|
365
|
+
"content": {
|
|
366
|
+
"application/problem+json": {
|
|
367
|
+
"schema": {
|
|
368
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"500": {
|
|
374
|
+
"description": "Internal server error",
|
|
345
375
|
"content": {
|
|
346
376
|
"application/problem+json": {
|
|
347
377
|
"schema": {
|
|
@@ -426,8 +456,8 @@
|
|
|
426
456
|
}
|
|
427
457
|
}
|
|
428
458
|
},
|
|
429
|
-
"
|
|
430
|
-
"description": "
|
|
459
|
+
"404": {
|
|
460
|
+
"description": "Unable to find resource",
|
|
431
461
|
"content": {
|
|
432
462
|
"application/problem+json": {
|
|
433
463
|
"schema": {
|
|
@@ -436,8 +466,18 @@
|
|
|
436
466
|
}
|
|
437
467
|
}
|
|
438
468
|
},
|
|
439
|
-
"
|
|
440
|
-
"description": "
|
|
469
|
+
"409": {
|
|
470
|
+
"description": "Conflict",
|
|
471
|
+
"content": {
|
|
472
|
+
"application/problem+json": {
|
|
473
|
+
"schema": {
|
|
474
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
"500": {
|
|
480
|
+
"description": "Internal server error",
|
|
441
481
|
"content": {
|
|
442
482
|
"application/problem+json": {
|
|
443
483
|
"schema": {
|
|
@@ -509,8 +549,8 @@
|
|
|
509
549
|
}
|
|
510
550
|
}
|
|
511
551
|
},
|
|
512
|
-
"
|
|
513
|
-
"description": "
|
|
552
|
+
"404": {
|
|
553
|
+
"description": "Unable to find resource",
|
|
514
554
|
"content": {
|
|
515
555
|
"application/problem+json": {
|
|
516
556
|
"schema": {
|
|
@@ -519,8 +559,18 @@
|
|
|
519
559
|
}
|
|
520
560
|
}
|
|
521
561
|
},
|
|
522
|
-
"
|
|
523
|
-
"description": "
|
|
562
|
+
"409": {
|
|
563
|
+
"description": "Conflict",
|
|
564
|
+
"content": {
|
|
565
|
+
"application/problem+json": {
|
|
566
|
+
"schema": {
|
|
567
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"500": {
|
|
573
|
+
"description": "Internal server error",
|
|
524
574
|
"content": {
|
|
525
575
|
"application/problem+json": {
|
|
526
576
|
"schema": {
|
|
@@ -594,8 +644,8 @@
|
|
|
594
644
|
}
|
|
595
645
|
}
|
|
596
646
|
},
|
|
597
|
-
"
|
|
598
|
-
"description": "
|
|
647
|
+
"404": {
|
|
648
|
+
"description": "Unable to find resource",
|
|
599
649
|
"content": {
|
|
600
650
|
"application/problem+json": {
|
|
601
651
|
"schema": {
|
|
@@ -604,8 +654,18 @@
|
|
|
604
654
|
}
|
|
605
655
|
}
|
|
606
656
|
},
|
|
607
|
-
"
|
|
608
|
-
"description": "
|
|
657
|
+
"409": {
|
|
658
|
+
"description": "Conflict",
|
|
659
|
+
"content": {
|
|
660
|
+
"application/problem+json": {
|
|
661
|
+
"schema": {
|
|
662
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
"500": {
|
|
668
|
+
"description": "Internal server error",
|
|
609
669
|
"content": {
|
|
610
670
|
"application/problem+json": {
|
|
611
671
|
"schema": {
|
|
@@ -632,18 +692,30 @@
|
|
|
632
692
|
],
|
|
633
693
|
"summary": "Update settings profile",
|
|
634
694
|
"operationId": "UpdateProfileEndpoint",
|
|
695
|
+
"parameters": [
|
|
696
|
+
{
|
|
697
|
+
"name": "forceUpdate",
|
|
698
|
+
"in": "query",
|
|
699
|
+
"schema": {
|
|
700
|
+
"type": "boolean",
|
|
701
|
+
"nullable": true
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
],
|
|
635
705
|
"requestBody": {
|
|
636
|
-
"x-name": "
|
|
637
|
-
"description": "",
|
|
706
|
+
"x-name": "profile",
|
|
638
707
|
"content": {
|
|
639
708
|
"application/json": {
|
|
640
709
|
"schema": {
|
|
641
|
-
"
|
|
710
|
+
"oneOf": [
|
|
711
|
+
{
|
|
712
|
+
"$ref": "#/components/schemas/ProfileDto"
|
|
713
|
+
}
|
|
714
|
+
]
|
|
642
715
|
}
|
|
643
716
|
}
|
|
644
717
|
},
|
|
645
|
-
"required": true
|
|
646
|
-
"x-position": 1
|
|
718
|
+
"required": true
|
|
647
719
|
},
|
|
648
720
|
"responses": {
|
|
649
721
|
"200": {
|
|
@@ -679,8 +751,8 @@
|
|
|
679
751
|
}
|
|
680
752
|
}
|
|
681
753
|
},
|
|
682
|
-
"
|
|
683
|
-
"description": "
|
|
754
|
+
"404": {
|
|
755
|
+
"description": "Unable to find resource",
|
|
684
756
|
"content": {
|
|
685
757
|
"application/problem+json": {
|
|
686
758
|
"schema": {
|
|
@@ -689,8 +761,18 @@
|
|
|
689
761
|
}
|
|
690
762
|
}
|
|
691
763
|
},
|
|
692
|
-
"
|
|
693
|
-
"description": "
|
|
764
|
+
"409": {
|
|
765
|
+
"description": "Conflict",
|
|
766
|
+
"content": {
|
|
767
|
+
"application/problem+json": {
|
|
768
|
+
"schema": {
|
|
769
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"500": {
|
|
775
|
+
"description": "Internal server error",
|
|
694
776
|
"content": {
|
|
695
777
|
"application/problem+json": {
|
|
696
778
|
"schema": {
|
|
@@ -752,8 +834,8 @@
|
|
|
752
834
|
}
|
|
753
835
|
}
|
|
754
836
|
},
|
|
755
|
-
"
|
|
756
|
-
"description": "
|
|
837
|
+
"404": {
|
|
838
|
+
"description": "Unable to find resource",
|
|
757
839
|
"content": {
|
|
758
840
|
"application/problem+json": {
|
|
759
841
|
"schema": {
|
|
@@ -762,8 +844,18 @@
|
|
|
762
844
|
}
|
|
763
845
|
}
|
|
764
846
|
},
|
|
765
|
-
"
|
|
766
|
-
"description": "
|
|
847
|
+
"409": {
|
|
848
|
+
"description": "Conflict",
|
|
849
|
+
"content": {
|
|
850
|
+
"application/problem+json": {
|
|
851
|
+
"schema": {
|
|
852
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
"500": {
|
|
858
|
+
"description": "Internal server error",
|
|
767
859
|
"content": {
|
|
768
860
|
"application/problem+json": {
|
|
769
861
|
"schema": {
|
|
@@ -838,8 +930,8 @@
|
|
|
838
930
|
}
|
|
839
931
|
}
|
|
840
932
|
},
|
|
841
|
-
"
|
|
842
|
-
"description": "
|
|
933
|
+
"404": {
|
|
934
|
+
"description": "Unable to find resource",
|
|
843
935
|
"content": {
|
|
844
936
|
"application/problem+json": {
|
|
845
937
|
"schema": {
|
|
@@ -848,8 +940,18 @@
|
|
|
848
940
|
}
|
|
849
941
|
}
|
|
850
942
|
},
|
|
851
|
-
"
|
|
852
|
-
"description": "
|
|
943
|
+
"409": {
|
|
944
|
+
"description": "Conflict",
|
|
945
|
+
"content": {
|
|
946
|
+
"application/problem+json": {
|
|
947
|
+
"schema": {
|
|
948
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
},
|
|
953
|
+
"500": {
|
|
954
|
+
"description": "Internal server error",
|
|
853
955
|
"content": {
|
|
854
956
|
"application/problem+json": {
|
|
855
957
|
"schema": {
|
|
@@ -923,8 +1025,8 @@
|
|
|
923
1025
|
}
|
|
924
1026
|
}
|
|
925
1027
|
},
|
|
926
|
-
"
|
|
927
|
-
"description": "
|
|
1028
|
+
"404": {
|
|
1029
|
+
"description": "Unable to find resource",
|
|
928
1030
|
"content": {
|
|
929
1031
|
"application/problem+json": {
|
|
930
1032
|
"schema": {
|
|
@@ -933,8 +1035,18 @@
|
|
|
933
1035
|
}
|
|
934
1036
|
}
|
|
935
1037
|
},
|
|
936
|
-
"
|
|
937
|
-
"description": "
|
|
1038
|
+
"409": {
|
|
1039
|
+
"description": "Conflict",
|
|
1040
|
+
"content": {
|
|
1041
|
+
"application/problem+json": {
|
|
1042
|
+
"schema": {
|
|
1043
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
},
|
|
1048
|
+
"500": {
|
|
1049
|
+
"description": "Internal server error",
|
|
938
1050
|
"content": {
|
|
939
1051
|
"application/problem+json": {
|
|
940
1052
|
"schema": {
|
|
@@ -993,8 +1105,8 @@
|
|
|
993
1105
|
}
|
|
994
1106
|
}
|
|
995
1107
|
},
|
|
996
|
-
"
|
|
997
|
-
"description": "
|
|
1108
|
+
"404": {
|
|
1109
|
+
"description": "Unable to find resource",
|
|
998
1110
|
"content": {
|
|
999
1111
|
"application/problem+json": {
|
|
1000
1112
|
"schema": {
|
|
@@ -1003,8 +1115,18 @@
|
|
|
1003
1115
|
}
|
|
1004
1116
|
}
|
|
1005
1117
|
},
|
|
1006
|
-
"
|
|
1007
|
-
"description": "
|
|
1118
|
+
"409": {
|
|
1119
|
+
"description": "Conflict",
|
|
1120
|
+
"content": {
|
|
1121
|
+
"application/problem+json": {
|
|
1122
|
+
"schema": {
|
|
1123
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
"500": {
|
|
1129
|
+
"description": "Internal server error",
|
|
1008
1130
|
"content": {
|
|
1009
1131
|
"application/problem+json": {
|
|
1010
1132
|
"schema": {
|
|
@@ -1065,8 +1187,8 @@
|
|
|
1065
1187
|
}
|
|
1066
1188
|
}
|
|
1067
1189
|
},
|
|
1068
|
-
"
|
|
1069
|
-
"description": "
|
|
1190
|
+
"404": {
|
|
1191
|
+
"description": "Unable to find resource",
|
|
1070
1192
|
"content": {
|
|
1071
1193
|
"application/problem+json": {
|
|
1072
1194
|
"schema": {
|
|
@@ -1075,8 +1197,18 @@
|
|
|
1075
1197
|
}
|
|
1076
1198
|
}
|
|
1077
1199
|
},
|
|
1078
|
-
"
|
|
1079
|
-
"description": "
|
|
1200
|
+
"409": {
|
|
1201
|
+
"description": "Conflict",
|
|
1202
|
+
"content": {
|
|
1203
|
+
"application/problem+json": {
|
|
1204
|
+
"schema": {
|
|
1205
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1206
|
+
}
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"500": {
|
|
1211
|
+
"description": "Internal server error",
|
|
1080
1212
|
"content": {
|
|
1081
1213
|
"application/problem+json": {
|
|
1082
1214
|
"schema": {
|
|
@@ -1150,8 +1282,8 @@
|
|
|
1150
1282
|
}
|
|
1151
1283
|
}
|
|
1152
1284
|
},
|
|
1153
|
-
"
|
|
1154
|
-
"description": "
|
|
1285
|
+
"404": {
|
|
1286
|
+
"description": "Unable to find resource",
|
|
1155
1287
|
"content": {
|
|
1156
1288
|
"application/problem+json": {
|
|
1157
1289
|
"schema": {
|
|
@@ -1160,8 +1292,18 @@
|
|
|
1160
1292
|
}
|
|
1161
1293
|
}
|
|
1162
1294
|
},
|
|
1163
|
-
"
|
|
1164
|
-
"description": "
|
|
1295
|
+
"409": {
|
|
1296
|
+
"description": "Conflict",
|
|
1297
|
+
"content": {
|
|
1298
|
+
"application/problem+json": {
|
|
1299
|
+
"schema": {
|
|
1300
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"500": {
|
|
1306
|
+
"description": "Internal server error",
|
|
1165
1307
|
"content": {
|
|
1166
1308
|
"application/problem+json": {
|
|
1167
1309
|
"schema": {
|