@promoboxx/graphql-gateway-types 1.1135.0 → 1.1136.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.
@@ -11094,6 +11094,66 @@
11094
11094
  "enumValues": null,
11095
11095
  "possibleTypes": null
11096
11096
  },
11097
+ {
11098
+ "kind": "INPUT_OBJECT",
11099
+ "name": "CASvcCreateFragmentForBrandPromptInput",
11100
+ "description": null,
11101
+ "isOneOf": false,
11102
+ "fields": null,
11103
+ "inputFields": [
11104
+ {
11105
+ "name": "brand_id",
11106
+ "description": null,
11107
+ "type": {
11108
+ "kind": "NON_NULL",
11109
+ "name": null,
11110
+ "ofType": {
11111
+ "kind": "SCALAR",
11112
+ "name": "ID",
11113
+ "ofType": null
11114
+ }
11115
+ },
11116
+ "defaultValue": null,
11117
+ "isDeprecated": false,
11118
+ "deprecationReason": null
11119
+ },
11120
+ {
11121
+ "name": "content",
11122
+ "description": null,
11123
+ "type": {
11124
+ "kind": "NON_NULL",
11125
+ "name": null,
11126
+ "ofType": {
11127
+ "kind": "SCALAR",
11128
+ "name": "String",
11129
+ "ofType": null
11130
+ }
11131
+ },
11132
+ "defaultValue": null,
11133
+ "isDeprecated": false,
11134
+ "deprecationReason": null
11135
+ },
11136
+ {
11137
+ "name": "prompt_type",
11138
+ "description": null,
11139
+ "type": {
11140
+ "kind": "NON_NULL",
11141
+ "name": null,
11142
+ "ofType": {
11143
+ "kind": "SCALAR",
11144
+ "name": "String",
11145
+ "ofType": null
11146
+ }
11147
+ },
11148
+ "defaultValue": null,
11149
+ "isDeprecated": false,
11150
+ "deprecationReason": null
11151
+ }
11152
+ ],
11153
+ "interfaces": null,
11154
+ "enumValues": null,
11155
+ "possibleTypes": null
11156
+ },
11097
11157
  {
11098
11158
  "kind": "OBJECT",
11099
11159
  "name": "CASvcFragment",
@@ -51217,6 +51277,39 @@
51217
51277
  "isDeprecated": false,
51218
51278
  "deprecationReason": null
51219
51279
  },
51280
+ {
51281
+ "name": "caSvcCreateFragmentForBrandPrompt",
51282
+ "description": null,
51283
+ "args": [
51284
+ {
51285
+ "name": "input",
51286
+ "description": null,
51287
+ "type": {
51288
+ "kind": "NON_NULL",
51289
+ "name": null,
51290
+ "ofType": {
51291
+ "kind": "INPUT_OBJECT",
51292
+ "name": "CASvcCreateFragmentForBrandPromptInput",
51293
+ "ofType": null
51294
+ }
51295
+ },
51296
+ "defaultValue": null,
51297
+ "isDeprecated": false,
51298
+ "deprecationReason": null
51299
+ }
51300
+ ],
51301
+ "type": {
51302
+ "kind": "NON_NULL",
51303
+ "name": null,
51304
+ "ofType": {
51305
+ "kind": "OBJECT",
51306
+ "name": "CASvcFragment",
51307
+ "ofType": null
51308
+ }
51309
+ },
51310
+ "isDeprecated": false,
51311
+ "deprecationReason": null
51312
+ },
51220
51313
  {
51221
51314
  "name": "caSvcCreateFragmentTemplate",
51222
51315
  "description": null,
package/index.d.ts CHANGED
@@ -1220,6 +1220,12 @@ export type CaSvcAnalysisRunsCollection = {
1220
1220
  totalCount: Scalars['Int']['output'];
1221
1221
  };
1222
1222
 
1223
+ export type CaSvcCreateFragmentForBrandPromptInput = {
1224
+ brand_id: Scalars['ID']['input'];
1225
+ content: Scalars['String']['input'];
1226
+ prompt_type: Scalars['String']['input'];
1227
+ };
1228
+
1223
1229
  export type CaSvcFragment = {
1224
1230
  __typename?: 'CASvcFragment';
1225
1231
  createdAt: Scalars['String']['output'];
@@ -5385,6 +5391,7 @@ export type Mutation = {
5385
5391
  caSvcCreateAnalysisRun: CaSvcAnalysisRun;
5386
5392
  caSvcCreateAnalysisRunForGroup: CaSvcAnalysisRun;
5387
5393
  caSvcCreateFragment: CaSvcFragment;
5394
+ caSvcCreateFragmentForBrandPrompt: CaSvcFragment;
5388
5395
  caSvcCreateFragmentTemplate: CaSvcFragmentTemplate;
5389
5396
  caSvcCreatePrompt: CaSvcPrompt;
5390
5397
  caSvcCreatePromptTemplate: CaSvcPromptTemplate;
@@ -6097,6 +6104,12 @@ export type MutationCaSvcCreateFragmentArgs = {
6097
6104
  };
6098
6105
 
6099
6106
 
6107
+ /** mutation root */
6108
+ export type MutationCaSvcCreateFragmentForBrandPromptArgs = {
6109
+ input: CaSvcCreateFragmentForBrandPromptInput;
6110
+ };
6111
+
6112
+
6100
6113
  /** mutation root */
6101
6114
  export type MutationCaSvcCreateFragmentTemplateArgs = {
6102
6115
  input: CaSvcFragmentTemplateInput;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1135.0",
3
+ "version": "1.1136.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1187,6 +1187,12 @@ type CASvcAnalysisRunsCollection {
1187
1187
  totalCount: Int!
1188
1188
  }
1189
1189
 
1190
+ input CASvcCreateFragmentForBrandPromptInput {
1191
+ brand_id: ID!
1192
+ content: String!
1193
+ prompt_type: String!
1194
+ }
1195
+
1190
1196
  type CASvcFragment {
1191
1197
  createdAt: String!
1192
1198
  id: ID!
@@ -5151,6 +5157,7 @@ type Mutation {
5151
5157
  caSvcCreateAnalysisRun(input: CASvcAnalysisRunInput!): CASvcAnalysisRun!
5152
5158
  caSvcCreateAnalysisRunForGroup(input: CASvcAnalysisRunGroupInput!): CASvcAnalysisRun!
5153
5159
  caSvcCreateFragment(input: CASvcFragmentInput!): CASvcFragment!
5160
+ caSvcCreateFragmentForBrandPrompt(input: CASvcCreateFragmentForBrandPromptInput!): CASvcFragment!
5154
5161
  caSvcCreateFragmentTemplate(input: CASvcFragmentTemplateInput!): CASvcFragmentTemplate!
5155
5162
  caSvcCreatePrompt(input: CASvcPromptInput!): CASvcPrompt!
5156
5163
  caSvcCreatePromptTemplate(input: CASvcPromptTemplateInput!): CASvcPromptTemplate!