@abyss-project/main 1.12.0 → 2.0.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 (65) hide show
  1. package/dist/api/user.admin.api.d.ts +2 -1
  2. package/dist/api/user.admin.api.js +5 -1
  3. package/dist/api/user.admin.api.js.map +1 -1
  4. package/dist/constants/billing-catalog.constants.d.ts +19 -7
  5. package/dist/constants/billing-catalog.constants.js +40 -60
  6. package/dist/constants/billing-catalog.constants.js.map +1 -1
  7. package/dist/constants/catalog-plan-quotas.constants.d.ts +12 -0
  8. package/dist/constants/catalog-plan-quotas.constants.js +411 -0
  9. package/dist/constants/catalog-plan-quotas.constants.js.map +1 -0
  10. package/dist/constants/index.d.ts +2 -0
  11. package/dist/constants/index.js +2 -0
  12. package/dist/constants/index.js.map +1 -1
  13. package/dist/constants/overage-base-rates.constants.d.ts +6 -0
  14. package/dist/constants/overage-base-rates.constants.js +49 -0
  15. package/dist/constants/overage-base-rates.constants.js.map +1 -0
  16. package/dist/constants/password-policy.constants.d.ts +9 -0
  17. package/dist/constants/password-policy.constants.js +80 -0
  18. package/dist/constants/password-policy.constants.js.map +1 -0
  19. package/dist/constants/public-plans.constants.js +299 -299
  20. package/dist/constants/public-plans.constants.js.map +1 -1
  21. package/dist/index.d.ts +1 -0
  22. package/dist/index.js +1 -0
  23. package/dist/index.js.map +1 -1
  24. package/dist/types/enum/abyss-application-event.enum.d.ts +7 -0
  25. package/dist/types/enum/abyss-application-event.enum.js +7 -0
  26. package/dist/types/enum/abyss-application-event.enum.js.map +1 -1
  27. package/dist/types/enum/api-error.enum.d.ts +2 -0
  28. package/dist/types/enum/api-error.enum.js +2 -0
  29. package/dist/types/enum/api-error.enum.js.map +1 -1
  30. package/dist/types/enum/eur-transaction-type.enum.d.ts +2 -1
  31. package/dist/types/enum/eur-transaction-type.enum.js +1 -0
  32. package/dist/types/enum/eur-transaction-type.enum.js.map +1 -1
  33. package/dist/types/enum/index.d.ts +2 -0
  34. package/dist/types/enum/index.js +2 -0
  35. package/dist/types/enum/index.js.map +1 -1
  36. package/dist/types/enum/password-policy.enum.d.ts +12 -0
  37. package/dist/types/enum/password-policy.enum.js +18 -0
  38. package/dist/types/enum/password-policy.enum.js.map +1 -0
  39. package/dist/types/enum/webhook-event.enum.d.ts +5 -0
  40. package/dist/types/enum/webhook-event.enum.js +10 -0
  41. package/dist/types/enum/webhook-event.enum.js.map +1 -0
  42. package/dist/types/interface/api/requests/billing-account.admin.request.d.ts +1 -0
  43. package/dist/types/interface/api/requests/billing-plan.request.d.ts +2 -1
  44. package/dist/types/interface/api/requests/user.admin.request.d.ts +3 -0
  45. package/dist/types/interface/api/requests/user.request.d.ts +1 -0
  46. package/dist/types/interface/api/responses/billing-account.admin.response.d.ts +1 -1
  47. package/dist/types/interface/api/responses/user-billing.response.d.ts +1 -1
  48. package/dist/types/interface/api/responses/user.admin.response.d.ts +3 -0
  49. package/dist/types/interface/models/billing-account.model.d.ts +2 -0
  50. package/dist/types/interface/models/plan-template.model.d.ts +3 -1
  51. package/dist/types/interface/models/webhook-event.model.d.ts +6 -1
  52. package/dist/utils/index.d.ts +1 -0
  53. package/dist/utils/index.js +1 -0
  54. package/dist/utils/index.js.map +1 -1
  55. package/dist/utils/invoice-amounts.utils.d.ts +9 -0
  56. package/dist/utils/invoice-amounts.utils.js +22 -0
  57. package/dist/utils/invoice-amounts.utils.js.map +1 -0
  58. package/dist/utils/pricing-calculator.utils.d.ts +1 -1
  59. package/dist/utils/pricing-calculator.utils.js +5 -4
  60. package/dist/utils/pricing-calculator.utils.js.map +1 -1
  61. package/dist/utils/pricing.utils.d.ts +6 -0
  62. package/dist/utils/pricing.utils.js +22 -3
  63. package/dist/utils/pricing.utils.js.map +1 -1
  64. package/dist/utils/quota-ceiling.utils.js.map +1 -1
  65. package/package.json +15 -11
@@ -294,181 +294,181 @@ exports.PUBLIC_PLANS = [
294
294
  {
295
295
  service: enum_1.BillingService.ABYSS_PLATFORM,
296
296
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
297
- pricePerUnit: 23,
297
+ nanocentsPerUnit: 3000000000,
298
298
  unit: 'GB',
299
299
  },
300
300
  {
301
301
  service: enum_1.BillingService.ABYSS_CLOUD,
302
302
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
303
- pricePerUnit: 75,
303
+ nanocentsPerUnit: 50000000000,
304
304
  unit: 'file',
305
305
  },
306
306
  {
307
307
  service: enum_1.BillingService.ABYSS_CRYPT,
308
308
  metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
309
- pricePerUnit: 75,
310
- unit: '1k encryptions',
309
+ nanocentsPerUnit: 116000000,
310
+ unit: 'encryptions',
311
311
  },
312
312
  {
313
313
  service: enum_1.BillingService.ABYSS_FORM,
314
314
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
315
- pricePerUnit: 3,
315
+ nanocentsPerUnit: 156000000,
316
316
  unit: 'submission',
317
317
  },
318
318
  {
319
319
  service: enum_1.BillingService.ABYSS_TOOLS,
320
320
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
321
- pricePerUnit: 75,
321
+ nanocentsPerUnit: 116000000000,
322
322
  unit: 'draw',
323
323
  },
324
324
  {
325
325
  service: enum_1.BillingService.ABYSS_TOOLS,
326
326
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
327
- pricePerUnit: 75,
327
+ nanocentsPerUnit: 116000000000,
328
328
  unit: 'board',
329
329
  },
330
330
  {
331
331
  service: enum_1.BillingService.ABYSS_TOOLS,
332
332
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
333
- pricePerUnit: 75,
333
+ nanocentsPerUnit: 116000000000,
334
334
  unit: 'atlas',
335
335
  },
336
336
  {
337
337
  service: enum_1.BillingService.ABYSS_TOOLS,
338
338
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
339
- pricePerUnit: 75,
339
+ nanocentsPerUnit: 116000000000,
340
340
  unit: 'retrospective',
341
341
  },
342
342
  {
343
343
  service: enum_1.BillingService.ABYSS_TOOLS,
344
344
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
345
- pricePerUnit: 75,
345
+ nanocentsPerUnit: 29000000000,
346
346
  unit: 'short link',
347
347
  },
348
348
  {
349
349
  service: enum_1.BillingService.ABYSS_TOOLS,
350
350
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
351
- pricePerUnit: 2,
352
- unit: '1k resolutions',
351
+ nanocentsPerUnit: 11600000,
352
+ unit: 'resolutions',
353
353
  },
354
354
  {
355
355
  service: enum_1.BillingService.ABYSS_TOOLS,
356
356
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
357
- pricePerUnit: 75,
357
+ nanocentsPerUnit: 23200000000,
358
358
  unit: 'transfer',
359
359
  },
360
360
  {
361
361
  service: enum_1.BillingService.ABYSS_TOOLS,
362
362
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
363
- pricePerUnit: 8,
363
+ nanocentsPerUnit: 1160000000,
364
364
  unit: 'upload',
365
365
  },
366
366
  {
367
367
  service: enum_1.BillingService.ABYSS_TOOLS,
368
368
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
369
- pricePerUnit: 15,
369
+ nanocentsPerUnit: 290000000,
370
370
  unit: 'GB',
371
371
  },
372
372
  {
373
373
  service: enum_1.BillingService.ABYSS_TOOLS,
374
374
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
375
- pricePerUnit: 30,
375
+ nanocentsPerUnit: 1960000000,
376
376
  unit: 'extraction',
377
377
  },
378
378
  {
379
379
  service: enum_1.BillingService.ABYSS_TOOLS,
380
380
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
381
- pricePerUnit: 5,
381
+ nanocentsPerUnit: 100000000,
382
382
  unit: 'OCR page',
383
383
  },
384
384
  {
385
385
  service: enum_1.BillingService.ABYSS_TOOLS,
386
386
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
387
- pricePerUnit: 150,
387
+ nanocentsPerUnit: 100000000000,
388
388
  unit: 'template',
389
389
  },
390
390
  {
391
391
  service: enum_1.BillingService.ABYSS_MEMORIES,
392
392
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
393
- pricePerUnit: 75,
393
+ nanocentsPerUnit: 7600000000,
394
394
  unit: 'event',
395
395
  },
396
396
  {
397
397
  service: enum_1.BillingService.ABYSS_BANKING,
398
398
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
399
- pricePerUnit: 300,
399
+ nanocentsPerUnit: 200000000000,
400
400
  unit: 'profile',
401
401
  },
402
402
  {
403
403
  service: enum_1.BillingService.ABYSS_BANKING,
404
404
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
405
- pricePerUnit: 450,
405
+ nanocentsPerUnit: 290000000000,
406
406
  unit: 'profile',
407
407
  },
408
408
  {
409
409
  service: enum_1.BillingService.ABYSS_BANKING,
410
410
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
411
- pricePerUnit: 225,
411
+ nanocentsPerUnit: 260000000000,
412
412
  unit: 'connection',
413
413
  },
414
414
  {
415
415
  service: enum_1.BillingService.ABYSS_BANKING,
416
416
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
417
- pricePerUnit: 75,
417
+ nanocentsPerUnit: 50000000000,
418
418
  unit: 'config',
419
419
  },
420
420
  {
421
421
  service: enum_1.BillingService.ABYSS_BANKING,
422
422
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
423
- pricePerUnit: 75,
423
+ nanocentsPerUnit: 50000000000,
424
424
  unit: 'share',
425
425
  },
426
426
  {
427
427
  service: enum_1.BillingService.ABYSS_BANKING,
428
428
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
429
- pricePerUnit: 150,
429
+ nanocentsPerUnit: 100000000000,
430
430
  unit: 'portfolio',
431
431
  },
432
432
  {
433
433
  service: enum_1.BillingService.ABYSS_BANKING,
434
434
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
435
- pricePerUnit: 8,
435
+ nanocentsPerUnit: 5000000000,
436
436
  unit: 'snapshot',
437
437
  },
438
438
  {
439
439
  service: enum_1.BillingService.ABYSS_BANKING,
440
440
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
441
- pricePerUnit: 8,
441
+ nanocentsPerUnit: 5000000000,
442
442
  unit: 'run',
443
443
  },
444
444
  {
445
445
  service: enum_1.BillingService.ABYSS_BANKING,
446
446
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
447
- pricePerUnit: 3,
447
+ nanocentsPerUnit: 2000000000,
448
448
  unit: 'rescore',
449
449
  },
450
450
  {
451
451
  service: enum_1.BillingService.ABYSS_BANKING,
452
452
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
453
- pricePerUnit: 2,
453
+ nanocentsPerUnit: 1000000000,
454
454
  unit: 'call',
455
455
  },
456
456
  {
457
457
  service: enum_1.BillingService.ABYSS_BANKING,
458
458
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
459
- pricePerUnit: 120,
459
+ nanocentsPerUnit: 80000000000,
460
460
  unit: 'lookup',
461
461
  },
462
462
  {
463
463
  service: enum_1.BillingService.ABYSS_BANKING,
464
464
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
465
- pricePerUnit: 15,
465
+ nanocentsPerUnit: 10000000000,
466
466
  unit: 'call',
467
467
  },
468
468
  {
469
469
  service: enum_1.BillingService.ABYSS_BANKING,
470
470
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
471
- pricePerUnit: 23,
471
+ nanocentsPerUnit: 15000000000,
472
472
  unit: 'refresh',
473
473
  },
474
474
  ],
