@promoboxx/graphql-gateway-types 1.329.0 → 1.331.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.
@@ -64966,6 +64966,75 @@
64966
64966
  "isDeprecated": false,
64967
64967
  "deprecationReason": null
64968
64968
  },
64969
+ {
64970
+ "name": "getShareSettingRetailer",
64971
+ "description": null,
64972
+ "args": [
64973
+ {
64974
+ "name": "fields",
64975
+ "description": null,
64976
+ "type": {
64977
+ "kind": "LIST",
64978
+ "name": null,
64979
+ "ofType": {
64980
+ "kind": "NON_NULL",
64981
+ "name": null,
64982
+ "ofType": {
64983
+ "kind": "SCALAR",
64984
+ "name": "String",
64985
+ "ofType": null
64986
+ }
64987
+ }
64988
+ },
64989
+ "defaultValue": null,
64990
+ "isDeprecated": false,
64991
+ "deprecationReason": null
64992
+ },
64993
+ {
64994
+ "name": "id",
64995
+ "description": null,
64996
+ "type": {
64997
+ "kind": "NON_NULL",
64998
+ "name": null,
64999
+ "ofType": {
65000
+ "kind": "SCALAR",
65001
+ "name": "ID",
65002
+ "ofType": null
65003
+ }
65004
+ },
65005
+ "defaultValue": null,
65006
+ "isDeprecated": false,
65007
+ "deprecationReason": null
65008
+ },
65009
+ {
65010
+ "name": "retailer_id",
65011
+ "description": null,
65012
+ "type": {
65013
+ "kind": "NON_NULL",
65014
+ "name": null,
65015
+ "ofType": {
65016
+ "kind": "SCALAR",
65017
+ "name": "ID",
65018
+ "ofType": null
65019
+ }
65020
+ },
65021
+ "defaultValue": null,
65022
+ "isDeprecated": false,
65023
+ "deprecationReason": null
65024
+ }
65025
+ ],
65026
+ "type": {
65027
+ "kind": "NON_NULL",
65028
+ "name": null,
65029
+ "ofType": {
65030
+ "kind": "OBJECT",
65031
+ "name": "ShareSetting",
65032
+ "ofType": null
65033
+ }
65034
+ },
65035
+ "isDeprecated": false,
65036
+ "deprecationReason": null
65037
+ },
64969
65038
  {
64970
65039
  "name": "getShareSettingsAssetSearch",
64971
65040
  "description": null,
package/index.d.ts CHANGED
@@ -7678,6 +7678,7 @@ export type Query = {
7678
7678
  getRetailersBulk?: Maybe<Array<Retailer>>;
7679
7679
  getShare: Share;
7680
7680
  getShareSetting: ShareSetting;
7681
+ getShareSettingRetailer: ShareSetting;
7681
7682
  getShareSettingsAssetSearch: Array<ShareSetting>;
7682
7683
  getShareSettingsRetailer: Array<ShareSetting>;
7683
7684
  getShares: GetSharesResponse;
@@ -8663,6 +8664,13 @@ export type QueryGetShareSettingArgs = {
8663
8664
  };
8664
8665
 
8665
8666
 
8667
+ export type QueryGetShareSettingRetailerArgs = {
8668
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8669
+ id: Scalars['ID']['input'];
8670
+ retailer_id: Scalars['ID']['input'];
8671
+ };
8672
+
8673
+
8666
8674
  export type QueryGetShareSettingsAssetSearchArgs = {
8667
8675
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
8668
8676
  resource_id: Scalars['ID']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.329.0",
3
+ "version": "1.331.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -7112,6 +7112,7 @@ type Query {
7112
7112
  getRetailersBulk(params: GetRetailersBulkParams!): [Retailer!]
7113
7113
  getShare(params: ShareParams, shareId: ID!, shareType: ShareTypeParam!): Share!
7114
7114
  getShareSetting(fields: [String!], id: ID!): ShareSetting!
7115
+ getShareSettingRetailer(fields: [String!], id: ID!, retailer_id: ID!): ShareSetting!
7115
7116
  getShareSettingsAssetSearch(fields: [String!], resource_id: ID!, resource_type: String!, search_string: String!): [ShareSetting!]!
7116
7117
  getShareSettingsRetailer(campaign_id: ID!, fields: [String!], filters: GetShareSettingsRetailerFilters, retailer_id: ID!): [ShareSetting!]!
7117
7118
  getShares(params: SharesParams): GetSharesResponse!