@promoboxx/graphql-gateway-types 1.322.0 → 1.324.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.
@@ -21204,18 +21204,6 @@
21204
21204
  "isDeprecated": false,
21205
21205
  "deprecationReason": null
21206
21206
  },
21207
- {
21208
- "name": "message",
21209
- "description": null,
21210
- "type": {
21211
- "kind": "SCALAR",
21212
- "name": "String",
21213
- "ofType": null
21214
- },
21215
- "defaultValue": null,
21216
- "isDeprecated": false,
21217
- "deprecationReason": null
21218
- },
21219
21207
  {
21220
21208
  "name": "picture",
21221
21209
  "description": null,
@@ -21284,6 +21272,18 @@
21284
21272
  "isDeprecated": false,
21285
21273
  "deprecationReason": null
21286
21274
  },
21275
+ {
21276
+ "name": "text",
21277
+ "description": null,
21278
+ "type": {
21279
+ "kind": "SCALAR",
21280
+ "name": "String",
21281
+ "ofType": null
21282
+ },
21283
+ "defaultValue": null,
21284
+ "isDeprecated": false,
21285
+ "deprecationReason": null
21286
+ },
21287
21287
  {
21288
21288
  "name": "title",
21289
21289
  "description": null,
package/index.d.ts CHANGED
@@ -2268,12 +2268,12 @@ export type CreateShareTwitterShare = {
2268
2268
  description?: InputMaybe<Scalars['String']['input']>;
2269
2269
  feed_targeting?: InputMaybe<Scalars['String']['input']>;
2270
2270
  link?: InputMaybe<Scalars['String']['input']>;
2271
- message?: InputMaybe<Scalars['String']['input']>;
2272
2271
  picture?: InputMaybe<Scalars['String']['input']>;
2273
2272
  retailer_id: Scalars['ID']['input'];
2274
2273
  scheduled_for?: InputMaybe<Scalars['String']['input']>;
2275
2274
  share_mode?: InputMaybe<Scalars['String']['input']>;
2276
2275
  share_setting_id: Scalars['ID']['input'];
2276
+ text?: InputMaybe<Scalars['String']['input']>;
2277
2277
  title?: InputMaybe<Scalars['String']['input']>;
2278
2278
  twitter_account_id: Scalars['ID']['input'];
2279
2279
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.322.0",
3
+ "version": "1.324.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2180,12 +2180,12 @@ input CreateShareTwitterShare {
2180
2180
  description: String
2181
2181
  feed_targeting: String
2182
2182
  link: String
2183
- message: String
2184
2183
  picture: String
2185
2184
  retailer_id: ID!
2186
2185
  scheduled_for: String
2187
2186
  share_mode: String
2188
2187
  share_setting_id: ID!
2188
+ text: String
2189
2189
  title: String
2190
2190
  twitter_account_id: ID!
2191
2191
  }