@promoboxx/graphql-gateway-types 1.932.0 → 1.934.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 +2 -2
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/schema.graphql +2 -2
package/graphql.schema.json
CHANGED
|
@@ -12071,7 +12071,7 @@
|
|
|
12071
12071
|
"name": null,
|
|
12072
12072
|
"ofType": {
|
|
12073
12073
|
"kind": "SCALAR",
|
|
12074
|
-
"name": "
|
|
12074
|
+
"name": "String",
|
|
12075
12075
|
"ofType": null
|
|
12076
12076
|
}
|
|
12077
12077
|
},
|
|
@@ -12147,7 +12147,7 @@
|
|
|
12147
12147
|
"name": null,
|
|
12148
12148
|
"ofType": {
|
|
12149
12149
|
"kind": "SCALAR",
|
|
12150
|
-
"name": "
|
|
12150
|
+
"name": "String",
|
|
12151
12151
|
"ofType": null
|
|
12152
12152
|
}
|
|
12153
12153
|
},
|
package/index.d.ts
CHANGED
|
@@ -1323,7 +1323,7 @@ export type CaSvcResult = {
|
|
|
1323
1323
|
fragment?: Maybe<CaSvcFragment>;
|
|
1324
1324
|
fragmentId?: Maybe<Scalars['ID']['output']>;
|
|
1325
1325
|
id: Scalars['ID']['output'];
|
|
1326
|
-
output: Scalars['
|
|
1326
|
+
output: Scalars['String']['output'];
|
|
1327
1327
|
resourceGroupMember?: Maybe<CaSvcResourceGroupMember>;
|
|
1328
1328
|
resourceGroupMemberId?: Maybe<Scalars['ID']['output']>;
|
|
1329
1329
|
};
|
|
@@ -1331,7 +1331,7 @@ export type CaSvcResult = {
|
|
|
1331
1331
|
export type CaSvcResultInput = {
|
|
1332
1332
|
analysisRunId?: InputMaybe<Scalars['ID']['input']>;
|
|
1333
1333
|
fragmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
1334
|
-
output: Scalars['
|
|
1334
|
+
output: Scalars['String']['input'];
|
|
1335
1335
|
resourceGroupMemberId?: InputMaybe<Scalars['ID']['input']>;
|
|
1336
1336
|
};
|
|
1337
1337
|
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -1275,7 +1275,7 @@ type CASvcResult {
|
|
|
1275
1275
|
fragment: CASvcFragment
|
|
1276
1276
|
fragmentId: ID
|
|
1277
1277
|
id: ID!
|
|
1278
|
-
output:
|
|
1278
|
+
output: String!
|
|
1279
1279
|
resourceGroupMember: CASvcResourceGroupMember
|
|
1280
1280
|
resourceGroupMemberId: ID
|
|
1281
1281
|
}
|
|
@@ -1283,7 +1283,7 @@ type CASvcResult {
|
|
|
1283
1283
|
input CASvcResultInput {
|
|
1284
1284
|
analysisRunId: ID
|
|
1285
1285
|
fragmentId: ID
|
|
1286
|
-
output:
|
|
1286
|
+
output: String!
|
|
1287
1287
|
resourceGroupMemberId: ID
|
|
1288
1288
|
}
|
|
1289
1289
|
|