@wundergraph/cosmo-connect 0.12.0 → 0.14.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.
@@ -648,64 +648,6 @@ export declare class FederatedGraph extends Message<FederatedGraph> {
648
648
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FederatedGraph;
649
649
  static equals(a: FederatedGraph | PlainMessage<FederatedGraph> | undefined, b: FederatedGraph | PlainMessage<FederatedGraph> | undefined): boolean;
650
650
  }
651
- /**
652
- * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelog
653
- */
654
- export declare class FederatedGraphChangelog extends Message<FederatedGraphChangelog> {
655
- /**
656
- * @generated from field: string id = 1;
657
- */
658
- id: string;
659
- /**
660
- * @generated from field: string path = 2;
661
- */
662
- path: string;
663
- /**
664
- * @generated from field: string changeType = 3;
665
- */
666
- changeType: string;
667
- /**
668
- * @generated from field: string changeMessage = 4;
669
- */
670
- changeMessage: string;
671
- /**
672
- * @generated from field: string createdAt = 5;
673
- */
674
- createdAt: string;
675
- constructor(data?: PartialMessage<FederatedGraphChangelog>);
676
- static readonly runtime: typeof proto3;
677
- static readonly typeName = "wg.cosmo.platform.v1.FederatedGraphChangelog";
678
- static readonly fields: FieldList;
679
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FederatedGraphChangelog;
680
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FederatedGraphChangelog;
681
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FederatedGraphChangelog;
682
- static equals(a: FederatedGraphChangelog | PlainMessage<FederatedGraphChangelog> | undefined, b: FederatedGraphChangelog | PlainMessage<FederatedGraphChangelog> | undefined): boolean;
683
- }
684
- /**
685
- * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelogOutput
686
- */
687
- export declare class FederatedGraphChangelogOutput extends Message<FederatedGraphChangelogOutput> {
688
- /**
689
- * @generated from field: string createdAt = 1;
690
- */
691
- createdAt: string;
692
- /**
693
- * @generated from field: string schemaVersionId = 2;
694
- */
695
- schemaVersionId: string;
696
- /**
697
- * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelog changelogs = 3;
698
- */
699
- changelogs: FederatedGraphChangelog[];
700
- constructor(data?: PartialMessage<FederatedGraphChangelogOutput>);
701
- static readonly runtime: typeof proto3;
702
- static readonly typeName = "wg.cosmo.platform.v1.FederatedGraphChangelogOutput";
703
- static readonly fields: FieldList;
704
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FederatedGraphChangelogOutput;
705
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FederatedGraphChangelogOutput;
706
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FederatedGraphChangelogOutput;
707
- static equals(a: FederatedGraphChangelogOutput | PlainMessage<FederatedGraphChangelogOutput> | undefined, b: FederatedGraphChangelogOutput | PlainMessage<FederatedGraphChangelogOutput> | undefined): boolean;
708
- }
709
651
  /**
710
652
  * @generated from message wg.cosmo.platform.v1.GetFederatedGraphsResponse
711
653
  */
@@ -1115,6 +1057,10 @@ export declare class GetFederatedGraphChangelogRequest extends Message<GetFedera
1115
1057
  * @generated from field: string name = 1;
1116
1058
  */
1117
1059
  name: string;
1060
+ /**
1061
+ * @generated from field: wg.cosmo.platform.v1.Pagination pagination = 2;
1062
+ */
1063
+ pagination?: Pagination;
1118
1064
  constructor(data?: PartialMessage<GetFederatedGraphChangelogRequest>);
1119
1065
  static readonly runtime: typeof proto3;
1120
1066
  static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphChangelogRequest";
@@ -1124,6 +1070,64 @@ export declare class GetFederatedGraphChangelogRequest extends Message<GetFedera
1124
1070
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFederatedGraphChangelogRequest;
1125
1071
  static equals(a: GetFederatedGraphChangelogRequest | PlainMessage<GetFederatedGraphChangelogRequest> | undefined, b: GetFederatedGraphChangelogRequest | PlainMessage<GetFederatedGraphChangelogRequest> | undefined): boolean;
1126
1072
  }