@@ -764,181 +764,181 @@ exports.PUBLIC_PLANS = [
764
764
  {
765
765
  service: enum_1.BillingService.ABYSS_PLATFORM,
766
766
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
767
- pricePerUnit: 15,
767
+ nanocentsPerUnit: 3000000000,
768
768
  unit: 'GB',
769
769
  },
770
770
  {
771
771
  service: enum_1.BillingService.ABYSS_CLOUD,
772
772
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
773
- pricePerUnit: 50,
773
+ nanocentsPerUnit: 50000000000,
774
774
  unit: 'file',
775
775
  },
776
776
  {
777
777
  service: enum_1.BillingService.ABYSS_CRYPT,
778
778
  metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
779
- pricePerUnit: 50,
780
- unit: '1k encryptions',
779
+ nanocentsPerUnit: 116000000,
780
+ unit: 'encryptions',
781
781
  },
782
782
  {
783
783
  service: enum_1.BillingService.ABYSS_FORM,
784
784
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
785
- pricePerUnit: 2,
785
+ nanocentsPerUnit: 156000000,
786
786
  unit: 'submission',
787
787
  },
788
788
  {
789
789
  service: enum_1.BillingService.ABYSS_TOOLS,
790
790
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
791
- pricePerUnit: 50,
791
+ nanocentsPerUnit: 116000000000,
792
792
  unit: 'draw',
793
793
  },
794
794
  {
795
795
  service: enum_1.BillingService.ABYSS_TOOLS,
796
796
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
797
- pricePerUnit: 50,
797
+ nanocentsPerUnit: 116000000000,
798
798
  unit: 'board',
799
799
  },
800
800
  {
801
801
  service: enum_1.BillingService.ABYSS_TOOLS,
802
802
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
803
- pricePerUnit: 50,
803
+ nanocentsPerUnit: 116000000000,
804
804
  unit: 'atlas',
805
805
  },
806
806
  {
807
807
  service: enum_1.BillingService.ABYSS_TOOLS,
808
808
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
809
- pricePerUnit: 50,
809
+ nanocentsPerUnit: 116000000000,
810
810
  unit: 'retrospective',
811
811
  },
812
812
  {
813
813
  service: enum_1.BillingService.ABYSS_TOOLS,
814
814
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
815
- pricePerUnit: 50,
815
+ nanocentsPerUnit: 29000000000,
816
816
  unit: 'short link',
817
817
  },
818
818
  {
819
819
  service: enum_1.BillingService.ABYSS_TOOLS,
820
820
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
821
- pricePerUnit: 1,
822
- unit: '1k resolutions',
821
+ nanocentsPerUnit: 11600000,
822
+ unit: 'resolutions',
823
823
  },
824
824
  {
825
825
  service: enum_1.BillingService.ABYSS_TOOLS,
826
826
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
827
- pricePerUnit: 50,
827
+ nanocentsPerUnit: 23200000000,
828
828
  unit: 'transfer',
829
829
  },
830
830
  {
831
831
  service: enum_1.BillingService.ABYSS_TOOLS,
832
832
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
833
- pricePerUnit: 5,
833
+ nanocentsPerUnit: 1160000000,
834
834
  unit: 'upload',
835
835
  },
836
836
  {
837
837
  service: enum_1.BillingService.ABYSS_TOOLS,
838
838
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
839
- pricePerUnit: 10,
839
+ nanocentsPerUnit: 290000000,
840
840
  unit: 'GB',
841
841
  },
842
842
  {
843
843
  service: enum_1.BillingService.ABYSS_TOOLS,
844
844
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
845
- pricePerUnit: 20,
845
+ nanocentsPerUnit: 1960000000,
846
846
  unit: 'extraction',
847
847
  },
848
848
  {
849
849
  service: enum_1.BillingService.ABYSS_TOOLS,
850
850
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
851
- pricePerUnit: 3,
851
+ nanocentsPerUnit: 100000000,
852
852
  unit: 'OCR page',
853
853
  },
854
854
  {
855
855
  service: enum_1.BillingService.ABYSS_TOOLS,
856
856
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
857
- pricePerUnit: 100,
857
+ nanocentsPerUnit: 100000000000,
858
858
  unit: 'template',
859
859
  },
860
860
  {
861
861
  service: enum_1.BillingService.ABYSS_MEMORIES,
862
862
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
863
- pricePerUnit: 50,
863
+ nanocentsPerUnit: 7600000000,
864
864
  unit: 'event',
865
865
  },
866
866
  {
867
867
  service: enum_1.BillingService.ABYSS_BANKING,
868
868
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
869
- pricePerUnit: 200,
869
+ nanocentsPerUnit: 200000000000,
870
870
  unit: 'profile',
871
871
  },
872
872
  {
873
873
  service: enum_1.BillingService.ABYSS_BANKING,
874
874
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
875
- pricePerUnit: 300,
875
+ nanocentsPerUnit: 290000000000,
876
876
  unit: 'profile',
877
877
  },
878
878
  {
879
879
  service: enum_1.BillingService.ABYSS_BANKING,
880
880
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
881
- pricePerUnit: 150,
881
+ nanocentsPerUnit: 260000000000,
882
882
  unit: 'connection',
883
883
  },
884
884
  {
885
885
  service: enum_1.BillingService.ABYSS_BANKING,
886
886
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
887
- pricePerUnit: 50,
887
+ nanocentsPerUnit: 50000000000,
888
888
  unit: 'config',
889
889
  },
890
890
  {
891
891
  service: enum_1.BillingService.ABYSS_BANKING,
892
892
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
893
- pricePerUnit: 50,
893
+ nanocentsPerUnit: 50000000000,
894
894
  unit: 'share',
895
895
  },
896
896
  {
897
897
  service: enum_1.BillingService.ABYSS_BANKING,
898
898
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
899
- pricePerUnit: 100,
899
+ nanocentsPerUnit: 100000000000,
900
900
  unit: 'portfolio',
901
901
  },
902
902
  {
903
903
  service: enum_1.BillingService.ABYSS_BANKING,
904
904
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
905
- pricePerUnit: 5,
905
+ nanocentsPerUnit: 5000000000,
906
906
  unit: 'snapshot',
907
907
  },
908
908
  {
909
909
  service: enum_1.BillingService.ABYSS_BANKING,
910
910
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
911
- pricePerUnit: 5,
911
+ nanocentsPerUnit: 5000000000,
912
912
  unit: 'run',
913
913
  },
914
914
  {
915
915
  service: enum_1.BillingService.ABYSS_BANKING,
916
916
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
917
- pricePerUnit: 2,
917
+ nanocentsPerUnit: 2000000000,
918
918
  unit: 'rescore',
919
919
  },
920
920
  {
921
921
  service: enum_1.BillingService.ABYSS_BANKING,
922
922
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
923
- pricePerUnit: 1,
923
+ nanocentsPerUnit: 1000000000,
924
924
  unit: 'call',
925
925
  },
926
926
  {
927
927
  service: enum_1.BillingService.ABYSS_BANKING,
928
928
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
929
- pricePerUnit: 80,
929
+ nanocentsPerUnit: 80000000000,
930
930
  unit: 'lookup',
931
931
  },
932
932
  {
933
933
  service: enum_1.BillingService.ABYSS_BANKING,
934
934
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
935
- pricePerUnit: 10,
935
+ nanocentsPerUnit: 10000000000,
936
936
  unit: 'call',
937
937
  },
938
938
  {
939
939
  service: enum_1.BillingService.ABYSS_BANKING,
940
940
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
941
- pricePerUnit: 15,
941
+ nanocentsPerUnit: 15000000000,
942
942
  unit: 'refresh',
943
943
  },
944
944
  ],
