@abyss-project/main 1.0.131 → 1.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/enforcement-registry.constants.d.ts +8 -0
- package/dist/constants/enforcement-registry.constants.js +118 -0
- package/dist/constants/enforcement-registry.constants.js.map +1 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/constants/index.js.map +1 -1
- package/dist/constants/tests/billing-catalog.constants.spec.d.ts +1 -0
- package/dist/constants/tests/billing-catalog.constants.spec.js +20 -0
- package/dist/constants/tests/billing-catalog.constants.spec.js.map +1 -0
- package/package.json +1 -1
- package/tsconfig.json +35 -35
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BillingMetric } from '../types/enum/organization-billing.enum';
|
|
2
|
+
export type EnforcementMode = 'RESERVE' | 'RESERVE_INPROCESS' | 'CHECK_SYNC' | 'STORAGE_GATE' | 'METER_BILL_ONLY' | 'INLINE_CONFIG' | 'NONE';
|
|
3
|
+
export interface EnforcementEntry {
|
|
4
|
+
mode: EnforcementMode;
|
|
5
|
+
enforcedAt: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const ENFORCEMENT_REGISTRY: Record<BillingMetric, EnforcementEntry>;
|
|
8
|
+
export declare const RESERVE_ENFORCED_AT_SYMBOLS: readonly string[];
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RESERVE_ENFORCED_AT_SYMBOLS = exports.ENFORCEMENT_REGISTRY = void 0;
|
|
4
|
+
const organization_billing_enum_1 = require("../types/enum/organization-billing.enum");
|
|
5
|
+
exports.ENFORCEMENT_REGISTRY = {
|
|
6
|
+
[organization_billing_enum_1.BillingMetric.FORMS_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveFormCount' },
|
|
7
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_ATLAS_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveToolCount' },
|
|
8
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_BOARD_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveToolCount' },
|
|
9
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_DRAW_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveToolCount' },
|
|
10
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_MEMO_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveToolCount' },
|
|
11
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_RETROSPECTIVE_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveToolCount' },
|
|
12
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_SHORT_LINK_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveToolCount' },
|
|
13
|
+
[organization_billing_enum_1.BillingMetric.SPOTLIGHT_PAGES_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveSpotlightCount' },
|
|
14
|
+
[organization_billing_enum_1.BillingMetric.CLOUD_FILES_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveCloudFile' },
|
|
15
|
+
[organization_billing_enum_1.BillingMetric.MEMORIES_EVENTS_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveMemoriesEvent' },
|
|
16
|
+
[organization_billing_enum_1.BillingMetric.FILES_COUNT]: { mode: 'RESERVE', enforcedAt: 'reserveStorageFile' },
|
|
17
|
+
[organization_billing_enum_1.BillingMetric.APPLICATIONS]: { mode: 'RESERVE', enforcedAt: 'reserveMonitorApplication' },
|
|
18
|
+
[organization_billing_enum_1.BillingMetric.PROJECTS_COUNT]: {
|
|
19
|
+
mode: 'RESERVE_INPROCESS',
|
|
20
|
+
enforcedAt: 'projectService.create/reserveUsage',
|
|
21
|
+
},
|
|
22
|
+
[organization_billing_enum_1.BillingMetric.API_KEYS_COUNT]: {
|
|
23
|
+
mode: 'RESERVE_INPROCESS',
|
|
24
|
+
enforcedAt: 'projectApiKeyService.create',
|
|
25
|
+
},
|
|
26
|
+
[organization_billing_enum_1.BillingMetric.TEAM_COUNT]: { mode: 'RESERVE_INPROCESS', enforcedAt: 'teamService.create' },
|
|
27
|
+
[organization_billing_enum_1.BillingMetric.MEMBERS_COUNT]: {
|
|
28
|
+
mode: 'RESERVE_INPROCESS',
|
|
29
|
+
enforcedAt: 'organizationMemberService.addConfirmedMember',
|
|
30
|
+
},
|
|
31
|
+
[organization_billing_enum_1.BillingMetric.FORM_SUBMISSIONS_MONTH]: {
|
|
32
|
+
mode: 'CHECK_SYNC',
|
|
33
|
+
enforcedAt: 'assertCanCreateForm',
|
|
34
|
+
},
|
|
35
|
+
[organization_billing_enum_1.BillingMetric.CRYPT_ENCRYPTIONS_MONTH]: {
|
|
36
|
+
mode: 'CHECK_SYNC',
|
|
37
|
+
enforcedAt: 'file.controller pre-stream checkQuota',
|
|
38
|
+
},
|
|
39
|
+
[organization_billing_enum_1.BillingMetric.PRESIGNED_URLS]: {
|
|
40
|
+
mode: 'CHECK_SYNC',
|
|
41
|
+
enforcedAt: 'preSignUrlService.create assertCanStore',
|
|
42
|
+
},
|
|
43
|
+
[organization_billing_enum_1.BillingMetric.ACCOUNT_STORAGE_GB]: {
|
|
44
|
+
mode: 'STORAGE_GATE',
|
|
45
|
+
enforcedAt: 'assertCanStore + pushStorageSubtotalAfterWrite (per source)',
|
|
46
|
+
},
|
|
47
|
+
[organization_billing_enum_1.BillingMetric.SPOTLIGHT_PAGE_VIEWS_MONTH]: {
|
|
48
|
+
mode: 'METER_BILL_ONLY',
|
|
49
|
+
enforcedAt: 'recordSpotlightPageView (buffered recordUsage)',
|
|
50
|
+
},
|
|
51
|
+
[organization_billing_enum_1.BillingMetric.TOOLS_SHORTLINK_RESOLUTIONS_MONTH]: {
|
|
52
|
+
mode: 'METER_BILL_ONLY',
|
|
53
|
+
enforcedAt: 'recordShortLinkResolution (buffered recordUsage)',
|
|
54
|
+
},
|
|
55
|
+
[organization_billing_enum_1.BillingMetric.LOG_EVENTS]: {
|
|
56
|
+
mode: 'METER_BILL_ONLY',
|
|
57
|
+
enforcedAt: 'log-ingest recordUsage (buffered)',
|
|
58
|
+
},
|
|
59
|
+
[organization_billing_enum_1.BillingMetric.MONITOR_WEBHOOK_INVOCATIONS_MONTH]: {
|
|
60
|
+
mode: 'METER_BILL_ONLY',
|
|
61
|
+
enforcedAt: 'webhook-invocation recordUsage',
|
|
62
|
+
},
|
|
63
|
+
[organization_billing_enum_1.BillingMetric.BANDWIDTH_GB]: {
|
|
64
|
+
mode: 'METER_BILL_ONLY',
|
|
65
|
+
enforcedAt: 'bandwidth recordUsage (buffered)',
|
|
66
|
+
},
|
|
67
|
+
[organization_billing_enum_1.BillingMetric.CRYPT_MAX_FILE_SIZE_MB]: {
|
|
68
|
+
mode: 'INLINE_CONFIG',
|
|
69
|
+
enforcedAt: 'enforced at creation',
|
|
70
|
+
},
|
|
71
|
+
[organization_billing_enum_1.BillingMetric.FORM_MAX_DOCUMENT_SIZE_MB]: {
|
|
72
|
+
mode: 'INLINE_CONFIG',
|
|
73
|
+
enforcedAt: 'enforced at creation',
|
|
74
|
+
},
|
|
75
|
+
[organization_billing_enum_1.BillingMetric.FORM_MAX_SUBMISSIONS_PER_FORM_DAY]: {
|
|
76
|
+
mode: 'INLINE_CONFIG',
|
|
77
|
+
enforcedAt: 'enforced at creation',
|
|
78
|
+
},
|
|
79
|
+
[organization_billing_enum_1.BillingMetric.FORM_ALLOW_DOCUMENTS]: {
|
|
80
|
+
mode: 'INLINE_CONFIG',
|
|
81
|
+
enforcedAt: 'enforced at creation',
|
|
82
|
+
},
|
|
83
|
+
[organization_billing_enum_1.BillingMetric.RETENTION_DAYS]: { mode: 'INLINE_CONFIG', enforcedAt: 'enforced at creation' },
|
|
84
|
+
[organization_billing_enum_1.BillingMetric.TRAINING_PROGRAMS_COUNT]: { mode: 'NONE', enforcedAt: 'training not live' },
|
|
85
|
+
[organization_billing_enum_1.BillingMetric.TRAINING_TEMPLATES_COUNT]: { mode: 'NONE', enforcedAt: 'training not live' },
|
|
86
|
+
[organization_billing_enum_1.BillingMetric.TRAINING_CUSTOM_EXERCISES_COUNT]: {
|
|
87
|
+
mode: 'NONE',
|
|
88
|
+
enforcedAt: 'training not live',
|
|
89
|
+
},
|
|
90
|
+
[organization_billing_enum_1.BillingMetric.TRAINING_SESSIONS_MONTH]: { mode: 'NONE', enforcedAt: 'training not live' },
|
|
91
|
+
[organization_billing_enum_1.BillingMetric.CLOUD_INSTANCE_COUNT]: { mode: 'NONE', enforcedAt: 'deprecated, no plan' },
|
|
92
|
+
[organization_billing_enum_1.BillingMetric.STORAGE_GB]: {
|
|
93
|
+
mode: 'NONE',
|
|
94
|
+
enforcedAt: 'retired, superseded by ACCOUNT_STORAGE_GB',
|
|
95
|
+
},
|
|
96
|
+
[organization_billing_enum_1.BillingMetric.CLOUD_STORAGE_GB]: {
|
|
97
|
+
mode: 'NONE',
|
|
98
|
+
enforcedAt: 'retired, superseded by ACCOUNT_STORAGE_GB',
|
|
99
|
+
},
|
|
100
|
+
[organization_billing_enum_1.BillingMetric.FORM_DOCUMENTS_STORAGE_GB]: {
|
|
101
|
+
mode: 'NONE',
|
|
102
|
+
enforcedAt: 'retired, superseded by ACCOUNT_STORAGE_GB',
|
|
103
|
+
},
|
|
104
|
+
[organization_billing_enum_1.BillingMetric.MEMORIES_MEDIA_STORAGE_GB]: {
|
|
105
|
+
mode: 'NONE',
|
|
106
|
+
enforcedAt: 'retired, superseded by ACCOUNT_STORAGE_GB',
|
|
107
|
+
},
|
|
108
|
+
};
|
|
109
|
+
exports.RESERVE_ENFORCED_AT_SYMBOLS = [
|
|
110
|
+
'reserveFormCount',
|
|
111
|
+
'reserveToolCount',
|
|
112
|
+
'reserveSpotlightCount',
|
|
113
|
+
'reserveCloudFile',
|
|
114
|
+
'reserveMemoriesEvent',
|
|
115
|
+
'reserveStorageFile',
|
|
116
|
+
'reserveMonitorApplication',
|
|
117
|
+
];
|
|
118
|
+
//# sourceMappingURL=enforcement-registry.constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enforcement-registry.constants.js","sourceRoot":"","sources":["../../src/constants/enforcement-registry.constants.ts"],"names":[],"mappings":"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"}
|
package/dist/constants/index.js
CHANGED
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./billing-catalog.constants"), exports);
|
|
18
18
|
__exportStar(require("./quota-metric-kind.constants"), exports);
|
|
19
|
+
__exportStar(require("./enforcement-registry.constants"), exports);
|
|
19
20
|
__exportStar(require("./asset.constants"), exports);
|
|
20
21
|
__exportStar(require("./user.constants"), exports);
|
|
21
22
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,gEAA8C;AAC9C,oDAAkC;AAClC,mDAAiC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,gEAA8C;AAC9C,mEAAiD;AACjD,oDAAkC;AAClC,mDAAiC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const organization_billing_enum_1 = require("../../types/enum/organization-billing.enum");
|
|
4
|
+
const billing_catalog_constants_1 = require("../billing-catalog.constants");
|
|
5
|
+
describe('billing catalog — AbyssExtract metrics', () => {
|
|
6
|
+
it('lists both extraction metrics under ABYSS_TOOLS', () => {
|
|
7
|
+
const tools = billing_catalog_constants_1.BILLABLE_SERVICE_METRICS[organization_billing_enum_1.BillingService.ABYSS_TOOLS] ?? [];
|
|
8
|
+
expect(tools).toContain(organization_billing_enum_1.BillingMetric.TOOLS_EXTRACTION);
|
|
9
|
+
expect(tools).toContain(organization_billing_enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES);
|
|
10
|
+
});
|
|
11
|
+
it('gives each extraction metric a display unit', () => {
|
|
12
|
+
expect(billing_catalog_constants_1.METRIC_UNIT[organization_billing_enum_1.BillingMetric.TOOLS_EXTRACTION]).toBe('extractions');
|
|
13
|
+
expect(billing_catalog_constants_1.METRIC_UNIT[organization_billing_enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES]).toBe('OCR pages');
|
|
14
|
+
});
|
|
15
|
+
it('marks both extraction metrics overage-eligible (consumption FLOW metrics)', () => {
|
|
16
|
+
expect(billing_catalog_constants_1.METRIC_IS_OVERAGE_ELIGIBLE.has(organization_billing_enum_1.BillingMetric.TOOLS_EXTRACTION)).toBe(true);
|
|
17
|
+
expect(billing_catalog_constants_1.METRIC_IS_OVERAGE_ELIGIBLE.has(organization_billing_enum_1.BillingMetric.TOOLS_EXTRACTION_OCR_PAGES)).toBe(true);
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=billing-catalog.constants.spec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"billing-catalog.constants.spec.js","sourceRoot":"","sources":["../../../src/constants/tests/billing-catalog.constants.spec.ts"],"names":[],"mappings":";;AAAA,0FAA2F;AAC3F,4EAIsC;AAEtC,QAAQ,CAAC,wCAAwC,EAAE,GAAG,EAAE;IACtD,EAAE,CAAC,iDAAiD,EAAE,GAAG,EAAE;QACzD,MAAM,KAAK,GAAG,oDAAwB,CAAC,0CAAc,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;QACzE,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,yCAAa,CAAC,gBAAgB,CAAC,CAAC;QACxD,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,yCAAa,CAAC,0BAA0B,CAAC,CAAC;IACpE,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,6CAA6C,EAAE,GAAG,EAAE;QACrD,MAAM,CAAC,uCAAW,CAAC,yCAAa,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QACxE,MAAM,CAAC,uCAAW,CAAC,yCAAa,CAAC,0BAA0B,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;IAClF,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,2EAA2E,EAAE,GAAG,EAAE;QACnF,MAAM,CAAC,sDAA0B,CAAC,GAAG,CAAC,yCAAa,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAClF,MAAM,CAAC,sDAA0B,CAAC,GAAG,CAAC,yCAAa,CAAC,0BAA0B,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC9F,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"incremental": false,
|
|
4
|
-
"target": "es2021",
|
|
5
|
-
"lib": [
|
|
6
|
-
"dom",
|
|
7
|
-
"es2021"
|
|
8
|
-
],
|
|
9
|
-
"experimentalDecorators": true,
|
|
10
|
-
"emitDecoratorMetadata": true,
|
|
11
|
-
"module": "commonjs",
|
|
12
|
-
"rootDir": "src",
|
|
13
|
-
"moduleResolution": "node",
|
|
14
|
-
"resolveJsonModule": true,
|
|
15
|
-
"allowJs": true,
|
|
16
|
-
"declaration": true,
|
|
17
|
-
"sourceMap": true,
|
|
18
|
-
"outDir": "./dist",
|
|
19
|
-
"removeComments": true,
|
|
20
|
-
"allowSyntheticDefaultImports": true,
|
|
21
|
-
"esModuleInterop": true,
|
|
22
|
-
"forceConsistentCasingInFileNames": true,
|
|
23
|
-
"strict": true,
|
|
24
|
-
"strictNullChecks": true,
|
|
25
|
-
"strictFunctionTypes": true,
|
|
26
|
-
"strictPropertyInitialization": false,
|
|
27
|
-
"skipLibCheck": true
|
|
28
|
-
},
|
|
29
|
-
"include": [
|
|
30
|
-
"./src"
|
|
31
|
-
],
|
|
32
|
-
"exclude": [
|
|
33
|
-
"./dist/**/*"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"incremental": false,
|
|
4
|
+
"target": "es2021",
|
|
5
|
+
"lib": [
|
|
6
|
+
"dom",
|
|
7
|
+
"es2021"
|
|
8
|
+
],
|
|
9
|
+
"experimentalDecorators": true,
|
|
10
|
+
"emitDecoratorMetadata": true,
|
|
11
|
+
"module": "commonjs",
|
|
12
|
+
"rootDir": "src",
|
|
13
|
+
"moduleResolution": "node",
|
|
14
|
+
"resolveJsonModule": true,
|
|
15
|
+
"allowJs": true,
|
|
16
|
+
"declaration": true,
|
|
17
|
+
"sourceMap": true,
|
|
18
|
+
"outDir": "./dist",
|
|
19
|
+
"removeComments": true,
|
|
20
|
+
"allowSyntheticDefaultImports": true,
|
|
21
|
+
"esModuleInterop": true,
|
|
22
|
+
"forceConsistentCasingInFileNames": true,
|
|
23
|
+
"strict": true,
|
|
24
|
+
"strictNullChecks": true,
|
|
25
|
+
"strictFunctionTypes": true,
|
|
26
|
+
"strictPropertyInitialization": false,
|
|
27
|
+
"skipLibCheck": true
|
|
28
|
+
},
|
|
29
|
+
"include": [
|
|
30
|
+
"./src"
|
|
31
|
+
],
|
|
32
|
+
"exclude": [
|
|
33
|
+
"./dist/**/*"
|
|
34
|
+
]
|
|
35
|
+
}
|