@wevion/cli 1.0.3150 → 1.0.3152
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 +104 -0
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -233471,6 +233471,110 @@
|
|
|
233471
233471
|
}
|
|
233472
233472
|
}
|
|
233473
233473
|
},
|
|
233474
|
+
"/api/v1/tracker-cloaker/integrations/meta/pixels": {
|
|
233475
|
+
"get": {
|
|
233476
|
+
"operationId": "getApiV1TrackerCloakerIntegrationsMetaPixels",
|
|
233477
|
+
"summary": "List Meta pixels",
|
|
233478
|
+
"tags": [
|
|
233479
|
+
"tracker-cloaker"
|
|
233480
|
+
],
|
|
233481
|
+
"description": "Calls Graph /act_<id>/adspixels for each connected ad account and returns the deduped pixels. Returns an EMPTY array when no token, none available, or on any Meta error — never fails.",
|
|
233482
|
+
"parameters": [
|
|
233483
|
+
{
|
|
233484
|
+
"schema": {
|
|
233485
|
+
"format": "uuid",
|
|
233486
|
+
"type": "string"
|
|
233487
|
+
},
|
|
233488
|
+
"in": "query",
|
|
233489
|
+
"name": "team_id",
|
|
233490
|
+
"required": false
|
|
233491
|
+
}
|
|
233492
|
+
],
|
|
233493
|
+
"security": [
|
|
233494
|
+
{
|
|
233495
|
+
"bearerAuth": []
|
|
233496
|
+
},
|
|
233497
|
+
{
|
|
233498
|
+
"apiKeyAuth": []
|
|
233499
|
+
}
|
|
233500
|
+
],
|
|
233501
|
+
"responses": {
|
|
233502
|
+
"200": {
|
|
233503
|
+
"description": "Successful response",
|
|
233504
|
+
"content": {
|
|
233505
|
+
"application/json": {
|
|
233506
|
+
"schema": {
|
|
233507
|
+
"type": "object",
|
|
233508
|
+
"required": [
|
|
233509
|
+
"items"
|
|
233510
|
+
],
|
|
233511
|
+
"properties": {
|
|
233512
|
+
"items": {
|
|
233513
|
+
"type": "array",
|
|
233514
|
+
"items": {
|
|
233515
|
+
"type": "object",
|
|
233516
|
+
"required": [
|
|
233517
|
+
"account_id",
|
|
233518
|
+
"id",
|
|
233519
|
+
"name"
|
|
233520
|
+
],
|
|
233521
|
+
"properties": {
|
|
233522
|
+
"account_id": {
|
|
233523
|
+
"type": "string"
|
|
233524
|
+
},
|
|
233525
|
+
"id": {
|
|
233526
|
+
"type": "string"
|
|
233527
|
+
},
|
|
233528
|
+
"name": {
|
|
233529
|
+
"type": "string"
|
|
233530
|
+
}
|
|
233531
|
+
}
|
|
233532
|
+
}
|
|
233533
|
+
}
|
|
233534
|
+
}
|
|
233535
|
+
}
|
|
233536
|
+
}
|
|
233537
|
+
}
|
|
233538
|
+
},
|
|
233539
|
+
"401": {
|
|
233540
|
+
"description": "Unauthorized - missing or invalid bearer token",
|
|
233541
|
+
"content": {
|
|
233542
|
+
"application/json": {
|
|
233543
|
+
"schema": {
|
|
233544
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
233545
|
+
}
|
|
233546
|
+
}
|
|
233547
|
+
}
|
|
233548
|
+
},
|
|
233549
|
+
"403": {
|
|
233550
|
+
"description": "Forbidden - caller lacks the required role/permission",
|
|
233551
|
+
"content": {
|
|
233552
|
+
"application/json": {
|
|
233553
|
+
"schema": {
|
|
233554
|
+
"type": "object",
|
|
233555
|
+
"required": [
|
|
233556
|
+
"statusCode",
|
|
233557
|
+
"error",
|
|
233558
|
+
"message"
|
|
233559
|
+
],
|
|
233560
|
+
"properties": {
|
|
233561
|
+
"statusCode": {
|
|
233562
|
+
"type": "number"
|
|
233563
|
+
},
|
|
233564
|
+
"error": {
|
|
233565
|
+
"type": "string"
|
|
233566
|
+
},
|
|
233567
|
+
"message": {
|
|
233568
|
+
"type": "string"
|
|
233569
|
+
}
|
|
233570
|
+
}
|
|
233571
|
+
}
|
|
233572
|
+
}
|
|
233573
|
+
}
|
|
233574
|
+
}
|
|
233575
|
+
}
|
|
233576
|
+
}
|
|
233577
|
+
},
|
|
233474
233578
|
"/api/v1/tracker-cloaker/integrations/meta/sync-accounts": {
|
|
233475
233579
|
"post": {
|
|
233476
233580
|
"operationId": "postApiV1TrackerCloakerIntegrationsMetaSyncAccounts",
|