@promoboxx/graphql-gateway-types 1.917.0 → 1.919.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 +32 -16
- package/index.d.ts +4 -4
- package/package.json +1 -1
- package/schema.graphql +4 -4
package/graphql.schema.json
CHANGED
|
@@ -10343,19 +10343,23 @@
|
|
|
10343
10343
|
"deprecationReason": null
|
|
10344
10344
|
},
|
|
10345
10345
|
{
|
|
10346
|
-
"name": "
|
|
10346
|
+
"name": "id",
|
|
10347
10347
|
"description": null,
|
|
10348
10348
|
"args": [],
|
|
10349
10349
|
"type": {
|
|
10350
|
-
"kind": "
|
|
10351
|
-
"name":
|
|
10352
|
-
"ofType":
|
|
10350
|
+
"kind": "NON_NULL",
|
|
10351
|
+
"name": null,
|
|
10352
|
+
"ofType": {
|
|
10353
|
+
"kind": "SCALAR",
|
|
10354
|
+
"name": "ID",
|
|
10355
|
+
"ofType": null
|
|
10356
|
+
}
|
|
10353
10357
|
},
|
|
10354
10358
|
"isDeprecated": false,
|
|
10355
10359
|
"deprecationReason": null
|
|
10356
10360
|
},
|
|
10357
10361
|
{
|
|
10358
|
-
"name": "
|
|
10362
|
+
"name": "promptName",
|
|
10359
10363
|
"description": null,
|
|
10360
10364
|
"args": [],
|
|
10361
10365
|
"type": {
|
|
@@ -10363,7 +10367,7 @@
|
|
|
10363
10367
|
"name": null,
|
|
10364
10368
|
"ofType": {
|
|
10365
10369
|
"kind": "SCALAR",
|
|
10366
|
-
"name": "
|
|
10370
|
+
"name": "String",
|
|
10367
10371
|
"ofType": null
|
|
10368
10372
|
}
|
|
10369
10373
|
},
|
|
@@ -10387,9 +10391,13 @@
|
|
|
10387
10391
|
"description": null,
|
|
10388
10392
|
"args": [],
|
|
10389
10393
|
"type": {
|
|
10390
|
-
"kind": "
|
|
10391
|
-
"name":
|
|
10392
|
-
"ofType":
|
|
10394
|
+
"kind": "NON_NULL",
|
|
10395
|
+
"name": null,
|
|
10396
|
+
"ofType": {
|
|
10397
|
+
"kind": "SCALAR",
|
|
10398
|
+
"name": "ID",
|
|
10399
|
+
"ofType": null
|
|
10400
|
+
}
|
|
10393
10401
|
},
|
|
10394
10402
|
"isDeprecated": false,
|
|
10395
10403
|
"deprecationReason": null
|
|
@@ -10408,12 +10416,16 @@
|
|
|
10408
10416
|
"fields": null,
|
|
10409
10417
|
"inputFields": [
|
|
10410
10418
|
{
|
|
10411
|
-
"name": "
|
|
10419
|
+
"name": "promptName",
|
|
10412
10420
|
"description": null,
|
|
10413
10421
|
"type": {
|
|
10414
|
-
"kind": "
|
|
10415
|
-
"name":
|
|
10416
|
-
"ofType":
|
|
10422
|
+
"kind": "NON_NULL",
|
|
10423
|
+
"name": null,
|
|
10424
|
+
"ofType": {
|
|
10425
|
+
"kind": "SCALAR",
|
|
10426
|
+
"name": "String",
|
|
10427
|
+
"ofType": null
|
|
10428
|
+
}
|
|
10417
10429
|
},
|
|
10418
10430
|
"defaultValue": null,
|
|
10419
10431
|
"isDeprecated": false,
|
|
@@ -10423,9 +10435,13 @@
|
|
|
10423
10435
|
"name": "resourceGroupId",
|
|
10424
10436
|
"description": null,
|
|
10425
10437
|
"type": {
|
|
10426
|
-
"kind": "
|
|
10427
|
-
"name":
|
|
10428
|
-
"ofType":
|
|
10438
|
+
"kind": "NON_NULL",
|
|
10439
|
+
"name": null,
|
|
10440
|
+
"ofType": {
|
|
10441
|
+
"kind": "SCALAR",
|
|
10442
|
+
"name": "ID",
|
|
10443
|
+
"ofType": null
|
|
10444
|
+
}
|
|
10429
10445
|
},
|
|
10430
10446
|
"defaultValue": null,
|
|
10431
10447
|
"isDeprecated": false,
|
package/index.d.ts
CHANGED
|
@@ -1147,15 +1147,15 @@ export type CaSvcAnalysisRun = {
|
|
|
1147
1147
|
__typename?: 'CASvcAnalysisRun';
|
|
1148
1148
|
createdAt: Scalars['String']['output'];
|
|
1149
1149
|
fragmentGroup?: Maybe<CaSvcFragmentGroup>;
|
|
1150
|
-
fragmentGroupId?: Maybe<Scalars['ID']['output']>;
|
|
1151
1150
|
id: Scalars['ID']['output'];
|
|
1151
|
+
promptName: Scalars['String']['output'];
|
|
1152
1152
|
resourceGroup?: Maybe<CaSvcResourceGroup>;
|
|
1153
|
-
resourceGroupId
|
|
1153
|
+
resourceGroupId: Scalars['ID']['output'];
|
|
1154
1154
|
};
|
|
1155
1155
|
|
|
1156
1156
|
export type CaSvcAnalysisRunInput = {
|
|
1157
|
-
|
|
1158
|
-
resourceGroupId
|
|
1157
|
+
promptName: Scalars['String']['input'];
|
|
1158
|
+
resourceGroupId: Scalars['ID']['input'];
|
|
1159
1159
|
};
|
|
1160
1160
|
|
|
1161
1161
|
export type CaSvcAnalysisRunMessage = {
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -1114,15 +1114,15 @@ input BulkUpdateDigitalAssetParams {
|
|
|
1114
1114
|
type CASvcAnalysisRun {
|
|
1115
1115
|
createdAt: String!
|
|
1116
1116
|
fragmentGroup: CASvcFragmentGroup
|
|
1117
|
-
fragmentGroupId: ID
|
|
1118
1117
|
id: ID!
|
|
1118
|
+
promptName: String!
|
|
1119
1119
|
resourceGroup: CASvcResourceGroup
|
|
1120
|
-
resourceGroupId: ID
|
|
1120
|
+
resourceGroupId: ID!
|
|
1121
1121
|
}
|
|
1122
1122
|
|
|
1123
1123
|
input CASvcAnalysisRunInput {
|
|
1124
|
-
|
|
1125
|
-
resourceGroupId: ID
|
|
1124
|
+
promptName: String!
|
|
1125
|
+
resourceGroupId: ID!
|
|
1126
1126
|
}
|
|
1127
1127
|
|
|
1128
1128
|
type CASvcAnalysisRunMessage {
|