@wundergraph/cosmo-connect 0.78.0 → 0.79.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.
- package/dist/notifications/events_pb.d.ts +5 -1
- package/dist/notifications/events_pb.js +5 -0
- package/dist/notifications/events_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +76 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +76 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +56 -1
- package/dist/platform/v1/platform_connect.js +56 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +287 -0
- package/dist/platform/v1/platform_pb.js +455 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -8498,6 +8498,151 @@ export class ForceCheckSuccessResponse extends Message {
|
|
|
8498
8498
|
return proto3.util.equals(ForceCheckSuccessResponse, a, b);
|
|
8499
8499
|
}
|
|
8500
8500
|
}
|
|
8501
|
+
/**
|
|
8502
|
+
* @generated from message wg.cosmo.platform.v1.ToggleChangeOverridesForAllOperationsRequest
|
|
8503
|
+
*/
|
|
8504
|
+
export class ToggleChangeOverridesForAllOperationsRequest extends Message {
|
|
8505
|
+
/**
|
|
8506
|
+
* @generated from field: string check_id = 1;
|
|
8507
|
+
*/
|
|
8508
|
+
checkId = "";
|
|
8509
|
+
/**
|
|
8510
|
+
* @generated from field: bool is_safe = 2;
|
|
8511
|
+
*/
|
|
8512
|
+
isSafe = false;
|
|
8513
|
+
/**
|
|
8514
|
+
* @generated from field: string graph_name = 3;
|
|
8515
|
+
*/
|
|
8516
|
+
graphName = "";
|
|
8517
|
+
/**
|
|
8518
|
+
* @generated from field: string namespace = 4;
|
|
8519
|
+
*/
|
|
8520
|
+
namespace = "";
|
|
8521
|
+
constructor(data) {
|
|
8522
|
+
super();
|
|
8523
|
+
proto3.util.initPartial(data, this);
|
|
8524
|
+
}
|
|
8525
|
+
static runtime = proto3;
|
|
8526
|
+
static typeName = "wg.cosmo.platform.v1.ToggleChangeOverridesForAllOperationsRequest";
|
|
8527
|
+
static fields = proto3.util.newFieldList(() => [
|
|
8528
|
+
{ no: 1, name: "check_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8529
|
+
{ no: 2, name: "is_safe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
8530
|
+
{ no: 3, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8531
|
+
{ no: 4, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8532
|
+
]);
|
|
8533
|
+
static fromBinary(bytes, options) {
|
|
8534
|
+
return new ToggleChangeOverridesForAllOperationsRequest().fromBinary(bytes, options);
|
|
8535
|
+
}
|
|
8536
|
+
static fromJson(jsonValue, options) {
|
|
8537
|
+
return new ToggleChangeOverridesForAllOperationsRequest().fromJson(jsonValue, options);
|
|
8538
|
+
}
|
|
8539
|
+
static fromJsonString(jsonString, options) {
|
|
8540
|
+
return new ToggleChangeOverridesForAllOperationsRequest().fromJsonString(jsonString, options);
|
|
8541
|
+
}
|
|
8542
|
+
static equals(a, b) {
|
|
8543
|
+
return proto3.util.equals(ToggleChangeOverridesForAllOperationsRequest, a, b);
|
|
8544
|
+
}
|
|
8545
|
+
}
|
|
8546
|
+
/**
|
|
8547
|
+
* @generated from message wg.cosmo.platform.v1.ToggleChangeOverridesForAllOperationsResponse
|
|
8548
|
+
*/
|
|
8549
|
+
export class ToggleChangeOverridesForAllOperationsResponse extends Message {
|
|
8550
|
+
/**
|
|
8551
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
8552
|
+
*/
|
|
8553
|
+
response;
|
|
8554
|
+
constructor(data) {
|
|
8555
|
+
super();
|
|
8556
|
+
proto3.util.initPartial(data, this);
|
|
8557
|
+
}
|
|
8558
|
+
static runtime = proto3;
|
|
8559
|
+
static typeName = "wg.cosmo.platform.v1.ToggleChangeOverridesForAllOperationsResponse";
|
|
8560
|
+
static fields = proto3.util.newFieldList(() => [
|
|
8561
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
8562
|
+
]);
|
|
8563
|
+
static fromBinary(bytes, options) {
|
|
8564
|
+
return new ToggleChangeOverridesForAllOperationsResponse().fromBinary(bytes, options);
|
|
8565
|
+
}
|
|
8566
|
+
static fromJson(jsonValue, options) {
|
|
8567
|
+
return new ToggleChangeOverridesForAllOperationsResponse().fromJson(jsonValue, options);
|
|
8568
|
+
}
|
|
8569
|
+
static fromJsonString(jsonString, options) {
|
|
8570
|
+
return new ToggleChangeOverridesForAllOperationsResponse().fromJsonString(jsonString, options);
|
|
8571
|
+
}
|
|
8572
|
+
static equals(a, b) {
|
|
8573
|
+
return proto3.util.equals(ToggleChangeOverridesForAllOperationsResponse, a, b);
|
|
8574
|
+
}
|
|
8575
|
+
}
|
|
8576
|
+
/**
|
|
8577
|
+
* @generated from message wg.cosmo.platform.v1.CreateIgnoreOverridesForAllOperationsRequest
|
|
8578
|
+
*/
|
|
8579
|
+
export class CreateIgnoreOverridesForAllOperationsRequest extends Message {
|
|
8580
|
+
/**
|
|
8581
|
+
* @generated from field: string check_id = 1;
|
|
8582
|
+
*/
|
|
8583
|
+
checkId = "";
|
|
8584
|
+
/**
|
|
8585
|
+
* @generated from field: string graph_name = 2;
|
|
8586
|
+
*/
|
|
8587
|
+
graphName = "";
|
|
8588
|
+
/**
|
|
8589
|
+
* @generated from field: string namespace = 3;
|
|
8590
|
+
*/
|
|
8591
|
+
namespace = "";
|
|
8592
|
+
constructor(data) {
|
|
8593
|
+
super();
|
|
8594
|
+
proto3.util.initPartial(data, this);
|
|
8595
|
+
}
|
|
8596
|
+
static runtime = proto3;
|
|
8597
|
+
static typeName = "wg.cosmo.platform.v1.CreateIgnoreOverridesForAllOperationsRequest";
|
|
8598
|
+
static fields = proto3.util.newFieldList(() => [
|
|
8599
|
+
{ no: 1, name: "check_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8600
|
+
{ no: 2, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8601
|
+
{ no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8602
|
+
]);
|
|
8603
|
+
static fromBinary(bytes, options) {
|
|
8604
|
+
return new CreateIgnoreOverridesForAllOperationsRequest().fromBinary(bytes, options);
|
|
8605
|
+
}
|
|
8606
|
+
static fromJson(jsonValue, options) {
|
|
8607
|
+
return new CreateIgnoreOverridesForAllOperationsRequest().fromJson(jsonValue, options);
|
|
8608
|
+
}
|
|
8609
|
+
static fromJsonString(jsonString, options) {
|
|
8610
|
+
return new CreateIgnoreOverridesForAllOperationsRequest().fromJsonString(jsonString, options);
|
|
8611
|
+
}
|
|
8612
|
+
static equals(a, b) {
|
|
8613
|
+
return proto3.util.equals(CreateIgnoreOverridesForAllOperationsRequest, a, b);
|
|
8614
|
+
}
|
|
8615
|
+
}
|
|
8616
|
+
/**
|
|
8617
|
+
* @generated from message wg.cosmo.platform.v1.CreateIgnoreOverridesForAllOperationsResponse
|
|
8618
|
+
*/
|
|
8619
|
+
export class CreateIgnoreOverridesForAllOperationsResponse extends Message {
|
|
8620
|
+
/**
|
|
8621
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
8622
|
+
*/
|
|
8623
|
+
response;
|
|
8624
|
+
constructor(data) {
|
|
8625
|
+
super();
|
|
8626
|
+
proto3.util.initPartial(data, this);
|
|
8627
|
+
}
|
|
8628
|
+
static runtime = proto3;
|
|
8629
|
+
static typeName = "wg.cosmo.platform.v1.CreateIgnoreOverridesForAllOperationsResponse";
|
|
8630
|
+
static fields = proto3.util.newFieldList(() => [
|
|
8631
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
8632
|
+
]);
|
|
8633
|
+
static fromBinary(bytes, options) {
|
|
8634
|
+
return new CreateIgnoreOverridesForAllOperationsResponse().fromBinary(bytes, options);
|
|
8635
|
+
}
|
|
8636
|
+
static fromJson(jsonValue, options) {
|
|
8637
|
+
return new CreateIgnoreOverridesForAllOperationsResponse().fromJson(jsonValue, options);
|
|
8638
|
+
}
|
|
8639
|
+
static fromJsonString(jsonString, options) {
|
|
8640
|
+
return new CreateIgnoreOverridesForAllOperationsResponse().fromJsonString(jsonString, options);
|
|
8641
|
+
}
|
|
8642
|
+
static equals(a, b) {
|
|
8643
|
+
return proto3.util.equals(CreateIgnoreOverridesForAllOperationsResponse, a, b);
|
|
8644
|
+
}
|
|
8645
|
+
}
|
|
8501
8646
|
/**
|
|
8502
8647
|
* @generated from message wg.cosmo.platform.v1.OverrideChange
|
|
8503
8648
|
*/
|
|
@@ -13909,4 +14054,314 @@ export class GetFeatureFlagsByFederatedGraphResponse extends Message {
|
|
|
13909
14054
|
return proto3.util.equals(GetFeatureFlagsByFederatedGraphResponse, a, b);
|
|
13910
14055
|
}
|
|
13911
14056
|
}
|
|
14057
|
+
/**
|
|
14058
|
+
* @generated from message wg.cosmo.platform.v1.GetOrganizationWebhookHistoryRequest
|
|
14059
|
+
*/
|
|
14060
|
+
export class GetOrganizationWebhookHistoryRequest extends Message {
|
|
14061
|
+
/**
|
|
14062
|
+
* @generated from field: wg.cosmo.platform.v1.Pagination pagination = 1;
|
|
14063
|
+
*/
|
|
14064
|
+
pagination;
|
|
14065
|
+
/**
|
|
14066
|
+
* @generated from field: wg.cosmo.platform.v1.DateRange date_range = 2;
|
|
14067
|
+
*/
|
|
14068
|
+
dateRange;
|
|
14069
|
+
/**
|
|
14070
|
+
* @generated from field: optional string filter_by_type = 3;
|
|
14071
|
+
*/
|
|
14072
|
+
filterByType;
|
|
14073
|
+
constructor(data) {
|
|
14074
|
+
super();
|
|
14075
|
+
proto3.util.initPartial(data, this);
|
|
14076
|
+
}
|
|
14077
|
+
static runtime = proto3;
|
|
14078
|
+
static typeName = "wg.cosmo.platform.v1.GetOrganizationWebhookHistoryRequest";
|
|
14079
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14080
|
+
{ no: 1, name: "pagination", kind: "message", T: Pagination },
|
|
14081
|
+
{ no: 2, name: "date_range", kind: "message", T: DateRange },
|
|
14082
|
+
{ no: 3, name: "filter_by_type", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
14083
|
+
]);
|
|
14084
|
+
static fromBinary(bytes, options) {
|
|
14085
|
+
return new GetOrganizationWebhookHistoryRequest().fromBinary(bytes, options);
|
|
14086
|
+
}
|
|
14087
|
+
static fromJson(jsonValue, options) {
|
|
14088
|
+
return new GetOrganizationWebhookHistoryRequest().fromJson(jsonValue, options);
|
|
14089
|
+
}
|
|
14090
|
+
static fromJsonString(jsonString, options) {
|
|
14091
|
+
return new GetOrganizationWebhookHistoryRequest().fromJsonString(jsonString, options);
|
|
14092
|
+
}
|
|
14093
|
+
static equals(a, b) {
|
|
14094
|
+
return proto3.util.equals(GetOrganizationWebhookHistoryRequest, a, b);
|
|
14095
|
+
}
|
|
14096
|
+
}
|
|
14097
|
+
/**
|
|
14098
|
+
* @generated from message wg.cosmo.platform.v1.WebhookDelivery
|
|
14099
|
+
*/
|
|
14100
|
+
export class WebhookDelivery extends Message {
|
|
14101
|
+
/**
|
|
14102
|
+
* @generated from field: string id = 1;
|
|
14103
|
+
*/
|
|
14104
|
+
id = "";
|
|
14105
|
+
/**
|
|
14106
|
+
* @generated from field: string created_at = 2;
|
|
14107
|
+
*/
|
|
14108
|
+
createdAt = "";
|
|
14109
|
+
/**
|
|
14110
|
+
* @generated from field: optional string created_by = 3;
|
|
14111
|
+
*/
|
|
14112
|
+
createdBy;
|
|
14113
|
+
/**
|
|
14114
|
+
* @generated from field: string type = 4;
|
|
14115
|
+
*/
|
|
14116
|
+
type = "";
|
|
14117
|
+
/**
|
|
14118
|
+
* @generated from field: string endpoint = 5;
|
|
14119
|
+
*/
|
|
14120
|
+
endpoint = "";
|
|
14121
|
+
/**
|
|
14122
|
+
* @generated from field: string event_name = 6;
|
|
14123
|
+
*/
|
|
14124
|
+
eventName = "";
|
|
14125
|
+
/**
|
|
14126
|
+
* @generated from field: string payload = 7;
|
|
14127
|
+
*/
|
|
14128
|
+
payload = "";
|
|
14129
|
+
/**
|
|
14130
|
+
* @generated from field: string request_headers = 8;
|
|
14131
|
+
*/
|
|
14132
|
+
requestHeaders = "";
|
|
14133
|
+
/**
|
|
14134
|
+
* @generated from field: optional string response_headers = 9;
|
|
14135
|
+
*/
|
|
14136
|
+
responseHeaders;
|
|
14137
|
+
/**
|
|
14138
|
+
* @generated from field: optional int32 response_status_code = 10;
|
|
14139
|
+
*/
|
|
14140
|
+
responseStatusCode;
|
|
14141
|
+
/**
|
|
14142
|
+
* @generated from field: optional string response_error_code = 11;
|
|
14143
|
+
*/
|
|
14144
|
+
responseErrorCode;
|
|
14145
|
+
/**
|
|
14146
|
+
* @generated from field: optional string error_message = 12;
|
|
14147
|
+
*/
|
|
14148
|
+
errorMessage;
|
|
14149
|
+
/**
|
|
14150
|
+
* @generated from field: optional string response_body = 13;
|
|
14151
|
+
*/
|
|
14152
|
+
responseBody;
|
|
14153
|
+
/**
|
|
14154
|
+
* @generated from field: int32 retry_count = 14;
|
|
14155
|
+
*/
|
|
14156
|
+
retryCount = 0;
|
|
14157
|
+
/**
|
|
14158
|
+
* @generated from field: float duration = 15;
|
|
14159
|
+
*/
|
|
14160
|
+
duration = 0;
|
|
14161
|
+
/**
|
|
14162
|
+
* @generated from field: bool is_redelivery = 16;
|
|
14163
|
+
*/
|
|
14164
|
+
isRedelivery = false;
|
|
14165
|
+
constructor(data) {
|
|
14166
|
+
super();
|
|
14167
|
+
proto3.util.initPartial(data, this);
|
|
14168
|
+
}
|
|
14169
|
+
static runtime = proto3;
|
|
14170
|
+
static typeName = "wg.cosmo.platform.v1.WebhookDelivery";
|
|
14171
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14172
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14173
|
+
{ no: 2, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14174
|
+
{ no: 3, name: "created_by", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
14175
|
+
{ no: 4, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14176
|
+
{ no: 5, name: "endpoint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14177
|
+
{ no: 6, name: "event_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14178
|
+
{ no: 7, name: "payload", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14179
|
+
{ no: 8, name: "request_headers", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14180
|
+
{ no: 9, name: "response_headers", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
14181
|
+
{ no: 10, name: "response_status_code", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
14182
|
+
{ no: 11, name: "response_error_code", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
14183
|
+
{ no: 12, name: "error_message", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
14184
|
+
{ no: 13, name: "response_body", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
14185
|
+
{ no: 14, name: "retry_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
14186
|
+
{ no: 15, name: "duration", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
14187
|
+
{ no: 16, name: "is_redelivery", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
14188
|
+
]);
|
|
14189
|
+
static fromBinary(bytes, options) {
|
|
14190
|
+
return new WebhookDelivery().fromBinary(bytes, options);
|
|
14191
|
+
}
|
|
14192
|
+
static fromJson(jsonValue, options) {
|
|
14193
|
+
return new WebhookDelivery().fromJson(jsonValue, options);
|
|
14194
|
+
}
|
|
14195
|
+
static fromJsonString(jsonString, options) {
|
|
14196
|
+
return new WebhookDelivery().fromJsonString(jsonString, options);
|
|
14197
|
+
}
|
|
14198
|
+
static equals(a, b) {
|
|
14199
|
+
return proto3.util.equals(WebhookDelivery, a, b);
|
|
14200
|
+
}
|
|
14201
|
+
}
|
|
14202
|
+
/**
|
|
14203
|
+
* @generated from message wg.cosmo.platform.v1.GetOrganizationWebhookHistoryResponse
|
|
14204
|
+
*/
|
|
14205
|
+
export class GetOrganizationWebhookHistoryResponse extends Message {
|
|
14206
|
+
/**
|
|
14207
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
14208
|
+
*/
|
|
14209
|
+
response;
|
|
14210
|
+
/**
|
|
14211
|
+
* @generated from field: repeated wg.cosmo.platform.v1.WebhookDelivery deliveries = 2;
|
|
14212
|
+
*/
|
|
14213
|
+
deliveries = [];
|
|
14214
|
+
/**
|
|
14215
|
+
* @generated from field: int32 total_count = 3;
|
|
14216
|
+
*/
|
|
14217
|
+
totalCount = 0;
|
|
14218
|
+
constructor(data) {
|
|
14219
|
+
super();
|
|
14220
|
+
proto3.util.initPartial(data, this);
|
|
14221
|
+
}
|
|
14222
|
+
static runtime = proto3;
|
|
14223
|
+
static typeName = "wg.cosmo.platform.v1.GetOrganizationWebhookHistoryResponse";
|
|
14224
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14225
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
14226
|
+
{ no: 2, name: "deliveries", kind: "message", T: WebhookDelivery, repeated: true },
|
|
14227
|
+
{ no: 3, name: "total_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
14228
|
+
]);
|
|
14229
|
+
static fromBinary(bytes, options) {
|
|
14230
|
+
return new GetOrganizationWebhookHistoryResponse().fromBinary(bytes, options);
|
|
14231
|
+
}
|
|
14232
|
+
static fromJson(jsonValue, options) {
|
|
14233
|
+
return new GetOrganizationWebhookHistoryResponse().fromJson(jsonValue, options);
|
|
14234
|
+
}
|
|
14235
|
+
static fromJsonString(jsonString, options) {
|
|
14236
|
+
return new GetOrganizationWebhookHistoryResponse().fromJsonString(jsonString, options);
|
|
14237
|
+
}
|
|
14238
|
+
static equals(a, b) {
|
|
14239
|
+
return proto3.util.equals(GetOrganizationWebhookHistoryResponse, a, b);
|
|
14240
|
+
}
|
|
14241
|
+
}
|
|
14242
|
+
/**
|
|
14243
|
+
* @generated from message wg.cosmo.platform.v1.RedeliverWebhookRequest
|
|
14244
|
+
*/
|
|
14245
|
+
export class RedeliverWebhookRequest extends Message {
|
|
14246
|
+
/**
|
|
14247
|
+
* @generated from field: string id = 1;
|
|
14248
|
+
*/
|
|
14249
|
+
id = "";
|
|
14250
|
+
constructor(data) {
|
|
14251
|
+
super();
|
|
14252
|
+
proto3.util.initPartial(data, this);
|
|
14253
|
+
}
|
|
14254
|
+
static runtime = proto3;
|
|
14255
|
+
static typeName = "wg.cosmo.platform.v1.RedeliverWebhookRequest";
|
|
14256
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14257
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14258
|
+
]);
|
|
14259
|
+
static fromBinary(bytes, options) {
|
|
14260
|
+
return new RedeliverWebhookRequest().fromBinary(bytes, options);
|
|
14261
|
+
}
|
|
14262
|
+
static fromJson(jsonValue, options) {
|
|
14263
|
+
return new RedeliverWebhookRequest().fromJson(jsonValue, options);
|
|
14264
|
+
}
|
|
14265
|
+
static fromJsonString(jsonString, options) {
|
|
14266
|
+
return new RedeliverWebhookRequest().fromJsonString(jsonString, options);
|
|
14267
|
+
}
|
|
14268
|
+
static equals(a, b) {
|
|
14269
|
+
return proto3.util.equals(RedeliverWebhookRequest, a, b);
|
|
14270
|
+
}
|
|
14271
|
+
}
|
|
14272
|
+
/**
|
|
14273
|
+
* @generated from message wg.cosmo.platform.v1.RedeliverWebhookResponse
|
|
14274
|
+
*/
|
|
14275
|
+
export class RedeliverWebhookResponse extends Message {
|
|
14276
|
+
/**
|
|
14277
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
14278
|
+
*/
|
|
14279
|
+
response;
|
|
14280
|
+
constructor(data) {
|
|
14281
|
+
super();
|
|
14282
|
+
proto3.util.initPartial(data, this);
|
|
14283
|
+
}
|
|
14284
|
+
static runtime = proto3;
|
|
14285
|
+
static typeName = "wg.cosmo.platform.v1.RedeliverWebhookResponse";
|
|
14286
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14287
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
14288
|
+
]);
|
|
14289
|
+
static fromBinary(bytes, options) {
|
|
14290
|
+
return new RedeliverWebhookResponse().fromBinary(bytes, options);
|
|
14291
|
+
}
|
|
14292
|
+
static fromJson(jsonValue, options) {
|
|
14293
|
+
return new RedeliverWebhookResponse().fromJson(jsonValue, options);
|
|
14294
|
+
}
|
|
14295
|
+
static fromJsonString(jsonString, options) {
|
|
14296
|
+
return new RedeliverWebhookResponse().fromJsonString(jsonString, options);
|
|
14297
|
+
}
|
|
14298
|
+
static equals(a, b) {
|
|
14299
|
+
return proto3.util.equals(RedeliverWebhookResponse, a, b);
|
|
14300
|
+
}
|
|
14301
|
+
}
|
|
14302
|
+
/**
|
|
14303
|
+
* @generated from message wg.cosmo.platform.v1.GetWebhookDeliveryDetailsRequest
|
|
14304
|
+
*/
|
|
14305
|
+
export class GetWebhookDeliveryDetailsRequest extends Message {
|
|
14306
|
+
/**
|
|
14307
|
+
* @generated from field: string id = 1;
|
|
14308
|
+
*/
|
|
14309
|
+
id = "";
|
|
14310
|
+
constructor(data) {
|
|
14311
|
+
super();
|
|
14312
|
+
proto3.util.initPartial(data, this);
|
|
14313
|
+
}
|
|
14314
|
+
static runtime = proto3;
|
|
14315
|
+
static typeName = "wg.cosmo.platform.v1.GetWebhookDeliveryDetailsRequest";
|
|
14316
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14317
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
14318
|
+
]);
|
|
14319
|
+
static fromBinary(bytes, options) {
|
|
14320
|
+
return new GetWebhookDeliveryDetailsRequest().fromBinary(bytes, options);
|
|
14321
|
+
}
|
|
14322
|
+
static fromJson(jsonValue, options) {
|
|
14323
|
+
return new GetWebhookDeliveryDetailsRequest().fromJson(jsonValue, options);
|
|
14324
|
+
}
|
|
14325
|
+
static fromJsonString(jsonString, options) {
|
|
14326
|
+
return new GetWebhookDeliveryDetailsRequest().fromJsonString(jsonString, options);
|
|
14327
|
+
}
|
|
14328
|
+
static equals(a, b) {
|
|
14329
|
+
return proto3.util.equals(GetWebhookDeliveryDetailsRequest, a, b);
|
|
14330
|
+
}
|
|
14331
|
+
}
|
|
14332
|
+
/**
|
|
14333
|
+
* @generated from message wg.cosmo.platform.v1.GetWebhookDeliveryDetailsResponse
|
|
14334
|
+
*/
|
|
14335
|
+
export class GetWebhookDeliveryDetailsResponse extends Message {
|
|
14336
|
+
/**
|
|
14337
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
14338
|
+
*/
|
|
14339
|
+
response;
|
|
14340
|
+
/**
|
|
14341
|
+
* @generated from field: wg.cosmo.platform.v1.WebhookDelivery delivery = 2;
|
|
14342
|
+
*/
|
|
14343
|
+
delivery;
|
|
14344
|
+
constructor(data) {
|
|
14345
|
+
super();
|
|
14346
|
+
proto3.util.initPartial(data, this);
|
|
14347
|
+
}
|
|
14348
|
+
static runtime = proto3;
|
|
14349
|
+
static typeName = "wg.cosmo.platform.v1.GetWebhookDeliveryDetailsResponse";
|
|
14350
|
+
static fields = proto3.util.newFieldList(() => [
|
|
14351
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
14352
|
+
{ no: 2, name: "delivery", kind: "message", T: WebhookDelivery },
|
|
14353
|
+
]);
|
|
14354
|
+
static fromBinary(bytes, options) {
|
|
14355
|
+
return new GetWebhookDeliveryDetailsResponse().fromBinary(bytes, options);
|
|
14356
|
+
}
|
|
14357
|
+
static fromJson(jsonValue, options) {
|
|
14358
|
+
return new GetWebhookDeliveryDetailsResponse().fromJson(jsonValue, options);
|
|
14359
|
+
}
|
|
14360
|
+
static fromJsonString(jsonString, options) {
|
|
14361
|
+
return new GetWebhookDeliveryDetailsResponse().fromJsonString(jsonString, options);
|
|
14362
|
+
}
|
|
14363
|
+
static equals(a, b) {
|
|
14364
|
+
return proto3.util.equals(GetWebhookDeliveryDetailsResponse, a, b);
|
|
14365
|
+
}
|
|
14366
|
+
}
|
|
13912
14367
|
//# sourceMappingURL=platform_pb.js.map
|