@wundergraph/cosmo-connect
Advanced tools
Comparing version 0.29.0 to 0.30.0
@@ -89,2 +89,14 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; | ||
}; | ||
/** | ||
* ArgumentMetrics is the list of used arguments in the request document | ||
* | ||
* @generated from field: repeated wg.cosmo.graphqlmetrics.v1.ArgumentUsageInfo ArgumentMetrics = 8; | ||
*/ | ||
ArgumentMetrics: ArgumentUsageInfo[]; | ||
/** | ||
* InputMetrics is the list of used input fields in the request document | ||
* | ||
* @generated from field: repeated wg.cosmo.graphqlmetrics.v1.InputUsageInfo InputMetrics = 9; | ||
*/ | ||
InputMetrics: InputUsageInfo[]; | ||
constructor(data?: PartialMessage<SchemaUsageInfo>); | ||
@@ -187,3 +199,3 @@ static readonly runtime: typeof proto3; | ||
/** | ||
* TypeNames is the list of type names that the field is used as | ||
* TypeNames is the list of enclosing type names of the field | ||
* | ||
@@ -200,3 +212,3 @@ * @generated from field: repeated string TypeNames = 2; | ||
/** | ||
* Count is the number of times the field is used | ||
* Count is the number of times the field is used. Useful for batching at client side. | ||
* | ||
@@ -222,2 +234,76 @@ * @generated from field: uint64 Count = 4; | ||
/** | ||
* @generated from message wg.cosmo.graphqlmetrics.v1.ArgumentUsageInfo | ||
*/ | ||
export declare class ArgumentUsageInfo extends Message<ArgumentUsageInfo> { | ||
/** | ||
* Path is the path to the field in the request document but without the root type query, mutation, or subscription | ||
* | ||
* @generated from field: repeated string Path = 1; | ||
*/ | ||
Path: string[]; | ||
/** | ||
* TypeName is the enclosing type name of the argument | ||
* | ||
* @generated from field: string TypeName = 2; | ||
*/ | ||
TypeName: string; | ||
/** | ||
* Count is the number of times the argument is used. Useful for batching at client side. | ||
* | ||
* @generated from field: uint64 Count = 3; | ||
*/ | ||
Count: bigint; | ||
/** | ||
* NamedType is the underlying type of the argument | ||
* | ||
* @generated from field: string NamedType = 4; | ||
*/ | ||
NamedType: string; | ||
constructor(data?: PartialMessage<ArgumentUsageInfo>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.graphqlmetrics.v1.ArgumentUsageInfo"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ArgumentUsageInfo; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ArgumentUsageInfo; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ArgumentUsageInfo; | ||
static equals(a: ArgumentUsageInfo | PlainMessage<ArgumentUsageInfo> | undefined, b: ArgumentUsageInfo | PlainMessage<ArgumentUsageInfo> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.graphqlmetrics.v1.InputUsageInfo | ||
*/ | ||
export declare class InputUsageInfo extends Message<InputUsageInfo> { | ||
/** | ||
* Path is the path to the field in the request document but without the root type query, mutation, or subscription | ||
* | ||
* @generated from field: repeated string Path = 1; | ||
*/ | ||
Path: string[]; | ||
/** | ||
* TypeName is the enclosing type name of the argument | ||
* | ||
* @generated from field: string TypeName = 2; | ||
*/ | ||
TypeName: string; | ||
/** | ||
* Count is the number of times the argument is used. Useful for batching at client side. | ||
* | ||
* @generated from field: uint64 Count = 3; | ||
*/ | ||
Count: bigint; | ||
/** | ||
* NamedType is the underlying type of the input field | ||
* | ||
* @generated from field: string NamedType = 4; | ||
*/ | ||
NamedType: string; | ||
constructor(data?: PartialMessage<InputUsageInfo>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.graphqlmetrics.v1.InputUsageInfo"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InputUsageInfo; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InputUsageInfo; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InputUsageInfo; | ||
static equals(a: InputUsageInfo | PlainMessage<InputUsageInfo> | undefined, b: InputUsageInfo | PlainMessage<InputUsageInfo> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.graphqlmetrics.v1.PublishGraphQLRequestMetricsRequest | ||
@@ -224,0 +310,0 @@ */ |
@@ -108,2 +108,14 @@ // https://protobuf.dev/programming-guides/style/ | ||
Attributes = {}; | ||
/** | ||
* ArgumentMetrics is the list of used arguments in the request document | ||
* | ||
* @generated from field: repeated wg.cosmo.graphqlmetrics.v1.ArgumentUsageInfo ArgumentMetrics = 8; | ||
*/ | ||
ArgumentMetrics = []; | ||
/** | ||
* InputMetrics is the list of used input fields in the request document | ||
* | ||
* @generated from field: repeated wg.cosmo.graphqlmetrics.v1.InputUsageInfo InputMetrics = 9; | ||
*/ | ||
InputMetrics = []; | ||
constructor(data) { | ||
@@ -123,2 +135,4 @@ super(); | ||
{ no: 7, name: "Attributes", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "scalar", T: 9 /* ScalarType.STRING */ } }, | ||
{ no: 8, name: "ArgumentMetrics", kind: "message", T: ArgumentUsageInfo, repeated: true }, | ||
{ no: 9, name: "InputMetrics", kind: "message", T: InputUsageInfo, repeated: true }, | ||
]); | ||
@@ -268,3 +282,3 @@ static fromBinary(bytes, options) { | ||
/** | ||
* TypeNames is the list of type names that the field is used as | ||
* TypeNames is the list of enclosing type names of the field | ||
* | ||
@@ -281,3 +295,3 @@ * @generated from field: repeated string TypeNames = 2; | ||
/** | ||
* Count is the number of times the field is used | ||
* Count is the number of times the field is used. Useful for batching at client side. | ||
* | ||
@@ -320,2 +334,108 @@ * @generated from field: uint64 Count = 4; | ||
/** | ||
* @generated from message wg.cosmo.graphqlmetrics.v1.ArgumentUsageInfo | ||
*/ | ||
export class ArgumentUsageInfo extends Message { | ||
/** | ||
* Path is the path to the field in the request document but without the root type query, mutation, or subscription | ||
* | ||
* @generated from field: repeated string Path = 1; | ||
*/ | ||
Path = []; | ||
/** | ||
* TypeName is the enclosing type name of the argument | ||
* | ||
* @generated from field: string TypeName = 2; | ||
*/ | ||
TypeName = ""; | ||
/** | ||
* Count is the number of times the argument is used. Useful for batching at client side. | ||
* | ||
* @generated from field: uint64 Count = 3; | ||
*/ | ||
Count = protoInt64.zero; | ||
/** | ||
* NamedType is the underlying type of the argument | ||
* | ||
* @generated from field: string NamedType = 4; | ||
*/ | ||
NamedType = ""; | ||
constructor(data) { | ||
super(); | ||
proto3.util.initPartial(data, this); | ||
} | ||
static runtime = proto3; | ||
static typeName = "wg.cosmo.graphqlmetrics.v1.ArgumentUsageInfo"; | ||
static fields = proto3.util.newFieldList(() => [ | ||
{ no: 1, name: "Path", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 2, name: "TypeName", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 3, name: "Count", kind: "scalar", T: 4 /* ScalarType.UINT64 */ }, | ||
{ no: 4, name: "NamedType", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
]); | ||
static fromBinary(bytes, options) { | ||
return new ArgumentUsageInfo().fromBinary(bytes, options); | ||
} | ||
static fromJson(jsonValue, options) { | ||
return new ArgumentUsageInfo().fromJson(jsonValue, options); | ||
} | ||
static fromJsonString(jsonString, options) { | ||
return new ArgumentUsageInfo().fromJsonString(jsonString, options); | ||
} | ||
static equals(a, b) { | ||
return proto3.util.equals(ArgumentUsageInfo, a, b); | ||
} | ||
} | ||
/** | ||
* @generated from message wg.cosmo.graphqlmetrics.v1.InputUsageInfo | ||
*/ | ||
export class InputUsageInfo extends Message { | ||
/** | ||
* Path is the path to the field in the request document but without the root type query, mutation, or subscription | ||
* | ||
* @generated from field: repeated string Path = 1; | ||
*/ | ||
Path = []; | ||
/** | ||
* TypeName is the enclosing type name of the argument | ||
* | ||
* @generated from field: string TypeName = 2; | ||
*/ | ||
TypeName = ""; | ||
/** | ||
* Count is the number of times the argument is used. Useful for batching at client side. | ||
* | ||
* @generated from field: uint64 Count = 3; | ||
*/ | ||
Count = protoInt64.zero; | ||
/** | ||
* NamedType is the underlying type of the input field | ||
* | ||
* @generated from field: string NamedType = 4; | ||
*/ | ||
NamedType = ""; | ||
constructor(data) { | ||
super(); | ||
proto3.util.initPartial(data, this); | ||
} | ||
static runtime = proto3; | ||
static typeName = "wg.cosmo.graphqlmetrics.v1.InputUsageInfo"; | ||
static fields = proto3.util.newFieldList(() => [ | ||
{ no: 1, name: "Path", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 2, name: "TypeName", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 3, name: "Count", kind: "scalar", T: 4 /* ScalarType.UINT64 */ }, | ||
{ no: 4, name: "NamedType", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
]); | ||
static fromBinary(bytes, options) { | ||
return new InputUsageInfo().fromBinary(bytes, options); | ||
} | ||
static fromJson(jsonValue, options) { | ||
return new InputUsageInfo().fromJson(jsonValue, options); | ||
} | ||
static fromJsonString(jsonString, options) { | ||
return new InputUsageInfo().fromJsonString(jsonString, options); | ||
} | ||
static equals(a, b) { | ||
return proto3.util.equals(InputUsageInfo, a, b); | ||
} | ||
} | ||
/** | ||
* @generated from message wg.cosmo.graphqlmetrics.v1.PublishGraphQLRequestMetricsRequest | ||
@@ -322,0 +442,0 @@ */ |
{ | ||
"name": "@wundergraph/cosmo-connect", | ||
"version": "0.29.0", | ||
"version": "0.30.0", | ||
"description": "TypeScript Connect client for WunderGraph Cosmo", | ||
@@ -38,3 +38,3 @@ "scripts": { | ||
}, | ||
"gitHead": "55f2707f2461196570e46e1501f130f46c35c1cd" | ||
"gitHead": "4e50153e0702e2a024e1573a6861dd3950756b85" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1049870
17344