Skip to content

Commit 98f7c16

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add missing relationships to UsersInvitations response (#1245)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 50aa2b0 commit 98f7c16

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.5",
7-
"regenerated": "2023-07-18 19:28:49.350850",
8-
"spec_repo_commit": "0259ae38"
7+
"regenerated": "2023-07-19 18:05:03.090949",
8+
"spec_repo_commit": "e9066fe1"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-18 19:28:49.369703",
13-
"spec_repo_commit": "0259ae38"
12+
"regenerated": "2023-07-19 18:05:03.104671",
13+
"spec_repo_commit": "e9066fe1"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16701,6 +16701,8 @@ components:
1670116701
id:
1670216702
description: ID of the user invitation.
1670316703
type: string
16704+
relationships:
16705+
$ref: '#/components/schemas/UserInvitationRelationships'
1670416706
type:
1670516707
$ref: '#/components/schemas/UserInvitationsType'
1670616708
type: object

packages/datadog-api-client-v2/models/UserInvitationResponseData.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Copyright 2020-Present Datadog, Inc.
55
*/
66
import { UserInvitationDataAttributes } from "./UserInvitationDataAttributes";
7+
import { UserInvitationRelationships } from "./UserInvitationRelationships";
78
import { UserInvitationsType } from "./UserInvitationsType";
89

910
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
@@ -20,6 +21,10 @@ export class UserInvitationResponseData {
2021
* ID of the user invitation.
2122
*/
2223
"id"?: string;
24+
/**
25+
* Relationships data for user invitation.
26+
*/
27+
"relationships"?: UserInvitationRelationships;
2328
/**
2429
* User invitations type.
2530
*/
@@ -42,6 +47,10 @@ export class UserInvitationResponseData {
4247
baseName: "id",
4348
type: "string",
4449
},
50+
relationships: {
51+
baseName: "relationships",
52+
type: "UserInvitationRelationships",
53+
},
4554
type: {
4655
baseName: "type",
4756
type: "UserInvitationsType",

0 commit comments

Comments
 (0)