@@ -1234,181 +1234,181 @@ exports.PUBLIC_PLANS = [
1234
1234
  {
1235
1235
  service: enum_1.BillingService.ABYSS_PLATFORM,
1236
1236
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
1237
- pricePerUnit: 15,
1237
+ nanocentsPerUnit: 3000000000,
1238
1238
  unit: 'GB',
1239
1239
  },
1240
1240
  {
1241
1241
  service: enum_1.BillingService.ABYSS_CLOUD,
1242
1242
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
1243
- pricePerUnit: 50,
1243
+ nanocentsPerUnit: 50000000000,
1244
1244
  unit: 'file',
1245
1245
  },
1246
1246
  {
1247
1247
  service: enum_1.BillingService.ABYSS_CRYPT,
1248
1248
  metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
1249
- pricePerUnit: 50,
1250
- unit: '1k encryptions',
1249
+ nanocentsPerUnit: 116000000,
1250
+ unit: 'encryptions',
1251
1251
  },
1252
1252
  {
1253
1253
  service: enum_1.BillingService.ABYSS_FORM,
1254
1254
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
1255
- pricePerUnit: 2,
1255
+ nanocentsPerUnit: 156000000,
1256
1256
  unit: 'submission',
1257
1257
  },
1258
1258
  {
1259
1259
  service: enum_1.BillingService.ABYSS_TOOLS,
1260
1260
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
1261
- pricePerUnit: 50,
1261
+ nanocentsPerUnit: 116000000000,
1262
1262
  unit: 'draw',
1263
1263
  },
1264
1264
  {
1265
1265
  service: enum_1.BillingService.ABYSS_TOOLS,
1266
1266
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
1267
- pricePerUnit: 50,
1267
+ nanocentsPerUnit: 116000000000,
1268
1268
  unit: 'board',
1269
1269
  },
1270
1270
  {
1271
1271
  service: enum_1.BillingService.ABYSS_TOOLS,
1272
1272
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
1273
- pricePerUnit: 50,
1273
+ nanocentsPerUnit: 116000000000,
1274
1274
  unit: 'atlas',
1275
1275
  },
1276
1276
  {
1277
1277
  service: enum_1.BillingService.ABYSS_TOOLS,
1278
1278
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
1279
- pricePerUnit: 50,
1279
+ nanocentsPerUnit: 116000000000,
1280
1280
  unit: 'retrospective',
1281
1281
  },
1282
1282
  {
1283
1283
  service: enum_1.BillingService.ABYSS_TOOLS,
1284
1284
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
1285
- pricePerUnit: 50,
1285
+ nanocentsPerUnit: 29000000000,
1286
1286
  unit: 'short link',
1287
1287
  },
1288
1288
  {
1289
1289
  service: enum_1.BillingService.ABYSS_TOOLS,
1290
1290
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
1291
- pricePerUnit: 1,
1292
- unit: '1k resolutions',
1291
+ nanocentsPerUnit: 11600000,
1292
+ unit: 'resolutions',
1293
1293
  },
1294
1294
  {
1295
1295
  service: enum_1.BillingService.ABYSS_TOOLS,
1296
1296
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
1297
- pricePerUnit: 50,
1297
+ nanocentsPerUnit: 23200000000,
1298
1298
  unit: 'transfer',
1299
1299
  },
1300
1300
  {
1301
1301
  service: enum_1.BillingService.ABYSS_TOOLS,
1302
1302
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
1303
- pricePerUnit: 5,
1303
+ nanocentsPerUnit: 1160000000,
1304
1304
  unit: 'upload',
1305
1305
  },
1306
1306
  {
1307
1307
  service: enum_1.BillingService.ABYSS_TOOLS,
1308
1308
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
1309
- pricePerUnit: 10,
1309
+ nanocentsPerUnit: 290000000,
1310
1310
  unit: 'GB',
1311
1311
  },
1312
1312
  {
1313
1313
  service: enum_1.BillingService.ABYSS_TOOLS,
1314
1314
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
1315
- pricePerUnit: 20,
1315
+ nanocentsPerUnit: 1960000000,
1316
1316
  unit: 'extraction',
1317
1317
  },
1318
1318
  {
1319
1319
  service: enum_1.BillingService.ABYSS_TOOLS,
1320
1320
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
1321
- pricePerUnit: 3,
1321
+ nanocentsPerUnit: 100000000,
1322
1322
  unit: 'OCR page',
1323
1323
  },
1324
1324
  {
1325
1325
  service: enum_1.BillingService.ABYSS_TOOLS,
1326
1326
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
1327
- pricePerUnit: 100,
1327
+ nanocentsPerUnit: 100000000000,
1328
1328
  unit: 'template',
1329
1329
  },
1330
1330
  {
1331
1331
  service: enum_1.BillingService.ABYSS_MEMORIES,
1332
1332
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
1333
- pricePerUnit: 50,
1333
+ nanocentsPerUnit: 7600000000,
1334
1334
  unit: 'event',
1335
1335
  },
1336
1336
  {
1337
1337
  service: enum_1.BillingService.ABYSS_BANKING,
1338
1338
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
1339
- pricePerUnit: 200,
1339
+ nanocentsPerUnit: 200000000000,
1340
1340
  unit: 'profile',
1341
1341
  },
1342
1342
  {
1343
1343
  service: enum_1.BillingService.ABYSS_BANKING,
1344
1344
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
1345
- pricePerUnit: 300,
1345
+ nanocentsPerUnit: 290000000000,
1346
1346
  unit: 'profile',
1347
1347
  },
1348
1348
  {
1349
1349
  service: enum_1.BillingService.ABYSS_BANKING,
1350
1350
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
1351
- pricePerUnit: 150,
1351
+ nanocentsPerUnit: 260000000000,
1352
1352
  unit: 'connection',
1353
1353
  },
1354
1354
  {
1355
1355
  service: enum_1.BillingService.ABYSS_BANKING,
1356
1356
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
1357
- pricePerUnit: 50,
1357
+ nanocentsPerUnit: 50000000000,
1358
1358
  unit: 'config',
1359
1359
  },
1360
1360
  {
1361
1361
  service: enum_1.BillingService.ABYSS_BANKING,
1362
1362
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
1363
- pricePerUnit: 50,
1363
+ nanocentsPerUnit: 50000000000,
1364
1364
  unit: 'share',
1365
1365
  },
1366
1366
  {
1367
1367
  service: enum_1.BillingService.ABYSS_BANKING,
1368
1368
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
1369
- pricePerUnit: 100,
1369
+ nanocentsPerUnit: 100000000000,
1370
1370
  unit: 'portfolio',
1371
1371
  },
1372
1372
  {
1373
1373
  service: enum_1.BillingService.ABYSS_BANKING,
1374
1374
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
1375
- pricePerUnit: 5,
1375
+ nanocentsPerUnit: 5000000000,
1376
1376
  unit: 'snapshot',
1377
1377
  },
1378
1378
  {
1379
1379
  service: enum_1.BillingService.ABYSS_BANKING,
1380
1380
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
1381
- pricePerUnit: 5,
1381
+ nanocentsPerUnit: 5000000000,
1382
1382
  unit: 'run',
1383
1383
  },
1384
1384
  {
1385
1385
  service: enum_1.BillingService.ABYSS_BANKING,
1386
1386
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
1387
- pricePerUnit: 2,
1387
+ nanocentsPerUnit: 2000000000,
1388
1388
  unit: 'rescore',
1389
1389
  },
1390
1390
  {
1391
1391
  service: enum_1.BillingService.ABYSS_BANKING,
1392
1392
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
1393
- pricePerUnit: 1,
1393
+ nanocentsPerUnit: 1000000000,
1394
1394
  unit: 'call',
1395
1395
  },
1396
1396
  {
1397
1397
  service: enum_1.BillingService.ABYSS_BANKING,
1398
1398
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
1399
- pricePerUnit: 80,
1399
+ nanocentsPerUnit: 80000000000,
1400
1400
  unit: 'lookup',
1401
1401
  },
1402
1402
  {
1403
1403
  service: enum_1.BillingService.ABYSS_BANKING,
1404
1404
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
1405
- pricePerUnit: 10,
1405
+ nanocentsPerUnit: 10000000000,
1406
1406
  unit: 'call',
1407
1407
  },
1408
1408
  {
1409
1409
  service: enum_1.BillingService.ABYSS_BANKING,
1410
1410
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
1411
- pricePerUnit: 15,
1411
+ nanocentsPerUnit: 15000000000,
1412
1412
  unit: 'refresh',
1413
1413
  },
1414
1414
  ],
