@promoboxx/graphql-gateway-types 1.928.0 → 1.930.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.
@@ -11312,6 +11312,74 @@
11312
11312
  "enumValues": null,
11313
11313
  "possibleTypes": null
11314
11314
  },
11315
+ {
11316
+ "kind": "INPUT_OBJECT",
11317
+ "name": "CASvcPromptWithFragmentsInput",
11318
+ "description": null,
11319
+ "isOneOf": false,
11320
+ "fields": null,
11321
+ "inputFields": [
11322
+ {
11323
+ "name": "fragments",
11324
+ "description": null,
11325
+ "type": {
11326
+ "kind": "NON_NULL",
11327
+ "name": null,
11328
+ "ofType": {
11329
+ "kind": "LIST",
11330
+ "name": null,
11331
+ "ofType": {
11332
+ "kind": "NON_NULL",
11333
+ "name": null,
11334
+ "ofType": {
11335
+ "kind": "INPUT_OBJECT",
11336
+ "name": "CASvcFragmentInput",
11337
+ "ofType": null
11338
+ }
11339
+ }
11340
+ }
11341
+ },
11342
+ "defaultValue": null,
11343
+ "isDeprecated": false,
11344
+ "deprecationReason": null
11345
+ },
11346
+ {
11347
+ "name": "promptName",
11348
+ "description": null,
11349
+ "type": {
11350
+ "kind": "NON_NULL",
11351
+ "name": null,
11352
+ "ofType": {
11353
+ "kind": "SCALAR",
11354
+ "name": "String",
11355
+ "ofType": null
11356
+ }
11357
+ },
11358
+ "defaultValue": null,
11359
+ "isDeprecated": false,
11360
+ "deprecationReason": null
11361
+ },
11362
+ {
11363
+ "name": "templateString",
11364
+ "description": null,
11365
+ "type": {
11366
+ "kind": "NON_NULL",
11367
+ "name": null,
11368
+ "ofType": {
11369
+ "kind": "SCALAR",
11370
+ "name": "String",
11371
+ "ofType": null
11372
+ }
11373
+ },
11374
+ "defaultValue": null,
11375
+ "isDeprecated": false,
11376
+ "deprecationReason": null
11377
+ }
11378
+ ],
11379
+ "interfaces": null,
11380
+ "enumValues": null,
11381
+ "possibleTypes": null
11382
+ },
11315
11383
  {
11316
11384
  "kind": "OBJECT",
11317
11385
  "name": "CASvcPromptsCollection",
@@ -50296,6 +50364,39 @@
50296
50364
  "isDeprecated": false,
50297
50365
  "deprecationReason": null
50298
50366
  },
50367
+ {
50368
+ "name": "caSvcCreatePromptWithFragments",
50369
+ "description": null,
50370
+ "args": [
50371
+ {
50372
+ "name": "input",
50373
+ "description": null,
50374
+ "type": {
50375
+ "kind": "NON_NULL",
50376
+ "name": null,
50377
+ "ofType": {
50378
+ "kind": "INPUT_OBJECT",
50379
+ "name": "CASvcPromptWithFragmentsInput",
50380
+ "ofType": null
50381
+ }
50382
+ },
50383
+ "defaultValue": null,
50384
+ "isDeprecated": false,
50385
+ "deprecationReason": null
50386
+ }
50387
+ ],
50388
+ "type": {
50389
+ "kind": "NON_NULL",
50390
+ "name": null,
50391
+ "ofType": {
50392
+ "kind": "SCALAR",
50393
+ "name": "Boolean",
50394
+ "ofType": null
50395
+ }
50396
+ },
50397
+ "isDeprecated": false,
50398
+ "deprecationReason": null
50399
+ },
50299
50400
  {
50300
50401
  "name": "caSvcCreateResourceGroup",
50301
50402
  "description": null,
package/index.d.ts CHANGED
@@ -1247,6 +1247,12 @@ export type CaSvcPromptTemplatesCollection = {
1247
1247
  totalCount: Scalars['Int']['output'];
1248
1248
  };
1249
1249
 
1250
+ export type CaSvcPromptWithFragmentsInput = {
1251
+ fragments: Array<CaSvcFragmentInput>;
1252
+ promptName: Scalars['String']['input'];
1253
+ templateString: Scalars['String']['input'];
1254
+ };
1255
+
1250
1256
  export type CaSvcPromptsCollection = {
1251
1257
  __typename?: 'CASvcPromptsCollection';
1252
1258
  data: Array<CaSvcPrompt>;
@@ -5326,6 +5332,7 @@ export type Mutation = {
5326
5332
  caSvcCreateFragment: CaSvcFragment;
5327
5333
  caSvcCreatePrompt: CaSvcPrompt;
5328
5334
  caSvcCreatePromptTemplate: CaSvcPromptTemplate;
5335
+ caSvcCreatePromptWithFragments: Scalars['Boolean']['output'];
5329
5336
  caSvcCreateResourceGroup: CaSvcResourceGroup;
5330
5337
  caSvcCreateResourceGroupMember: CaSvcResourceGroupMember;
5331
5338
  caSvcCreateResult: CaSvcResult;
@@ -6013,6 +6020,12 @@ export type MutationCaSvcCreatePromptTemplateArgs = {
6013
6020
  };
6014
6021
 
6015
6022
 
6023
+ /** mutation root */
6024
+ export type MutationCaSvcCreatePromptWithFragmentsArgs = {
6025
+ input: CaSvcPromptWithFragmentsInput;
6026
+ };
6027
+
6028
+
6016
6029
  /** mutation root */
6017
6030
  export type MutationCaSvcCreateResourceGroupArgs = {
6018
6031
  input: CaSvcResourceGroupInput;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.928.0",
3
+ "version": "1.930.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1206,6 +1206,12 @@ type CASvcPromptTemplatesCollection {
1206
1206
  totalCount: Int!
1207
1207
  }
1208
1208
 
1209
+ input CASvcPromptWithFragmentsInput {
1210
+ fragments: [CASvcFragmentInput!]!
1211
+ promptName: String!
1212
+ templateString: String!
1213
+ }
1214
+
1209
1215
  type CASvcPromptsCollection {
1210
1216
  data: [CASvcPrompt!]!
1211
1217
  hasNextPage: Boolean!
@@ -5094,6 +5100,7 @@ type Mutation {
5094
5100
  caSvcCreateFragment(input: CASvcFragmentInput!): CASvcFragment!
5095
5101
  caSvcCreatePrompt(input: CASvcPromptInput!): CASvcPrompt!
5096
5102
  caSvcCreatePromptTemplate(input: CASvcPromptTemplateInput!): CASvcPromptTemplate!
5103
+ caSvcCreatePromptWithFragments(input: CASvcPromptWithFragmentsInput!): Boolean!
5097
5104
  caSvcCreateResourceGroup(input: CASvcResourceGroupInput!): CASvcResourceGroup!
5098
5105
  caSvcCreateResourceGroupMember(input: CASvcResourceGroupMemberInput!): CASvcResourceGroupMember!
5099
5106
  caSvcCreateResult(input: CASvcResultInput!): CASvcResult!