tuix-email-service-client 0.0.21 → 0.0.23

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.
Files changed (33) hide show
  1. package/apis/ClientApi.js +6 -158
  2. package/apis/ClientApi.js.map +1 -1
  3. package/apis/ClientApi.ts +6 -246
  4. package/docs/ApplicationDTO.md +2 -0
  5. package/docs/ApplicationWithApplicationCountDTO.md +2 -0
  6. package/docs/ClientApi.md +7 -302
  7. package/docs/CreateApplicationDTO.md +2 -0
  8. package/docs/CreateSESConfigurationDTO.md +0 -2
  9. package/docs/SESConfigurationDTO.md +0 -2
  10. package/docs/UpdateApplicationDTO.md +2 -0
  11. package/docs/UpdateSESConfigurationDTO.md +0 -2
  12. package/models/ApplicationDTO.js +3 -0
  13. package/models/ApplicationDTO.js.map +1 -1
  14. package/models/ApplicationDTO.ts +16 -0
  15. package/models/ApplicationWithApplicationCountDTO.js +3 -0
  16. package/models/ApplicationWithApplicationCountDTO.js.map +1 -1
  17. package/models/ApplicationWithApplicationCountDTO.ts +16 -0
  18. package/models/CreateApplicationDTO.js +3 -0
  19. package/models/CreateApplicationDTO.js.map +1 -1
  20. package/models/CreateApplicationDTO.ts +16 -0
  21. package/models/CreateSESConfigurationDTO.js +0 -4
  22. package/models/CreateSESConfigurationDTO.js.map +1 -1
  23. package/models/CreateSESConfigurationDTO.ts +0 -9
  24. package/models/SESConfigurationDTO.js +0 -2
  25. package/models/SESConfigurationDTO.js.map +1 -1
  26. package/models/SESConfigurationDTO.ts +0 -8
  27. package/models/UpdateApplicationDTO.js +3 -0
  28. package/models/UpdateApplicationDTO.js.map +1 -1
  29. package/models/UpdateApplicationDTO.ts +16 -0
  30. package/models/UpdateSESConfigurationDTO.js +0 -2
  31. package/models/UpdateSESConfigurationDTO.js.map +1 -1
  32. package/models/UpdateSESConfigurationDTO.ts +0 -8
  33. package/package.json +1 -1
package/docs/ClientApi.md CHANGED
@@ -10,18 +10,14 @@ All URIs are relative to *http://0.0.0.0:3000*
10
10
  | [**apiSendEmail**](ClientApi.md#apisendemail) | **POST** /api/applications/{applicationId}/emails/send | Send an email |
11
11
  | [**createAccount**](ClientApi.md#createaccount) | **POST** /accounts | Creates a new account |
12
12
  | [**createApplication**](ClientApi.md#createapplication) | **POST** /applications | Create a new application |
13
- | [**createSESConfiguration**](ClientApi.md#createsesconfiguration) | **POST** /applications/{applicationId}/ses-configurations | Create the SES configuration for the application |
14
13
  | [**deleteApplication**](ClientApi.md#deleteapplication) | **DELETE** /applications/{applicationId} | Delete an application |
15
- | [**deleteSESConfiguration**](ClientApi.md#deletesesconfiguration) | **DELETE** /applications/{applicationId}/ses-configurations | Delete the SES configuration for the application |
16
14
  | [**deleteTemplate**](ClientApi.md#deletetemplate) | **DELETE** /applications/{applicationId}/templates/{id} | Delete an template |
17
15
  | [**getApplicationByID**](ClientApi.md#getapplicationbyid) | **GET** /applications/{applicationId} | Get an application by applicationId |
18
16
  | [**getApplications**](ClientApi.md#getapplications) | **GET** /applications | Get all applications for the account |
19
- | [**getSESConfiguration**](ClientApi.md#getsesconfiguration) | **GET** /applications/{applicationId}/ses-configurations | Get the SES configuration for the application |
20
17
  | [**getTemplate**](ClientApi.md#gettemplate) | **GET** /applications/{applicationId}/templates/{id} | Return a template |
21
18
  | [**getTemplates**](ClientApi.md#gettemplates) | **GET** /applications/{applicationId}/templates | Return all templates |
22
19
  | [**sendEmail**](ClientApi.md#sendemail) | **POST** /applications/{applicationId}/emails/send | Send an email |
23
20
  | [**updateApplication**](ClientApi.md#updateapplication) | **PATCH** /applications/{applicationId} | Update an application |
24
- | [**updateSESConfiguration**](ClientApi.md#updatesesconfiguration) | **PUT** /applications/{applicationId}/ses-configurations | Update the SES configuration for the application |
25
21
  | [**updateTemplate**](ClientApi.md#updatetemplate) | **PATCH** /applications/{applicationId}/templates/{id} | Update a template |
26
22
  | [**uploadTemplate**](ClientApi.md#uploadtemplate) | **POST** /applications/{applicationId}/templates | Upload a template |
27
23
 
@@ -409,7 +405,7 @@ No authorization required
409
405
 
410
406
  Create a new application
411
407
 
412
- Create a new application for the authenticated account
408
+ Create a new application for the authenticated account. Optionally accepts a sesConfiguration object to create the SES configuration in the same request.
413
409
 
414
410
  ### Example
415
411
 
@@ -425,7 +421,7 @@ async function example() {
425
421
  const api = new ClientApi();
426
422
 
427
423
  const body = {
428
- // CreateApplicationDTO | Application creation data
424
+ // CreateApplicationDTO | Application creation data, optionally including a SES configuration
429
425
  createApplicationDTO: ...,
430
426
  } satisfies CreateApplicationRequest;
431
427
 
@@ -446,7 +442,7 @@ example().catch(console.error);
446
442
 
447
443
  | Name | Type | Description | Notes |
448
444
  |------------- | ------------- | ------------- | -------------|
449
- | **createApplicationDTO** | [CreateApplicationDTO](CreateApplicationDTO.md) | Application creation data | |
445
+ | **createApplicationDTO** | [CreateApplicationDTO](CreateApplicationDTO.md) | Application creation data, optionally including a SES configuration | |
450
446
 
451
447
  ### Return type
452
448
 
@@ -474,81 +470,6 @@ No authorization required
474
470
  [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
475
471
 
476
472
 
477
- ## createSESConfiguration
478
-
479
- > SESConfigurationDTO createSESConfiguration(applicationId, createSESConfigurationDTO)
480
-
481
- Create the SES configuration for the application
482
-
483
- Create the SES sending configuration for the given application. Each application can have only one configuration.
484
-
485
- ### Example
486
-
487
- ```ts
488
- import {
489
- Configuration,
490
- ClientApi,
491
- } from '';
492
- import type { CreateSESConfigurationRequest } from '';
493
-
494
- async function example() {
495
- console.log("🚀 Testing SDK...");
496
- const api = new ClientApi();
497
-
498
- const body = {
499
- // string | Application ID
500
- applicationId: applicationId_example,
501
- // CreateSESConfigurationDTO | SES configuration data
502
- createSESConfigurationDTO: ...,
503
- } satisfies CreateSESConfigurationRequest;
504
-
505
- try {
506
- const data = await api.createSESConfiguration(body);
507
- console.log(data);
508
- } catch (error) {
509
- console.error(error);
510
- }
511
- }
512
-
513
- // Run the test
514
- example().catch(console.error);
515
- ```
516
-
517
- ### Parameters
518
-
519
-
520
- | Name | Type | Description | Notes |
521
- |------------- | ------------- | ------------- | -------------|
522
- | **applicationId** | `string` | Application ID | [Defaults to `undefined`] |
523
- | **createSESConfigurationDTO** | [CreateSESConfigurationDTO](CreateSESConfigurationDTO.md) | SES configuration data | |
524
-
525
- ### Return type
526
-
527
- [**SESConfigurationDTO**](SESConfigurationDTO.md)
528
-
529
- ### Authorization
530
-
531
- No authorization required
532
-
533
- ### HTTP request headers
534
-
535
- - **Content-Type**: `application/json`
536
- - **Accept**: `application/json`
537
-
538
-
539
- ### HTTP response details
540
- | Status code | Description | Response headers |
541
- |-------------|-------------|------------------|
542
- | **201** | Returns the created SES configuration | - |
543
- | **400** | Return an error if there is a missing or invalid field | - |
544
- | **401** | Return an error if the user is not authenticated | - |
545
- | **404** | Return an error if the application does not belong to the account | - |
546
- | **409** | Return an error if a configuration already exists for the application | - |
547
- | **500** | Return an error if the server finds an error | - |
548
-
549
- [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
550
-
551
-
552
473
  ## deleteApplication
553
474
 
554
475
  > deleteApplication(applicationId)
@@ -620,77 +541,6 @@ No authorization required
620
541
  [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
621
542
 
622
543
 
623
- ## deleteSESConfiguration
624
-
625
- > deleteSESConfiguration(applicationId)
626
-
627
- Delete the SES configuration for the application
628
-
629
- Delete the SES sending configuration of the given application. Emails can no longer be sent for the application until a new configuration is created.
630
-
631
- ### Example
632
-
633
- ```ts
634
- import {
635
- Configuration,
636
- ClientApi,
637
- } from '';
638
- import type { DeleteSESConfigurationRequest } from '';
639
-
640
- async function example() {
641
- console.log("🚀 Testing SDK...");
642
- const api = new ClientApi();
643
-
644
- const body = {
645
- // string | Application ID
646
- applicationId: applicationId_example,
647
- } satisfies DeleteSESConfigurationRequest;
648
-
649
- try {
650
- const data = await api.deleteSESConfiguration(body);
651
- console.log(data);
652
- } catch (error) {
653
- console.error(error);
654
- }
655
- }
656
-
657
- // Run the test
658
- example().catch(console.error);
659
- ```
660
-
661
- ### Parameters
662
-
663
-
664
- | Name | Type | Description | Notes |
665
- |------------- | ------------- | ------------- | -------------|
666
- | **applicationId** | `string` | Application ID | [Defaults to `undefined`] |
667
-
668
- ### Return type
669
-
670
- `void` (Empty response body)
671
-
672
- ### Authorization
673
-
674
- No authorization required
675
-
676
- ### HTTP request headers
677
-
678
- - **Content-Type**: Not defined
679
- - **Accept**: `application/json`
680
-
681
-
682
- ### HTTP response details
683
- | Status code | Description | Response headers |
684
- |-------------|-------------|------------------|
685
- | **204** | SES configuration deleted successfully | - |
686
- | **400** | Return an error if the applicationId is invalid | - |
687
- | **401** | Return an error if the user is not authenticated | - |
688
- | **404** | Return an error if the application has no SES configuration | - |
689
- | **500** | Return an error if the server finds an error | - |
690
-
691
- [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
692
-
693
-
694
544
  ## deleteTemplate
695
545
 
696
546
  > deleteTemplate(id, applicationId)
@@ -771,7 +621,7 @@ No authorization required
771
621
 
772
622
  Get an application by applicationId
773
623
 
774
- Get a specific application belonging to the authenticated account
624
+ Get a specific application belonging to the authenticated account, including its SES configuration when one exists
775
625
 
776
626
  ### Example
777
627
 
@@ -910,77 +760,6 @@ No authorization required
910
760
  [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
911
761
 
912
762
 
913
- ## getSESConfiguration
914
-
915
- > SESConfigurationDTO getSESConfiguration(applicationId)
916
-
917
- Get the SES configuration for the application
918
-
919
- Retrieve the SES sending configuration of the given application. The secret access key is never returned.
920
-
921
- ### Example
922
-
923
- ```ts
924
- import {
925
- Configuration,
926
- ClientApi,
927
- } from '';
928
- import type { GetSESConfigurationRequest } from '';
929
-
930
- async function example() {
931
- console.log("🚀 Testing SDK...");
932
- const api = new ClientApi();
933
-
934
- const body = {
935
- // string | Application ID
936
- applicationId: applicationId_example,
937
- } satisfies GetSESConfigurationRequest;
938
-
939
- try {
940
- const data = await api.getSESConfiguration(body);
941
- console.log(data);
942
- } catch (error) {
943
- console.error(error);
944
- }
945
- }
946
-
947
- // Run the test
948
- example().catch(console.error);
949
- ```
950
-
951
- ### Parameters
952
-
953
-
954
- | Name | Type | Description | Notes |
955
- |------------- | ------------- | ------------- | -------------|
956
- | **applicationId** | `string` | Application ID | [Defaults to `undefined`] |
957
-
958
- ### Return type
959
-
960
- [**SESConfigurationDTO**](SESConfigurationDTO.md)
961
-
962
- ### Authorization
963
-
964
- No authorization required
965
-
966
- ### HTTP request headers
967
-
968
- - **Content-Type**: Not defined
969
- - **Accept**: `application/json`
970
-
971
-
972
- ### HTTP response details
973
- | Status code | Description | Response headers |
974
- |-------------|-------------|------------------|
975
- | **200** | Returns the SES configuration | - |
976
- | **400** | Return an error if the applicationId is invalid | - |
977
- | **401** | Return an error if the user is not authenticated | - |
978
- | **404** | Return an error if the application has no SES configuration | - |
979
- | **500** | Return an error if the server finds an error | - |
980
-
981
- [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
982
-
983
-
984
763
  ## getTemplate
985
764
 
986
765
  > EmailTemplateContentDTO getTemplate(id, applicationId)
@@ -1229,7 +1008,7 @@ No authorization required
1229
1008
 
1230
1009
  Update an application
1231
1010
 
1232
- Update an application belonging to the authenticated account
1011
+ Update an application belonging to the authenticated account. Optionally accepts a sesConfiguration object to create or update the SES configuration in the same request; when omitted or null the SES configuration is left untouched.
1233
1012
 
1234
1013
  ### Example
1235
1014
 
@@ -1247,7 +1026,7 @@ async function example() {
1247
1026
  const body = {
1248
1027
  // string | Application ID
1249
1028
  applicationId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
1250
- // UpdateApplicationDTO | Application update data
1029
+ // UpdateApplicationDTO | Application update data, optionally including a SES configuration
1251
1030
  updateApplicationDTO: ...,
1252
1031
  } satisfies UpdateApplicationRequest;
1253
1032
 
@@ -1269,7 +1048,7 @@ example().catch(console.error);
1269
1048
  | Name | Type | Description | Notes |
1270
1049
  |------------- | ------------- | ------------- | -------------|
1271
1050
  | **applicationId** | `string` | Application ID | [Defaults to `undefined`] |
1272
- | **updateApplicationDTO** | [UpdateApplicationDTO](UpdateApplicationDTO.md) | Application update data | |
1051
+ | **updateApplicationDTO** | [UpdateApplicationDTO](UpdateApplicationDTO.md) | Application update data, optionally including a SES configuration | |
1273
1052
 
1274
1053
  ### Return type
1275
1054
 
@@ -1298,80 +1077,6 @@ No authorization required
1298
1077
  [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
1299
1078
 
1300
1079
 
1301
- ## updateSESConfiguration
1302
-
1303
- > SESConfigurationDTO updateSESConfiguration(applicationId, updateSESConfigurationDTO)
1304
-
1305
- Update the SES configuration for the application
1306
-
1307
- Update the SES sending configuration of the given application. Omitted or empty fields keep their stored value.
1308
-
1309
- ### Example
1310
-
1311
- ```ts
1312
- import {
1313
- Configuration,
1314
- ClientApi,
1315
- } from '';
1316
- import type { UpdateSESConfigurationRequest } from '';
1317
-
1318
- async function example() {
1319
- console.log("🚀 Testing SDK...");
1320
- const api = new ClientApi();
1321
-
1322
- const body = {
1323
- // string | Application ID
1324
- applicationId: applicationId_example,
1325
- // UpdateSESConfigurationDTO | SES configuration data
1326
- updateSESConfigurationDTO: ...,
1327
- } satisfies UpdateSESConfigurationRequest;
1328
-
1329
- try {
1330
- const data = await api.updateSESConfiguration(body);
1331
- console.log(data);
1332
- } catch (error) {
1333
- console.error(error);
1334
- }
1335
- }
1336
-
1337
- // Run the test
1338
- example().catch(console.error);
1339
- ```
1340
-
1341
- ### Parameters
1342
-
1343
-
1344
- | Name | Type | Description | Notes |
1345
- |------------- | ------------- | ------------- | -------------|
1346
- | **applicationId** | `string` | Application ID | [Defaults to `undefined`] |
1347
- | **updateSESConfigurationDTO** | [UpdateSESConfigurationDTO](UpdateSESConfigurationDTO.md) | SES configuration data | |
1348
-
1349
- ### Return type
1350
-
1351
- [**SESConfigurationDTO**](SESConfigurationDTO.md)
1352
-
1353
- ### Authorization
1354
-
1355
- No authorization required
1356
-
1357
- ### HTTP request headers
1358
-
1359
- - **Content-Type**: `application/json`
1360
- - **Accept**: `application/json`
1361
-
1362
-
1363
- ### HTTP response details
1364
- | Status code | Description | Response headers |
1365
- |-------------|-------------|------------------|
1366
- | **200** | Returns the updated SES configuration (without the secret) | - |
1367
- | **400** | Return an error if there is a missing or invalid field | - |
1368
- | **401** | Return an error if the user is not authenticated | - |
1369
- | **404** | Return an error if the application has no SES configuration | - |
1370
- | **500** | Return an error if the server finds an error | - |
1371
-
1372
- [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
1373
-
1374
-
1375
1080
  ## updateTemplate
1376
1081
 
1377
1082
  > UpdateEmailTemplateDTO updateTemplate(applicationId, id, defaultEmail, file, name)
@@ -8,6 +8,7 @@ Name | Type
8
8
  ------------ | -------------
9
9
  `description` | string
10
10
  `name` | string
11
+ `sesConfiguration` | [CreateSESConfigurationDTO](CreateSESConfigurationDTO.md)
11
12
 
12
13
  ## Example
13
14
 
@@ -18,6 +19,7 @@ import type { CreateApplicationDTO } from ''
18
19
  const example = {
19
20
  "description": application description,
20
21
  "name": Alpha,
22
+ "sesConfiguration": null,
21
23
  } satisfies CreateApplicationDTO
22
24
 
23
25
  console.log(example)
@@ -7,7 +7,6 @@
7
7
  Name | Type
8
8
  ------------ | -------------
9
9
  `accessKeyId` | string
10
- `fromEmail` | string
11
10
  `region` | string
12
11
  `secretAccessKey` | string
13
12
 
@@ -19,7 +18,6 @@ import type { CreateSESConfigurationDTO } from ''
19
18
  // TODO: Update the object below with actual values
20
19
  const example = {
21
20
  "accessKeyId": AKIAIOSFODNN7EXAMPLE,
22
- "fromEmail": no-reply@example.com,
23
21
  "region": eu-central-1,
24
22
  "secretAccessKey": wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY,
25
23
  } satisfies CreateSESConfigurationDTO
@@ -9,7 +9,6 @@ Name | Type
9
9
  `accessKeyId` | string
10
10
  `applicationId` | string
11
11
  `createdAt` | string
12
- `fromEmail` | string
13
12
  `id` | string
14
13
  `region` | string
15
14
  `updatedAt` | string
@@ -24,7 +23,6 @@ const example = {
24
23
  "accessKeyId": null,
25
24
  "applicationId": null,
26
25
  "createdAt": null,
27
- "fromEmail": null,
28
26
  "id": null,
29
27
  "region": null,
30
28
  "updatedAt": null,
@@ -8,6 +8,7 @@ Name | Type
8
8
  ------------ | -------------
9
9
  `description` | string
10
10
  `name` | string
11
+ `sesConfiguration` | [UpdateSESConfigurationDTO](UpdateSESConfigurationDTO.md)
11
12
 
12
13
  ## Example
13
14
 
@@ -18,6 +19,7 @@ import type { UpdateApplicationDTO } from ''
18
19
  const example = {
19
20
  "description": null,
20
21
  "name": null,
22
+ "sesConfiguration": null,
21
23
  } satisfies UpdateApplicationDTO
22
24
 
23
25
  console.log(example)
@@ -7,7 +7,6 @@
7
7
  Name | Type
8
8
  ------------ | -------------
9
9
  `accessKeyId` | string
10
- `fromEmail` | string
11
10
  `region` | string
12
11
  `secretAccessKey` | string
13
12
 
@@ -19,7 +18,6 @@ import type { UpdateSESConfigurationDTO } from ''
19
18
  // TODO: Update the object below with actual values
20
19
  const example = {
21
20
  "accessKeyId": AKIAIOSFODNN7EXAMPLE,
22
- "fromEmail": no-reply@example.com,
23
21
  "region": eu-central-1,
24
22
  "secretAccessKey": wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY,
25
23
  } satisfies UpdateSESConfigurationDTO
@@ -18,6 +18,7 @@ exports.ApplicationDTOFromJSON = ApplicationDTOFromJSON;
18
18
  exports.ApplicationDTOFromJSONTyped = ApplicationDTOFromJSONTyped;
19
19
  exports.ApplicationDTOToJSON = ApplicationDTOToJSON;
20
20
  exports.ApplicationDTOToJSONTyped = ApplicationDTOToJSONTyped;
21
+ const SESConfigurationDTO_1 = require("./SESConfigurationDTO");
21
22
  /**
22
23
  * Check if a given object implements the ApplicationDTO interface.
23
24
  */
@@ -37,6 +38,7 @@ function ApplicationDTOFromJSONTyped(json, ignoreDiscriminator) {
37
38
  'description': json['description'] == null ? undefined : json['description'],
38
39
  'id': json['id'] == null ? undefined : json['id'],
39
40
  'name': json['name'] == null ? undefined : json['name'],
41
+ 'sesConfiguration': json['sesConfiguration'] == null ? undefined : (0, SESConfigurationDTO_1.SESConfigurationDTOFromJSON)(json['sesConfiguration']),
40
42
  };
41
43
  }
42
44
  function ApplicationDTOToJSON(json) {
@@ -52,6 +54,7 @@ function ApplicationDTOToJSONTyped(value, ignoreDiscriminator = false) {
52
54
  'description': value['description'],
53
55
  'id': value['id'],
54
56
  'name': value['name'],
57
+ 'sesConfiguration': (0, SESConfigurationDTO_1.SESConfigurationDTOToJSON)(value['sesConfiguration']),
55
58
  };
56
59
  }
57
60
  //# sourceMappingURL=ApplicationDTO.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ApplicationDTO.js","sourceRoot":"","sources":["ApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA4CH,4DAEC;AAED,wDAEC;AAED,kEAYC;AAED,oDAEC;AAED,8DAaC;AA1CD;;GAEG;AACH,SAAgB,wBAAwB,CAAC,KAAa;IAClD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,sBAAsB,CAAC,IAAS;IAC5C,OAAO,2BAA2B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpD,CAAC;AAED,SAAgB,2BAA2B,CAAC,IAAS,EAAE,mBAA4B;IAC/E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;KAC1D,CAAC;AACN,CAAC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAED,SAAgB,yBAAyB,CAAC,KAA6B,EAAE,sBAA+B,KAAK;IACzG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
1
+ {"version":3,"file":"ApplicationDTO.js","sourceRoot":"","sources":["ApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0DH,4DAEC;AAED,wDAEC;AAED,kEAaC;AAED,oDAEC;AAED,8DAcC;AA/FD,+DAK+B;AA8C/B;;GAEG;AACH,SAAgB,wBAAwB,CAAC,KAAa;IAClD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,sBAAsB,CAAC,IAAS;IAC5C,OAAO,2BAA2B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpD,CAAC;AAED,SAAgB,2BAA2B,CAAC,IAAS,EAAE,mBAA4B;IAC/E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,kBAAkB,EAAE,IAAI,CAAC,kBAAkB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,iDAA2B,EAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;KAC3H,CAAC;AACN,CAAC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAED,SAAgB,yBAAyB,CAAC,KAA6B,EAAE,sBAA+B,KAAK;IACzG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,kBAAkB,EAAE,IAAA,+CAAyB,EAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;KAC3E,CAAC;AACN,CAAC"}
@@ -13,6 +13,14 @@
13
13
  */
14
14
 
15
15
  import { mapValues } from '../runtime';
16
+ import type { SESConfigurationDTO } from './SESConfigurationDTO';
17
+ import {
18
+ SESConfigurationDTOFromJSON,
19
+ SESConfigurationDTOFromJSONTyped,
20
+ SESConfigurationDTOToJSON,
21
+ SESConfigurationDTOToJSONTyped,
22
+ } from './SESConfigurationDTO';
23
+
16
24
  /**
17
25
  *
18
26
  * @export
@@ -49,6 +57,12 @@ export interface ApplicationDTO {
49
57
  * @memberof ApplicationDTO
50
58
  */
51
59
  name?: string;
60
+ /**
61
+ *
62
+ * @type {SESConfigurationDTO}
63
+ * @memberof ApplicationDTO
64
+ */
65
+ sesConfiguration?: SESConfigurationDTO;
52
66
  }
53
67
 
54
68
  /**
@@ -73,6 +87,7 @@ export function ApplicationDTOFromJSONTyped(json: any, ignoreDiscriminator: bool
73
87
  'description': json['description'] == null ? undefined : json['description'],
74
88
  'id': json['id'] == null ? undefined : json['id'],
75
89
  'name': json['name'] == null ? undefined : json['name'],
90
+ 'sesConfiguration': json['sesConfiguration'] == null ? undefined : SESConfigurationDTOFromJSON(json['sesConfiguration']),
76
91
  };
77
92
  }
78
93
 
@@ -92,6 +107,7 @@ export function ApplicationDTOToJSONTyped(value?: ApplicationDTO | null, ignoreD
92
107
  'description': value['description'],
93
108
  'id': value['id'],
94
109
  'name': value['name'],
110
+ 'sesConfiguration': SESConfigurationDTOToJSON(value['sesConfiguration']),
95
111
  };
96
112
  }
97
113
 
@@ -18,6 +18,7 @@ exports.ApplicationWithApplicationCountDTOFromJSON = ApplicationWithApplicationC
18
18
  exports.ApplicationWithApplicationCountDTOFromJSONTyped = ApplicationWithApplicationCountDTOFromJSONTyped;
19
19
  exports.ApplicationWithApplicationCountDTOToJSON = ApplicationWithApplicationCountDTOToJSON;
20
20
  exports.ApplicationWithApplicationCountDTOToJSONTyped = ApplicationWithApplicationCountDTOToJSONTyped;
21
+ const SESConfigurationDTO_1 = require("./SESConfigurationDTO");
21
22
  /**
22
23
  * Check if a given object implements the ApplicationWithApplicationCountDTO interface.
23
24
  */
@@ -38,6 +39,7 @@ function ApplicationWithApplicationCountDTOFromJSONTyped(json, ignoreDiscriminat
38
39
  'emailTemplatesCount': json['emailTemplatesCount'] == null ? undefined : json['emailTemplatesCount'],
39
40
  'id': json['id'] == null ? undefined : json['id'],
40
41
  'name': json['name'] == null ? undefined : json['name'],
42
+ 'sesConfiguration': json['sesConfiguration'] == null ? undefined : (0, SESConfigurationDTO_1.SESConfigurationDTOFromJSON)(json['sesConfiguration']),
41
43
  };
42
44
  }
43
45
  function ApplicationWithApplicationCountDTOToJSON(json) {
@@ -54,6 +56,7 @@ function ApplicationWithApplicationCountDTOToJSONTyped(value, ignoreDiscriminato
54
56
  'emailTemplatesCount': value['emailTemplatesCount'],
55
57
  'id': value['id'],
56
58
  'name': value['name'],
59
+ 'sesConfiguration': (0, SESConfigurationDTO_1.SESConfigurationDTOToJSON)(value['sesConfiguration']),
57
60
  };
58
61
  }
59
62
  //# sourceMappingURL=ApplicationWithApplicationCountDTO.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ApplicationWithApplicationCountDTO.js","sourceRoot":"","sources":["ApplicationWithApplicationCountDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAkDH,oGAEC;AAED,gGAEC;AAED,0GAaC;AAED,4FAEC;AAED,sGAcC;AA5CD;;GAEG;AACH,SAAgB,4CAA4C,CAAC,KAAa;IACtE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,0CAA0C,CAAC,IAAS;IAChE,OAAO,+CAA+C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxE,CAAC;AAED,SAAgB,+CAA+C,CAAC,IAAS,EAAE,mBAA4B;IACnG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,qBAAqB,EAAE,IAAI,CAAC,qBAAqB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC;QACpG,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;KAC1D,CAAC;AACN,CAAC;AAED,SAAgB,wCAAwC,CAAC,IAAS;IAC9D,OAAO,6CAA6C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtE,CAAC;AAED,SAAgB,6CAA6C,CAAC,KAAiD,EAAE,sBAA+B,KAAK;IACjJ,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,qBAAqB,EAAE,KAAK,CAAC,qBAAqB,CAAC;QACnD,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
1
+ {"version":3,"file":"ApplicationWithApplicationCountDTO.js","sourceRoot":"","sources":["ApplicationWithApplicationCountDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAgEH,oGAEC;AAED,gGAEC;AAED,0GAcC;AAED,4FAEC;AAED,sGAeC;AAvGD,+DAK+B;AAoD/B;;GAEG;AACH,SAAgB,4CAA4C,CAAC,KAAa;IACtE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,0CAA0C,CAAC,IAAS;IAChE,OAAO,+CAA+C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxE,CAAC;AAED,SAAgB,+CAA+C,CAAC,IAAS,EAAE,mBAA4B;IACnG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,qBAAqB,EAAE,IAAI,CAAC,qBAAqB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC;QACpG,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,kBAAkB,EAAE,IAAI,CAAC,kBAAkB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,iDAA2B,EAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;KAC3H,CAAC;AACN,CAAC;AAED,SAAgB,wCAAwC,CAAC,IAAS;IAC9D,OAAO,6CAA6C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtE,CAAC;AAED,SAAgB,6CAA6C,CAAC,KAAiD,EAAE,sBAA+B,KAAK;IACjJ,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,qBAAqB,EAAE,KAAK,CAAC,qBAAqB,CAAC;QACnD,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,kBAAkB,EAAE,IAAA,+CAAyB,EAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;KAC3E,CAAC;AACN,CAAC"}
@@ -13,6 +13,14 @@
13
13
  */
14
14
 
15
15
  import { mapValues } from '../runtime';
16
+ import type { SESConfigurationDTO } from './SESConfigurationDTO';
17
+ import {
18
+ SESConfigurationDTOFromJSON,
19
+ SESConfigurationDTOFromJSONTyped,
20
+ SESConfigurationDTOToJSON,
21
+ SESConfigurationDTOToJSONTyped,
22
+ } from './SESConfigurationDTO';
23
+
16
24
  /**
17
25
  *
18
26
  * @export
@@ -55,6 +63,12 @@ export interface ApplicationWithApplicationCountDTO {
55
63
  * @memberof ApplicationWithApplicationCountDTO
56
64
  */
57
65
  name?: string;
66
+ /**
67
+ *
68
+ * @type {SESConfigurationDTO}
69
+ * @memberof ApplicationWithApplicationCountDTO
70
+ */
71
+ sesConfiguration?: SESConfigurationDTO;
58
72
  }
59
73
 
60
74
  /**
@@ -80,6 +94,7 @@ export function ApplicationWithApplicationCountDTOFromJSONTyped(json: any, ignor
80
94
  'emailTemplatesCount': json['emailTemplatesCount'] == null ? undefined : json['emailTemplatesCount'],
81
95
  'id': json['id'] == null ? undefined : json['id'],
82
96
  'name': json['name'] == null ? undefined : json['name'],
97
+ 'sesConfiguration': json['sesConfiguration'] == null ? undefined : SESConfigurationDTOFromJSON(json['sesConfiguration']),
83
98
  };
84
99
  }
85
100
 
@@ -100,6 +115,7 @@ export function ApplicationWithApplicationCountDTOToJSONTyped(value?: Applicatio
100
115
  'emailTemplatesCount': value['emailTemplatesCount'],
101
116
  'id': value['id'],
102
117
  'name': value['name'],
118
+ 'sesConfiguration': SESConfigurationDTOToJSON(value['sesConfiguration']),
103
119
  };
104
120
  }
105
121
 
@@ -18,6 +18,7 @@ exports.CreateApplicationDTOFromJSON = CreateApplicationDTOFromJSON;
18
18
  exports.CreateApplicationDTOFromJSONTyped = CreateApplicationDTOFromJSONTyped;
19
19
  exports.CreateApplicationDTOToJSON = CreateApplicationDTOToJSON;
20
20
  exports.CreateApplicationDTOToJSONTyped = CreateApplicationDTOToJSONTyped;
21
+ const CreateSESConfigurationDTO_1 = require("./CreateSESConfigurationDTO");
21
22
  /**
22
23
  * Check if a given object implements the CreateApplicationDTO interface.
23
24
  */
@@ -38,6 +39,7 @@ function CreateApplicationDTOFromJSONTyped(json, ignoreDiscriminator) {
38
39
  return {
39
40
  'description': json['description'],
40
41
  'name': json['name'],
42
+ 'sesConfiguration': json['sesConfiguration'] == null ? undefined : (0, CreateSESConfigurationDTO_1.CreateSESConfigurationDTOFromJSON)(json['sesConfiguration']),
41
43
  };
42
44
  }
43
45
  function CreateApplicationDTOToJSON(json) {
@@ -50,6 +52,7 @@ function CreateApplicationDTOToJSONTyped(value, ignoreDiscriminator = false) {
50
52
  return {
51
53
  'description': value['description'],
52
54
  'name': value['name'],
55
+ 'sesConfiguration': (0, CreateSESConfigurationDTO_1.CreateSESConfigurationDTOToJSON)(value['sesConfiguration']),
53
56
  };
54
57
  }
55
58
  //# sourceMappingURL=CreateApplicationDTO.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CreateApplicationDTO.js","sourceRoot":"","sources":["CreateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,wEAIC;AAED,oEAEC;AAED,8EASC;AAED,gEAEC;AAED,0EAUC;AAtCD;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,aAAa,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAClF,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC;QAClC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;KACvB,CAAC;AACN,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;KACxB,CAAC;AACN,CAAC"}
1
+ {"version":3,"file":"CreateApplicationDTO.js","sourceRoot":"","sources":["CreateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAwCH,wEAIC;AAED,oEAEC;AAED,8EAUC;AAED,gEAEC;AAED,0EAWC;AAzED,2EAKqC;AA4BrC;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,aAAa,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAClF,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC;QAClC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,kBAAkB,EAAE,IAAI,CAAC,kBAAkB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,6DAAiC,EAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;KACjI,CAAC;AACN,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,kBAAkB,EAAE,IAAA,2DAA+B,EAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;KACjF,CAAC;AACN,CAAC"}