@@ -1767,253 +1767,253 @@ exports.PUBLIC_PLANS = [
1767
1767
  {
1768
1768
  service: enum_1.BillingService.ABYSS_CRYPT,
1769
1769
  metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
1770
- pricePerUnit: 75,
1771
- unit: '1k encryptions',
1770
+ nanocentsPerUnit: 116000000,
1771
+ unit: 'encryptions',
1772
1772
  },
1773
1773
  {
1774
1774
  service: enum_1.BillingService.ABYSS_PLATFORM,
1775
1775
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
1776
- pricePerUnit: 300,
1776
+ nanocentsPerUnit: 200000000000,
1777
1777
  unit: 'project',
1778
1778
  },
1779
1779
  {
1780
1780
  service: enum_1.BillingService.ABYSS_PLATFORM,
1781
1781
  metric: enum_1.BillingMetric.MEMBERS_COUNT,
1782
- pricePerUnit: 300,
1782
+ nanocentsPerUnit: 300000000000,
1783
1783
  unit: 'member',
1784
1784
  },
1785
1785
  {
1786
1786
  service: enum_1.BillingService.ABYSS_PLATFORM,
1787
1787
  metric: enum_1.BillingMetric.TEAM_COUNT,
1788
- pricePerUnit: 150,
1788
+ nanocentsPerUnit: 100000000000,
1789
1789
  unit: 'team',
1790
1790
  },
1791
1791
  {
1792
1792
  service: enum_1.BillingService.ABYSS_PLATFORM,
1793
1793
  metric: enum_1.BillingMetric.API_KEYS_COUNT,
1794
- pricePerUnit: 75,
1794
+ nanocentsPerUnit: 50000000000,
1795
1795
  unit: 'API key',
1796
1796
  },
1797
1797
  {
1798
1798
  service: enum_1.BillingService.ABYSS_PLATFORM,
1799
1799
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
1800
- pricePerUnit: 23,
1800
+ nanocentsPerUnit: 3000000000,
1801
1801
  unit: 'GB',
1802
1802
  },
1803
1803
  {
1804
1804
  service: enum_1.BillingService.ABYSS_STORAGE,
1805
1805
  metric: enum_1.BillingMetric.FILES_COUNT,
1806
- pricePerUnit: 75,
1806
+ nanocentsPerUnit: 50000000000,
1807
1807
  unit: 'file',
1808
1808
  },
1809
1809
  {
1810
1810
  service: enum_1.BillingService.ABYSS_STORAGE,
1811
1811
  metric: enum_1.BillingMetric.PRESIGNED_URLS,
1812
- pricePerUnit: 75,
1812
+ nanocentsPerUnit: 2450000,
1813
1813
  unit: 'request',
1814
1814
  },
1815
1815
  {
1816
1816
  service: enum_1.BillingService.ABYSS_STORAGE,
1817
1817
  metric: enum_1.BillingMetric.BANDWIDTH_GB,
1818
- pricePerUnit: 15,
1818
+ nanocentsPerUnit: 290000000,
1819
1819
  unit: 'GB',
1820
1820
  },
1821
1821
  {
1822
1822
  service: enum_1.BillingService.ABYSS_MONITOR,
1823
1823
  metric: enum_1.BillingMetric.LOG_EVENTS,
1824
- pricePerUnit: 3,
1825
- unit: '1k events',
1824
+ nanocentsPerUnit: 58000,
1825
+ unit: 'events',
1826
1826
  },
1827
1827
  {
1828
1828
  service: enum_1.BillingService.ABYSS_MONITOR,
1829
1829
  metric: enum_1.BillingMetric.APPLICATIONS,
1830
- pricePerUnit: 150,
1830
+ nanocentsPerUnit: 100000000000,
1831
1831
  unit: 'application',
1832
1832
  },
1833
1833
  {
1834
1834
  service: enum_1.BillingService.ABYSS_MONITOR,
1835
1835
  metric: enum_1.BillingMetric.MONITOR_WEBHOOK_INVOCATIONS_MONTH,
1836
- pricePerUnit: 3,
1837
- unit: '1k invocations',
1836
+ nanocentsPerUnit: 29000000,
1837
+ unit: 'invocations',
1838
1838
  },
1839
1839
  {
1840
1840
  service: enum_1.BillingService.ABYSS_CLOUD,
1841
1841
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
1842
- pricePerUnit: 75,
1842
+ nanocentsPerUnit: 50000000000,
1843
1843
  unit: 'file',
1844
1844
  },
1845
1845
  {
1846
1846
  service: enum_1.BillingService.ABYSS_FORM,
1847
1847
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
1848
- pricePerUnit: 3,
1848
+ nanocentsPerUnit: 156000000,
1849
1849
  unit: 'submission',
1850
1850
  },
1851
1851
  {
1852
1852
  service: enum_1.BillingService.ABYSS_TOOLS,
1853
1853
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
1854
- pricePerUnit: 75,
1854
+ nanocentsPerUnit: 116000000000,
1855
1855
  unit: 'draw',
1856
1856
  },
1857
1857
  {
1858
1858
  service: enum_1.BillingService.ABYSS_TOOLS,
1859
1859
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
1860
- pricePerUnit: 75,
1860
+ nanocentsPerUnit: 116000000000,
1861
1861
  unit: 'board',
1862
1862
  },
1863
1863
  {
1864
1864
  service: enum_1.BillingService.ABYSS_TOOLS,
1865
1865
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
1866
- pricePerUnit: 75,
1866
+ nanocentsPerUnit: 116000000000,
1867
1867
  unit: 'atlas',
1868
1868
  },
1869
1869
  {
1870
1870
  service: enum_1.BillingService.ABYSS_TOOLS,
1871
1871
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
1872
- pricePerUnit: 75,
1872
+ nanocentsPerUnit: 116000000000,
1873
1873
  unit: 'retrospective',
1874
1874
  },
1875
1875
  {
1876
1876
  service: enum_1.BillingService.ABYSS_TOOLS,
1877
1877
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
1878
- pricePerUnit: 75,
1878
+ nanocentsPerUnit: 29000000000,
1879
1879
  unit: 'short link',
1880
1880
  },
1881
1881
  {
1882
1882
  service: enum_1.BillingService.ABYSS_TOOLS,
1883
1883
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
1884
- pricePerUnit: 2,
1885
- unit: '1k resolutions',
1884
+ nanocentsPerUnit: 11600000,
1885
+ unit: 'resolutions',
1886
1886
  },
1887
1887
  {
1888
1888
  service: enum_1.BillingService.ABYSS_TOOLS,
1889
1889
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
1890
- pricePerUnit: 75,
1890
+ nanocentsPerUnit: 23200000000,
1891
1891
  unit: 'transfer',
1892
1892
  },
1893
1893
  {
1894
1894
  service: enum_1.BillingService.ABYSS_TOOLS,
1895
1895
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
1896
- pricePerUnit: 8,
1896
+ nanocentsPerUnit: 1160000000,
1897
1897
  unit: 'upload',
1898
1898
  },
1899
1899
  {
1900
1900
  service: enum_1.BillingService.ABYSS_TOOLS,
1901
1901
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
1902
- pricePerUnit: 15,
1902
+ nanocentsPerUnit: 290000000,
1903
1903
  unit: 'GB',
1904
1904
  },
1905
1905
  {
1906
1906
  service: enum_1.BillingService.ABYSS_TOOLS,
1907
1907
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
1908
- pricePerUnit: 30,
1908
+ nanocentsPerUnit: 1960000000,
1909
1909
  unit: 'extraction',
1910
1910
  },
1911
1911
  {
1912
1912
  service: enum_1.BillingService.ABYSS_TOOLS,
1913
1913
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
1914
- pricePerUnit: 5,
1914
+ nanocentsPerUnit: 100000000,
1915
1915
  unit: 'OCR page',
1916
1916
  },
1917
1917
  {
1918
1918
  service: enum_1.BillingService.ABYSS_TOOLS,
1919
1919
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
1920
- pricePerUnit: 150,
1920
+ nanocentsPerUnit: 100000000000,
1921
1921
  unit: 'template',
1922
1922
  },
1923
1923
  {
1924
1924
  service: enum_1.BillingService.ABYSS_SPOTLIGHT,
1925
1925
  metric: enum_1.BillingMetric.SPOTLIGHT_PAGES_COUNT,
1926
- pricePerUnit: 150,
1926
+ nanocentsPerUnit: 100000000000,
1927
1927
  unit: 'page',
1928
1928
  },
1929
1929
  {
1930
1930
  service: enum_1.BillingService.ABYSS_SPOTLIGHT,
1931
1931
  metric: enum_1.BillingMetric.SPOTLIGHT_PAGE_VIEWS_MONTH,
1932
- pricePerUnit: 2,
1933
- unit: '1k views',
1932
+ nanocentsPerUnit: 7740000,
1933
+ unit: 'views',
1934
1934
  },
1935
1935
  {
1936
1936
  service: enum_1.BillingService.ABYSS_MEMORIES,
1937
1937
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
1938
- pricePerUnit: 75,
1938
+ nanocentsPerUnit: 7600000000,
1939
1939
  unit: 'event',
1940
1940
  },
1941
1941
  {
1942
1942
  service: enum_1.BillingService.ABYSS_BANKING,
1943
1943
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
1944
- pricePerUnit: 300,
1944
+ nanocentsPerUnit: 200000000000,
1945
1945
  unit: 'profile',
1946
1946
  },
1947
1947
  {
1948
1948
  service: enum_1.BillingService.ABYSS_BANKING,
1949
1949
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
1950
- pricePerUnit: 450,
1950
+ nanocentsPerUnit: 290000000000,
1951
1951
  unit: 'profile',
1952
1952
  },
1953
1953
  {
1954
1954
  service: enum_1.BillingService.ABYSS_BANKING,
1955
1955
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
1956
- pricePerUnit: 225,
1956
+ nanocentsPerUnit: 260000000000,
1957
1957
  unit: 'connection',
1958
1958
  },
1959
1959
  {
1960
1960
  service: enum_1.BillingService.ABYSS_BANKING,
1961
1961
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
1962
- pricePerUnit: 75,
1962
+ nanocentsPerUnit: 50000000000,
1963
1963
  unit: 'config',
1964
1964
  },
1965
1965
  {
1966
1966
  service: enum_1.BillingService.ABYSS_BANKING,
1967
1967
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
1968
- pricePerUnit: 75,
1968
+ nanocentsPerUnit: 50000000000,
1969
1969
  unit: 'share',
1970
1970
  },
1971
1971
  {
1972
1972
  service: enum_1.BillingService.ABYSS_BANKING,
1973
1973
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
1974
- pricePerUnit: 150,
1974
+ nanocentsPerUnit: 100000000000,
1975
1975
  unit: 'portfolio',
1976
1976
  },
1977
1977
  {
1978
1978
  service: enum_1.BillingService.ABYSS_BANKING,
1979
1979
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
1980
- pricePerUnit: 8,
1980
+ nanocentsPerUnit: 5000000000,
1981
1981
  unit: 'snapshot',
1982
1982
  },
1983
1983
  {
1984
1984
  service: enum_1.BillingService.ABYSS_BANKING,
1985
1985
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
1986
- pricePerUnit: 8,
1986
+ nanocentsPerUnit: 5000000000,
1987
1987
  unit: 'run',
1988
1988
  },
1989
1989
  {
1990
1990
  service: enum_1.BillingService.ABYSS_BANKING,
1991
1991
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
1992
- pricePerUnit: 3,
1992
+ nanocentsPerUnit: 2000000000,
1993
1993
  unit: 'rescore',
1994
1994
  },
1995
1995
  {
1996
1996
  service: enum_1.BillingService.ABYSS_BANKING,
1997
1997
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
1998
- pricePerUnit: 2,
1998
+ nanocentsPerUnit: 1000000000,
1999
1999
  unit: 'call',
2000
2000
  },
2001
2001
  {
2002
2002
  service: enum_1.BillingService.ABYSS_BANKING,
2003
2003
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
2004
- pricePerUnit: 120,
2004
+ nanocentsPerUnit: 80000000000,
2005
2005
  unit: 'lookup',
2006
2006
  },
2007
2007
  {
2008
2008
  service: enum_1.BillingService.ABYSS_BANKING,
2009
2009
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
2010
- pricePerUnit: 15,
2010
+ nanocentsPerUnit: 10000000000,
2011
2011
  unit: 'call',
2012
2012
  },
2013
2013
  {
2014
2014
  service: enum_1.BillingService.ABYSS_BANKING,
2015
2015
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
2016
- pricePerUnit: 23,
2016
+ nanocentsPerUnit: 15000000000,
2017
2017
  unit: 'refresh',
2018
2018
  },
2019
2019
  ],
