@promoboxx/graphql-gateway-types 1.197.0 → 1.199.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.
- package/graphql.schema.json +40 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -70954,6 +70954,26 @@
|
|
|
70954
70954
|
"isDeprecated": false,
|
|
70955
70955
|
"deprecationReason": null
|
|
70956
70956
|
},
|
|
70957
|
+
{
|
|
70958
|
+
"name": "channels",
|
|
70959
|
+
"description": null,
|
|
70960
|
+
"type": {
|
|
70961
|
+
"kind": "LIST",
|
|
70962
|
+
"name": null,
|
|
70963
|
+
"ofType": {
|
|
70964
|
+
"kind": "NON_NULL",
|
|
70965
|
+
"name": null,
|
|
70966
|
+
"ofType": {
|
|
70967
|
+
"kind": "SCALAR",
|
|
70968
|
+
"name": "String",
|
|
70969
|
+
"ofType": null
|
|
70970
|
+
}
|
|
70971
|
+
}
|
|
70972
|
+
},
|
|
70973
|
+
"defaultValue": null,
|
|
70974
|
+
"isDeprecated": false,
|
|
70975
|
+
"deprecationReason": null
|
|
70976
|
+
},
|
|
70957
70977
|
{
|
|
70958
70978
|
"name": "end_date",
|
|
70959
70979
|
"description": null,
|
|
@@ -70966,6 +70986,26 @@
|
|
|
70966
70986
|
"isDeprecated": false,
|
|
70967
70987
|
"deprecationReason": null
|
|
70968
70988
|
},
|
|
70989
|
+
{
|
|
70990
|
+
"name": "fields",
|
|
70991
|
+
"description": null,
|
|
70992
|
+
"type": {
|
|
70993
|
+
"kind": "LIST",
|
|
70994
|
+
"name": null,
|
|
70995
|
+
"ofType": {
|
|
70996
|
+
"kind": "NON_NULL",
|
|
70997
|
+
"name": null,
|
|
70998
|
+
"ofType": {
|
|
70999
|
+
"kind": "SCALAR",
|
|
71000
|
+
"name": "String",
|
|
71001
|
+
"ofType": null
|
|
71002
|
+
}
|
|
71003
|
+
}
|
|
71004
|
+
},
|
|
71005
|
+
"defaultValue": null,
|
|
71006
|
+
"isDeprecated": false,
|
|
71007
|
+
"deprecationReason": null
|
|
71008
|
+
},
|
|
70969
71009
|
{
|
|
70970
71010
|
"name": "limit",
|
|
70971
71011
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -9158,7 +9158,9 @@ export type SharesFilters = {
|
|
|
9158
9158
|
export type SharesParams = {
|
|
9159
9159
|
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
9160
9160
|
campaign_id?: InputMaybe<Scalars['ID']['input']>;
|
|
9161
|
+
channels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9161
9162
|
end_date?: InputMaybe<Scalars['String']['input']>;
|
|
9163
|
+
fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9162
9164
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
9163
9165
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9164
9166
|
retailer_account_id?: InputMaybe<Scalars['ID']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED