@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.435.0",
3
+ "version": "1.437.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3271,7 +3271,9 @@ input GetCampaignInvitationParams {
3271
3271
  }
3272
3272
 
3273
3273
  input GetCampaignInvitationsParams {
3274
+ campaign_id: ID
3274
3275
  fields: [String!]
3276
+ retailer_id: ID
3275
3277
  }
3276
3278
 
3277
3279
  type GetCampaignInvitationsResponse {