1073
+ /**
1074
+ * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelog
1075
+ */
1076
+ export declare class FederatedGraphChangelog extends Message<FederatedGraphChangelog> {
1077
+ /**
1078
+ * @generated from field: string id = 1;
1079
+ */
1080
+ id: string;
1081
+ /**
1082
+ * @generated from field: string path = 2;
1083
+ */
1084
+ path: string;
1085
+ /**
1086
+ * @generated from field: string changeType = 3;
1087
+ */
1088
+ changeType: string;
1089
+ /**
1090
+ * @generated from field: string changeMessage = 4;
1091
+ */
1092
+ changeMessage: string;
1093
+ /**
1094
+ * @generated from field: string createdAt = 5;
1095
+ */
1096
+ createdAt: string;
1097
+ constructor(data?: PartialMessage<FederatedGraphChangelog>);
1098
+ static readonly runtime: typeof proto3;
1099
+ static readonly typeName = "wg.cosmo.platform.v1.FederatedGraphChangelog";
1100
+ static readonly fields: FieldList;
1101
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FederatedGraphChangelog;
1102
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FederatedGraphChangelog;
1103
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FederatedGraphChangelog;
1104
+ static equals(a: FederatedGraphChangelog | PlainMessage<FederatedGraphChangelog> | undefined, b: FederatedGraphChangelog | PlainMessage<FederatedGraphChangelog> | undefined): boolean;
1105
+ }
1106
+ /**
1107
+ * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelogOutput
1108
+ */
1109
+ export declare class FederatedGraphChangelogOutput extends Message<FederatedGraphChangelogOutput> {
1110
+ /**
1111
+ * @generated from field: string createdAt = 1;
1112
+ */
1113
+ createdAt: string;
1114
+ /**
1115
+ * @generated from field: string schemaVersionId = 2;
1116
+ */
1117
+ schemaVersionId: string;
1118
+ /**
1119
+ * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelog changelogs = 3;
1120
+ */
1121
+ changelogs: FederatedGraphChangelog[];
1122
+ constructor(data?: PartialMessage<FederatedGraphChangelogOutput>);
1123
+ static readonly runtime: typeof proto3;
1124
+ static readonly typeName = "wg.cosmo.platform.v1.FederatedGraphChangelogOutput";
1125
+ static readonly fields: FieldList;
1126
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FederatedGraphChangelogOutput;
1127
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FederatedGraphChangelogOutput;
1128
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FederatedGraphChangelogOutput;
1129
+ static equals(a: FederatedGraphChangelogOutput | PlainMessage<FederatedGraphChangelogOutput> | undefined, b: FederatedGraphChangelogOutput | PlainMessage<FederatedGraphChangelogOutput> | undefined): boolean;
1130
+ }
1127
1131
  /**
1128
1132
  * @generated from message wg.cosmo.platform.v1.GetFederatedGraphChangelogResponse
1129
1133
  */
@@ -1136,6 +1140,10 @@ export declare class GetFederatedGraphChangelogResponse extends Message<GetFeder
1136
1140
  * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelogOutput federatedGraphChangelogOutput = 2;
1137
1141
  */
1138
1142
  federatedGraphChangelogOutput: FederatedGraphChangelogOutput[];
1143
+ /**
1144
+ * @generated from field: bool hasNextPage = 3;
1145
+ */
1146
+ hasNextPage: boolean;
1139
1147
  constructor(data?: PartialMessage<GetFederatedGraphChangelogResponse>);
1140
1148
  static readonly runtime: typeof proto3;
1141
1149
  static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphChangelogResponse";
@@ -2487,3 +2495,218 @@ export declare class DeleteOrganizationWebhookConfigResponse extends Message<Del
2487
2495
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteOrganizationWebhookConfigResponse;
2488
2496
  static equals(a: DeleteOrganizationWebhookConfigResponse | PlainMessage<DeleteOrganizationWebhookConfigResponse> | undefined, b: DeleteOrganizationWebhookConfigResponse | PlainMessage<DeleteOrganizationWebhookConfigResponse> | undefined): boolean;
2489
2497
  }
