@promoboxx/graphql-gateway-types 1.28.0 → 1.29.0
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/graphql.schema.json +48 -0
- package/index.d.ts +8 -0
- package/package.json +1 -1
- package/schema.graphql +8 -0
package/graphql.schema.json
CHANGED
|
@@ -3380,12 +3380,60 @@
|
|
|
3380
3380
|
"isDeprecated": false,
|
|
3381
3381
|
"deprecationReason": null
|
|
3382
3382
|
},
|
|
3383
|
+
{
|
|
3384
|
+
"name": "LOCAL_AWARENESS",
|
|
3385
|
+
"description": null,
|
|
3386
|
+
"isDeprecated": false,
|
|
3387
|
+
"deprecationReason": null
|
|
3388
|
+
},
|
|
3383
3389
|
{
|
|
3384
3390
|
"name": "MESSAGES",
|
|
3385
3391
|
"description": null,
|
|
3386
3392
|
"isDeprecated": false,
|
|
3387
3393
|
"deprecationReason": null
|
|
3388
3394
|
},
|
|
3395
|
+
{
|
|
3396
|
+
"name": "OFFER_CLAIMS",
|
|
3397
|
+
"description": null,
|
|
3398
|
+
"isDeprecated": false,
|
|
3399
|
+
"deprecationReason": null
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"name": "OUTCOME_APP_PROMOTION",
|
|
3403
|
+
"description": null,
|
|
3404
|
+
"isDeprecated": false,
|
|
3405
|
+
"deprecationReason": null
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"name": "OUTCOME_AWARENESS",
|
|
3409
|
+
"description": null,
|
|
3410
|
+
"isDeprecated": false,
|
|
3411
|
+
"deprecationReason": null
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"name": "OUTCOME_ENGAGEMENT",
|
|
3415
|
+
"description": null,
|
|
3416
|
+
"isDeprecated": false,
|
|
3417
|
+
"deprecationReason": null
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
"name": "OUTCOME_LEADS",
|
|
3421
|
+
"description": null,
|
|
3422
|
+
"isDeprecated": false,
|
|
3423
|
+
"deprecationReason": null
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"name": "OUTCOME_SALES",
|
|
3427
|
+
"description": null,
|
|
3428
|
+
"isDeprecated": false,
|
|
3429
|
+
"deprecationReason": null
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
"name": "OUTCOME_TRAFFIC",
|
|
3433
|
+
"description": null,
|
|
3434
|
+
"isDeprecated": false,
|
|
3435
|
+
"deprecationReason": null
|
|
3436
|
+
},
|
|
3389
3437
|
{
|
|
3390
3438
|
"name": "PAGE_LIKES",
|
|
3391
3439
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -392,7 +392,15 @@ export type AdvertisingObjective =
|
|
|
392
392
|
| 'BRAND_AWARENESS'
|
|
393
393
|
| 'LEAD_GEN'
|
|
394
394
|
| 'LINK_CLICKS'
|
|
395
|
+
| 'LOCAL_AWARENESS'
|
|
395
396
|
| 'MESSAGES'
|
|
397
|
+
| 'OFFER_CLAIMS'
|
|
398
|
+
| 'OUTCOME_APP_PROMOTION'
|
|
399
|
+
| 'OUTCOME_AWARENESS'
|
|
400
|
+
| 'OUTCOME_ENGAGEMENT'
|
|
401
|
+
| 'OUTCOME_LEADS'
|
|
402
|
+
| 'OUTCOME_SALES'
|
|
403
|
+
| 'OUTCOME_TRAFFIC'
|
|
396
404
|
| 'PAGE_LIKES'
|
|
397
405
|
| 'REACH'
|
|
398
406
|
| 'VIDEO_VIEWS';
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -370,7 +370,15 @@ enum AdvertisingObjective {
|
|
|
370
370
|
BRAND_AWARENESS
|
|
371
371
|
LEAD_GEN
|
|
372
372
|
LINK_CLICKS
|
|
373
|
+
LOCAL_AWARENESS
|
|
373
374
|
MESSAGES
|
|
375
|
+
OFFER_CLAIMS
|
|
376
|
+
OUTCOME_APP_PROMOTION
|
|
377
|
+
OUTCOME_AWARENESS
|
|
378
|
+
OUTCOME_ENGAGEMENT
|
|
379
|
+
OUTCOME_LEADS
|
|
380
|
+
OUTCOME_SALES
|
|
381
|
+
OUTCOME_TRAFFIC
|
|
374
382
|
PAGE_LIKES
|
|
375
383
|
REACH
|
|
376
384
|
VIDEO_VIEWS
|