@ctil/gql 1.1.3 → 1.1.4

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/dist/index.d.cts CHANGED
@@ -245,8 +245,8 @@ declare function buildGraphQLQueryAggregate(input: QueryAggregateInput): {
245
245
  interface MutationInput {
246
246
  operationName: string;
247
247
  fields: FieldInput[];
248
- datas?: Record<string, any>[];
249
- _set?: Record<string, any>[];
248
+ datas?: Record<string, any> | Record<string, any>[];
249
+ _set?: Record<string, any> | Record<string, any>[];
250
250
  where?: WhereInput;
251
251
  variables?: Record<string, any>;
252
252
  variableName?: string;
package/dist/index.d.ts CHANGED
@@ -245,8 +245,8 @@ declare function buildGraphQLQueryAggregate(input: QueryAggregateInput): {
245
245
  interface MutationInput {
246
246
  operationName: string;
247
247
  fields: FieldInput[];
248
- datas?: Record<string, any>[];
249
- _set?: Record<string, any>[];
248
+ datas?: Record<string, any> | Record<string, any>[];
249
+ _set?: Record<string, any> | Record<string, any>[];
250
250
  where?: WhereInput;
251
251
  variables?: Record<string, any>;
252
252
  variableName?: string;