@promoboxx/graphql-gateway-types 1.208.0 → 1.210.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.
@@ -61080,6 +61080,59 @@
61080
61080
  "isDeprecated": false,
61081
61081
  "deprecationReason": null
61082
61082
  },
61083
+ {
61084
+ "name": "getShareSetting",
61085
+ "description": null,
61086
+ "args": [
61087
+ {
61088
+ "name": "fields",
61089
+ "description": null,
61090
+ "type": {
61091
+ "kind": "LIST",
61092
+ "name": null,
61093
+ "ofType": {
61094
+ "kind": "NON_NULL",
61095
+ "name": null,
61096
+ "ofType": {
61097
+ "kind": "SCALAR",
61098
+ "name": "String",
61099
+ "ofType": null
61100
+ }
61101
+ }
61102
+ },
61103
+ "defaultValue": null,
61104
+ "isDeprecated": false,
61105
+ "deprecationReason": null
61106
+ },
61107
+ {
61108
+ "name": "id",
61109
+ "description": null,
61110
+ "type": {
61111
+ "kind": "NON_NULL",
61112
+ "name": null,
61113
+ "ofType": {
61114
+ "kind": "SCALAR",
61115
+ "name": "ID",
61116
+ "ofType": null
61117
+ }
61118
+ },
61119
+ "defaultValue": null,
61120
+ "isDeprecated": false,
61121
+ "deprecationReason": null
61122
+ }
61123
+ ],
61124
+ "type": {
61125
+ "kind": "NON_NULL",
61126
+ "name": null,
61127
+ "ofType": {
61128
+ "kind": "OBJECT",
61129
+ "name": "ShareSetting",
61130
+ "ofType": null
61131
+ }
61132
+ },
61133
+ "isDeprecated": false,
61134
+ "deprecationReason": null
61135
+ },
61083
61136
  {
61084
61137
  "name": "getShareSettingsAssetSearch",
61085
61138
  "description": null,
package/index.d.ts CHANGED
@@ -7243,6 +7243,7 @@ export type Query = {
7243
7243
  /** Get retailer information form a list of ids */
7244
7244
  getRetailersBulk?: Maybe<Array<Retailer>>;
7245
7245
  getShare: Share;
7246
+ getShareSetting: ShareSetting;
7246
7247
  getShareSettingsAssetSearch: Array<ShareSetting>;
7247
7248
  getShareSettingsRetailer: Array<ShareSetting>;
7248
7249
  getShares: GetSharesResponse;
@@ -8096,6 +8097,12 @@ export type QueryGetShareArgs = {
8096
8097
  };
8097
8098
 
8098
8099
 
8100
+ export type QueryGetShareSettingArgs = {
8101
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8102
+ id: Scalars['ID']['input'];
8103
+ };
8104
+
8105
+
8099
8106
  export type QueryGetShareSettingsAssetSearchArgs = {
8100
8107
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
8101
8108
  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.208.0",
3
+ "version": "1.210.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -6504,6 +6504,7 @@ type Query {
6504
6504
  """Get retailer information form a list of ids"""
6505
6505
  getRetailersBulk(params: GetRetailersBulkParams!): [Retailer!]
6506
6506
  getShare(params: ShareParams, shareId: ID!, shareType: ShareTypeParam!): Share!
6507
+ getShareSetting(fields: [String!], id: ID!): ShareSetting!
6507
6508
  getShareSettingsAssetSearch(fields: [String!], resource_id: ID!, resource_type: String!, search_string: String!): [ShareSetting!]!
6508
6509
  getShareSettingsRetailer(campaign_id: ID!, fields: [String!], filters: GetShareSettingsRetailerFilters, retailer_id: ID!): [ShareSetting!]!
6509
6510
  getShares(params: SharesParams): GetSharesResponse!