@promoboxx/graphql-gateway-types 1.838.0 → 1.840.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.
@@ -10659,6 +10659,30 @@
10659
10659
  "isDeprecated": false,
10660
10660
  "deprecationReason": null
10661
10661
  },
10662
+ {
10663
+ "name": "members",
10664
+ "description": null,
10665
+ "args": [],
10666
+ "type": {
10667
+ "kind": "NON_NULL",
10668
+ "name": null,
10669
+ "ofType": {
10670
+ "kind": "LIST",
10671
+ "name": null,
10672
+ "ofType": {
10673
+ "kind": "NON_NULL",
10674
+ "name": null,
10675
+ "ofType": {
10676
+ "kind": "OBJECT",
10677
+ "name": "CASvcPromptGroupMember",
10678
+ "ofType": null
10679
+ }
10680
+ }
10681
+ }
10682
+ },
10683
+ "isDeprecated": false,
10684
+ "deprecationReason": null
10685
+ },
10662
10686
  {
10663
10687
  "name": "prompt",
10664
10688
  "description": null,
package/index.d.ts CHANGED
@@ -1194,6 +1194,7 @@ export type CaSvcPromptGroup = {
1194
1194
  __typename?: 'CASvcPromptGroup';
1195
1195
  createdAt: Scalars['Time']['output'];
1196
1196
  id: Scalars['UUID']['output'];
1197
+ members: Array<CaSvcPromptGroupMember>;
1197
1198
  prompt?: Maybe<CaSvcPrompt>;
1198
1199
  promptId: Scalars['UUID']['output'];
1199
1200
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.838.0",
3
+ "version": "1.840.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1158,6 +1158,7 @@ input CASvcPromptFilter {
1158
1158
  type CASvcPromptGroup {
1159
1159
  createdAt: Time!
1160
1160
  id: UUID!
1161
+ members: [CASvcPromptGroupMember!]!
1161
1162
  prompt: CASvcPrompt
1162
1163
  promptId: UUID!
1163
1164
  }