@wundergraph/cosmo-connect 0.72.3 → 0.73.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.
|
@@ -551,6 +551,10 @@ export declare class CreateMonographRequest extends Message<CreateMonographReque
|
|
|
551
551
|
* @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocket_subprotocol = 9;
|
|
552
552
|
*/
|
|
553
553
|
websocketSubprotocol?: GraphQLWebsocketSubprotocol;
|
|
554
|
+
/**
|
|
555
|
+
* @generated from field: optional string admissionWebhookSecret = 10;
|
|
556
|
+
*/
|
|
557
|
+
admissionWebhookSecret?: string;
|
|
554
558
|
constructor(data?: PartialMessage<CreateMonographRequest>);
|
|
555
559
|
static readonly runtime: typeof proto3;
|
|
556
560
|
static readonly typeName = "wg.cosmo.platform.v1.CreateMonographRequest";
|
|
@@ -613,6 +617,10 @@ export declare class CreateFederatedGraphRequest extends Message<CreateFederated
|
|
|
613
617
|
* @generated from field: string admissionWebhookURL = 6;
|
|
614
618
|
*/
|
|
615
619
|
admissionWebhookURL: string;
|
|
620
|
+
/**
|
|
621
|
+
* @generated from field: optional string admissionWebhookSecret = 7;
|
|
622
|
+
*/
|
|
623
|
+
admissionWebhookSecret?: string;
|
|
616
624
|
constructor(data?: PartialMessage<CreateFederatedGraphRequest>);
|
|
617
625
|
static readonly runtime: typeof proto3;
|
|
618
626
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedGraphRequest";
|
|
@@ -1758,9 +1766,9 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
|
|
|
1758
1766
|
*/
|
|
1759
1767
|
isDeleted: boolean;
|
|
1760
1768
|
/**
|
|
1761
|
-
* @generated from field: optional wg.cosmo.platform.v1.
|
|
1769
|
+
* @generated from field: optional wg.cosmo.platform.v1.SchemaCheck.GhDetails ghDetails = 10;
|
|
1762
1770
|
*/
|
|
1763
|
-
ghDetails?:
|
|
1771
|
+
ghDetails?: SchemaCheck_GhDetails;
|
|
1764
1772
|
/**
|
|
1765
1773
|
* @generated from field: bool hasLintErrors = 11;
|
|
1766
1774
|
*/
|
|
@@ -1775,33 +1783,29 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
|
|
|
1775
1783
|
static equals(a: SchemaCheck | PlainMessage<SchemaCheck> | undefined, b: SchemaCheck | PlainMessage<SchemaCheck> | undefined): boolean;
|
|
1776
1784
|
}
|
|
1777
1785
|
/**
|
|
1778
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
1786
|
+
* @generated from message wg.cosmo.platform.v1.SchemaCheck.GhDetails
|
|
1779
1787
|
*/
|
|
1780
|
-
export declare class
|
|
1788
|
+
export declare class SchemaCheck_GhDetails extends Message<SchemaCheck_GhDetails> {
|
|
1781
1789
|
/**
|
|
1782
1790
|
* @generated from field: string commitSha = 1;
|
|
1783
1791
|
*/
|
|
1784
1792
|
commitSha: string;
|
|
1785
1793
|
/**
|
|
1786
|
-
* @generated from field: string ownerSlug =
|
|
1794
|
+
* @generated from field: string ownerSlug = 2;
|
|
1787
1795
|
*/
|
|
1788
1796
|
ownerSlug: string;
|
|
1789
1797
|
/**
|
|
1790
|
-
* @generated from field: string repositorySlug =
|
|
1798
|
+
* @generated from field: string repositorySlug = 3;
|
|
1791
1799
|
*/
|
|
1792
1800
|
repositorySlug: string;
|
|
1793
|
-
|
|
1794
|
-
* @generated from field: int32 checkRunId = 5;
|
|
1795
|
-
*/
|
|
1796
|
-
checkRunId: number;
|
|
1797
|
-
constructor(data?: PartialMessage<SchemaCheckGhDetails>);
|
|
1801
|
+
constructor(data?: PartialMessage<SchemaCheck_GhDetails>);
|
|
1798
1802
|
static readonly runtime: typeof proto3;
|
|
1799
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
1803
|
+
static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck.GhDetails";
|
|
1800
1804
|
static readonly fields: FieldList;
|
|
1801
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1802
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1803
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1804
|
-
static equals(a:
|
|
1805
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SchemaCheck_GhDetails;
|
|
1806
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SchemaCheck_GhDetails;
|
|
1807
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchemaCheck_GhDetails;
|
|
1808
|
+
static equals(a: SchemaCheck_GhDetails | PlainMessage<SchemaCheck_GhDetails> | undefined, b: SchemaCheck_GhDetails | PlainMessage<SchemaCheck_GhDetails> | undefined): boolean;
|
|
1805
1809
|
}
|
|
1806
1810
|
/**
|
|
1807
1811
|
* @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse
|
|
@@ -2328,6 +2332,10 @@ export declare class UpdateFederatedGraphRequest extends Message<UpdateFederated
|
|
|
2328
2332
|
* @generated from field: optional string admissionWebhookURL = 7;
|
|
2329
2333
|
*/
|
|
2330
2334
|
admissionWebhookURL?: string;
|
|
2335
|
+
/**
|
|
2336
|
+
* @generated from field: optional string admissionWebhookSecret = 8;
|
|
2337
|
+
*/
|
|
2338
|
+
admissionWebhookSecret?: string;
|
|
2331
2339
|
constructor(data?: PartialMessage<UpdateFederatedGraphRequest>);
|
|
2332
2340
|
static readonly runtime: typeof proto3;
|
|
2333
2341
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateFederatedGraphRequest";
|
|
@@ -2398,6 +2406,14 @@ export declare class UpdateMonographRequest extends Message<UpdateMonographReque
|
|
|
2398
2406
|
* @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocket_subprotocol = 8;
|
|
2399
2407
|
*/
|
|
2400
2408
|
websocketSubprotocol?: GraphQLWebsocketSubprotocol;
|
|
2409
|
+
/**
|
|
2410
|
+
* @generated from field: optional string admissionWebhookURL = 9;
|
|
2411
|
+
*/
|
|
2412
|
+
admissionWebhookURL?: string;
|
|
2413
|
+
/**
|
|
2414
|
+
* @generated from field: optional string admissionWebhookSecret = 10;
|
|
2415
|
+
*/
|
|
2416
|
+
admissionWebhookSecret?: string;
|
|
2401
2417
|
constructor(data?: PartialMessage<UpdateMonographRequest>);
|
|
2402
2418
|
static readonly runtime: typeof proto3;
|
|
2403
2419
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateMonographRequest";
|
|
@@ -7999,6 +8015,10 @@ export declare class CreateContractRequest extends Message<CreateContractRequest
|
|
|
7999
8015
|
* @generated from field: optional string readme = 7;
|
|
8000
8016
|
*/
|
|
8001
8017
|
readme?: string;
|
|
8018
|
+
/**
|
|
8019
|
+
* @generated from field: optional string admission_webhook_secret = 8;
|
|
8020
|
+
*/
|
|
8021
|
+
admissionWebhookSecret?: string;
|
|
8002
8022
|
constructor(data?: PartialMessage<CreateContractRequest>);
|
|
8003
8023
|
static readonly runtime: typeof proto3;
|
|
8004
8024
|
static readonly typeName = "wg.cosmo.platform.v1.CreateContractRequest";
|
|
@@ -783,6 +783,10 @@ export class CreateMonographRequest extends Message {
|
|
|
783
783
|
* @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocket_subprotocol = 9;
|
|
784
784
|
*/
|
|
785
785
|
websocketSubprotocol;
|
|
786
|
+
/**
|
|
787
|
+
* @generated from field: optional string admissionWebhookSecret = 10;
|
|
788
|
+
*/
|
|
789
|
+
admissionWebhookSecret;
|
|
786
790
|
constructor(data) {
|
|
787
791
|
super();
|
|
788
792
|
proto3.util.initPartial(data, this);
|
|
@@ -799,6 +803,7 @@ export class CreateMonographRequest extends Message {
|
|
|
799
803
|
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
800
804
|
{ no: 8, name: "admissionWebhookURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
801
805
|
{ no: 9, name: "websocket_subprotocol", kind: "enum", T: proto3.getEnumType(GraphQLWebsocketSubprotocol), opt: true },
|
|
806
|
+
{ no: 10, name: "admissionWebhookSecret", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
802
807
|
]);
|
|
803
808
|
static fromBinary(bytes, options) {
|
|
804
809
|
return new CreateMonographRequest().fromBinary(bytes, options);
|
|
@@ -879,6 +884,10 @@ export class CreateFederatedGraphRequest extends Message {
|
|
|
879
884
|
* @generated from field: string admissionWebhookURL = 6;
|
|
880
885
|
*/
|
|
881
886
|
admissionWebhookURL = "";
|
|
887
|
+
/**
|
|
888
|
+
* @generated from field: optional string admissionWebhookSecret = 7;
|
|
889
|
+
*/
|
|
890
|
+
admissionWebhookSecret;
|
|
882
891
|
constructor(data) {
|
|
883
892
|
super();
|
|
884
893
|
proto3.util.initPartial(data, this);
|
|
@@ -892,6 +901,7 @@ export class CreateFederatedGraphRequest extends Message {
|
|
|
892
901
|
{ no: 4, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
893
902
|
{ no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
894
903
|
{ no: 6, name: "admissionWebhookURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
904
|
+
{ no: 7, name: "admissionWebhookSecret", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
895
905
|
]);
|
|
896
906
|
static fromBinary(bytes, options) {
|
|
897
907
|
return new CreateFederatedGraphRequest().fromBinary(bytes, options);
|
|
@@ -2644,7 +2654,7 @@ export class SchemaCheck extends Message {
|
|
|
2644
2654
|
*/
|
|
2645
2655
|
isDeleted = false;
|
|
2646
2656
|
/**
|
|
2647
|
-
* @generated from field: optional wg.cosmo.platform.v1.
|
|
2657
|
+
* @generated from field: optional wg.cosmo.platform.v1.SchemaCheck.GhDetails ghDetails = 10;
|
|
2648
2658
|
*/
|
|
2649
2659
|
ghDetails;
|
|
2650
2660
|
/**
|
|
@@ -2667,7 +2677,7 @@ export class SchemaCheck extends Message {
|
|
|
2667
2677
|
{ no: 7, name: "hasClientTraffic", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2668
2678
|
{ no: 8, name: "isForcedSuccess", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2669
2679
|
{ no: 9, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2670
|
-
{ no: 10, name: "ghDetails", kind: "message", T:
|
|
2680
|
+
{ no: 10, name: "ghDetails", kind: "message", T: SchemaCheck_GhDetails, opt: true },
|
|
2671
2681
|
{ no: 11, name: "hasLintErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2672
2682
|
]);
|
|
2673
2683
|
static fromBinary(bytes, options) {
|
|
@@ -2684,48 +2694,43 @@ export class SchemaCheck extends Message {
|
|
|
2684
2694
|
}
|
|
2685
2695
|
}
|
|
2686
2696
|
/**
|
|
2687
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
2697
|
+
* @generated from message wg.cosmo.platform.v1.SchemaCheck.GhDetails
|
|
2688
2698
|
*/
|
|
2689
|
-
export class
|
|
2699
|
+
export class SchemaCheck_GhDetails extends Message {
|
|
2690
2700
|
/**
|
|
2691
2701
|
* @generated from field: string commitSha = 1;
|
|
2692
2702
|
*/
|
|
2693
2703
|
commitSha = "";
|
|
2694
2704
|
/**
|
|
2695
|
-
* @generated from field: string ownerSlug =
|
|
2705
|
+
* @generated from field: string ownerSlug = 2;
|
|
2696
2706
|
*/
|
|
2697
2707
|
ownerSlug = "";
|
|
2698
2708
|
/**
|
|
2699
|
-
* @generated from field: string repositorySlug =
|
|
2709
|
+
* @generated from field: string repositorySlug = 3;
|
|
2700
2710
|
*/
|
|
2701
2711
|
repositorySlug = "";
|
|
2702
|
-
/**
|
|
2703
|
-
* @generated from field: int32 checkRunId = 5;
|
|
2704
|
-
*/
|
|
2705
|
-
checkRunId = 0;
|
|
2706
2712
|
constructor(data) {
|
|
2707
2713
|
super();
|
|
2708
2714
|
proto3.util.initPartial(data, this);
|
|
2709
2715
|
}
|
|
2710
2716
|
static runtime = proto3;
|
|
2711
|
-
static typeName = "wg.cosmo.platform.v1.
|
|
2717
|
+
static typeName = "wg.cosmo.platform.v1.SchemaCheck.GhDetails";
|
|
2712
2718
|
static fields = proto3.util.newFieldList(() => [
|
|
2713
2719
|
{ no: 1, name: "commitSha", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2714
|
-
{ no:
|
|
2715
|
-
{ no:
|
|
2716
|
-
{ no: 5, name: "checkRunId", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
2720
|
+
{ no: 2, name: "ownerSlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2721
|
+
{ no: 3, name: "repositorySlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2717
2722
|
]);
|
|
2718
2723
|
static fromBinary(bytes, options) {
|
|
2719
|
-
return new
|
|
2724
|
+
return new SchemaCheck_GhDetails().fromBinary(bytes, options);
|
|
2720
2725
|
}
|
|
2721
2726
|
static fromJson(jsonValue, options) {
|
|
2722
|
-
return new
|
|
2727
|
+
return new SchemaCheck_GhDetails().fromJson(jsonValue, options);
|
|
2723
2728
|
}
|
|
2724
2729
|
static fromJsonString(jsonString, options) {
|
|
2725
|
-
return new
|
|
2730
|
+
return new SchemaCheck_GhDetails().fromJsonString(jsonString, options);
|
|
2726
2731
|
}
|
|
2727
2732
|
static equals(a, b) {
|
|
2728
|
-
return proto3.util.equals(
|
|
2733
|
+
return proto3.util.equals(SchemaCheck_GhDetails, a, b);
|
|
2729
2734
|
}
|
|
2730
2735
|
}
|
|
2731
2736
|
/**
|
|
@@ -3524,6 +3529,10 @@ export class UpdateFederatedGraphRequest extends Message {
|
|
|
3524
3529
|
* @generated from field: optional string admissionWebhookURL = 7;
|
|
3525
3530
|
*/
|
|
3526
3531
|
admissionWebhookURL;
|
|
3532
|
+
/**
|
|
3533
|
+
* @generated from field: optional string admissionWebhookSecret = 8;
|
|
3534
|
+
*/
|
|
3535
|
+
admissionWebhookSecret;
|
|
3527
3536
|
constructor(data) {
|
|
3528
3537
|
super();
|
|
3529
3538
|
proto3.util.initPartial(data, this);
|
|
@@ -3538,6 +3547,7 @@ export class UpdateFederatedGraphRequest extends Message {
|
|
|
3538
3547
|
{ no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3539
3548
|
{ no: 6, name: "unset_label_matchers", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
3540
3549
|
{ no: 7, name: "admissionWebhookURL", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3550
|
+
{ no: 8, name: "admissionWebhookSecret", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3541
3551
|
]);
|
|
3542
3552
|
static fromBinary(bytes, options) {
|
|
3543
3553
|
return new UpdateFederatedGraphRequest().fromBinary(bytes, options);
|
|
@@ -3628,6 +3638,14 @@ export class UpdateMonographRequest extends Message {
|
|
|
3628
3638
|
* @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocket_subprotocol = 8;
|
|
3629
3639
|
*/
|
|
3630
3640
|
websocketSubprotocol;
|
|
3641
|
+
/**
|
|
3642
|
+
* @generated from field: optional string admissionWebhookURL = 9;
|
|
3643
|
+
*/
|
|
3644
|
+
admissionWebhookURL;
|
|
3645
|
+
/**
|
|
3646
|
+
* @generated from field: optional string admissionWebhookSecret = 10;
|
|
3647
|
+
*/
|
|
3648
|
+
admissionWebhookSecret;
|
|
3631
3649
|
constructor(data) {
|
|
3632
3650
|
super();
|
|
3633
3651
|
proto3.util.initPartial(data, this);
|
|
@@ -3643,6 +3661,8 @@ export class UpdateMonographRequest extends Message {
|
|
|
3643
3661
|
{ no: 6, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3644
3662
|
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3645
3663
|
{ no: 8, name: "websocket_subprotocol", kind: "enum", T: proto3.getEnumType(GraphQLWebsocketSubprotocol), opt: true },
|
|
3664
|
+
{ no: 9, name: "admissionWebhookURL", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3665
|
+
{ no: 10, name: "admissionWebhookSecret", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3646
3666
|
]);
|
|
3647
3667
|
static fromBinary(bytes, options) {
|
|
3648
3668
|
return new UpdateMonographRequest().fromBinary(bytes, options);
|
|
@@ -12621,6 +12641,10 @@ export class CreateContractRequest extends Message {
|
|
|
12621
12641
|
* @generated from field: optional string readme = 7;
|
|
12622
12642
|
*/
|
|
12623
12643
|
readme;
|
|
12644
|
+
/**
|
|
12645
|
+
* @generated from field: optional string admission_webhook_secret = 8;
|
|
12646
|
+
*/
|
|
12647
|
+
admissionWebhookSecret;
|
|
12624
12648
|
constructor(data) {
|
|
12625
12649
|
super();
|
|
12626
12650
|
proto3.util.initPartial(data, this);
|
|
@@ -12635,6 +12659,7 @@ export class CreateContractRequest extends Message {
|
|
|
12635
12659
|
{ no: 5, name: "admission_webhook_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
12636
12660
|
{ no: 6, name: "exclude_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
12637
12661
|
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
12662
|
+
{ no: 8, name: "admission_webhook_secret", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
12638
12663
|
]);
|
|
12639
12664
|
static fromBinary(bytes, options) {
|
|
12640
12665
|
return new CreateContractRequest().fromBinary(bytes, options);
|