@miradorlabs/web-grpc 2.14.0 → 2.15.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miradorlabs/web-grpc",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "Generated gRPC (grpc-js) client stubs for the Mirador web gateway.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -19,6 +19,7 @@ export enum IntegrationType {
19
19
  INTEGRATION_TYPE_WEBHOOK = 1,
20
20
  INTEGRATION_TYPE_SLACK = 2,
21
21
  INTEGRATION_TYPE_EMAIL = 3,
22
+ INTEGRATION_TYPE_PAGERDUTY = 4,
22
23
  UNRECOGNIZED = -1,
23
24
  }
24
25
 
@@ -36,6 +37,9 @@ export function integrationTypeFromJSON(object: any): IntegrationType {
36
37
  case 3:
37
38
  case "INTEGRATION_TYPE_EMAIL":
38
39
  return IntegrationType.INTEGRATION_TYPE_EMAIL;
40
+ case 4:
41
+ case "INTEGRATION_TYPE_PAGERDUTY":
42
+ return IntegrationType.INTEGRATION_TYPE_PAGERDUTY;
39
43
  case -1:
40
44
  case "UNRECOGNIZED":
41
45
  default:
@@ -53,6 +57,8 @@ export function integrationTypeToJSON(object: IntegrationType): string {
53
57
  return "INTEGRATION_TYPE_SLACK";
54
58
  case IntegrationType.INTEGRATION_TYPE_EMAIL:
55
59
  return "INTEGRATION_TYPE_EMAIL";
60
+ case IntegrationType.INTEGRATION_TYPE_PAGERDUTY:
61
+ return "INTEGRATION_TYPE_PAGERDUTY";
56
62
  case IntegrationType.UNRECOGNIZED:
57
63
  default:
58
64
  return "UNRECOGNIZED";
@@ -152,6 +158,7 @@ export interface Integration {
152
158
  webhookConfig?: WebhookConfig | undefined;
153
159
  slackConfig?: SlackConfig | undefined;
154
160
  emailConfig?: EmailConfig | undefined;
161
+ pagerdutyConfig?: PagerDutyConfig | undefined;
155
162
  createdAt: Date | undefined;
156
163
  updatedAt: Date | undefined;
157
164
  }
@@ -177,6 +184,11 @@ export interface EmailConfig {
177
184
  recipients: string[];
178
185
  }
179
186
 
187
+ export interface PagerDutyConfig {
188
+ serviceId: string;
189
+ serviceName: string;
190
+ }
191
+
180
192
  export interface Rule {
181
193
  id: string;
182
194
  projectId: string;
@@ -196,6 +208,7 @@ export interface CreateIntegrationRequest {
196
208
  webhookConfig?: WebhookConfig | undefined;
197
209
  slackConfig?: SlackConfig | undefined;
198
210
  emailConfig?: EmailConfig | undefined;
211
+ pagerdutyConfig?: PagerDutyConfig | undefined;
199
212
  }
200
213
 
201
214
  export interface CreateIntegrationResponse {
@@ -235,6 +248,7 @@ export interface UpdateIntegrationRequest_IntegrationUpdates {
235
248
  webhookConfig?: WebhookConfig | undefined;
236
249
  slackConfig?: SlackConfig | undefined;
237
250
  emailConfig?: EmailConfig | undefined;
251
+ pagerdutyConfig?: PagerDutyConfig | undefined;
238
252
  }
239
253
 
240
254
  export interface UpdateIntegrationResponse {
@@ -416,6 +430,7 @@ export interface IntegrationDelivery {
416
430
  webhook?: WebhookDestination | undefined;
417
431
  email?: EmailDestination | undefined;
418
432
  slack?: SlackDestination | undefined;
433
+ pagerduty?: PagerDutyDestination | undefined;
419
434
  }
420
435
 
421
436
  export interface WebhookDestination {
@@ -432,6 +447,11 @@ export interface SlackDestination {
432
447
  channelName: string;
433
448
  }
434
449
 
450
+ export interface PagerDutyDestination {
451
+ serviceId: string;
452
+ serviceName: string;
453
+ }
454
+
435
455
  function createBaseIntegration(): Integration {
436
456
  return {
437
457
  id: "",
@@ -442,6 +462,7 @@ function createBaseIntegration(): Integration {
442
462
  webhookConfig: undefined,
443
463
  slackConfig: undefined,
444
464
  emailConfig: undefined,
465
+ pagerdutyConfig: undefined,
445
466
  createdAt: undefined,
446
467
  updatedAt: undefined,
447
468
  };
@@ -473,6 +494,9 @@ export const Integration: MessageFns<Integration> = {
473
494
  if (message.emailConfig !== undefined) {
474
495
  EmailConfig.encode(message.emailConfig, writer.uint32(66).fork()).join();
475
496
  }
497
+ if (message.pagerdutyConfig !== undefined) {
498
+ PagerDutyConfig.encode(message.pagerdutyConfig, writer.uint32(90).fork()).join();
499
+ }
476
500
  if (message.createdAt !== undefined) {
477
501
  Timestamp.encode(toTimestamp(message.createdAt), writer.uint32(74).fork()).join();
478
502
  }
@@ -553,6 +577,14 @@ export const Integration: MessageFns<Integration> = {
553
577
  message.emailConfig = EmailConfig.decode(reader, reader.uint32());
554
578
  continue;
555
579
  }
580
+ case 11: {
581
+ if (tag !== 90) {
582
+ break;
583
+ }
584
+
585
+ message.pagerdutyConfig = PagerDutyConfig.decode(reader, reader.uint32());
586
+ continue;
587
+ }
556
588
  case 9: {
557
589
  if (tag !== 74) {
558
590
  break;
@@ -604,6 +636,11 @@ export const Integration: MessageFns<Integration> = {
604
636
  : isSet(object.email_config)
605
637
  ? EmailConfig.fromJSON(object.email_config)
606
638
  : undefined,
639
+ pagerdutyConfig: isSet(object.pagerdutyConfig)
640
+ ? PagerDutyConfig.fromJSON(object.pagerdutyConfig)
641
+ : isSet(object.pagerduty_config)
642
+ ? PagerDutyConfig.fromJSON(object.pagerduty_config)
643
+ : undefined,
607
644
  createdAt: isSet(object.createdAt)
608
645
  ? fromJsonTimestamp(object.createdAt)
609
646
  : isSet(object.created_at)
@@ -643,6 +680,9 @@ export const Integration: MessageFns<Integration> = {
643
680
  if (message.emailConfig !== undefined) {
644
681
  obj.emailConfig = EmailConfig.toJSON(message.emailConfig);
645
682
  }
683
+ if (message.pagerdutyConfig !== undefined) {
684
+ obj.pagerdutyConfig = PagerDutyConfig.toJSON(message.pagerdutyConfig);
685
+ }
646
686
  if (message.createdAt !== undefined) {
647
687
  obj.createdAt = message.createdAt.toISOString();
648
688
  }
@@ -671,6 +711,9 @@ export const Integration: MessageFns<Integration> = {
671
711
  message.emailConfig = (object.emailConfig !== undefined && object.emailConfig !== null)
672
712
  ? EmailConfig.fromPartial(object.emailConfig)
673
713
  : undefined;
714
+ message.pagerdutyConfig = (object.pagerdutyConfig !== undefined && object.pagerdutyConfig !== null)
715
+ ? PagerDutyConfig.fromPartial(object.pagerdutyConfig)
716
+ : undefined;
674
717
  message.createdAt = object.createdAt ?? undefined;
675
718
  message.updatedAt = object.updatedAt ?? undefined;
676
719
  return message;
@@ -1040,6 +1083,90 @@ export const EmailConfig: MessageFns<EmailConfig> = {
1040
1083
  },
1041
1084
  };
1042
1085
 
1086
+ function createBasePagerDutyConfig(): PagerDutyConfig {
1087
+ return { serviceId: "", serviceName: "" };
1088
+ }
1089
+
1090
+ export const PagerDutyConfig: MessageFns<PagerDutyConfig> = {
1091
+ encode(message: PagerDutyConfig, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {
1092
+ if (message.serviceId !== "") {
1093
+ writer.uint32(10).string(message.serviceId);
1094
+ }
1095
+ if (message.serviceName !== "") {
1096
+ writer.uint32(18).string(message.serviceName);
1097
+ }
1098
+ return writer;
1099
+ },
1100
+
1101
+ decode(input: BinaryReader | Uint8Array, length?: number): PagerDutyConfig {
1102
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
1103
+ const end = length === undefined ? reader.len : reader.pos + length;
1104
+ const message = createBasePagerDutyConfig();
1105
+ while (reader.pos < end) {
1106
+ const tag = reader.uint32();
1107
+ switch (tag >>> 3) {
1108
+ case 1: {
1109
+ if (tag !== 10) {
1110
+ break;
1111
+ }
1112
+
1113
+ message.serviceId = reader.string();
1114
+ continue;
1115
+ }
1116
+ case 2: {
1117
+ if (tag !== 18) {
1118
+ break;
1119
+ }
1120
+
1121
+ message.serviceName = reader.string();
1122
+ continue;
1123
+ }
1124
+ }
1125
+ if ((tag & 7) === 4 || tag === 0) {
1126
+ break;
1127
+ }
1128
+ reader.skip(tag & 7);
1129
+ }
1130
+ return message;
1131
+ },
1132
+
1133
+ fromJSON(object: any): PagerDutyConfig {
1134
+ return {
1135
+ serviceId: isSet(object.serviceId)
1136
+ ? globalThis.String(object.serviceId)
1137
+ : isSet(object.service_id)
1138
+ ? globalThis.String(object.service_id)
1139
+ : "",
1140
+ serviceName: isSet(object.serviceName)
1141
+ ? globalThis.String(object.serviceName)
1142
+ : isSet(object.service_name)
1143
+ ? globalThis.String(object.service_name)
1144
+ : "",
1145
+ };
1146
+ },
1147
+
1148
+ toJSON(message: PagerDutyConfig): unknown {
1149
+ const obj: any = {};
1150
+ if (message.serviceId !== "") {
1151
+ obj.serviceId = message.serviceId;
1152
+ }
1153
+ if (message.serviceName !== "") {
1154
+ obj.serviceName = message.serviceName;
1155
+ }
1156
+ return obj;
1157
+ },
1158
+
1159
+ create<I extends Exact<DeepPartial<PagerDutyConfig>, I>>(base?: I): PagerDutyConfig {
1160
+ return PagerDutyConfig.fromPartial(base ?? ({} as any));
1161
+ },
1162
+ fromPartial<I extends Exact<DeepPartial<PagerDutyConfig>, I>>(object: I): PagerDutyConfig {
1163
+ const message = createBasePagerDutyConfig();
1164
+ message.serviceId = object.serviceId ?? "";
1165
+ message.serviceName = object.serviceName ?? "";
1166
+ return message;
1167
+ },
1168
+ };
1169
+
1043
1170
  function createBaseRule(): Rule {
1044
1171
  return {
1045
1172
  id: "",
@@ -1266,6 +1393,7 @@ function createBaseCreateIntegrationRequest(): CreateIntegrationRequest {
1266
1393
  webhookConfig: undefined,
1267
1394
  slackConfig: undefined,
1268
1395
  emailConfig: undefined,
1396
+ pagerdutyConfig: undefined,
1269
1397
  };
1270
1398
  }
1271
1399
 
@@ -1289,6 +1417,9 @@ export const CreateIntegrationRequest: MessageFns<CreateIntegrationRequest> = {
1289
1417
  if (message.emailConfig !== undefined) {
1290
1418
  EmailConfig.encode(message.emailConfig, writer.uint32(50).fork()).join();
1291
1419
  }
1420
+ if (message.pagerdutyConfig !== undefined) {
1421
+ PagerDutyConfig.encode(message.pagerdutyConfig, writer.uint32(58).fork()).join();
1422
+ }
1292
1423
  return writer;
1293
1424
  },
1294
1425
 
@@ -1347,6 +1478,14 @@ export const CreateIntegrationRequest: MessageFns<CreateIntegrationRequest> = {
1347
1478
  message.emailConfig = EmailConfig.decode(reader, reader.uint32());
1348
1479
  continue;
1349
1480
  }
1481
+ case 7: {
1482
+ if (tag !== 58) {
1483
+ break;
1484
+ }
1485
+
1486
+ message.pagerdutyConfig = PagerDutyConfig.decode(reader, reader.uint32());
1487
+ continue;
1488
+ }
1350
1489
  }
1351
1490
  if ((tag & 7) === 4 || tag === 0) {
1352
1491
  break;
@@ -1380,6 +1519,11 @@ export const CreateIntegrationRequest: MessageFns<CreateIntegrationRequest> = {
1380
1519
  : isSet(object.email_config)
1381
1520
  ? EmailConfig.fromJSON(object.email_config)
1382
1521
  : undefined,
1522
+ pagerdutyConfig: isSet(object.pagerdutyConfig)
1523
+ ? PagerDutyConfig.fromJSON(object.pagerdutyConfig)
1524
+ : isSet(object.pagerduty_config)
1525
+ ? PagerDutyConfig.fromJSON(object.pagerduty_config)
1526
+ : undefined,
1383
1527
  };
1384
1528
  },
1385
1529
 
@@ -1403,6 +1547,9 @@ export const CreateIntegrationRequest: MessageFns<CreateIntegrationRequest> = {
1403
1547
  if (message.emailConfig !== undefined) {
1404
1548
  obj.emailConfig = EmailConfig.toJSON(message.emailConfig);
1405
1549
  }
1550
+ if (message.pagerdutyConfig !== undefined) {
1551
+ obj.pagerdutyConfig = PagerDutyConfig.toJSON(message.pagerdutyConfig);
1552
+ }
1406
1553
  return obj;
1407
1554
  },
1408
1555
 
@@ -1423,6 +1570,9 @@ export const CreateIntegrationRequest: MessageFns<CreateIntegrationRequest> = {
1423
1570
  message.emailConfig = (object.emailConfig !== undefined && object.emailConfig !== null)
1424
1571
  ? EmailConfig.fromPartial(object.emailConfig)
1425
1572
  : undefined;
1573
+ message.pagerdutyConfig = (object.pagerdutyConfig !== undefined && object.pagerdutyConfig !== null)
1574
+ ? PagerDutyConfig.fromPartial(object.pagerdutyConfig)
1575
+ : undefined;
1426
1576
  return message;
1427
1577
  },
1428
1578
  };
@@ -1944,6 +2094,7 @@ function createBaseUpdateIntegrationRequest_IntegrationUpdates(): UpdateIntegrat
1944
2094
  webhookConfig: undefined,
1945
2095
  slackConfig: undefined,
1946
2096
  emailConfig: undefined,
2097
+ pagerdutyConfig: undefined,
1947
2098
  };
1948
2099
  }
1949
2100
 
@@ -1967,6 +2118,9 @@ export const UpdateIntegrationRequest_IntegrationUpdates: MessageFns<UpdateInteg
1967
2118
  if (message.emailConfig !== undefined) {
1968
2119
  EmailConfig.encode(message.emailConfig, writer.uint32(42).fork()).join();
1969
2120
  }
2121
+ if (message.pagerdutyConfig !== undefined) {
2122
+ PagerDutyConfig.encode(message.pagerdutyConfig, writer.uint32(50).fork()).join();
2123
+ }
1970
2124
  return writer;
1971
2125
  },
1972
2126
 
@@ -2017,6 +2171,14 @@ export const UpdateIntegrationRequest_IntegrationUpdates: MessageFns<UpdateInteg
2017
2171
  message.emailConfig = EmailConfig.decode(reader, reader.uint32());
2018
2172
  continue;
2019
2173
  }
2174
+ case 6: {
2175
+ if (tag !== 50) {
2176
+ break;
2177
+ }
2178
+
2179
+ message.pagerdutyConfig = PagerDutyConfig.decode(reader, reader.uint32());
2180
+ continue;
2181
+ }
2020
2182
  }
2021
2183
  if ((tag & 7) === 4 || tag === 0) {
2022
2184
  break;
@@ -2045,6 +2207,11 @@ export const UpdateIntegrationRequest_IntegrationUpdates: MessageFns<UpdateInteg
2045
2207
  : isSet(object.email_config)
2046
2208
  ? EmailConfig.fromJSON(object.email_config)
2047
2209
  : undefined,
2210
+ pagerdutyConfig: isSet(object.pagerdutyConfig)
2211
+ ? PagerDutyConfig.fromJSON(object.pagerdutyConfig)
2212
+ : isSet(object.pagerduty_config)
2213
+ ? PagerDutyConfig.fromJSON(object.pagerduty_config)
2214
+ : undefined,
2048
2215
  };
2049
2216
  },
2050
2217
 
@@ -2065,6 +2232,9 @@ export const UpdateIntegrationRequest_IntegrationUpdates: MessageFns<UpdateInteg
2065
2232
  if (message.emailConfig !== undefined) {
2066
2233
  obj.emailConfig = EmailConfig.toJSON(message.emailConfig);
2067
2234
  }
2235
+ if (message.pagerdutyConfig !== undefined) {
2236
+ obj.pagerdutyConfig = PagerDutyConfig.toJSON(message.pagerdutyConfig);
2237
+ }
2068
2238
  return obj;
2069
2239
  },
2070
2240
 
@@ -2088,6 +2258,9 @@ export const UpdateIntegrationRequest_IntegrationUpdates: MessageFns<UpdateInteg
2088
2258
  message.emailConfig = (object.emailConfig !== undefined && object.emailConfig !== null)
2089
2259
  ? EmailConfig.fromPartial(object.emailConfig)
2090
2260
  : undefined;
2261
+ message.pagerdutyConfig = (object.pagerdutyConfig !== undefined && object.pagerdutyConfig !== null)
2262
+ ? PagerDutyConfig.fromPartial(object.pagerdutyConfig)
2263
+ : undefined;
2091
2264
  return message;
2092
2265
  },
2093
2266
  };
@@ -4845,6 +5018,7 @@ function createBaseIntegrationDelivery(): IntegrationDelivery {
4845
5018
  webhook: undefined,
4846
5019
  email: undefined,
4847
5020
  slack: undefined,
5021
+ pagerduty: undefined,
4848
5022
  };
4849
5023
  }
4850
5024
 
@@ -4892,6 +5066,9 @@ export const IntegrationDelivery: MessageFns<IntegrationDelivery> = {
4892
5066
  if (message.slack !== undefined) {
4893
5067
  SlackDestination.encode(message.slack, writer.uint32(178).fork()).join();
4894
5068
  }
5069
+ if (message.pagerduty !== undefined) {
5070
+ PagerDutyDestination.encode(message.pagerduty, writer.uint32(186).fork()).join();
5071
+ }
4895
5072
  return writer;
4896
5073
  },
4897
5074
 
@@ -5014,6 +5191,14 @@ export const IntegrationDelivery: MessageFns<IntegrationDelivery> = {
5014
5191
  message.slack = SlackDestination.decode(reader, reader.uint32());
5015
5192
  continue;
5016
5193
  }
5194
+ case 23: {
5195
+ if (tag !== 186) {
5196
+ break;
5197
+ }
5198
+
5199
+ message.pagerduty = PagerDutyDestination.decode(reader, reader.uint32());
5200
+ continue;
5201
+ }
5017
5202
  }
5018
5203
  if ((tag & 7) === 4 || tag === 0) {
5019
5204
  break;
@@ -5071,6 +5256,7 @@ export const IntegrationDelivery: MessageFns<IntegrationDelivery> = {
5071
5256
  webhook: isSet(object.webhook) ? WebhookDestination.fromJSON(object.webhook) : undefined,
5072
5257
  email: isSet(object.email) ? EmailDestination.fromJSON(object.email) : undefined,
5073
5258
  slack: isSet(object.slack) ? SlackDestination.fromJSON(object.slack) : undefined,
5259
+ pagerduty: isSet(object.pagerduty) ? PagerDutyDestination.fromJSON(object.pagerduty) : undefined,
5074
5260
  };
5075
5261
  },
5076
5262
 
@@ -5118,6 +5304,9 @@ export const IntegrationDelivery: MessageFns<IntegrationDelivery> = {
5118
5304
  if (message.slack !== undefined) {
5119
5305
  obj.slack = SlackDestination.toJSON(message.slack);
5120
5306
  }
5307
+ if (message.pagerduty !== undefined) {
5308
+ obj.pagerduty = PagerDutyDestination.toJSON(message.pagerduty);
5309
+ }
5121
5310
  return obj;
5122
5311
  },
5123
5312
 
@@ -5146,6 +5335,9 @@ export const IntegrationDelivery: MessageFns<IntegrationDelivery> = {
5146
5335
  message.slack = (object.slack !== undefined && object.slack !== null)
5147
5336
  ? SlackDestination.fromPartial(object.slack)
5148
5337
  : undefined;
5338
+ message.pagerduty = (object.pagerduty !== undefined && object.pagerduty !== null)
5339
+ ? PagerDutyDestination.fromPartial(object.pagerduty)
5340
+ : undefined;
5149
5341
  return message;
5150
5342
  },
5151
5343
  };
@@ -5376,6 +5568,90 @@ export const SlackDestination: MessageFns<SlackDestination> = {
5376
5568
  },
5377
5569
  };