2498
+ /**
2499
+ * *
2500
+ * MetricsDashboard
2501
+ *
2502
+ * @generated from message wg.cosmo.platform.v1.GetMetricsDashboardRequest
2503
+ */
2504
+ export declare class GetMetricsDashboardRequest extends Message<GetMetricsDashboardRequest> {
2505
+ /**
2506
+ * @generated from field: string federatedGraphName = 1;
2507
+ */
2508
+ federatedGraphName: string;
2509
+ /**
2510
+ * @generated from field: int32 range = 2;
2511
+ */
2512
+ range: number;
2513
+ constructor(data?: PartialMessage<GetMetricsDashboardRequest>);
2514
+ static readonly runtime: typeof proto3;
2515
+ static readonly typeName = "wg.cosmo.platform.v1.GetMetricsDashboardRequest";
2516
+ static readonly fields: FieldList;
2517
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetMetricsDashboardRequest;
2518
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetMetricsDashboardRequest;
2519
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetMetricsDashboardRequest;
2520
+ static equals(a: GetMetricsDashboardRequest | PlainMessage<GetMetricsDashboardRequest> | undefined, b: GetMetricsDashboardRequest | PlainMessage<GetMetricsDashboardRequest> | undefined): boolean;
2521
+ }
2522
+ /**
2523
+ * @generated from message wg.cosmo.platform.v1.GetMetricsDashboardResponse
2524
+ */
2525
+ export declare class GetMetricsDashboardResponse extends Message<GetMetricsDashboardResponse> {
2526
+ /**
2527
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
2528
+ */
2529
+ response?: Response;
2530
+ /**
2531
+ * @generated from field: wg.cosmo.platform.v1.MetricsDashboardMetric requests = 2;
2532
+ */
2533
+ requests?: MetricsDashboardMetric;
2534
+ /**
2535
+ * @generated from field: wg.cosmo.platform.v1.MetricsDashboardMetric latency = 3;
2536
+ */
2537
+ latency?: MetricsDashboardMetric;
2538
+ /**
2539
+ * @generated from field: wg.cosmo.platform.v1.MetricsDashboardMetric errors = 4;
2540
+ */
2541
+ errors?: MetricsDashboardMetric;
2542
+ /**
2543
+ * @generated from field: optional string json = 5;
2544
+ */
2545
+ json?: string;
2546
+ constructor(data?: PartialMessage<GetMetricsDashboardResponse>);
2547
+ static readonly runtime: typeof proto3;
2548
+ static readonly typeName = "wg.cosmo.platform.v1.GetMetricsDashboardResponse";
2549
+ static readonly fields: FieldList;
2550
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetMetricsDashboardResponse;
2551
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetMetricsDashboardResponse;
2552
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetMetricsDashboardResponse;
2553
+ static equals(a: GetMetricsDashboardResponse | PlainMessage<GetMetricsDashboardResponse> | undefined, b: GetMetricsDashboardResponse | PlainMessage<GetMetricsDashboardResponse> | undefined): boolean;
2554
+ }
2555
+ /**
2556
+ * @generated from message wg.cosmo.platform.v1.MetricsDashboardMetric
2557
+ */
2558
+ export declare class MetricsDashboardMetric extends Message<MetricsDashboardMetric> {
2559
+ /**
2560
+ * @generated from field: string value = 1;
2561
+ */
2562
+ value: string;
2563
+ /**
2564
+ * @generated from field: optional string previousValue = 2;
2565
+ */
2566
+ previousValue?: string;
2567
+ /**
2568
+ * @generated from field: repeated wg.cosmo.platform.v1.MetricsTopItem top = 3;
2569
+ */
2570
+ top: MetricsTopItem[];
2571
+ /**
2572
+ * @generated from field: repeated wg.cosmo.platform.v1.MetricsSeriesItem series = 4;
2573
+ */
2574
+ series: MetricsSeriesItem[];
2575
+ constructor(data?: PartialMessage<MetricsDashboardMetric>);
2576
+ static readonly runtime: typeof proto3;
2577
+ static readonly typeName = "wg.cosmo.platform.v1.MetricsDashboardMetric";
2578
+ static readonly fields: FieldList;
2579
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetricsDashboardMetric;
2580
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetricsDashboardMetric;
2581
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetricsDashboardMetric;
2582
+ static equals(a: MetricsDashboardMetric | PlainMessage<MetricsDashboardMetric> | undefined, b: MetricsDashboardMetric | PlainMessage<MetricsDashboardMetric> | undefined): boolean;
2583
+ }
2584
+ /**
2585
+ * @generated from message wg.cosmo.platform.v1.MetricsTopItem
2586
+ */
2587
+ export declare class MetricsTopItem extends Message<MetricsTopItem> {
2588
+ /**
2589
+ * @generated from field: string name = 1;
2590
+ */
2591
+ name: string;
2592
+ /**
2593
+ * @generated from field: string value = 2;
2594
+ */
2595
+ value: string;
2596
+ constructor(data?: PartialMessage<MetricsTopItem>);
2597
+ static readonly runtime: typeof proto3;
2598
+ static readonly typeName = "wg.cosmo.platform.v1.MetricsTopItem";
2599
+ static readonly fields: FieldList;
2600
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetricsTopItem;
2601
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetricsTopItem;
2602
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetricsTopItem;
2603
+ static equals(a: MetricsTopItem | PlainMessage<MetricsTopItem> | undefined, b: MetricsTopItem | PlainMessage<MetricsTopItem> | undefined): boolean;
2604
+ }
2605
+ /**
2606
+ * @generated from message wg.cosmo.platform.v1.MetricsSeriesItem
2607
+ */
2608
+ export declare class MetricsSeriesItem extends Message<MetricsSeriesItem> {
2609
+ /**
2610
+ * @generated from field: string timestamp = 1;
2611
+ */
2612
+ timestamp: string;
2613
+ /**
2614
+ * @generated from field: string value = 2;
2615
+ */
2616
+ value: string;
2617
+ /**
2618
+ * @generated from field: optional string previousValue = 3;
2619
+ */
2620
+ previousValue?: string;
2621
+ constructor(data?: PartialMessage<MetricsSeriesItem>);
2622
+ static readonly runtime: typeof proto3;
2623
+ static readonly typeName = "wg.cosmo.platform.v1.MetricsSeriesItem";
2624
+ static readonly fields: FieldList;
2625
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetricsSeriesItem;
2626
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetricsSeriesItem;
2627
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetricsSeriesItem;
2628
+ static equals(a: MetricsSeriesItem | PlainMessage<MetricsSeriesItem> | undefined, b: MetricsSeriesItem | PlainMessage<MetricsSeriesItem> | undefined): boolean;
2629
+ }
2630
+ /**
2631
+ * @generated from message wg.cosmo.platform.v1.MetricsDashboard
2632
+ */
2633
+ export declare class MetricsDashboard extends Message<MetricsDashboard> {
2634
+ /**
2635
+ * @generated from field: string name = 1;
2636
+ */
2637
+ name: string;
2638
+ /**
2639
+ * @generated from field: string title = 2;
2640
+ */
2641
+ title: string;
2642
+ /**
2643
+ * @generated from field: string type = 3;
2644
+ */
2645
+ type: string;
2646
+ /**
2647
+ * @generated from field: optional wg.cosmo.platform.v1.Unit unit = 4;
2648
+ */
2649
+ unit?: Unit;
2650
+ /**
2651
+ * @generated from field: optional bool is_hidden = 5;
2652
+ */
2653
+ isHidden?: boolean;
2654
+ /**
2655
+ * @generated from field: optional bool is_cta = 6;
2656
+ */
2657
+ isCta?: boolean;
2658
+ constructor(data?: PartialMessage<MetricsDashboard>);
2659
+ static readonly runtime: typeof proto3;
2660
+ static readonly typeName = "wg.cosmo.platform.v1.MetricsDashboard";
2661
+ static readonly fields: FieldList;
2662
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetricsDashboard;
2663
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetricsDashboard;
2664
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetricsDashboard;
2665
+ static equals(a: MetricsDashboard | PlainMessage<MetricsDashboard> | undefined, b: MetricsDashboard | PlainMessage<MetricsDashboard> | undefined): boolean;
2666
+ }
2667
+ /**
2668
+ * @generated from message wg.cosmo.platform.v1.GetMetricsErrorRateRequest
2669
+ */
2670
+ export declare class GetMetricsErrorRateRequest extends Message<GetMetricsErrorRateRequest> {
2671
+ /**
2672
+ * @generated from field: string federatedGraphName = 1;
2673
+ */
2674
+ federatedGraphName: string;
2675
+ /**
2676
+ * @generated from field: int32 range = 2;
2677
+ */
2678
+ range: number;
2679
+ constructor(data?: PartialMessage<GetMetricsErrorRateRequest>);
2680
+ static readonly runtime: typeof proto3;
2681
+ static readonly typeName = "wg.cosmo.platform.v1.GetMetricsErrorRateRequest";
2682
+ static readonly fields: FieldList;
2683
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetMetricsErrorRateRequest;
2684
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetMetricsErrorRateRequest;
2685
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetMetricsErrorRateRequest;
2686
+ static equals(a: GetMetricsErrorRateRequest | PlainMessage<GetMetricsErrorRateRequest> | undefined, b: GetMetricsErrorRateRequest | PlainMessage<GetMetricsErrorRateRequest> | undefined): boolean;
2687
+ }
2688
+ /**
2689
+ * @generated from message wg.cosmo.platform.v1.GetMetricsErrorRateResponse
2690
+ */
2691
+ export declare class GetMetricsErrorRateResponse extends Message<GetMetricsErrorRateResponse> {
2692
+ /**
2693
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
2694
+ */
2695
+ response?: Response;
2696
+ /**
2697
+ * @generated from field: repeated wg.cosmo.platform.v1.MetricsSeriesItem series = 2;
2698
+ */
2699
+ series: MetricsSeriesItem[];
2700
+ /**
2701
+ * @generated from field: repeated wg.cosmo.platform.v1.MetricsSeriesItem errorSeries = 3;
2702
+ */
2703
+ errorSeries: MetricsSeriesItem[];
2704
+ constructor(data?: PartialMessage<GetMetricsErrorRateResponse>);
2705
+ static readonly runtime: typeof proto3;
2706
+ static readonly typeName = "wg.cosmo.platform.v1.GetMetricsErrorRateResponse";
2707
+ static readonly fields: FieldList;
2708
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetMetricsErrorRateResponse;
2709
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetMetricsErrorRateResponse;
2710
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetMetricsErrorRateResponse;
2711
+ static equals(a: GetMetricsErrorRateResponse | PlainMessage<GetMetricsErrorRateResponse> | undefined, b: GetMetricsErrorRateResponse | PlainMessage<GetMetricsErrorRateResponse> | undefined): boolean;
2712
+ }