@@ -2372,253 +2372,253 @@ exports.PUBLIC_PLANS = [
2372
2372
  {
2373
2373
  service: enum_1.BillingService.ABYSS_CRYPT,
2374
2374
  metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
2375
- pricePerUnit: 50,
2376
- unit: '1k encryptions',
2375
+ nanocentsPerUnit: 116000000,
2376
+ unit: 'encryptions',
2377
2377
  },
2378
2378
  {
2379
2379
  service: enum_1.BillingService.ABYSS_PLATFORM,
2380
2380
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
2381
- pricePerUnit: 200,
2381
+ nanocentsPerUnit: 200000000000,
2382
2382
  unit: 'project',
2383
2383
  },
2384
2384
  {
2385
2385
  service: enum_1.BillingService.ABYSS_PLATFORM,
2386
2386
  metric: enum_1.BillingMetric.MEMBERS_COUNT,
2387
- pricePerUnit: 200,
2387
+ nanocentsPerUnit: 300000000000,
2388
2388
  unit: 'member',
2389
2389
  },
2390
2390
  {
2391
2391
  service: enum_1.BillingService.ABYSS_PLATFORM,
2392
2392
  metric: enum_1.BillingMetric.TEAM_COUNT,
2393
- pricePerUnit: 100,
2393
+ nanocentsPerUnit: 100000000000,
2394
2394
  unit: 'team',
2395
2395
  },
2396
2396
  {
2397
2397
  service: enum_1.BillingService.ABYSS_PLATFORM,
2398
2398
  metric: enum_1.BillingMetric.API_KEYS_COUNT,
2399
- pricePerUnit: 50,
2399
+ nanocentsPerUnit: 50000000000,
2400
2400
  unit: 'API key',
2401
2401
  },
2402
2402
  {
2403
2403
  service: enum_1.BillingService.ABYSS_PLATFORM,
2404
2404
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
2405
- pricePerUnit: 15,
2405
+ nanocentsPerUnit: 3000000000,
2406
2406
  unit: 'GB',
2407
2407
  },
2408
2408
  {
2409
2409
  service: enum_1.BillingService.ABYSS_STORAGE,
2410
2410
  metric: enum_1.BillingMetric.FILES_COUNT,
2411
- pricePerUnit: 50,
2411
+ nanocentsPerUnit: 50000000000,
2412
2412
  unit: 'file',
2413
2413
  },
2414
2414
  {
2415
2415
  service: enum_1.BillingService.ABYSS_STORAGE,
2416
2416
  metric: enum_1.BillingMetric.PRESIGNED_URLS,
2417
- pricePerUnit: 50,
2417
+ nanocentsPerUnit: 2450000,
2418
2418
  unit: 'request',
2419
2419
  },
2420
2420
  {
2421
2421
  service: enum_1.BillingService.ABYSS_STORAGE,
2422
2422
  metric: enum_1.BillingMetric.BANDWIDTH_GB,
2423
- pricePerUnit: 10,
2423
+ nanocentsPerUnit: 290000000,
2424
2424
  unit: 'GB',
2425
2425
  },
2426
2426
  {
2427
2427
  service: enum_1.BillingService.ABYSS_MONITOR,
2428
2428
  metric: enum_1.BillingMetric.LOG_EVENTS,
2429
- pricePerUnit: 2,
2430
- unit: '1k events',
2429
+ nanocentsPerUnit: 58000,
2430
+ unit: 'events',
2431
2431
  },
2432
2432
  {
2433
2433
  service: enum_1.BillingService.ABYSS_MONITOR,
2434
2434
  metric: enum_1.BillingMetric.APPLICATIONS,
2435
- pricePerUnit: 100,
2435
+ nanocentsPerUnit: 100000000000,
2436
2436
  unit: 'application',
2437
2437
  },
2438
2438
  {
2439
2439
  service: enum_1.BillingService.ABYSS_MONITOR,
2440
2440
  metric: enum_1.BillingMetric.MONITOR_WEBHOOK_INVOCATIONS_MONTH,
2441
- pricePerUnit: 2,
2442
- unit: '1k invocations',
2441
+ nanocentsPerUnit: 29000000,
2442
+ unit: 'invocations',
2443
2443
  },
2444
2444
  {
2445
2445
  service: enum_1.BillingService.ABYSS_CLOUD,
2446
2446
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
2447
- pricePerUnit: 50,
2447
+ nanocentsPerUnit: 50000000000,
2448
2448
  unit: 'file',
2449
2449
  },
2450
2450
  {
2451
2451
  service: enum_1.BillingService.ABYSS_FORM,
2452
2452
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
2453
- pricePerUnit: 2,
2453
+ nanocentsPerUnit: 156000000,
2454
2454
  unit: 'submission',
2455
2455
  },
2456
2456
  {
2457
2457
  service: enum_1.BillingService.ABYSS_TOOLS,
2458
2458
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
2459
- pricePerUnit: 50,
2459
+ nanocentsPerUnit: 116000000000,
2460
2460
  unit: 'draw',
2461
2461
  },
2462
2462
  {
2463
2463
  service: enum_1.BillingService.ABYSS_TOOLS,
2464
2464
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
2465
- pricePerUnit: 50,
2465
+ nanocentsPerUnit: 116000000000,
2466
2466
  unit: 'board',
2467
2467
  },
2468
2468
  {
2469
2469
  service: enum_1.BillingService.ABYSS_TOOLS,
2470
2470
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
2471
- pricePerUnit: 50,
2471
+ nanocentsPerUnit: 116000000000,
2472
2472
  unit: 'atlas',
2473
2473
  },
2474
2474
  {
2475
2475
  service: enum_1.BillingService.ABYSS_TOOLS,
2476
2476
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
2477
- pricePerUnit: 50,
2477
+ nanocentsPerUnit: 116000000000,
2478
2478
  unit: 'retrospective',
2479
2479
  },
2480
2480
  {
2481
2481
  service: enum_1.BillingService.ABYSS_TOOLS,
2482
2482
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
2483
- pricePerUnit: 50,
2483
+ nanocentsPerUnit: 29000000000,
2484
2484
  unit: 'short link',
2485
2485
  },
2486
2486
  {
2487
2487
  service: enum_1.BillingService.ABYSS_TOOLS,
2488
2488
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
2489
- pricePerUnit: 1,
2490
- unit: '1k resolutions',
2489
+ nanocentsPerUnit: 11600000,
2490
+ unit: 'resolutions',
2491
2491
  },
2492
2492
  {
2493
2493
  service: enum_1.BillingService.ABYSS_TOOLS,
2494
2494
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
2495
- pricePerUnit: 50,
2495
+ nanocentsPerUnit: 23200000000,
2496
2496
  unit: 'transfer',
2497
2497
  },
2498
2498
  {
2499
2499
  service: enum_1.BillingService.ABYSS_TOOLS,
2500
2500
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
2501
- pricePerUnit: 5,
2501
+ nanocentsPerUnit: 1160000000,
2502
2502
  unit: 'upload',
2503
2503
  },
2504
2504
  {
2505
2505
  service: enum_1.BillingService.ABYSS_TOOLS,
2506
2506
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
2507
- pricePerUnit: 10,
2507
+ nanocentsPerUnit: 290000000,
2508
2508
  unit: 'GB',
2509
2509
  },
2510
2510
  {
2511
2511
  service: enum_1.BillingService.ABYSS_TOOLS,
2512
2512
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
2513
- pricePerUnit: 20,
2513
+ nanocentsPerUnit: 1960000000,
2514
2514
  unit: 'extraction',
2515
2515
  },
2516
2516
  {
2517
2517
  service: enum_1.BillingService.ABYSS_TOOLS,
2518
2518
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
2519
- pricePerUnit: 3,
2519
+ nanocentsPerUnit: 100000000,
2520
2520
  unit: 'OCR page',
2521
2521
  },
2522
2522
  {
2523
2523
  service: enum_1.BillingService.ABYSS_TOOLS,
2524
2524
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
2525
- pricePerUnit: 100,
2525
+ nanocentsPerUnit: 100000000000,
2526
2526
  unit: 'template',
2527
2527
  },
2528
2528
  {
2529
2529
  service: enum_1.BillingService.ABYSS_SPOTLIGHT,
2530
2530
  metric: enum_1.BillingMetric.SPOTLIGHT_PAGES_COUNT,
2531
- pricePerUnit: 100,
2531
+ nanocentsPerUnit: 100000000000,
2532
2532
  unit: 'page',
2533
2533
  },
2534
2534
  {
2535
2535
  service: enum_1.BillingService.ABYSS_SPOTLIGHT,
2536
2536
  metric: enum_1.BillingMetric.SPOTLIGHT_PAGE_VIEWS_MONTH,
2537
- pricePerUnit: 1,
2538
- unit: '1k views',
2537
+ nanocentsPerUnit: 7740000,
2538
+ unit: 'views',
2539
2539
  },
2540
2540
  {
2541
2541
  service: enum_1.BillingService.ABYSS_MEMORIES,
2542
2542
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
2543
- pricePerUnit: 50,
2543
+ nanocentsPerUnit: 7600000000,
2544
2544
  unit: 'event',
2545
2545
  },
2546
2546
  {
2547
2547
  service: enum_1.BillingService.ABYSS_BANKING,
2548
2548
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
2549
- pricePerUnit: 200,
2549
+ nanocentsPerUnit: 200000000000,
2550
2550
  unit: 'profile',
2551
2551
  },
2552
2552
  {
2553
2553
  service: enum_1.BillingService.ABYSS_BANKING,
2554
2554
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
2555
- pricePerUnit: 300,
2555
+ nanocentsPerUnit: 290000000000,
2556
2556
  unit: 'profile',
2557
2557
  },
2558
2558
  {
2559
2559
  service: enum_1.BillingService.ABYSS_BANKING,
2560
2560
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
2561
- pricePerUnit: 150,
2561
+ nanocentsPerUnit: 260000000000,
2562
2562
  unit: 'connection',
2563
2563
  },
2564
2564
  {
2565
2565
  service: enum_1.BillingService.ABYSS_BANKING,
2566
2566
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
2567
- pricePerUnit: 50,
2567
+ nanocentsPerUnit: 50000000000,
2568
2568
  unit: 'config',
2569
2569
  },
2570
2570
  {
2571
2571
  service: enum_1.BillingService.ABYSS_BANKING,
2572
2572
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
2573
- pricePerUnit: 50,
2573
+ nanocentsPerUnit: 50000000000,
2574
2574
  unit: 'share',
2575
2575
  },
2576
2576
  {
2577
2577
  service: enum_1.BillingService.ABYSS_BANKING,
2578
2578
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
2579
- pricePerUnit: 100,
2579
+ nanocentsPerUnit: 100000000000,
2580
2580
  unit: 'portfolio',
2581
2581
  },
2582
2582
  {
2583
2583
  service: enum_1.BillingService.ABYSS_BANKING,
2584
2584
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
2585
- pricePerUnit: 5,
2585
+ nanocentsPerUnit: 5000000000,
2586
2586
  unit: 'snapshot',
2587
2587
  },
2588
2588
  {
2589
2589
  service: enum_1.BillingService.ABYSS_BANKING,
2590
2590
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
2591
- pricePerUnit: 5,
2591
+ nanocentsPerUnit: 5000000000,
2592
2592
  unit: 'run',
2593
2593
  },
2594
2594
  {
2595
2595
  service: enum_1.BillingService.ABYSS_BANKING,
2596
2596
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
2597
- pricePerUnit: 2,
2597
+ nanocentsPerUnit: 2000000000,
2598
2598
  unit: 'rescore',
2599
2599
  },
2600
2600
  {
2601
2601
  service: enum_1.BillingService.ABYSS_BANKING,
2602
2602
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
2603
- pricePerUnit: 1,
2603
+ nanocentsPerUnit: 1000000000,
2604
2604
  unit: 'call',
2605
2605
  },
2606
2606
  {
2607
2607
  service: enum_1.BillingService.ABYSS_BANKING,
2608
2608
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
2609
- pricePerUnit: 80,
2609
+ nanocentsPerUnit: 80000000000,
2610
2610
  unit: 'lookup',
2611
2611
  },
2612
2612
  {
2613
2613
  service: enum_1.BillingService.ABYSS_BANKING,
2614
2614
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
2615
- pricePerUnit: 10,
2615
+ nanocentsPerUnit: 10000000000,
2616
2616
  unit: 'call',
2617
2617
  },
2618
2618
  {
2619
2619
  service: enum_1.BillingService.ABYSS_BANKING,
2620
2620
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
2621
- pricePerUnit: 15,
2621
+ nanocentsPerUnit: 15000000000,
2622
2622
  unit: 'refresh',
2623
2623
  },
2624
2624
  ],
