@promoboxx/graphql-gateway-types 1.931.0 → 1.933.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.
@@ -10950,18 +10950,6 @@
10950
10950
  "isDeprecated": false,
10951
10951
  "deprecationReason": null
10952
10952
  },
10953
- {
10954
- "name": "fragment",
10955
- "description": null,
10956
- "args": [],
10957
- "type": {
10958
- "kind": "OBJECT",
10959
- "name": "CASvcFragment",
10960
- "ofType": null
10961
- },
10962
- "isDeprecated": false,
10963
- "deprecationReason": null
10964
- },
10965
10953
  {
10966
10954
  "name": "fragmentId",
10967
10955
  "description": null,
@@ -10978,6 +10966,18 @@
10978
10966
  "isDeprecated": false,
10979
10967
  "deprecationReason": null
10980
10968
  },
10969
+ {
10970
+ "name": "fragments",
10971
+ "description": null,
10972
+ "args": [],
10973
+ "type": {
10974
+ "kind": "OBJECT",
10975
+ "name": "CASvcFragment",
10976
+ "ofType": null
10977
+ },
10978
+ "isDeprecated": false,
10979
+ "deprecationReason": null
10980
+ },
10981
10981
  {
10982
10982
  "name": "id",
10983
10983
  "description": null,
@@ -50298,39 +50298,6 @@
50298
50298
  "isDeprecated": false,
50299
50299
  "deprecationReason": null
50300
50300
  },
50301
- {
50302
- "name": "caSvcCreatePrompt",
50303
- "description": null,
50304
- "args": [
50305
- {
50306
- "name": "input",
50307
- "description": null,
50308
- "type": {
50309
- "kind": "NON_NULL",
50310
- "name": null,
50311
- "ofType": {
50312
- "kind": "INPUT_OBJECT",
50313
- "name": "CASvcPromptInput",
50314
- "ofType": null
50315
- }
50316
- },
50317
- "defaultValue": null,
50318
- "isDeprecated": false,
50319
- "deprecationReason": null
50320
- }
50321
- ],
50322
- "type": {
50323
- "kind": "NON_NULL",
50324
- "name": null,
50325
- "ofType": {
50326
- "kind": "OBJECT",
50327
- "name": "CASvcPrompt",
50328
- "ofType": null
50329
- }
50330
- },
50331
- "isDeprecated": false,
50332
- "deprecationReason": null
50333
- },
50334
50301
  {
50335
50302
  "name": "caSvcCreatePromptTemplate",
50336
50303
  "description": null,
@@ -69042,35 +69009,6 @@
69042
69009
  "isDeprecated": false,
69043
69010
  "deprecationReason": null
69044
69011
  },
