@promoboxx/graphql-gateway-types 1.1124.0 → 1.1125.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.
@@ -78879,6 +78879,18 @@
78879
78879
  "defaultValue": null,
78880
78880
  "isDeprecated": false,
78881
78881
  "deprecationReason": null
78882
+ },
78883
+ {
78884
+ "name": "search_string",
78885
+ "description": null,
78886
+ "type": {
78887
+ "kind": "SCALAR",
78888
+ "name": "String",
78889
+ "ofType": null
78890
+ },
78891
+ "defaultValue": null,
78892
+ "isDeprecated": false,
78893
+ "deprecationReason": null
78882
78894
  }
78883
78895
  ],
78884
78896
  "type": {
package/index.d.ts CHANGED
@@ -10246,6 +10246,7 @@ export type QueryGetShareSettingsRetailerArgs = {
10246
10246
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
10247
10247
  filters?: InputMaybe<GetShareSettingsRetailerFilters>;
10248
10248
  retailer_id: Scalars['ID']['input'];
10249
+ search_string?: InputMaybe<Scalars['String']['input']>;
10249
10250
  };
10250
10251
 
10251
10252
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1124.0",
3
+ "version": "1.1125.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -7996,7 +7996,7 @@ type Query {
7996
7996
  getShareSettingRetailer(fields: [String!], id: ID!, retailer_id: ID!): ShareSetting!
7997
7997
  getShareSettingsAssetSearch(fields: [String!], resource_id: ID!, resource_type: String!, search_string: String!): [ShareSetting!]!
7998
7998
  getShareSettingsBrand(campaign_id: ID!, fields: [String!], filters: GetShareSettingsFilters): [ShareSetting!]!
7999
- getShareSettingsRetailer(campaign_id: ID!, fields: [String!], filters: GetShareSettingsRetailerFilters, retailer_id: ID!): [ShareSetting!]!
7999
+ getShareSettingsRetailer(campaign_id: ID!, fields: [String!], filters: GetShareSettingsRetailerFilters, retailer_id: ID!, search_string: String): [ShareSetting!]!
8000
8000
  getShares(params: SharesParams): GetSharesResponse!
8001
8001
  getSharesByResourceType(params: SharesByResourceTypeParams, resourceId: ID!, resourceType: ResourceType!, shareType: ShareTypeParam!): GetSharesByResourceTypeResponse!
8002
8002
  getSignedDashboard(req: GetSignedDashboardRequest!): SignedDashboardResponse