5378
5570
 
5571
+ function createBasePagerDutyDestination(): PagerDutyDestination {
5572
+ return { serviceId: "", serviceName: "" };
5573
+ }
5574
+
5575
+ export const PagerDutyDestination: MessageFns<PagerDutyDestination> = {
5576
+ encode(message: PagerDutyDestination, writer: BinaryWriter = new BinaryWriter()): BinaryWriter {
5577
+ if (message.serviceId !== "") {
5578
+ writer.uint32(10).string(message.serviceId);
5579
+ }
5580
+ if (message.serviceName !== "") {
5581
+ writer.uint32(18).string(message.serviceName);
5582
+ }
5583
+ return writer;
5584
+ },
5585
+
5586
+ decode(input: BinaryReader | Uint8Array, length?: number): PagerDutyDestination {
5587
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
5588
+ const end = length === undefined ? reader.len : reader.pos + length;
5589
+ const message = createBasePagerDutyDestination();
5590
+ while (reader.pos < end) {
5591
+ const tag = reader.uint32();
5592
+ switch (tag >>> 3) {
5593
+ case 1: {
5594
+ if (tag !== 10) {
5595
+ break;
5596
+ }
5597
+
5598
+ message.serviceId = reader.string();
5599
+ continue;
5600
+ }
5601
+ case 2: {
5602
+ if (tag !== 18) {
5603
+ break;
5604
+ }
5605
+
5606
+ message.serviceName = reader.string();
5607
+ continue;
5608
+ }
5609
+ }
5610
+ if ((tag & 7) === 4 || tag === 0) {
5611
+ break;
5612
+ }
5613
+ reader.skip(tag & 7);
5614
+ }
5615
+ return message;
5616
+ },
5617
+
5618
+ fromJSON(object: any): PagerDutyDestination {
5619
+ return {
5620
+ serviceId: isSet(object.serviceId)
5621
+ ? globalThis.String(object.serviceId)
5622
+ : isSet(object.service_id)
5623
+ ? globalThis.String(object.service_id)
5624
+ : "",
5625
+ serviceName: isSet(object.serviceName)
5626
+ ? globalThis.String(object.serviceName)
5627
+ : isSet(object.service_name)
5628
+ ? globalThis.String(object.service_name)
5629
+ : "",
5630
+ };
5631
+ },
5632
+
5633
+ toJSON(message: PagerDutyDestination): unknown {
5634
+ const obj: any = {};
5635
+ if (message.serviceId !== "") {
5636
+ obj.serviceId = message.serviceId;
5637
+ }
5638
+ if (message.serviceName !== "") {
5639
+ obj.serviceName = message.serviceName;
5640
+ }
5641
+ return obj;
5642
+ },
5643
+
5644
+ create<I extends Exact<DeepPartial<PagerDutyDestination>, I>>(base?: I): PagerDutyDestination {
5645
+ return PagerDutyDestination.fromPartial(base ?? ({} as any));
5646
+ },
5647
+ fromPartial<I extends Exact<DeepPartial<PagerDutyDestination>, I>>(object: I): PagerDutyDestination {
5648
+ const message = createBasePagerDutyDestination();
5649
+ message.serviceId = object.serviceId ?? "";
5650
+ message.serviceName = object.serviceName ?? "";
5651
+ return message;
5652
+ },
5653
+ };
5654
+
5379
5655
  /** AutomationGatewayService provides web client access to automation management */
5380
5656
  export interface AutomationGatewayService {
5381
5657
  /** Integration operations */