69045
- {
69046
- "name": "caSvcPrompt",
69047
- "description": null,
69048
- "args": [
69049
- {
69050
- "name": "id",
69051
- "description": null,
69052
- "type": {
69053
- "kind": "NON_NULL",
69054
- "name": null,
69055
- "ofType": {
69056
- "kind": "SCALAR",
69057
- "name": "ID",
69058
- "ofType": null
69059
- }
69060
- },
69061
- "defaultValue": null,
69062
- "isDeprecated": false,
69063
- "deprecationReason": null
69064
- }
69065
- ],
69066
- "type": {
69067
- "kind": "OBJECT",
69068
- "name": "CASvcPrompt",
69069
- "ofType": null
69070
- },
69071
- "isDeprecated": false,
69072
- "deprecationReason": null
69073
- },
69074
69012
  {
69075
69013
  "name": "caSvcPromptTemplate",
69076
69014
  "description": null,
package/index.d.ts CHANGED
@@ -1211,8 +1211,8 @@ export type CaSvcFragmentsCollection = {
1211
1211
  export type CaSvcPrompt = {
1212
1212
  __typename?: 'CASvcPrompt';
1213
1213
  createdAt: Scalars['String']['output'];
1214
- fragment?: Maybe<CaSvcFragment>;
1215
1214
  fragmentId: Scalars['ID']['output'];
1215
+ fragments?: Maybe<CaSvcFragment>;
1216
1216
  id: Scalars['ID']['output'];
1217
1217
  promptName: Scalars['String']['output'];
1218
1218
  promptTemplate?: Maybe<CaSvcPromptTemplate>;
@@ -5330,7 +5330,6 @@ export type Mutation = {
5330
5330
  caSvcCreateAnalysisRun: CaSvcAnalysisRun;
5331
5331
  caSvcCreateAnalysisRunForGroup: CaSvcAnalysisRun;
5332
5332
  caSvcCreateFragment: CaSvcFragment;
5333
- caSvcCreatePrompt: CaSvcPrompt;
5334
5333
  caSvcCreatePromptTemplate: CaSvcPromptTemplate;
5335
5334
  caSvcCreatePromptWithFragments: Scalars['Boolean']['output'];
5336
5335
  caSvcCreateResourceGroup: CaSvcResourceGroup;
@@ -6008,12 +6007,6 @@ export type MutationCaSvcCreateFragmentArgs = {
6008
6007
  };
6009
6008
 
6010
6009
 
6011
- /** mutation root */
6012
- export type MutationCaSvcCreatePromptArgs = {
6013
- input: CaSvcPromptInput;
6014
- };
6015
-
6016
-
6017
6010
  /** mutation root */
6018
6011
  export type MutationCaSvcCreatePromptTemplateArgs = {
6019
6012
  input: CaSvcPromptTemplateInput;
@@ -8652,7 +8645,6 @@ export type Query = {
8652
8645
  caSvcFragment?: Maybe<CaSvcFragment>;
8653
8646
  caSvcFragmentsByTemplateId: CaSvcFragmentsCollection;
8654
8647
  caSvcGetMessageForResourceGroupMember: CaSvcResourceGroupMemberMessage;
8655
- caSvcPrompt?: Maybe<CaSvcPrompt>;
8656
8648
  caSvcPromptTemplate?: Maybe<CaSvcPromptTemplate>;
8657
8649
  caSvcPromptsByPromptTemplateId: CaSvcPromptsCollection;
8658
8650
  caSvcResourceGroup?: Maybe<CaSvcResourceGroup>;
@@ -9121,11 +9113,6 @@ export type QueryCaSvcGetMessageForResourceGroupMemberArgs = {
9121
9113
  };
9122
9114
 
9123
9115
 
9124
- export type QueryCaSvcPromptArgs = {
9125
- id: Scalars['ID']['input'];
9126
- };
9127
-
9128
-
9129
9116
  export type QueryCaSvcPromptTemplateArgs = {
9130
9117
  id: Scalars['ID']['input'];
9131
9118
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.931.0",
3
+ "version": "1.933.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1172,8 +1172,8 @@ type CASvcFragmentsCollection {
1172
1172
 
1173
1173
  type CASvcPrompt {
1174
1174
  createdAt: String!
1175
- fragment: CASvcFragment
1176
1175
  fragmentId: ID!
1176
+ fragments: CASvcFragment
1177
1177
  id: ID!
1178
1178
  promptName: String!
1179
1179
  promptTemplate: CASvcPromptTemplate
@@ -5098,7 +5098,6 @@ type Mutation {
5098
5098
  caSvcCreateAnalysisRun(input: CASvcAnalysisRunInput!): CASvcAnalysisRun!
5099
5099
  caSvcCreateAnalysisRunForGroup(input: CASvcAnalysisRunGroupInput!): CASvcAnalysisRun!
5100
5100
  caSvcCreateFragment(input: CASvcFragmentInput!): CASvcFragment!
5101
- caSvcCreatePrompt(input: CASvcPromptInput!): CASvcPrompt!
5102
5101
  caSvcCreatePromptTemplate(input: CASvcPromptTemplateInput!): CASvcPromptTemplate!
5103
5102
  caSvcCreatePromptWithFragments(input: CASvcPromptWithFragmentsInput!): Boolean!
5104
5103
  caSvcCreateResourceGroup(input: CASvcResourceGroupInput!): CASvcResourceGroup!
@@ -7562,7 +7561,6 @@ type Query {
7562
7561
  caSvcFragment(id: ID!): CASvcFragment
7563
7562
  caSvcFragmentsByTemplateId(limit: Int, offset: Int, promptTemplateId: ID!): CASvcFragmentsCollection!
7564
7563
  caSvcGetMessageForResourceGroupMember(memberId: ID!, promptName: String!): CASvcResourceGroupMemberMessage!
7565
- caSvcPrompt(id: ID!): CASvcPrompt
7566
7564
  caSvcPromptTemplate(id: ID!): CASvcPromptTemplate
7567
7565
  caSvcPromptsByPromptTemplateId(limit: Int, offset: Int, promptTemplateId: ID!): CASvcPromptsCollection!
7568
7566
  caSvcResourceGroup(id: ID!): CASvcResourceGroup