@wundergraph/cosmo-connect 0.56.0 → 0.56.1

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.
@@ -3101,13 +3101,17 @@ export declare class RouterToken extends Message<RouterToken> {
3101
3101
  */
3102
3102
  name: string;
3103
3103
  /**
3104
- * @generated from field: string token = 3;
3104
+ * @generated from field: string createdAt = 3;
3105
3105
  */
3106
- token: string;
3106
+ createdAt: string;
3107
3107
  /**
3108
- * @generated from field: string createdAt = 4;
3108
+ * @generated from field: string lastUsedAt = 4;
3109
3109
  */
3110
- createdAt: string;
3110
+ lastUsedAt: string;
3111
+ /**
3112
+ * @generated from field: string creatorEmail = 5;
3113
+ */
3114
+ creatorEmail: string;
3111
3115
  constructor(data?: PartialMessage<RouterToken>);
3112
3116
  static readonly runtime: typeof proto3;
3113
3117
  static readonly typeName = "wg.cosmo.platform.v1.RouterToken";
@@ -4777,13 +4777,17 @@ export class RouterToken extends Message {
4777
4777
  */
4778
4778
  name = "";
4779
4779
  /**
4780
- * @generated from field: string token = 3;
4780
+ * @generated from field: string createdAt = 3;
4781
4781
  */
4782
- token = "";
4782
+ createdAt = "";
4783
4783
  /**
4784
- * @generated from field: string createdAt = 4;
4784
+ * @generated from field: string lastUsedAt = 4;
4785
4785
  */
4786
- createdAt = "";
4786
+ lastUsedAt = "";
4787
+ /**
4788
+ * @generated from field: string creatorEmail = 5;
4789
+ */
4790
+ creatorEmail = "";
4787
4791
  constructor(data) {
4788
4792
  super();
4789
4793
  proto3.util.initPartial(data, this);
@@ -4793,8 +4797,9 @@ export class RouterToken extends Message {
4793
4797
  static fields = proto3.util.newFieldList(() => [
4794
4798
  { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4795
4799
  { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4796
- { no: 3, name: "token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4797
- { no: 4, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4800
+ { no: 3, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4801
+ { no: 4, name: "lastUsedAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4802
+ { no: 5, name: "creatorEmail", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4798
4803
  ]);
4799
4804
  static fromBinary(bytes, options) {
4800
4805
  return new RouterToken().fromBinary(bytes, options);