@promoboxx/graphql-gateway-types 1.1064.0 → 1.1066.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.
@@ -12434,6 +12434,30 @@
12434
12434
  "isDeprecated": false,
12435
12435
  "deprecationReason": null
12436
12436
  },
12437
+ {
12438
+ "name": "llm_family",
12439
+ "description": null,
12440
+ "args": [],
12441
+ "type": {
12442
+ "kind": "SCALAR",
12443
+ "name": "String",
12444
+ "ofType": null
12445
+ },
12446
+ "isDeprecated": false,
12447
+ "deprecationReason": null
12448
+ },
12449
+ {
12450
+ "name": "llm_model",
12451
+ "description": null,
12452
+ "args": [],
12453
+ "type": {
12454
+ "kind": "SCALAR",
12455
+ "name": "String",
12456
+ "ofType": null
12457
+ },
12458
+ "isDeprecated": false,
12459
+ "deprecationReason": null
12460
+ },
12437
12461
  {
12438
12462
  "name": "resourceGroupMember",
12439
12463
  "description": null,
@@ -12519,6 +12543,30 @@
12519
12543
  "isDeprecated": false,
12520
12544
  "deprecationReason": null
12521
12545
  },
12546
+ {
12547
+ "name": "llm_family",
12548
+ "description": null,
12549
+ "type": {
12550
+ "kind": "SCALAR",
12551
+ "name": "String",
12552
+ "ofType": null
12553
+ },
12554
+ "defaultValue": null,
12555
+ "isDeprecated": false,
12556
+ "deprecationReason": null
12557
+ },
12558
+ {
12559
+ "name": "llm_model",
12560
+ "description": null,
12561
+ "type": {
12562
+ "kind": "SCALAR",
12563
+ "name": "String",
12564
+ "ofType": null
12565
+ },
12566
+ "defaultValue": null,
12567
+ "isDeprecated": false,
12568
+ "deprecationReason": null
12569
+ },
12522
12570
  {
12523
12571
  "name": "resourceGroupMemberId",
12524
12572
  "description": null,
@@ -88767,6 +88815,30 @@
88767
88815
  "isDeprecated": false,
88768
88816
  "deprecationReason": null
88769
88817
  },
88818
+ {
88819
+ "name": "body",
88820
+ "description": null,
88821
+ "type": {
88822
+ "kind": "SCALAR",
88823
+ "name": "String",
88824
+ "ofType": null
88825
+ },
88826
+ "defaultValue": null,
88827
+ "isDeprecated": false,
88828
+ "deprecationReason": null
88829
+ },
88830
+ {
88831
+ "name": "button_text",
88832
+ "description": null,
88833
+ "type": {
88834
+ "kind": "SCALAR",
88835
+ "name": "String",
88836
+ "ofType": null
88837
+ },
88838
+ "defaultValue": null,
88839
+ "isDeprecated": false,
88840
+ "deprecationReason": null
88841
+ },
88770
88842
  {
88771
88843
  "name": "campaign_id",
88772
88844
  "description": null,
@@ -89203,6 +89275,18 @@
89203
89275
  "isDeprecated": false,
89204
89276
  "deprecationReason": null
89205
89277
  },
89278
+ {
89279
+ "name": "subject",
89280
+ "description": null,
89281
+ "type": {
89282
+ "kind": "SCALAR",
89283
+ "name": "String",
89284
+ "ofType": null
89285
+ },
89286
+ "defaultValue": null,
89287
+ "isDeprecated": false,
89288
+ "deprecationReason": null
89289
+ },
89206
89290
  {
89207
89291
  "name": "title",
89208
89292
  "description": null,
package/index.d.ts CHANGED
@@ -1357,6 +1357,8 @@ export type CaSvcResult = {
1357
1357
  fragment?: Maybe<CaSvcFragment>;
1358
1358
  fragmentId?: Maybe<Scalars['ID']['output']>;
1359
1359
  id: Scalars['ID']['output'];
1360
+ llm_family?: Maybe<Scalars['String']['output']>;
1361
+ llm_model?: Maybe<Scalars['String']['output']>;
1360
1362
  resourceGroupMember?: Maybe<CaSvcResourceGroupMember>;
1361
1363
  resourceGroupMemberId?: Maybe<Scalars['ID']['output']>;
1362
1364
  };
@@ -1365,6 +1367,8 @@ export type CaSvcResultInput = {
1365
1367
  analysisRunId: Scalars['ID']['input'];
1366
1368
  data: Scalars['String']['input'];
1367
1369
  fragmentId: Scalars['ID']['input'];
1370
+ llm_family?: InputMaybe<Scalars['String']['input']>;
1371
+ llm_model?: InputMaybe<Scalars['String']['input']>;
1368
1372
  resourceGroupMemberId: Scalars['ID']['input'];
1369
1373
  };
1370
1374
 
@@ -11312,6 +11316,8 @@ export type ShareSettingBrandCropInput = {
11312
11316
  export type ShareSettingBrandInput = {
11313
11317
  allow_retailer_url_override?: InputMaybe<Scalars['Boolean']['input']>;
11314
11318
  append_link_to_message?: InputMaybe<Scalars['String']['input']>;
11319
+ body?: InputMaybe<Scalars['String']['input']>;
11320
+ button_text?: InputMaybe<Scalars['String']['input']>;
11315
11321
  campaign_id: Scalars['ID']['input'];
11316
11322
  child_attachments?: InputMaybe<Array<ChildAttachmentParams>>;
11317
11323
  content_discovery_item_id?: InputMaybe<Scalars['ID']['input']>;
@@ -11345,6 +11351,7 @@ export type ShareSettingBrandInput = {
11345
11351
  share_type?: InputMaybe<Scalars['String']['input']>;
11346
11352
  share_url_type?: InputMaybe<Scalars['String']['input']>;
11347
11353
  smart_group_id?: InputMaybe<Scalars['ID']['input']>;
11354
+ subject?: InputMaybe<Scalars['String']['input']>;
11348
11355
  title?: InputMaybe<Scalars['String']['input']>;
11349
11356
  };
11350
11357
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1064.0",
3
+ "version": "1.1066.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1312,6 +1312,8 @@ type CASvcResult {
1312
1312
  fragment: CASvcFragment
1313
1313
  fragmentId: ID
1314
1314
  id: ID!
1315
+ llm_family: String
1316
+ llm_model: String
1315
1317
  resourceGroupMember: CASvcResourceGroupMember
1316
1318
  resourceGroupMemberId: ID
1317
1319
  }
@@ -1320,6 +1322,8 @@ input CASvcResultInput {
1320
1322
  analysisRunId: ID!
1321
1323
  data: String!
1322
1324
  fragmentId: ID!
1325
+ llm_family: String
1326
+ llm_model: String
1323
1327
  resourceGroupMemberId: ID!
1324
1328
  }
1325
1329
 
@@ -9320,6 +9324,8 @@ input ShareSettingBrandCropInput {
9320
9324
  input ShareSettingBrandInput {
9321
9325
  allow_retailer_url_override: Boolean
9322
9326
  append_link_to_message: String
9327
+ body: String
9328
+ button_text: String
9323
9329
  campaign_id: ID!
9324
9330
  child_attachments: [ChildAttachmentParams!]
9325
9331
  content_discovery_item_id: ID
@@ -9353,6 +9359,7 @@ input ShareSettingBrandInput {
9353
9359
  share_type: String
9354
9360
  share_url_type: String
9355
9361
  smart_group_id: ID
9362
+ subject: String
9356
9363
  title: String
9357
9364
  }
9358
9365