@wevion/cli 1.0.2483 → 1.0.2486
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/openapi.json +139 -0
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -96553,6 +96553,121 @@
|
|
|
96553
96553
|
}
|
|
96554
96554
|
}
|
|
96555
96555
|
},
|
|
96556
|
+
"/api/v1/competitive-intelligence/reports/quota": {
|
|
96557
|
+
"get": {
|
|
96558
|
+
"operationId": "getApiV1CompetitiveIntelligenceReportsQuota",
|
|
96559
|
+
"summary": "Get competitive report daily quota",
|
|
96560
|
+
"tags": [
|
|
96561
|
+
"competitive-intelligence"
|
|
96562
|
+
],
|
|
96563
|
+
"description": "Return today's manual report-generation usage for the current team scope (used/limit/remaining).",
|
|
96564
|
+
"security": [
|
|
96565
|
+
{
|
|
96566
|
+
"bearerAuth": []
|
|
96567
|
+
},
|
|
96568
|
+
{
|
|
96569
|
+
"apiKeyAuth": []
|
|
96570
|
+
}
|
|
96571
|
+
],
|
|
96572
|
+
"responses": {
|
|
96573
|
+
"200": {
|
|
96574
|
+
"description": "Successful response",
|
|
96575
|
+
"content": {
|
|
96576
|
+
"application/json": {
|
|
96577
|
+
"schema": {
|
|
96578
|
+
"type": "object",
|
|
96579
|
+
"required": [
|
|
96580
|
+
"used",
|
|
96581
|
+
"limit",
|
|
96582
|
+
"remaining",
|
|
96583
|
+
"resets_at"
|
|
96584
|
+
],
|
|
96585
|
+
"properties": {
|
|
96586
|
+
"used": {
|
|
96587
|
+
"type": "integer"
|
|
96588
|
+
},
|
|
96589
|
+
"limit": {
|
|
96590
|
+
"type": "integer"
|
|
96591
|
+
},
|
|
96592
|
+
"remaining": {
|
|
96593
|
+
"type": "integer"
|
|
96594
|
+
},
|
|
96595
|
+
"resets_at": {
|
|
96596
|
+
"anyOf": [
|
|
96597
|
+
{
|
|
96598
|
+
"type": "string"
|
|
96599
|
+
},
|
|
96600
|
+
{
|
|
96601
|
+
"type": "null"
|
|
96602
|
+
}
|
|
96603
|
+
]
|
|
96604
|
+
}
|
|
96605
|
+
}
|
|
96606
|
+
}
|
|
96607
|
+
}
|
|
96608
|
+
}
|
|
96609
|
+
},
|
|
96610
|
+
"400": {
|
|
96611
|
+
"description": "Invalid request - schema validation failed",
|
|
96612
|
+
"content": {
|
|
96613
|
+
"application/json": {
|
|
96614
|
+
"schema": {
|
|
96615
|
+
"type": "object",
|
|
96616
|
+
"required": [
|
|
96617
|
+
"error"
|
|
96618
|
+
],
|
|
96619
|
+
"properties": {
|
|
96620
|
+
"code": {
|
|
96621
|
+
"type": "string"
|
|
96622
|
+
},
|
|
96623
|
+
"error": {
|
|
96624
|
+
"type": "string"
|
|
96625
|
+
},
|
|
96626
|
+
"message": {
|
|
96627
|
+
"type": "string"
|
|
96628
|
+
}
|
|
96629
|
+
}
|
|
96630
|
+
}
|
|
96631
|
+
}
|
|
96632
|
+
}
|
|
96633
|
+
},
|
|
96634
|
+
"401": {
|
|
96635
|
+
"description": "Unauthorized - missing or invalid bearer token",
|
|
96636
|
+
"content": {
|
|
96637
|
+
"application/json": {
|
|
96638
|
+
"schema": {
|
|
96639
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
96640
|
+
}
|
|
96641
|
+
}
|
|
96642
|
+
}
|
|
96643
|
+
},
|
|
96644
|
+
"403": {
|
|
96645
|
+
"description": "Forbidden - caller lacks the required role/permission",
|
|
96646
|
+
"content": {
|
|
96647
|
+
"application/json": {
|
|
96648
|
+
"schema": {
|
|
96649
|
+
"type": "object",
|
|
96650
|
+
"required": [
|
|
96651
|
+
"error"
|
|
96652
|
+
],
|
|
96653
|
+
"properties": {
|
|
96654
|
+
"code": {
|
|
96655
|
+
"type": "string"
|
|
96656
|
+
},
|
|
96657
|
+
"error": {
|
|
96658
|
+
"type": "string"
|
|
96659
|
+
},
|
|
96660
|
+
"message": {
|
|
96661
|
+
"type": "string"
|
|
96662
|
+
}
|
|
96663
|
+
}
|
|
96664
|
+
}
|
|
96665
|
+
}
|
|
96666
|
+
}
|
|
96667
|
+
}
|
|
96668
|
+
}
|
|
96669
|
+
}
|
|
96670
|
+
},
|
|
96556
96671
|
"/api/v1/competitive-intelligence/correlation": {
|
|
96557
96672
|
"get": {
|
|
96558
96673
|
"operationId": "getApiV1CompetitiveIntelligenceCorrelation",
|
|
@@ -97023,6 +97138,30 @@
|
|
|
97023
97138
|
}
|
|
97024
97139
|
}
|
|
97025
97140
|
}
|
|
97141
|
+
},
|
|
97142
|
+
"429": {
|
|
97143
|
+
"description": "Too many requests - rate limit exceeded",
|
|
97144
|
+
"content": {
|
|
97145
|
+
"application/json": {
|
|
97146
|
+
"schema": {
|
|
97147
|
+
"type": "object",
|
|
97148
|
+
"required": [
|
|
97149
|
+
"error"
|
|
97150
|
+
],
|
|
97151
|
+
"properties": {
|
|
97152
|
+
"code": {
|
|
97153
|
+
"type": "string"
|
|
97154
|
+
},
|
|
97155
|
+
"error": {
|
|
97156
|
+
"type": "string"
|
|
97157
|
+
},
|
|
97158
|
+
"message": {
|
|
97159
|
+
"type": "string"
|
|
97160
|
+
}
|
|
97161
|
+
}
|
|
97162
|
+
}
|
|
97163
|
+
}
|
|
97164
|
+
}
|
|
97026
97165
|
}
|
|
97027
97166
|
}
|
|
97028
97167
|
}
|