@abyss-project/main 1.10.0 → 1.11.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.
Files changed (26) hide show
  1. package/dist/constants/billing-catalog.constants.d.ts +9 -0
  2. package/dist/constants/billing-catalog.constants.js +38 -3
  3. package/dist/constants/billing-catalog.constants.js.map +1 -1
  4. package/dist/constants/enforcement-registry.constants.d.ts +4 -1
  5. package/dist/constants/enforcement-registry.constants.js +185 -52
  6. package/dist/constants/enforcement-registry.constants.js.map +1 -1
  7. package/dist/constants/public-plans.constants.js +414 -0
  8. package/dist/constants/public-plans.constants.js.map +1 -1
  9. package/dist/server/after-commit-emit.util.d.ts +1 -0
  10. package/dist/server/after-commit-emit.util.js +37 -1
  11. package/dist/server/after-commit-emit.util.js.map +1 -1
  12. package/dist/types/enum/organization-billing.enum.d.ts +4 -0
  13. package/dist/types/enum/organization-billing.enum.js +6 -1
  14. package/dist/types/enum/organization-billing.enum.js.map +1 -1
  15. package/dist/types/interface/api/requests/organization-billing.request.d.ts +2 -0
  16. package/dist/types/interface/api/requests/user-billing.request.d.ts +2 -0
  17. package/dist/types/interface/api/responses/organization-billing.response.d.ts +2 -0
  18. package/dist/types/interface/api/responses/user-billing.response.d.ts +2 -0
  19. package/dist/types/interface/index.d.ts +1 -0
  20. package/dist/types/interface/index.js +1 -0
  21. package/dist/types/interface/index.js.map +1 -1
  22. package/dist/types/interface/models/quota-reservation.model.d.ts +1 -0
  23. package/dist/types/interface/quota-reservation-event.d.ts +19 -0
  24. package/dist/types/interface/quota-reservation-event.js +11 -0
  25. package/dist/types/interface/quota-reservation-event.js.map +1 -0
  26. package/package.json +1 -1
