Skip to content

Commit 15e0252

Browse files
authored
fix: Generate CloudQuery Go API Client from spec.json (#148)
This PR was created by a scheduled workflow to generate the CloudQuery Go API Client from `spec.json`
1 parent a90e87b commit 15e0252

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

models.gen.go

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4412,7 +4412,9 @@
44124412
"team": {
44134413
"created_at": "2017-07-14T16:53:42Z",
44144414
"name": "cloudquery",
4415-
"display_name": "CloudQuery"
4415+
"display_name": "CloudQuery",
4416+
"plan": "free",
4417+
"is_trial_active": false
44164418
}
44174419
}
44184420
]
@@ -7397,6 +7399,20 @@
73977399
"plan": {
73987400
"$ref": "#/components/schemas/TeamPlan"
73997401
},
7402+
"plan_end_time": {
7403+
"example": "2017-07-14T16:53:42Z",
7404+
"format": "date-time",
7405+
"type": "string"
7406+
},
7407+
"is_trial_active": {
7408+
"type": "boolean",
7409+
"example": false
7410+
},
7411+
"trial_end_time": {
7412+
"example": "2017-07-14T16:53:42Z",
7413+
"format": "date-time",
7414+
"type": "string"
7415+
},
74007416
"display_name": {
74017417
"description": "The team's display name",
74027418
"maxLength": 255,
@@ -7406,7 +7422,9 @@
74067422
},
74077423
"required": [
74087424
"name",
7409-
"display_name"
7425+
"display_name",
7426+
"plan",
7427+
"is_trial_active"
74107428
],
74117429
"title": "Team",
74127430
"type": "object"

0 commit comments

Comments
 (0)