@promoboxx/graphql-gateway-types 1.427.0 → 1.428.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 +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -74932,6 +74932,18 @@
|
|
|
74932
74932
|
},
|
|
74933
74933
|
"isDeprecated": false,
|
|
74934
74934
|
"deprecationReason": null
|
|
74935
|
+
},
|
|
74936
|
+
{
|
|
74937
|
+
"name": "video",
|
|
74938
|
+
"description": null,
|
|
74939
|
+
"args": [],
|
|
74940
|
+
"type": {
|
|
74941
|
+
"kind": "SCALAR",
|
|
74942
|
+
"name": "String",
|
|
74943
|
+
"ofType": null
|
|
74944
|
+
},
|
|
74945
|
+
"isDeprecated": false,
|
|
74946
|
+
"deprecationReason": null
|
|
74935
74947
|
}
|
|
74936
74948
|
],
|
|
74937
74949
|
"inputFields": null,
|
package/index.d.ts
CHANGED
|
@@ -9748,6 +9748,7 @@ export type Share = {
|
|
|
9748
9748
|
unique_link_clicks?: Maybe<Scalars['Int']['output']>;
|
|
9749
9749
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
9750
9750
|
updated_by_id?: Maybe<Scalars['ID']['output']>;
|
|
9751
|
+
video?: Maybe<Scalars['String']['output']>;
|
|
9751
9752
|
};
|
|
9752
9753
|
|
|
9753
9754
|
export type ShareCard = {
|
package/package.json
CHANGED