@promoboxx/graphql-gateway-types 1.920.0 → 1.921.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.
@@ -10408,6 +10408,58 @@
10408
10408
  "enumValues": null,
10409
10409
  "possibleTypes": null
10410
10410
  },
10411
+ {
10412
+ "kind": "INPUT_OBJECT",
10413
+ "name": "CASvcAnalysisRunGroupInput",
10414
+ "description": null,
10415
+ "isOneOf": false,
10416
+ "fields": null,
10417
+ "inputFields": [
10418
+ {
10419
+ "name": "members",
10420
+ "description": null,
10421
+ "type": {
10422
+ "kind": "NON_NULL",
10423
+ "name": null,
10424
+ "ofType": {
10425
+ "kind": "LIST",
10426
+ "name": null,
10427
+ "ofType": {
10428
+ "kind": "NON_NULL",
10429
+ "name": null,
10430
+ "ofType": {
10431
+ "kind": "INPUT_OBJECT",
10432
+ "name": "CASvcResourceGroupMemberInput",
10433
+ "ofType": null
10434
+ }
10435
+ }
10436
+ }
10437
+ },
10438
+ "defaultValue": null,
10439
+ "isDeprecated": false,
10440
+ "deprecationReason": null
10441
+ },
10442
+ {
10443
+ "name": "promptName",
10444
+ "description": null,
10445
+ "type": {
10446
+ "kind": "NON_NULL",
10447
+ "name": null,
10448
+ "ofType": {
10449
+ "kind": "SCALAR",
10450
+ "name": "String",
10451
+ "ofType": null
10452
+ }
10453
+ },
10454
+ "defaultValue": null,
10455
+ "isDeprecated": false,
10456
+ "deprecationReason": null
10457
+ }
10458
+ ],
10459
+ "interfaces": null,
10460
+ "enumValues": null,
10461
+ "possibleTypes": null
10462
+ },
10411
10463
  {
10412
10464
  "kind": "INPUT_OBJECT",
10413
10465
  "name": "CASvcAnalysisRunInput",
@@ -50104,6 +50156,39 @@
50104
50156
  "isDeprecated": false,
50105
50157
  "deprecationReason": null
50106
50158
  },
50159
+ {
50160
+ "name": "caSvcCreateAnalysisRunForGroup",
50161
+ "description": null,
50162
+ "args": [
50163
+ {
50164
+ "name": "input",
50165
+ "description": null,
50166
+ "type": {
50167
+ "kind": "NON_NULL",
50168
+ "name": null,
50169
+ "ofType": {
50170
+ "kind": "INPUT_OBJECT",
50171
+ "name": "CASvcAnalysisRunGroupInput",
50172
+ "ofType": null
50173
+ }
50174
+ },
50175
+ "defaultValue": null,
50176
+ "isDeprecated": false,
50177
+ "deprecationReason": null
50178
+ }
50179
+ ],
50180
+ "type": {
50181
+ "kind": "NON_NULL",
50182
+ "name": null,
50183
+ "ofType": {
50184
+ "kind": "OBJECT",
50185
+ "name": "CASvcAnalysisRun",
50186
+ "ofType": null
50187
+ }
50188
+ },
50189
+ "isDeprecated": false,
50190
+ "deprecationReason": null
50191
+ },
50107
50192
  {
50108
50193
  "name": "caSvcCreateFragment",
50109
50194
  "description": null,
package/index.d.ts CHANGED
@@ -1153,6 +1153,11 @@ export type CaSvcAnalysisRun = {
1153
1153
  resourceGroupId: Scalars['ID']['output'];
1154
1154
  };
1155
1155
 
1156
+ export type CaSvcAnalysisRunGroupInput = {
1157
+ members: Array<CaSvcResourceGroupMemberInput>;
1158
+ promptName: Scalars['String']['input'];
1159
+ };
1160
+
1156
1161
  export type CaSvcAnalysisRunInput = {
1157
1162
  promptName: Scalars['String']['input'];
1158
1163
  resourceGroupId: Scalars['ID']['input'];
@@ -5316,6 +5321,7 @@ export type Mutation = {
5316
5321
  /** @deprecated We want to remove all use cases were a File is required as input. Please use an alternative method. */
5317
5322
  bulkUpdateRetailerData?: Maybe<UploadCsvResponse>;
5318
5323
  caSvcCreateAnalysisRun: CaSvcAnalysisRun;
5324
+ caSvcCreateAnalysisRunForGroup: CaSvcAnalysisRun;
5319
5325
  caSvcCreateFragment: CaSvcFragment;
5320
5326
  caSvcCreateFragmentGroup: CaSvcFragmentGroup;
5321
5327
  caSvcCreatePromptTemplate: CaSvcPromptTemplate;
@@ -5982,6 +5988,12 @@ export type MutationCaSvcCreateAnalysisRunArgs = {
5982
5988
  };
5983
5989
 
5984
5990
 
5991
+ /** mutation root */
5992
+ export type MutationCaSvcCreateAnalysisRunForGroupArgs = {
5993
+ input: CaSvcAnalysisRunGroupInput;
5994
+ };
5995
+
5996
+
5985
5997
  /** mutation root */
5986
5998
  export type MutationCaSvcCreateFragmentArgs = {
5987
5999
  input: CaSvcFragmentInput;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.920.0",
3
+ "version": "1.921.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1120,6 +1120,11 @@ type CASvcAnalysisRun {
1120
1120
  resourceGroupId: ID!
1121
1121
  }
1122
1122
 
1123
+ input CASvcAnalysisRunGroupInput {
1124
+ members: [CASvcResourceGroupMemberInput!]!
1125
+ promptName: String!
1126
+ }
1127
+
1123
1128
  input CASvcAnalysisRunInput {
1124
1129
  promptName: String!
1125
1130
  resourceGroupId: ID!
@@ -5084,6 +5089,7 @@ type Mutation {
5084
5089
  bulkUpdateDigitalAsset(params: BulkUpdateDigitalAssetParams!): [DigitalAsset]
5085
5090
  bulkUpdateRetailerData(brandId: String!, dryrun: Boolean, file: Upload!): UploadCsvResponse @deprecated(reason: "We want to remove all use cases were a File is required as input. Please use an alternative method.")
5086
5091
  caSvcCreateAnalysisRun(input: CASvcAnalysisRunInput!): CASvcAnalysisRun!
5092
+ caSvcCreateAnalysisRunForGroup(input: CASvcAnalysisRunGroupInput!): CASvcAnalysisRun!
5087
5093
  caSvcCreateFragment(input: CASvcFragmentInput!): CASvcFragment!
5088
5094
  caSvcCreateFragmentGroup(input: CASvcFragmentGroupInput!): CASvcFragmentGroup!
5089
5095
  caSvcCreatePromptTemplate(input: CASvcPromptTemplateInput!): CASvcPromptTemplate!