@promoboxx/graphql-gateway-types 1.838.0 → 1.839.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.
- package/graphql.schema.json +24 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -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