@@ -2977,253 +2977,253 @@ exports.PUBLIC_PLANS = [
2977
2977
  {
2978
2978
  service: enum_1.BillingService.ABYSS_CRYPT,
2979
2979
  metric: enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH,
2980
- pricePerUnit: 50,
2981
- unit: '1k encryptions',
2980
+ nanocentsPerUnit: 116000000,
2981
+ unit: 'encryptions',
2982
2982
  },
2983
2983
  {
2984
2984
  service: enum_1.BillingService.ABYSS_PLATFORM,
2985
2985
  metric: enum_1.BillingMetric.PROJECTS_COUNT,
2986
- pricePerUnit: 200,
2986
+ nanocentsPerUnit: 200000000000,
2987
2987
  unit: 'project',
2988
2988
  },
2989
2989
  {
2990
2990
  service: enum_1.BillingService.ABYSS_PLATFORM,
2991
2991
  metric: enum_1.BillingMetric.MEMBERS_COUNT,
2992
- pricePerUnit: 200,
2992
+ nanocentsPerUnit: 300000000000,
2993
2993
  unit: 'member',
2994
2994
  },
2995
2995
  {
2996
2996
  service: enum_1.BillingService.ABYSS_PLATFORM,
2997
2997
  metric: enum_1.BillingMetric.TEAM_COUNT,
2998
- pricePerUnit: 100,
2998
+ nanocentsPerUnit: 100000000000,
2999
2999
  unit: 'team',
3000
3000
  },
3001
3001
  {
3002
3002
  service: enum_1.BillingService.ABYSS_PLATFORM,
3003
3003
  metric: enum_1.BillingMetric.API_KEYS_COUNT,
3004
- pricePerUnit: 50,
3004
+ nanocentsPerUnit: 50000000000,
3005
3005
  unit: 'API key',
3006
3006
  },
3007
3007
  {
3008
3008
  service: enum_1.BillingService.ABYSS_PLATFORM,
3009
3009
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
3010
- pricePerUnit: 15,
3010
+ nanocentsPerUnit: 3000000000,
3011
3011
  unit: 'GB',
3012
3012
  },
3013
3013
  {
3014
3014
  service: enum_1.BillingService.ABYSS_STORAGE,
3015
3015
  metric: enum_1.BillingMetric.FILES_COUNT,
3016
- pricePerUnit: 50,
3016
+ nanocentsPerUnit: 50000000000,
3017
3017
  unit: 'file',
3018
3018
  },
3019
3019
  {
3020
3020
  service: enum_1.BillingService.ABYSS_STORAGE,
3021
3021
  metric: enum_1.BillingMetric.PRESIGNED_URLS,
3022
- pricePerUnit: 50,
3022
+ nanocentsPerUnit: 2450000,
3023
3023
  unit: 'request',
3024
3024
  },
3025
3025
  {
3026
3026
  service: enum_1.BillingService.ABYSS_STORAGE,
3027
3027
  metric: enum_1.BillingMetric.BANDWIDTH_GB,
3028
- pricePerUnit: 10,
3028
+ nanocentsPerUnit: 290000000,
3029
3029
  unit: 'GB',
3030
3030
  },
3031
3031
  {
3032
3032
  service: enum_1.BillingService.ABYSS_MONITOR,
3033
3033
  metric: enum_1.BillingMetric.LOG_EVENTS,
3034
- pricePerUnit: 2,
3035
- unit: '1k events',
3034
+ nanocentsPerUnit: 58000,
3035
+ unit: 'events',
3036
3036
  },
3037
3037
  {
3038
3038
  service: enum_1.BillingService.ABYSS_MONITOR,
3039
3039
  metric: enum_1.BillingMetric.APPLICATIONS,
3040
- pricePerUnit: 100,
3040
+ nanocentsPerUnit: 100000000000,
3041
3041
  unit: 'application',
3042
3042
  },
3043
3043
  {
3044
3044
  service: enum_1.BillingService.ABYSS_MONITOR,
3045
3045
  metric: enum_1.BillingMetric.MONITOR_WEBHOOK_INVOCATIONS_MONTH,
3046
- pricePerUnit: 2,
3047
- unit: '1k invocations',
3046
+ nanocentsPerUnit: 29000000,
3047
+ unit: 'invocations',
3048
3048
  },
3049
3049
  {
3050
3050
  service: enum_1.BillingService.ABYSS_CLOUD,
3051
3051
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
3052
- pricePerUnit: 50,
3052
+ nanocentsPerUnit: 50000000000,
3053
3053
  unit: 'file',
3054
3054
  },
3055
3055
  {
3056
3056
  service: enum_1.BillingService.ABYSS_FORM,
3057
3057
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
3058
- pricePerUnit: 2,
3058
+ nanocentsPerUnit: 156000000,
3059
3059
  unit: 'submission',
3060
3060
  },
3061
3061
  {
3062
3062
  service: enum_1.BillingService.ABYSS_TOOLS,
3063
3063
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3064
- pricePerUnit: 50,
3064
+ nanocentsPerUnit: 116000000000,
3065
3065
  unit: 'draw',
3066
3066
  },
3067
3067
  {
3068
3068
  service: enum_1.BillingService.ABYSS_TOOLS,
3069
3069
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
3070
- pricePerUnit: 50,
3070
+ nanocentsPerUnit: 116000000000,
3071
3071
  unit: 'board',
3072
3072
  },
3073
3073
  {
3074
3074
  service: enum_1.BillingService.ABYSS_TOOLS,
3075
3075
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3076
- pricePerUnit: 50,
3076
+ nanocentsPerUnit: 116000000000,
3077
3077
  unit: 'atlas',
3078
3078
  },
3079
3079
  {
3080
3080
  service: enum_1.BillingService.ABYSS_TOOLS,
3081
3081
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3082
- pricePerUnit: 50,
3082
+ nanocentsPerUnit: 116000000000,
3083
3083
  unit: 'retrospective',
3084
3084
  },
3085
3085
  {
3086
3086
  service: enum_1.BillingService.ABYSS_TOOLS,
3087
3087
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3088
- pricePerUnit: 50,
3088
+ nanocentsPerUnit: 29000000000,
3089
3089
  unit: 'short link',
3090
3090
  },
3091
3091
  {
3092
3092
  service: enum_1.BillingService.ABYSS_TOOLS,
3093
3093
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3094
- pricePerUnit: 1,
3095
- unit: '1k resolutions',
3094
+ nanocentsPerUnit: 11600000,
3095
+ unit: 'resolutions',
3096
3096
  },
3097
3097
  {
3098
3098
  service: enum_1.BillingService.ABYSS_TOOLS,
3099
3099
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3100
- pricePerUnit: 50,
3100
+ nanocentsPerUnit: 23200000000,
3101
3101
  unit: 'transfer',
3102
3102
  },
3103
3103
  {
3104
3104
  service: enum_1.BillingService.ABYSS_TOOLS,
3105
3105
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3106
- pricePerUnit: 5,
3106
+ nanocentsPerUnit: 1160000000,
3107
3107
  unit: 'upload',
3108
3108
  },
3109
3109
  {
3110
3110
  service: enum_1.BillingService.ABYSS_TOOLS,
3111
3111
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3112
- pricePerUnit: 10,
3112
+ nanocentsPerUnit: 290000000,
3113
3113
  unit: 'GB',
3114
3114
  },
3115
3115
  {
3116
3116
  service: enum_1.BillingService.ABYSS_TOOLS,
3117
3117
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3118
- pricePerUnit: 20,
3118
+ nanocentsPerUnit: 1960000000,
3119
3119
  unit: 'extraction',
3120
3120
  },
3121
3121
  {
3122
3122
  service: enum_1.BillingService.ABYSS_TOOLS,
3123
3123
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
3124
- pricePerUnit: 3,
3124
+ nanocentsPerUnit: 100000000,
3125
3125
  unit: 'OCR page',
3126
3126
  },
3127
3127
  {
3128
3128
  service: enum_1.BillingService.ABYSS_TOOLS,
3129
3129
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
3130
- pricePerUnit: 100,
3130
+ nanocentsPerUnit: 100000000000,
3131
3131
  unit: 'template',
3132
3132
  },
3133
3133
  {
3134
3134
  service: enum_1.BillingService.ABYSS_SPOTLIGHT,
3135
3135
  metric: enum_1.BillingMetric.SPOTLIGHT_PAGES_COUNT,
3136
- pricePerUnit: 100,
3136
+ nanocentsPerUnit: 100000000000,
3137
3137
  unit: 'page',
3138
3138
  },
3139
3139
  {
3140
3140
  service: enum_1.BillingService.ABYSS_SPOTLIGHT,
3141
3141
  metric: enum_1.BillingMetric.SPOTLIGHT_PAGE_VIEWS_MONTH,
3142
- pricePerUnit: 1,
3143
- unit: '1k views',
3142
+ nanocentsPerUnit: 7740000,
3143
+ unit: 'views',
3144
3144
  },
3145
3145
  {
3146
3146
  service: enum_1.BillingService.ABYSS_MEMORIES,
3147
3147
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
3148
- pricePerUnit: 50,
3148
+ nanocentsPerUnit: 7600000000,
3149
3149
  unit: 'event',
3150
3150
  },
3151
3151
  {
3152
3152
  service: enum_1.BillingService.ABYSS_BANKING,
3153
3153
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
3154
- pricePerUnit: 200,
3154
+ nanocentsPerUnit: 200000000000,
3155
3155
  unit: 'profile',
3156
3156
  },
3157
3157
  {
3158
3158
  service: enum_1.BillingService.ABYSS_BANKING,
3159
3159
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
3160
- pricePerUnit: 300,
3160
+ nanocentsPerUnit: 290000000000,
3161
3161
  unit: 'profile',
3162
3162
  },
3163
3163
  {
3164
3164
  service: enum_1.BillingService.ABYSS_BANKING,
3165
3165
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
3166
- pricePerUnit: 150,
3166
+ nanocentsPerUnit: 260000000000,
3167
3167
  unit: 'connection',
3168
3168
  },
3169
3169
  {
3170
3170
  service: enum_1.BillingService.ABYSS_BANKING,
3171
3171
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
3172
- pricePerUnit: 50,
3172
+ nanocentsPerUnit: 50000000000,
3173
3173
  unit: 'config',
3174
3174
  },
3175
3175
  {
3176
3176
  service: enum_1.BillingService.ABYSS_BANKING,
3177
3177
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
3178
- pricePerUnit: 50,
3178
+ nanocentsPerUnit: 50000000000,
3179
3179
  unit: 'share',
3180
3180
  },
3181
3181
  {
3182
3182
  service: enum_1.BillingService.ABYSS_BANKING,
3183
3183
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
3184
- pricePerUnit: 100,
3184
+ nanocentsPerUnit: 100000000000,
3185
3185
  unit: 'portfolio',
3186
3186
  },
3187
3187
  {
3188
3188
  service: enum_1.BillingService.ABYSS_BANKING,
3189
3189
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
3190
- pricePerUnit: 5,
3190
+ nanocentsPerUnit: 5000000000,
3191
3191
  unit: 'snapshot',
3192
3192
  },
3193
3193
  {
3194
3194
  service: enum_1.BillingService.ABYSS_BANKING,
3195
3195
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
3196
- pricePerUnit: 5,
3196
+ nanocentsPerUnit: 5000000000,
3197
3197
  unit: 'run',
3198
3198
  },
3199
3199
  {
3200
3200
  service: enum_1.BillingService.ABYSS_BANKING,
3201
3201
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
3202
- pricePerUnit: 2,
3202
+ nanocentsPerUnit: 2000000000,
3203
3203
  unit: 'rescore',
3204
3204
  },
3205
3205
  {
3206
3206
  service: enum_1.BillingService.ABYSS_BANKING,
3207
3207
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
3208
- pricePerUnit: 1,
3208
+ nanocentsPerUnit: 1000000000,
3209
3209
  unit: 'call',
3210
3210
  },
3211
3211
  {
3212
3212
  service: enum_1.BillingService.ABYSS_BANKING,
3213
3213
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
3214
- pricePerUnit: 80,
3214
+ nanocentsPerUnit: 80000000000,
3215
3215
  unit: 'lookup',
3216
3216
  },
3217
3217
  {
3218
3218
  service: enum_1.BillingService.ABYSS_BANKING,
3219
3219
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
3220
- pricePerUnit: 10,
3220
+ nanocentsPerUnit: 10000000000,
3221
3221
  unit: 'call',
3222
3222
  },
3223
3223
  {
3224
3224
  service: enum_1.BillingService.ABYSS_BANKING,
3225
3225
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
3226
- pricePerUnit: 15,
3226
+ nanocentsPerUnit: 15000000000,
3227
3227
  unit: 'refresh',
3228
3228
  },
3229
3229
  ],
