@@ -97,7 +97,7 @@ public struct Client: APIProtocol {
97
97
switch chosenContentType {
98
98
case " application/json " :
99
99
body = try await converter. getResponseBodyAsJSON (
100
- Components . Schemas. ArrayOfMetadataAPNSTokens . self,
100
+ Components . Schemas. ArrayOfAPNSTokenResponses . self,
101
101
from: responseBody,
102
102
transforming: { value in
103
103
. json( value)
@@ -230,7 +230,7 @@ public struct Client: APIProtocol {
230
230
switch chosenContentType {
231
231
case " application/json " :
232
232
body = try await converter. getResponseBodyAsJSON (
233
- Components . Schemas. MetadataAPNSToken . self,
233
+ Components . Schemas. APNSTokenResponse . self,
234
234
from: responseBody,
235
235
transforming: { value in
236
236
. json( value)
@@ -373,7 +373,7 @@ public struct Client: APIProtocol {
373
373
switch chosenContentType {
374
374
case " application/json " :
375
375
body = try await converter. getResponseBodyAsJSON (
376
- Components . Schemas. ArrayOfMetadataExpoTokens . self,
376
+ Components . Schemas. ArrayOfExpoTokenResponses . self,
377
377
from: responseBody,
378
378
transforming: { value in
379
379
. json( value)
@@ -506,7 +506,7 @@ public struct Client: APIProtocol {
506
506
switch chosenContentType {
507
507
case " application/json " :
508
508
body = try await converter. getResponseBodyAsJSON (
509
- Components . Schemas. MetadataExpoToken . self,
509
+ Components . Schemas. ExpoTokenResponse . self,
510
510
from: responseBody,
511
511
transforming: { value in
512
512
. json( value)
@@ -649,7 +649,7 @@ public struct Client: APIProtocol {
649
649
switch chosenContentType {
650
650
case " application/json " :
651
651
body = try await converter. getResponseBodyAsJSON (
652
- Components . Schemas. ArrayOfMetadataFCMTokens . self,
652
+ Components . Schemas. ArrayOfFCMTokenResponses . self,
653
653
from: responseBody,
654
654
transforming: { value in
655
655
. json( value)
@@ -782,7 +782,7 @@ public struct Client: APIProtocol {
782
782
switch chosenContentType {
783
783
case " application/json " :
784
784
body = try await converter. getResponseBodyAsJSON (
785
- Components . Schemas. MetadataFCMToken . self,
785
+ Components . Schemas. FCMTokenResponse . self,
786
786
from: responseBody,
787
787
transforming: { value in
788
788
. json( value)
@@ -925,7 +925,7 @@ public struct Client: APIProtocol {
925
925
switch chosenContentType {
926
926
case " application/json " :
927
927
body = try await converter. getResponseBodyAsJSON (
928
- Components . Schemas. ArrayOfMetadataSlackTokens . self,
928
+ Components . Schemas. ArrayOfSlackTokenResponses . self,
929
929
from: responseBody,
930
930
transforming: { value in
931
931
. json( value)
@@ -1058,7 +1058,7 @@ public struct Client: APIProtocol {
1058
1058
switch chosenContentType {
1059
1059
case " application/json " :
1060
1060
body = try await converter. getResponseBodyAsJSON (
1061
- Components . Schemas. MetadataSlackToken . self,
1061
+ Components . Schemas. SlackTokenResponse . self,
1062
1062
from: responseBody,
1063
1063
transforming: { value in
1064
1064
. json( value)
@@ -1201,7 +1201,7 @@ public struct Client: APIProtocol {
1201
1201
switch chosenContentType {
1202
1202
case " application/json " :
1203
1203
body = try await converter. getResponseBodyAsJSON (
1204
- Components . Schemas. ArrayOfMetadataTeamsTokens . self,
1204
+ Components . Schemas. ArrayOfTeamsTokenResponses . self,
1205
1205
from: responseBody,
1206
1206
transforming: { value in
1207
1207
. json( value)
@@ -1334,7 +1334,7 @@ public struct Client: APIProtocol {
1334
1334
switch chosenContentType {
1335
1335
case " application/json " :
1336
1336
body = try await converter. getResponseBodyAsJSON (
1337
- Components . Schemas. MetadataTeamsToken . self,
1337
+ Components . Schemas. TeamsTokenResponse . self,
1338
1338
from: responseBody,
1339
1339
transforming: { value in
1340
1340
. json( value)
@@ -1477,7 +1477,7 @@ public struct Client: APIProtocol {
1477
1477
switch chosenContentType {
1478
1478
case " application/json " :
1479
1479
body = try await converter. getResponseBodyAsJSON (
1480
- Components . Schemas. ArrayOfMetadataWebPushTokens . self,
1480
+ Components . Schemas. ArrayOfWebPushTokenResponses . self,
1481
1481
from: responseBody,
1482
1482
transforming: { value in
1483
1483
. json( value)
@@ -1610,7 +1610,7 @@ public struct Client: APIProtocol {
1610
1610
switch chosenContentType {
1611
1611
case " application/json " :
1612
1612
body = try await converter. getResponseBodyAsJSON (
1613
- Components . Schemas. MetadataWebPushToken . self,
1613
+ Components . Schemas. WebPushTokenResponse . self,
1614
1614
from: responseBody,
1615
1615
transforming: { value in
1616
1616
. json( value)
0 commit comments