@promoboxx/graphql-gateway-types 1.1014.0 → 1.1015.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 +49 -0
- package/index.d.ts +7 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -69561,6 +69561,55 @@
|
|
|
69561
69561
|
"isDeprecated": false,
|
|
69562
69562
|
"deprecationReason": null
|
|
69563
69563
|
},
|
|
69564
|
+
{
|
|
69565
|
+
"name": "caSvcAnalysisRunMessage",
|
|
69566
|
+
"description": null,
|
|
69567
|
+
"args": [
|
|
69568
|
+
{
|
|
69569
|
+
"name": "analysisRunId",
|
|
69570
|
+
"description": null,
|
|
69571
|
+
"type": {
|
|
69572
|
+
"kind": "NON_NULL",
|
|
69573
|
+
"name": null,
|
|
69574
|
+
"ofType": {
|
|
69575
|
+
"kind": "SCALAR",
|
|
69576
|
+
"name": "ID",
|
|
69577
|
+
"ofType": null
|
|
69578
|
+
}
|
|
69579
|
+
},
|
|
69580
|
+
"defaultValue": null,
|
|
69581
|
+
"isDeprecated": false,
|
|
69582
|
+
"deprecationReason": null
|
|
69583
|
+
},
|
|
69584
|
+
{
|
|
69585
|
+
"name": "resourceGroupMemberId",
|
|
69586
|
+
"description": null,
|
|
69587
|
+
"type": {
|
|
69588
|
+
"kind": "NON_NULL",
|
|
69589
|
+
"name": null,
|
|
69590
|
+
"ofType": {
|
|
69591
|
+
"kind": "SCALAR",
|
|
69592
|
+
"name": "ID",
|
|
69593
|
+
"ofType": null
|
|
69594
|
+
}
|
|
69595
|
+
},
|
|
69596
|
+
"defaultValue": null,
|
|
69597
|
+
"isDeprecated": false,
|
|
69598
|
+
"deprecationReason": null
|
|
69599
|
+
}
|
|
69600
|
+
],
|
|
69601
|
+
"type": {
|
|
69602
|
+
"kind": "NON_NULL",
|
|
69603
|
+
"name": null,
|
|
69604
|
+
"ofType": {
|
|
69605
|
+
"kind": "OBJECT",
|
|
69606
|
+
"name": "CASvcAnalysisRunMessage",
|
|
69607
|
+
"ofType": null
|
|
69608
|
+
}
|
|
69609
|
+
},
|
|
69610
|
+
"isDeprecated": false,
|
|
69611
|
+
"deprecationReason": null
|
|
69612
|
+
},
|
|
69564
69613
|
{
|
|
69565
69614
|
"name": "caSvcAnalysisRunMessages",
|
|
69566
69615
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -8754,6 +8754,7 @@ export type Query = {
|
|
|
8754
8754
|
brand_retailer_ledgers: WalletsResponse;
|
|
8755
8755
|
bulkGetUsersByUuidAndBrandId: BulkGetUsersByUuidAndBrandIdResponse;
|
|
8756
8756
|
caSvcAnalysisRun?: Maybe<CaSvcAnalysisRun>;
|
|
8757
|
+
caSvcAnalysisRunMessage: CaSvcAnalysisRunMessage;
|
|
8757
8758
|
caSvcAnalysisRunMessages: CaSvcAnalysisRunMessagesCollection;
|
|
8758
8759
|
caSvcAnalysisRuns: CaSvcAnalysisRunsCollection;
|
|
8759
8760
|
caSvcFragment?: Maybe<CaSvcFragment>;
|
|
@@ -9188,6 +9189,12 @@ export type QueryCaSvcAnalysisRunArgs = {
|
|
|
9188
9189
|
};
|
|
9189
9190
|
|
|
9190
9191
|
|
|
9192
|
+
export type QueryCaSvcAnalysisRunMessageArgs = {
|
|
9193
|
+
analysisRunId: Scalars['ID']['input'];
|
|
9194
|
+
resourceGroupMemberId: Scalars['ID']['input'];
|
|
9195
|
+
};
|
|
9196
|
+
|
|
9197
|
+
|
|
9191
9198
|
export type QueryCaSvcAnalysisRunMessagesArgs = {
|
|
9192
9199
|
analysisRunId: Scalars['ID']['input'];
|
|
9193
9200
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -7601,6 +7601,7 @@ type Query {
|
|
|
7601
7601
|
brand_retailer_ledgers(brand_id: ID!, business_ids: [ID!]!, funded: Boolean): WalletsResponse!
|
|
7602
7602
|
bulkGetUsersByUuidAndBrandId(brand_id: ID!, strict_ordering: Boolean, uuids: [String!]!): BulkGetUsersByUuidAndBrandIdResponse!
|
|
7603
7603
|
caSvcAnalysisRun(id: ID!): CASvcAnalysisRun
|
|
7604
|
+
caSvcAnalysisRunMessage(analysisRunId: ID!, resourceGroupMemberId: ID!): CASvcAnalysisRunMessage!
|
|
7604
7605
|
caSvcAnalysisRunMessages(analysisRunId: ID!, limit: Int, offset: Int): CASvcAnalysisRunMessagesCollection!
|
|
7605
7606
|
caSvcAnalysisRuns(limit: Int, offset: Int): CASvcAnalysisRunsCollection!
|
|
7606
7607
|
caSvcFragment(id: ID!): CASvcFragment
|