@@ -1419,6 +1419,20 @@ exports.PUBLIC_PLANS = [
1419
1419
  name: 'freemium',
1420
1420
  monthlyPriceEur: 0,
1421
1421
  quotas: [
1422
+ {
1423
+ service: enum_1.BillingService.ABYSS_CRYPT,
1424
+ metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
1425
+ limit: 200,
1426
+ sizePerUnit: null,
1427
+ unit: 'encryptions',
1428
+ },
1429
+ {
1430
+ service: enum_1.BillingService.ABYSS_CRYPT,
1431
+ metric: enum_1.BillingMetric.CRYPT_MAX_FILE_SIZE_MB,
1432
+ limit: 25,
1433
+ sizePerUnit: null,
1434
+ unit: 'MB',
1435
+ },
1422
1436
  {
1423
1437
  service: enum_1.BillingService.ABYSS_PLATFORM,
1424
1438
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
@@ -1750,6 +1764,12 @@ exports.PUBLIC_PLANS = [
1750
1764
  },
1751
1765
  ],
1752
1766
  overagePricing: [
1767
+ {
1768
+ service: enum_1.BillingService.ABYSS_CRYPT,
1769
+ metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
1770
+ pricePerUnit: 75,
1771
+ unit: '1k encryptions',
1772
+ },
1753
1773
  {
1754
1774
  service: enum_1.BillingService.ABYSS_PLATFORM,
1755
1775
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
@@ -2004,6 +2024,20 @@ exports.PUBLIC_PLANS = [
2004
2024
  name: 'starter',
2005
2025
  monthlyPriceEur: 1900,
2006
2026
  quotas: [
2027
+ {
2028
+ service: enum_1.BillingService.ABYSS_CRYPT,
2029
+ metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
2030
+ limit: 10000,
2031
+ sizePerUnit: null,
2032
+ unit: 'encryptions',
2033
+ },
2034
+ {
2035
+ service: enum_1.BillingService.ABYSS_CRYPT,
2036
+ metric: enum_1.BillingMetric.CRYPT_MAX_FILE_SIZE_MB,
2037
+ limit: 50,
2038
+ sizePerUnit: null,
2039
+ unit: 'MB',
2040
+ },
2007
2041
  {
2008
2042
  service: enum_1.BillingService.ABYSS_PLATFORM,
2009
2043
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
@@ -2335,6 +2369,12 @@ exports.PUBLIC_PLANS = [
2335
2369
  },
2336
2370
  ],
2337
2371
  overagePricing: [
2372
+ {
2373
+ service: enum_1.BillingService.ABYSS_CRYPT,
2374
+ metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
2375
+ pricePerUnit: 50,
2376
+ unit: '1k encryptions',
2377
+ },
2338
2378
  {
2339
2379
  service: enum_1.BillingService.ABYSS_PLATFORM,
2340
2380
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
@@ -2589,6 +2629,20 @@ exports.PUBLIC_PLANS = [
2589
2629
  name: 'pro',
2590
2630
  monthlyPriceEur: 4900,
2591
2631
  quotas: [
2632
+ {
2633
+ service: enum_1.BillingService.ABYSS_CRYPT,
2634
+ metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
2635
+ limit: 100000,
2636
+ sizePerUnit: null,
2637
+ unit: 'encryptions',
2638
+ },
2639
+ {
2640
+ service: enum_1.BillingService.ABYSS_CRYPT,
2641
+ metric: enum_1.BillingMetric.CRYPT_MAX_FILE_SIZE_MB,
2642
+ limit: 100,
2643
+ sizePerUnit: null,
2644
+ unit: 'MB',
2645
+ },
2592
2646
  {
2593
2647
  service: enum_1.BillingService.ABYSS_PLATFORM,
2594
2648
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
@@ -2920,6 +2974,12 @@ exports.PUBLIC_PLANS = [
2920
2974
  },
2921
2975
  ],
2922
2976
  overagePricing: [
2977
+ {
2978
+ service: enum_1.BillingService.ABYSS_CRYPT,
2979
+ metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
2980
+ pricePerUnit: 50,
2981
+ unit: '1k encryptions',
2982
+ },
2923
2983
  {
2924
2984
  service: enum_1.BillingService.ABYSS_PLATFORM,
2925
2985
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
@@ -3209,6 +3269,111 @@ exports.PUBLIC_PLANS = [
3209
3269
  sizePerUnit: null,
3210
3270
  unit: 'boards',
3211
3271
  },
3272
+ {
3273
+ service: enum_1.BillingService.ABYSS_TOOLS,
3274
+ metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3275
+ limit: 5,
3276
+ sizePerUnit: null,
3277
+ unit: 'draws',
3278
+ },
3279
+ {
3280
+ service: enum_1.BillingService.ABYSS_TOOLS,
3281
+ metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3282
+ limit: 2,
3283
+ sizePerUnit: null,
3284
+ unit: 'atlases',
3285
+ },
3286
+ {
3287
+ service: enum_1.BillingService.ABYSS_TOOLS,
3288
+ metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3289
+ limit: 3,
3290
+ sizePerUnit: null,
3291
+ unit: 'retrospectives',
3292
+ },
3293
+ {
3294
+ service: enum_1.BillingService.ABYSS_TOOLS,
3295
+ metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3296
+ limit: 10,
3297
+ sizePerUnit: null,
3298
+ unit: 'short links',
3299
+ },
3300
+ {
3301
+ service: enum_1.BillingService.ABYSS_TOOLS,
3302
+ metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3303
+ limit: 1000,
3304
+ sizePerUnit: null,
3305
+ unit: 'clicks',
3306
+ },
3307
+ {
3308
+ service: enum_1.BillingService.ABYSS_TOOLS,
3309
+ metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3310
+ limit: 3,
3311
+ sizePerUnit: null,
3312
+ unit: 'transfers',
3313
+ },
3314
+ {
3315
+ service: enum_1.BillingService.ABYSS_TOOLS,
3316
+ metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3317
+ limit: 50,
3318
+ sizePerUnit: null,
3319
+ unit: 'uploads',
3320
+ },
3321
+ {
3322
+ service: enum_1.BillingService.ABYSS_TOOLS,
3323
+ metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3324
+ limit: 5,
3325
+ sizePerUnit: null,
3326
+ unit: 'GB',
3327
+ },
3328
+ {
3329
+ service: enum_1.BillingService.ABYSS_TOOLS,
3330
+ metric: enum_1.BillingMetric.TOOLS_BEAM_EXPIRY_MAX_DAYS,
3331
+ limit: 30,
3332
+ sizePerUnit: null,
3333
+ unit: 'days',
3334
+ },
3335
+ {
3336
+ service: enum_1.BillingService.ABYSS_TOOLS,
3337
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION_TRACE_RETENTION_DAYS,
3338
+ limit: -1,
3339
+ sizePerUnit: null,
3340
+ unit: 'days',
3341
+ },
3342
+ {
3343
+ service: enum_1.BillingService.ABYSS_TOOLS,
3344
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3345
+ limit: 15,
3346
+ sizePerUnit: null,
3347
+ unit: 'extractions',
3348
+ },
3349
+ {
3350
+ service: enum_1.BillingService.ABYSS_TOOLS,
3351
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
3352
+ limit: 50,
3353
+ sizePerUnit: null,
3354
+ unit: 'OCR pages',
3355
+ },
3356
+ {
3357
+ service: enum_1.BillingService.ABYSS_TOOLS,
3358
+ metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
3359
+ limit: 5,
3360
+ sizePerUnit: null,
3361
+ unit: 'templates',
3362
+ },
3363
+ {
3364
+ service: enum_1.BillingService.ABYSS_FORM,
3365
+ metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
3366
+ limit: 100,
3367
+ sizePerUnit: null,
3368
+ unit: 'submissions',
3369
+ },
3370
+ {
3371
+ service: enum_1.BillingService.ABYSS_FORM,
3372
+ metric: enum_1.BillingMetric.FORM_ALLOW_DOCUMENTS,
3373
+ limit: 0,
3374
+ sizePerUnit: null,
3375
+ unit: '',
3376
+ },
3212
3377
  {
3213
3378
  service: enum_1.BillingService.ABYSS_MEMORIES,
3214
3379
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
@@ -3340,6 +3505,78 @@ exports.PUBLIC_PLANS = [
3340
3505
  pricePerUnit: 75,
3341
3506
  unit: 'board',
3342
3507
  },
3508
+ {
3509
+ service: enum_1.BillingService.ABYSS_TOOLS,
3510
+ metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3511
+ pricePerUnit: 75,
3512
+ unit: 'draw',
3513
+ },
3514
+ {
3515
+ service: enum_1.BillingService.ABYSS_TOOLS,
3516
+ metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3517
+ pricePerUnit: 75,
3518
+ unit: 'atlas',
3519
+ },
3520
+ {
3521
+ service: enum_1.BillingService.ABYSS_TOOLS,
3522
+ metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3523
+ pricePerUnit: 75,
3524
+ unit: 'retrospective',
3525
+ },
3526
+ {
3527
+ service: enum_1.BillingService.ABYSS_TOOLS,
3528
+ metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3529
+ pricePerUnit: 75,
3530
+ unit: 'short link',
3531
+ },
3532
+ {
3533
+ service: enum_1.BillingService.ABYSS_TOOLS,
3534
+ metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3535
+ pricePerUnit: 2,
3536
+ unit: '1k resolutions',
3537
+ },
3538
+ {
3539
+ service: enum_1.BillingService.ABYSS_TOOLS,
3540
+ metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3541
+ pricePerUnit: 75,
3542
+ unit: 'transfer',
3543
+ },
3544
+ {
3545
+ service: enum_1.BillingService.ABYSS_TOOLS,
3546
+ metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3547
+ pricePerUnit: 8,
3548
+ unit: 'upload',
3549
+ },
3550
+ {
3551
+ service: enum_1.BillingService.ABYSS_TOOLS,
3552
+ metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3553
+ pricePerUnit: 15,
3554
+ unit: 'GB',
3555
+ },
3556
+ {
3557
+ service: enum_1.BillingService.ABYSS_TOOLS,
3558
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3559
+ pricePerUnit: 30,
3560
+ unit: 'extraction',
3561
+ },
3562
+ {
3563
+ service: enum_1.BillingService.ABYSS_TOOLS,
3564
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
3565
+ pricePerUnit: 5,
3566
+ unit: 'OCR page',
3567
+ },
3568
+ {
3569
+ service: enum_1.BillingService.ABYSS_TOOLS,
3570
+ metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
3571
+ pricePerUnit: 150,
3572
+ unit: 'template',
3573
+ },
3574
+ {
3575
+ service: enum_1.BillingService.ABYSS_FORM,
3576
+ metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
3577
+ pricePerUnit: 3,
3578
+ unit: 'submission',
3579
+ },
3343
3580
  {
3344
3581
  service: enum_1.BillingService.ABYSS_MEMORIES,
3345
3582
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
@@ -3467,6 +3704,111 @@ exports.PUBLIC_PLANS = [
3467
3704
  sizePerUnit: null,
3468
3705
  unit: 'boards',
3469
3706
  },
3707
+ {
3708
+ service: enum_1.BillingService.ABYSS_TOOLS,
3709
+ metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3710
+ limit: 50,
3711
+ sizePerUnit: null,
3712
+ unit: 'draws',
3713
+ },
3714
+ {
3715
+ service: enum_1.BillingService.ABYSS_TOOLS,
3716
+ metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3717
+ limit: 20,
3718
+ sizePerUnit: null,
3719
+ unit: 'atlases',
3720
+ },
3721
+ {
3722
+ service: enum_1.BillingService.ABYSS_TOOLS,
3723
+ metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3724
+ limit: 30,
3725
+ sizePerUnit: null,
3726
+ unit: 'retrospectives',
3727
+ },
3728
+ {
3729
+ service: enum_1.BillingService.ABYSS_TOOLS,
3730
+ metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3731
+ limit: 100,
3732
+ sizePerUnit: null,
3733
+ unit: 'short links',
3734
+ },
3735
+ {
3736
+ service: enum_1.BillingService.ABYSS_TOOLS,
3737
+ metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3738
+ limit: 100000,
3739
+ sizePerUnit: null,
3740
+ unit: 'clicks',
3741
+ },
3742
+ {
3743
+ service: enum_1.BillingService.ABYSS_TOOLS,
3744
+ metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3745
+ limit: 25,
3746
+ sizePerUnit: null,
3747
+ unit: 'transfers',
3748
+ },
3749
+ {
3750
+ service: enum_1.BillingService.ABYSS_TOOLS,
3751
+ metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3752
+ limit: 500,
3753
+ sizePerUnit: null,
3754
+ unit: 'uploads',
3755
+ },
3756
+ {
3757
+ service: enum_1.BillingService.ABYSS_TOOLS,
3758
+ metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3759
+ limit: 100,
3760
+ sizePerUnit: null,
3761
+ unit: 'GB',
3762
+ },
3763
+ {
3764
+ service: enum_1.BillingService.ABYSS_TOOLS,
3765
+ metric: enum_1.BillingMetric.TOOLS_BEAM_EXPIRY_MAX_DAYS,
3766
+ limit: -1,
3767
+ sizePerUnit: null,
3768
+ unit: 'days',
3769
+ },
3770
+ {
3771
+ service: enum_1.BillingService.ABYSS_TOOLS,
3772
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION_TRACE_RETENTION_DAYS,
3773
+ limit: -1,
3774
+ sizePerUnit: null,
3775
+ unit: 'days',
3776
+ },
3777
+ {
3778
+ service: enum_1.BillingService.ABYSS_TOOLS,
3779
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3780
+ limit: 250,
3781
+ sizePerUnit: null,
3782
+ unit: 'extractions',
3783
+ },
3784
+ {
3785
+ service: enum_1.BillingService.ABYSS_TOOLS,
3786
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
3787
+ limit: 1000,
3788
+ sizePerUnit: null,
3789
+ unit: 'OCR pages',
3790
+ },
3791
+ {
3792
+ service: enum_1.BillingService.ABYSS_TOOLS,
3793
+ metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
3794
+ limit: 50,
3795
+ sizePerUnit: null,
3796
+ unit: 'templates',
3797
+ },
3798
+ {
3799
+ service: enum_1.BillingService.ABYSS_FORM,
3800
+ metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
3801
+ limit: 5000,
3802
+ sizePerUnit: null,
3803
+ unit: 'submissions',
3804
+ },
3805
+ {
3806
+ service: enum_1.BillingService.ABYSS_FORM,
3807
+ metric: enum_1.BillingMetric.FORM_ALLOW_DOCUMENTS,
3808
+ limit: 1,
3809
+ sizePerUnit: null,
3810
+ unit: '',
3811
+ },
3470
3812
  {
3471
3813
  service: enum_1.BillingService.ABYSS_MEMORIES,
3472
3814
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
@@ -3598,6 +3940,78 @@ exports.PUBLIC_PLANS = [
3598
3940
  pricePerUnit: 50,
3599
3941
  unit: 'board',
3600
3942
  },
3943
+ {
3944
+ service: enum_1.BillingService.ABYSS_TOOLS,
3945
+ metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3946
+ pricePerUnit: 50,
3947
+ unit: 'draw',
3948
+ },
3949
+ {
3950
+ service: enum_1.BillingService.ABYSS_TOOLS,
3951
+ metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3952
+ pricePerUnit: 50,
3953
+ unit: 'atlas',
3954
+ },
3955
+ {
3956
+ service: enum_1.BillingService.ABYSS_TOOLS,
3957
+ metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3958
+ pricePerUnit: 50,
3959
+ unit: 'retrospective',
3960
+ },
3961
+ {
3962
+ service: enum_1.BillingService.ABYSS_TOOLS,
3963
+ metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3964
+ pricePerUnit: 50,
3965
+ unit: 'short link',
3966
+ },
3967
+ {
3968
+ service: enum_1.BillingService.ABYSS_TOOLS,
3969
+ metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3970
+ pricePerUnit: 1,
3971
+ unit: '1k resolutions',
3972
+ },
3973
+ {
3974
+ service: enum_1.BillingService.ABYSS_TOOLS,
3975
+ metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3976
+ pricePerUnit: 50,
3977
+ unit: 'transfer',
3978
+ },
3979
+ {
3980
+ service: enum_1.BillingService.ABYSS_TOOLS,
3981
+ metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3982
+ pricePerUnit: 5,
3983
+ unit: 'upload',
3984
+ },
3985
+ {
3986
+ service: enum_1.BillingService.ABYSS_TOOLS,
3987
+ metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3988
+ pricePerUnit: 10,
3989
+ unit: 'GB',
3990
+ },
3991
+ {
3992
+ service: enum_1.BillingService.ABYSS_TOOLS,
3993
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3994
+ pricePerUnit: 20,
3995
+ unit: 'extraction',
3996
+ },
3997
+ {
3998
+ service: enum_1.BillingService.ABYSS_TOOLS,
3999
+ metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
4000
+ pricePerUnit: 3,
4001
+ unit: 'OCR page',
4002
+ },
4003
+ {
4004
+ service: enum_1.BillingService.ABYSS_TOOLS,
4005
+ metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
4006
+ pricePerUnit: 100,
4007
+ unit: 'template',
4008
+ },
4009
+ {
4010
+ service: enum_1.BillingService.ABYSS_FORM,
4011
+ metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
4012
+ pricePerUnit: 2,
4013
+ unit: 'submission',
4014
+ },
3601
4015
  {
3602
4016
  service: enum_1.BillingService.ABYSS_MEMORIES,
3603
4017
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,