@@ -3484,181 +3484,181 @@ exports.PUBLIC_PLANS = [
3484
3484
  {
3485
3485
  service: enum_1.BillingService.ABYSS_PLATFORM,
3486
3486
  metric: enum_1.BillingMetric.MEMBERS_COUNT,
3487
- pricePerUnit: 300,
3487
+ nanocentsPerUnit: 300000000000,
3488
3488
  unit: 'member',
3489
3489
  },
3490
3490
  {
3491
3491
  service: enum_1.BillingService.ABYSS_PLATFORM,
3492
3492
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
3493
- pricePerUnit: 23,
3493
+ nanocentsPerUnit: 3000000000,
3494
3494
  unit: 'GB',
3495
3495
  },
3496
3496
  {
3497
3497
  service: enum_1.BillingService.ABYSS_CLOUD,
3498
3498
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
3499
- pricePerUnit: 75,
3499
+ nanocentsPerUnit: 50000000000,
3500
3500
  unit: 'file',
3501
3501
  },
3502
3502
  {
3503
3503
  service: enum_1.BillingService.ABYSS_TOOLS,
3504
3504
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
3505
- pricePerUnit: 75,
3505
+ nanocentsPerUnit: 116000000000,
3506
3506
  unit: 'board',
3507
3507
  },
3508
3508
  {
3509
3509
  service: enum_1.BillingService.ABYSS_TOOLS,
3510
3510
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3511
- pricePerUnit: 75,
3511
+ nanocentsPerUnit: 116000000000,
3512
3512
  unit: 'draw',
3513
3513
  },
3514
3514
  {
3515
3515
  service: enum_1.BillingService.ABYSS_TOOLS,
3516
3516
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3517
- pricePerUnit: 75,
3517
+ nanocentsPerUnit: 116000000000,
3518
3518
  unit: 'atlas',
3519
3519
  },
3520
3520
  {
3521
3521
  service: enum_1.BillingService.ABYSS_TOOLS,
3522
3522
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3523
- pricePerUnit: 75,
3523
+ nanocentsPerUnit: 116000000000,
3524
3524
  unit: 'retrospective',
3525
3525
  },
3526
3526
  {
3527
3527
  service: enum_1.BillingService.ABYSS_TOOLS,
3528
3528
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3529
- pricePerUnit: 75,
3529
+ nanocentsPerUnit: 29000000000,
3530
3530
  unit: 'short link',
3531
3531
  },
3532
3532
  {
3533
3533
  service: enum_1.BillingService.ABYSS_TOOLS,
3534
3534
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3535
- pricePerUnit: 2,
3536
- unit: '1k resolutions',
3535
+ nanocentsPerUnit: 11600000,
3536
+ unit: 'resolutions',
3537
3537
  },
3538
3538
  {
3539
3539
  service: enum_1.BillingService.ABYSS_TOOLS,
3540
3540
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3541
- pricePerUnit: 75,
3541
+ nanocentsPerUnit: 23200000000,
3542
3542
  unit: 'transfer',
3543
3543
  },
3544
3544
  {
3545
3545
  service: enum_1.BillingService.ABYSS_TOOLS,
3546
3546
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3547
- pricePerUnit: 8,
3547
+ nanocentsPerUnit: 1160000000,
3548
3548
  unit: 'upload',
3549
3549
  },
3550
3550
  {
3551
3551
  service: enum_1.BillingService.ABYSS_TOOLS,
3552
3552
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3553
- pricePerUnit: 15,
3553
+ nanocentsPerUnit: 290000000,
3554
3554
  unit: 'GB',
3555
3555
  },
3556
3556
  {
3557
3557
  service: enum_1.BillingService.ABYSS_TOOLS,
3558
3558
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3559
- pricePerUnit: 30,
3559
+ nanocentsPerUnit: 1960000000,
3560
3560
  unit: 'extraction',
3561
3561
  },
3562
3562
  {
3563
3563
  service: enum_1.BillingService.ABYSS_TOOLS,
3564
3564
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
3565
- pricePerUnit: 5,
3565
+ nanocentsPerUnit: 100000000,
3566
3566
  unit: 'OCR page',
3567
3567
  },
3568
3568
  {
3569
3569
  service: enum_1.BillingService.ABYSS_TOOLS,
3570
3570
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
3571
- pricePerUnit: 150,
3571
+ nanocentsPerUnit: 100000000000,
3572
3572
  unit: 'template',
3573
3573
  },
3574
3574
  {
3575
3575
  service: enum_1.BillingService.ABYSS_FORM,
3576
3576
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
3577
- pricePerUnit: 3,
3577
+ nanocentsPerUnit: 156000000,
3578
3578
  unit: 'submission',
3579
3579
  },
3580
3580
  {
3581
3581
  service: enum_1.BillingService.ABYSS_MEMORIES,
3582
3582
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
3583
- pricePerUnit: 75,
3583
+ nanocentsPerUnit: 7600000000,
3584
3584
  unit: 'event',
3585
3585
  },
3586
3586
  {
3587
3587
  service: enum_1.BillingService.ABYSS_BANKING,
3588
3588
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
3589
- pricePerUnit: 300,
3589
+ nanocentsPerUnit: 200000000000,
3590
3590
  unit: 'profile',
3591
3591
  },
3592
3592
  {
3593
3593
  service: enum_1.BillingService.ABYSS_BANKING,
3594
3594
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
3595
- pricePerUnit: 450,
3595
+ nanocentsPerUnit: 290000000000,
3596
3596
  unit: 'profile',
3597
3597
  },
3598
3598
  {
3599
3599
  service: enum_1.BillingService.ABYSS_BANKING,
3600
3600
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
3601
- pricePerUnit: 225,
3601
+ nanocentsPerUnit: 260000000000,
3602
3602
  unit: 'connection',
3603
3603
  },
3604
3604
  {
3605
3605
  service: enum_1.BillingService.ABYSS_BANKING,
3606
3606
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
3607
- pricePerUnit: 75,
3607
+ nanocentsPerUnit: 50000000000,
3608
3608
  unit: 'config',
3609
3609
  },
3610
3610
  {
3611
3611
  service: enum_1.BillingService.ABYSS_BANKING,
3612
3612
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
3613
- pricePerUnit: 75,
3613
+ nanocentsPerUnit: 50000000000,
3614
3614
  unit: 'share',
3615
3615
  },
3616
3616
  {
3617
3617
  service: enum_1.BillingService.ABYSS_BANKING,
3618
3618
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
3619
- pricePerUnit: 150,
3619
+ nanocentsPerUnit: 100000000000,
3620
3620
  unit: 'portfolio',
3621
3621
  },
3622
3622
  {
3623
3623
  service: enum_1.BillingService.ABYSS_BANKING,
3624
3624
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
3625
- pricePerUnit: 8,
3625
+ nanocentsPerUnit: 5000000000,
3626
3626
  unit: 'snapshot',
3627
3627
  },
3628
3628
  {
3629
3629
  service: enum_1.BillingService.ABYSS_BANKING,
3630
3630
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
3631
- pricePerUnit: 8,
3631
+ nanocentsPerUnit: 5000000000,
3632
3632
  unit: 'run',
3633
3633
  },
3634
3634
  {
3635
3635
  service: enum_1.BillingService.ABYSS_BANKING,
3636
3636
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
3637
- pricePerUnit: 3,
3637
+ nanocentsPerUnit: 2000000000,
3638
3638
  unit: 'rescore',
3639
3639
  },
3640
3640
  {
3641
3641
  service: enum_1.BillingService.ABYSS_BANKING,
3642
3642
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
3643
- pricePerUnit: 2,
3643
+ nanocentsPerUnit: 1000000000,
3644
3644
  unit: 'call',
3645
3645
  },
3646
3646
  {
3647
3647
  service: enum_1.BillingService.ABYSS_BANKING,
3648
3648
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
3649
- pricePerUnit: 120,
3649
+ nanocentsPerUnit: 80000000000,
3650
3650
  unit: 'lookup',
3651
3651
  },
3652
3652
  {
3653
3653
  service: enum_1.BillingService.ABYSS_BANKING,
3654
3654
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
3655
- pricePerUnit: 15,
3655
+ nanocentsPerUnit: 10000000000,
3656
3656
  unit: 'call',
3657
3657
  },
3658
3658
  {
3659
3659
  service: enum_1.BillingService.ABYSS_BANKING,
3660
3660
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
3661
- pricePerUnit: 23,
3661
+ nanocentsPerUnit: 15000000000,
3662
3662
  unit: 'refresh',
3663
3663
  },
3664
3664
  ],
