@promoboxx/graphql-gateway-types 1.435.0 → 1.437.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 +24 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -31480,6 +31480,18 @@
|
|
|
31480
31480
|
"description": null,
|
|
31481
31481
|
"fields": null,
|
|
31482
31482
|
"inputFields": [
|
|
31483
|
+
{
|
|
31484
|
+
"name": "campaign_id",
|
|
31485
|
+
"description": null,
|
|
31486
|
+
"type": {
|
|
31487
|
+
"kind": "SCALAR",
|
|
31488
|
+
"name": "ID",
|
|
31489
|
+
"ofType": null
|
|
31490
|
+
},
|
|
31491
|
+
"defaultValue": null,
|
|
31492
|
+
"isDeprecated": false,
|
|
31493
|
+
"deprecationReason": null
|
|
31494
|
+
},
|
|
31483
31495
|
{
|
|
31484
31496
|
"name": "fields",
|
|
31485
31497
|
"description": null,
|
|
@@ -31499,6 +31511,18 @@
|
|
|
31499
31511
|
"defaultValue": null,
|
|
31500
31512
|
"isDeprecated": false,
|
|
31501
31513
|
"deprecationReason": null
|
|
31514
|
+
},
|
|
31515
|
+
{
|
|
31516
|
+
"name": "retailer_id",
|
|
31517
|
+
"description": null,
|
|
31518
|
+
"type": {
|
|
31519
|
+
"kind": "SCALAR",
|
|
31520
|
+
"name": "ID",
|
|
31521
|
+
"ofType": null
|
|
31522
|
+
},
|
|
31523
|
+
"defaultValue": null,
|
|
31524
|
+
"isDeprecated": false,
|
|
31525
|
+
"deprecationReason": null
|
|
31502
31526
|
}
|
|
31503
31527
|
],
|
|
31504
31528
|
"interfaces": null,
|
package/index.d.ts
CHANGED
|
@@ -3394,7 +3394,9 @@ export type GetCampaignInvitationParams = {
|
|
|
3394
3394
|
};
|
|
3395
3395
|
|
|
3396
3396
|
export type GetCampaignInvitationsParams = {
|
|
3397
|
+
campaign_id?: InputMaybe<Scalars['ID']['input']>;
|
|
3397
3398
|
fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3399
|
+
retailer_id?: InputMaybe<Scalars['ID']['input']>;
|
|
3398
3400
|
};
|
|
3399
3401
|
|
|
3400
3402
|
export type GetCampaignInvitationsResponse = {
|
package/package.json
CHANGED
package/schema.graphql
CHANGED