@promoboxx/graphql-gateway-types 1.172.0 → 1.174.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.
@@ -32164,6 +32164,29 @@
32164
32164
  "enumValues": null,
32165
32165
  "possibleTypes": null
32166
32166
  },
32167
+ {
32168
+ "kind": "INPUT_OBJECT",
32169
+ "name": "GetShareSettingsRetailerFilters",
32170
+ "description": null,
32171
+ "fields": null,
32172
+ "inputFields": [
32173
+ {
32174
+ "name": "share_type",
32175
+ "description": null,
32176
+ "type": {
32177
+ "kind": "SCALAR",
32178
+ "name": "String",
32179
+ "ofType": null
32180
+ },
32181
+ "defaultValue": null,
32182
+ "isDeprecated": false,
32183
+ "deprecationReason": null
32184
+ }
32185
+ ],
32186
+ "interfaces": null,
32187
+ "enumValues": null,
32188
+ "possibleTypes": null
32189
+ },
32167
32190
  {
32168
32191
  "kind": "OBJECT",
32169
32192
  "name": "GetSharesByResourceTypeResponse",
@@ -61077,6 +61100,95 @@
61077
61100
  "isDeprecated": false,
61078
61101
  "deprecationReason": null
61079
61102
  },
61103
+ {
61104
+ "name": "getShareSettingsRetailer",
61105
+ "description": null,
61106
+ "args": [
61107
+ {
61108
+ "name": "campaign_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
+ "name": "fields",
61125
+ "description": null,
61126
+ "type": {
61127
+ "kind": "LIST",
61128
+ "name": null,
61129
+ "ofType": {
61130
+ "kind": "NON_NULL",
61131
+ "name": null,
61132
+ "ofType": {
61133
+ "kind": "SCALAR",
61134
+ "name": "String",
61135
+ "ofType": null
61136
+ }
61137
+ }
61138
+ },
61139
+ "defaultValue": null,
61140
+ "isDeprecated": false,
61141
+ "deprecationReason": null
61142
+ },
61143
+ {
61144
+ "name": "filters",
61145
+ "description": null,
61146
+ "type": {
61147
+ "kind": "INPUT_OBJECT",
61148
+ "name": "GetShareSettingsRetailerFilters",
61149
+ "ofType": null
61150
+ },
61151
+ "defaultValue": null,
61152
+ "isDeprecated": false,
61153
+ "deprecationReason": null
61154
+ },
61155
+ {
61156
+ "name": "retailer_id",
61157
+ "description": null,
61158
+ "type": {
61159
+ "kind": "NON_NULL",
61160
+ "name": null,
61161
+ "ofType": {
61162
+ "kind": "SCALAR",
61163
+ "name": "ID",
61164
+ "ofType": null
61165
+ }
61166
+ },
61167
+ "defaultValue": null,
61168
+ "isDeprecated": false,
61169
+ "deprecationReason": null
61170
+ }
61171
+ ],
61172
+ "type": {
61173
+ "kind": "NON_NULL",
61174
+ "name": null,
61175
+ "ofType": {
61176
+ "kind": "LIST",
61177
+ "name": null,
61178
+ "ofType": {
61179
+ "kind": "NON_NULL",
61180
+ "name": null,
61181
+ "ofType": {
61182
+ "kind": "OBJECT",
61183
+ "name": "ShareSetting",
61184
+ "ofType": null
61185
+ }
61186
+ }
61187
+ }
61188
+ },
61189
+ "isDeprecated": false,
61190
+ "deprecationReason": null
61191
+ },
61080
61192
  {
61081
61193
  "name": "getShares",
61082
61194
  "description": null,
package/index.d.ts CHANGED
@@ -3516,6 +3516,10 @@ export type GetRetailersParams = {
3516
3516
  sort_direction?: InputMaybe<Scalars['String']['input']>;
3517
3517
  };
3518
3518
 
3519
+ export type GetShareSettingsRetailerFilters = {
3520
+ share_type?: InputMaybe<Scalars['String']['input']>;
3521
+ };
3522
+
3519
3523
  export type GetSharesByResourceTypeResponse = {
3520
3524
  __typename?: 'GetSharesByResourceTypeResponse';
3521
3525
  data: Array<Share>;
@@ -7229,6 +7233,7 @@ export type Query = {
7229
7233
  getRetailersBulk?: Maybe<Array<Retailer>>;
7230
7234
  getShare: Share;
7231
7235
  getShareSettingsAssetSearch: Array<ShareSetting>;
7236
+ getShareSettingsRetailer: Array<ShareSetting>;
7232
7237
  getShares: GetSharesResponse;
7233
7238
  getSharesByResourceType: GetSharesByResourceTypeResponse;
7234
7239
  getSignedDashboard?: Maybe<SignedDashboardResponse>;
@@ -8088,6 +8093,14 @@ export type QueryGetShareSettingsAssetSearchArgs = {
8088
8093
  };
8089
8094
 
8090
8095
 
8096
+ export type QueryGetShareSettingsRetailerArgs = {
8097
+ campaign_id: Scalars['ID']['input'];
8098
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8099
+ filters?: InputMaybe<GetShareSettingsRetailerFilters>;
8100
+ retailer_id: Scalars['ID']['input'];
8101
+ };
8102
+
8103
+
8091
8104
  export type QueryGetSharesArgs = {
8092
8105
  params?: InputMaybe<SharesParams>;
8093
8106
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.172.0",
3
+ "version": "1.174.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3390,6 +3390,10 @@ input GetRetailersParams {
3390
3390
  sort_direction: String
3391
3391
  }
3392
3392
 
3393
+ input GetShareSettingsRetailerFilters {
3394
+ share_type: String
3395
+ }
3396
+
3393
3397
  type GetSharesByResourceTypeResponse {
3394
3398
  data: [Share!]!
3395
3399
  paging: Paging!
@@ -6495,6 +6499,7 @@ type Query {
6495
6499
  getRetailersBulk(params: GetRetailersBulkParams!): [Retailer!]
6496
6500
  getShare(params: ShareParams, shareId: ID!, shareType: ShareTypeParam!): Share!
6497
6501
  getShareSettingsAssetSearch(fields: [String!], resource_id: ID!, resource_type: String!, search_string: String!): [ShareSetting!]!
6502
+ getShareSettingsRetailer(campaign_id: ID!, fields: [String!], filters: GetShareSettingsRetailerFilters, retailer_id: ID!): [ShareSetting!]!
6498
6503
  getShares(params: SharesParams): GetSharesResponse!
6499
6504
  getSharesByResourceType(params: SharesByResourceTypeParams, resourceId: ID!, resourceType: ResourceType!, shareType: ShareTypeParam!): GetSharesByResourceTypeResponse!
6500
6505
  getSignedDashboard(req: GetSignedDashboardRequest!): SignedDashboardResponse