@@ -3919,181 +3919,181 @@ exports.PUBLIC_PLANS = [
3919
3919
  {
3920
3920
  service: enum_1.BillingService.ABYSS_PLATFORM,
3921
3921
  metric: enum_1.BillingMetric.MEMBERS_COUNT,
3922
- pricePerUnit: 200,
3922
+ nanocentsPerUnit: 300000000000,
3923
3923
  unit: 'member',
3924
3924
  },
3925
3925
  {
3926
3926
  service: enum_1.BillingService.ABYSS_PLATFORM,
3927
3927
  metric: enum_1.BillingMetric.ACCOUNT_STORAGE_GB,
3928
- pricePerUnit: 15,
3928
+ nanocentsPerUnit: 3000000000,
3929
3929
  unit: 'GB',
3930
3930
  },
3931
3931
  {
3932
3932
  service: enum_1.BillingService.ABYSS_CLOUD,
3933
3933
  metric: enum_1.BillingMetric.CLOUD_FILES_COUNT,
3934
- pricePerUnit: 50,
3934
+ nanocentsPerUnit: 50000000000,
3935
3935
  unit: 'file',
3936
3936
  },
3937
3937
  {
3938
3938
  service: enum_1.BillingService.ABYSS_TOOLS,
3939
3939
  metric: enum_1.BillingMetric.TOOLS_BOARD_COUNT,
3940
- pricePerUnit: 50,
3940
+ nanocentsPerUnit: 116000000000,
3941
3941
  unit: 'board',
3942
3942
  },
3943
3943
  {
3944
3944
  service: enum_1.BillingService.ABYSS_TOOLS,
3945
3945
  metric: enum_1.BillingMetric.TOOLS_DRAW_COUNT,
3946
- pricePerUnit: 50,
3946
+ nanocentsPerUnit: 116000000000,
3947
3947
  unit: 'draw',
3948
3948
  },
3949
3949
  {
3950
3950
  service: enum_1.BillingService.ABYSS_TOOLS,
3951
3951
  metric: enum_1.BillingMetric.TOOLS_ATLAS_COUNT,
3952
- pricePerUnit: 50,
3952
+ nanocentsPerUnit: 116000000000,
3953
3953
  unit: 'atlas',
3954
3954
  },
3955
3955
  {
3956
3956
  service: enum_1.BillingService.ABYSS_TOOLS,
3957
3957
  metric: enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT,
3958
- pricePerUnit: 50,
3958
+ nanocentsPerUnit: 116000000000,
3959
3959
  unit: 'retrospective',
3960
3960
  },
3961
3961
  {
3962
3962
  service: enum_1.BillingService.ABYSS_TOOLS,
3963
3963
  metric: enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT,
3964
- pricePerUnit: 50,
3964
+ nanocentsPerUnit: 29000000000,
3965
3965
  unit: 'short link',
3966
3966
  },
3967
3967
  {
3968
3968
  service: enum_1.BillingService.ABYSS_TOOLS,
3969
3969
  metric: enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH,
3970
- pricePerUnit: 1,
3971
- unit: '1k resolutions',
3970
+ nanocentsPerUnit: 11600000,
3971
+ unit: 'resolutions',
3972
3972
  },
3973
3973
  {
3974
3974
  service: enum_1.BillingService.ABYSS_TOOLS,
3975
3975
  metric: enum_1.BillingMetric.TOOLS_BEAM_COUNT,
3976
- pricePerUnit: 50,
3976
+ nanocentsPerUnit: 23200000000,
3977
3977
  unit: 'transfer',
3978
3978
  },
3979
3979
  {
3980
3980
  service: enum_1.BillingService.ABYSS_TOOLS,
3981
3981
  metric: enum_1.BillingMetric.TOOLS_BEAM_UPLOADS_MONTH,
3982
- pricePerUnit: 5,
3982
+ nanocentsPerUnit: 1160000000,
3983
3983
  unit: 'upload',
3984
3984
  },
3985
3985
  {
3986
3986
  service: enum_1.BillingService.ABYSS_TOOLS,
3987
3987
  metric: enum_1.BillingMetric.TOOLS_BEAM_BANDWIDTH_MONTH,
3988
- pricePerUnit: 10,
3988
+ nanocentsPerUnit: 290000000,
3989
3989
  unit: 'GB',
3990
3990
  },
3991
3991
  {
3992
3992
  service: enum_1.BillingService.ABYSS_TOOLS,
3993
3993
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION,
3994
- pricePerUnit: 20,
3994
+ nanocentsPerUnit: 1960000000,
3995
3995
  unit: 'extraction',
3996
3996
  },
3997
3997
  {
3998
3998
  service: enum_1.BillingService.ABYSS_TOOLS,
3999
3999
  metric: enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES,
4000
- pricePerUnit: 3,
4000
+ nanocentsPerUnit: 100000000,
4001
4001
  unit: 'OCR page',
4002
4002
  },
4003
4003
  {
4004
4004
  service: enum_1.BillingService.ABYSS_TOOLS,
4005
4005
  metric: enum_1.BillingMetric.TOOLS_EXTRACT_TEMPLATES_ACTIVE,
4006
- pricePerUnit: 100,
4006
+ nanocentsPerUnit: 100000000000,
4007
4007
  unit: 'template',
4008
4008
  },
4009
4009
  {
4010
4010
  service: enum_1.BillingService.ABYSS_FORM,
4011
4011
  metric: enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH,
4012
- pricePerUnit: 2,
4012
+ nanocentsPerUnit: 156000000,
4013
4013
  unit: 'submission',
4014
4014
  },
4015
4015
  {
4016
4016
  service: enum_1.BillingService.ABYSS_MEMORIES,
4017
4017
  metric: enum_1.BillingMetric.MEMORIES_EVENTS_COUNT,
4018
- pricePerUnit: 50,
4018
+ nanocentsPerUnit: 7600000000,
4019
4019
  unit: 'event',
4020
4020
  },
4021
4021
  {
4022
4022
  service: enum_1.BillingService.ABYSS_BANKING,
4023
4023
  metric: enum_1.BillingMetric.BANKING_PROFILES_COUNT,
4024
- pricePerUnit: 200,
4024
+ nanocentsPerUnit: 200000000000,
4025
4025
  unit: 'profile',
4026
4026
  },
4027
4027
  {
4028
4028
  service: enum_1.BillingService.ABYSS_BANKING,
4029
4029
  metric: enum_1.BillingMetric.BANKING_MONITORED_PROFILES_COUNT,
4030
- pricePerUnit: 300,
4030
+ nanocentsPerUnit: 290000000000,
4031
4031
  unit: 'profile',
4032
4032
  },
4033
4033
  {
4034
4034
  service: enum_1.BillingService.ABYSS_BANKING,
4035
4035
  metric: enum_1.BillingMetric.BANKING_SELF_BANK_CONNECTIONS_COUNT,
4036
- pricePerUnit: 150,
4036
+ nanocentsPerUnit: 260000000000,
4037
4037
  unit: 'connection',
4038
4038
  },
4039
4039
  {
4040
4040
  service: enum_1.BillingService.ABYSS_BANKING,
4041
4041
  metric: enum_1.BillingMetric.BANKING_SAVED_CONFIGS_COUNT,
4042
- pricePerUnit: 50,
4042
+ nanocentsPerUnit: 50000000000,
4043
4043
  unit: 'config',
4044
4044
  },
4045
4045
  {
4046
4046
  service: enum_1.BillingService.ABYSS_BANKING,
4047
4047
  metric: enum_1.BillingMetric.BANKING_LENDER_SHARES_COUNT,
4048
- pricePerUnit: 50,
4048
+ nanocentsPerUnit: 50000000000,
4049
4049
  unit: 'share',
4050
4050
  },
4051
4051
  {
4052
4052
  service: enum_1.BillingService.ABYSS_BANKING,
4053
4053
  metric: enum_1.BillingMetric.BANKING_PORTFOLIOS_COUNT,
4054
- pricePerUnit: 100,
4054
+ nanocentsPerUnit: 100000000000,
4055
4055
  unit: 'portfolio',
4056
4056
  },
4057
4057
  {
4058
4058
  service: enum_1.BillingService.ABYSS_BANKING,
4059
4059
  metric: enum_1.BillingMetric.BANKING_SNAPSHOTS_MONTH,
4060
- pricePerUnit: 5,
4060
+ nanocentsPerUnit: 5000000000,
4061
4061
  unit: 'snapshot',
4062
4062
  },
4063
4063
  {
4064
4064
  service: enum_1.BillingService.ABYSS_BANKING,
4065
4065
  metric: enum_1.BillingMetric.BANKING_SCENARIO_RUNS_MONTH,
4066
- pricePerUnit: 5,
4066
+ nanocentsPerUnit: 5000000000,
4067
4067
  unit: 'run',
4068
4068
  },
4069
4069
  {
4070
4070
  service: enum_1.BillingService.ABYSS_BANKING,
4071
4071
  metric: enum_1.BillingMetric.BANKING_PREVIEW_RESCORES_MONTH,
4072
- pricePerUnit: 2,
4072
+ nanocentsPerUnit: 2000000000,
4073
4073
  unit: 'rescore',
4074
4074
  },
4075
4075
  {
4076
4076
  service: enum_1.BillingService.ABYSS_BANKING,
4077
4077
  metric: enum_1.BillingMetric.BANKING_REVIEW_API_CALLS_MONTH,
4078
- pricePerUnit: 1,
4078
+ nanocentsPerUnit: 1000000000,
4079
4079
  unit: 'call',
4080
4080
  },
4081
4081
  {
4082
4082
  service: enum_1.BillingService.ABYSS_BANKING,
4083
4083
  metric: enum_1.BillingMetric.BANKING_CREDIT_BUREAU_LOOKUPS_MONTH,
4084
- pricePerUnit: 80,
4084
+ nanocentsPerUnit: 80000000000,
4085
4085
  unit: 'lookup',
4086
4086
  },
4087
4087
  {
4088
4088
  service: enum_1.BillingService.ABYSS_BANKING,
4089
4089
  metric: enum_1.BillingMetric.BANKING_REGISTRE_DETAIL_CALLS_MONTH,
4090
- pricePerUnit: 10,
4090
+ nanocentsPerUnit: 10000000000,
4091
4091
  unit: 'call',
4092
4092
  },
4093
4093
  {
4094
4094
  service: enum_1.BillingService.ABYSS_BANKING,
4095
4095
  metric: enum_1.BillingMetric.BANKING_PSD2_REFRESHES_MONTH,
4096
- pricePerUnit: 15,
4096
+ nanocentsPerUnit: 15000000000,
4097
4097
  unit: 'refresh',
4098
4098
  },
4099
4099
  ],