@promoboxx/graphql-gateway-types 1.320.0 → 1.321.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
|
@@ -73288,6 +73288,18 @@
|
|
|
73288
73288
|
"isDeprecated": false,
|
|
73289
73289
|
"deprecationReason": null
|
|
73290
73290
|
},
|
|
73291
|
+
{
|
|
73292
|
+
"name": "text",
|
|
73293
|
+
"description": null,
|
|
73294
|
+
"args": [],
|
|
73295
|
+
"type": {
|
|
73296
|
+
"kind": "SCALAR",
|
|
73297
|
+
"name": "String",
|
|
73298
|
+
"ofType": null
|
|
73299
|
+
},
|
|
73300
|
+
"isDeprecated": false,
|
|
73301
|
+
"deprecationReason": null
|
|
73302
|
+
},
|
|
73291
73303
|
{
|
|
73292
73304
|
"name": "text_body",
|
|
73293
73305
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -9552,6 +9552,7 @@ export type Share = {
|
|
|
9552
9552
|
status?: Maybe<Scalars['String']['output']>;
|
|
9553
9553
|
status_message?: Maybe<Scalars['String']['output']>;
|
|
9554
9554
|
subject?: Maybe<Scalars['String']['output']>;
|
|
9555
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
9555
9556
|
text_body?: Maybe<Scalars['String']['output']>;
|
|
9556
9557
|
title?: Maybe<Scalars['String']['output']>;
|
|
9557
9558
|
tweet_id?: Maybe<Scalars['ID']['output']>;
|
package/package.json
CHANGED