@promoboxx/graphql-gateway-types 1.1063.0 → 1.1064.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.
@@ -15732,6 +15732,30 @@
15732
15732
  "defaultValue": null,
15733
15733
  "isDeprecated": false,
15734
15734
  "deprecationReason": null
15735
+ },
15736
+ {
15737
+ "name": "resource_id",
15738
+ "description": null,
15739
+ "type": {
15740
+ "kind": "SCALAR",
15741
+ "name": "ID",
15742
+ "ofType": null
15743
+ },
15744
+ "defaultValue": null,
15745
+ "isDeprecated": false,
15746
+ "deprecationReason": null
15747
+ },
15748
+ {
15749
+ "name": "resource_type",
15750
+ "description": null,
15751
+ "type": {
15752
+ "kind": "SCALAR",
15753
+ "name": "String",
15754
+ "ofType": null
15755
+ },
15756
+ "defaultValue": null,
15757
+ "isDeprecated": false,
15758
+ "deprecationReason": null
15735
15759
  }
15736
15760
  ],
15737
15761
  "interfaces": null,
package/index.d.ts CHANGED
@@ -1670,6 +1670,8 @@ export type CampaignInvitationResourceType =
1670
1670
 
1671
1671
  export type CampaignParams = {
1672
1672
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
1673
+ resource_id?: InputMaybe<Scalars['ID']['input']>;
1674
+ resource_type?: InputMaybe<Scalars['String']['input']>;
1673
1675
  };
1674
1676
 
1675
1677
  export type CampaignResourceType =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1063.0",
3
+ "version": "1.1064.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1578,6 +1578,8 @@ enum CampaignInvitationResourceType {
1578
1578
 
1579
1579
  input CampaignParams {
1580
1580
  fields: [String!]
1581
+ resource_id: ID
1582
+ resource_type: String
1581
1583
  }
1582
1584
 
1583
1585
  enum CampaignResourceType {