@promoboxx/graphql-gateway-types 1.290.0 → 1.291.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 +20 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -71017,6 +71017,26 @@
|
|
|
71017
71017
|
"isDeprecated": false,
|
|
71018
71018
|
"deprecationReason": null
|
|
71019
71019
|
},
|
|
71020
|
+
{
|
|
71021
|
+
"name": "lead_imports",
|
|
71022
|
+
"description": null,
|
|
71023
|
+
"args": [],
|
|
71024
|
+
"type": {
|
|
71025
|
+
"kind": "LIST",
|
|
71026
|
+
"name": null,
|
|
71027
|
+
"ofType": {
|
|
71028
|
+
"kind": "NON_NULL",
|
|
71029
|
+
"name": null,
|
|
71030
|
+
"ofType": {
|
|
71031
|
+
"kind": "OBJECT",
|
|
71032
|
+
"name": "LeadImport",
|
|
71033
|
+
"ofType": null
|
|
71034
|
+
}
|
|
71035
|
+
}
|
|
71036
|
+
},
|
|
71037
|
+
"isDeprecated": false,
|
|
71038
|
+
"deprecationReason": null
|
|
71039
|
+
},
|
|
71020
71040
|
{
|
|
71021
71041
|
"name": "likes",
|
|
71022
71042
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -9214,6 +9214,7 @@ export type Share = {
|
|
|
9214
9214
|
instagram_business_account_id?: Maybe<Scalars['ID']['output']>;
|
|
9215
9215
|
internal_stats?: Maybe<InternalStats>;
|
|
9216
9216
|
is_test?: Maybe<Scalars['Boolean']['output']>;
|
|
9217
|
+
lead_imports?: Maybe<Array<LeadImport>>;
|
|
9217
9218
|
likes?: Maybe<Scalars['Int']['output']>;
|
|
9218
9219
|
link?: Maybe<Scalars['String']['output']>;
|
|
9219
9220
|
link_clicks?: Maybe<Scalars['Int']['output']>;
|
package/package.json
CHANGED