@voyantjs/db 0.4.3 → 0.4.5
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.
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* All entity prefixes for the Voyant platform.
|
|
3
|
-
*
|
|
3
|
+
*
|
|
4
|
+
* Convention:
|
|
5
|
+
* - Root entities: first N chars of the entity name, shortest unambiguous (2-4 chars).
|
|
6
|
+
* Examples: prod (product), book (booking), inv (invoice), pers (person), org (organization).
|
|
7
|
+
* - Child entities: 2-char module code + 2-char child suffix from the child entity's first chars.
|
|
8
|
+
* Examples: bk+it = bkit (booking_item), ch+co = chco (channel_contract).
|
|
9
|
+
* - All lowercase alphanumeric, max 4 chars.
|
|
10
|
+
* - Prefer guessable over clever — a developer should be able to guess the prefix from the entity name.
|
|
4
11
|
*/
|
|
5
12
|
export declare const PREFIXES: {
|
|
6
13
|
readonly user_profiles: "usrp";
|
|
@@ -16,8 +23,8 @@ export declare const PREFIXES: {
|
|
|
16
23
|
readonly notification_reminder_runs: "ntrn";
|
|
17
24
|
readonly person_notes: "pnot";
|
|
18
25
|
readonly organization_notes: "onot";
|
|
19
|
-
readonly segments: "
|
|
20
|
-
readonly segment_members: "
|
|
26
|
+
readonly segments: "seg";
|
|
27
|
+
readonly segment_members: "segm";
|
|
21
28
|
readonly suppliers: "supp";
|
|
22
29
|
readonly supplier_services: "ssvc";
|
|
23
30
|
readonly supplier_rates: "srat";
|
|
@@ -64,16 +71,16 @@ export declare const PREFIXES: {
|
|
|
64
71
|
readonly pickup_locations: "pklo";
|
|
65
72
|
readonly location_pickup_times: "lpkt";
|
|
66
73
|
readonly custom_pickup_areas: "cpka";
|
|
67
|
-
readonly organizations: "
|
|
68
|
-
readonly people: "
|
|
74
|
+
readonly organizations: "org";
|
|
75
|
+
readonly people: "pers";
|
|
69
76
|
readonly pipelines: "pipe";
|
|
70
|
-
readonly stages: "
|
|
71
|
-
readonly opportunities: "
|
|
77
|
+
readonly stages: "stg";
|
|
78
|
+
readonly opportunities: "opp";
|
|
72
79
|
readonly opportunity_participants: "oppp";
|
|
73
80
|
readonly opportunity_products: "oppr";
|
|
74
81
|
readonly quotes: "quot";
|
|
75
82
|
readonly quote_lines: "qtln";
|
|
76
|
-
readonly activities: "
|
|
83
|
+
readonly activities: "act";
|
|
77
84
|
readonly activity_links: "actl";
|
|
78
85
|
readonly activity_participants: "actp";
|
|
79
86
|
readonly custom_field_definitions: "cfdf";
|
|
@@ -89,16 +96,16 @@ export declare const PREFIXES: {
|
|
|
89
96
|
readonly booking_item_commissions: "bcom";
|
|
90
97
|
readonly invoice_line_items: "inli";
|
|
91
98
|
readonly payments: "pay";
|
|
92
|
-
readonly credit_notes: "
|
|
99
|
+
readonly credit_notes: "crn";
|
|
93
100
|
readonly credit_note_line_items: "cnli";
|
|
94
101
|
readonly supplier_payments: "spay";
|
|
95
102
|
readonly finance_notes: "fnot";
|
|
96
|
-
readonly resources: "
|
|
97
|
-
readonly resource_pools: "
|
|
98
|
-
readonly resource_pool_members: "
|
|
99
|
-
readonly resource_requirements: "
|
|
100
|
-
readonly resource_slot_assignments: "
|
|
101
|
-
readonly resource_closeouts: "
|
|
103
|
+
readonly resources: "res";
|
|
104
|
+
readonly resource_pools: "repl";
|
|
105
|
+
readonly resource_pool_members: "repm";
|
|
106
|
+
readonly resource_requirements: "rerq";
|
|
107
|
+
readonly resource_slot_assignments: "resa";
|
|
108
|
+
readonly resource_closeouts: "recl";
|
|
102
109
|
readonly ground_operators: "gopr";
|
|
103
110
|
readonly ground_vehicles: "gveh";
|
|
104
111
|
readonly ground_drivers: "gdrv";
|
|
@@ -130,7 +137,7 @@ export declare const PREFIXES: {
|
|
|
130
137
|
readonly channel_release_schedules: "chrs";
|
|
131
138
|
readonly channel_remittance_exceptions: "chre";
|
|
132
139
|
readonly channel_settlement_approvals: "chap";
|
|
133
|
-
readonly facilities: "
|
|
140
|
+
readonly facilities: "fac";
|
|
134
141
|
readonly facility_contacts: "fcon";
|
|
135
142
|
readonly facility_features: "ffea";
|
|
136
143
|
readonly facility_operation_schedules: "fops";
|
|
@@ -161,7 +168,7 @@ export declare const PREFIXES: {
|
|
|
161
168
|
readonly identity_contact_points: "idcp";
|
|
162
169
|
readonly identity_addresses: "idad";
|
|
163
170
|
readonly identity_named_contacts: "idnc";
|
|
164
|
-
readonly markets: "
|
|
171
|
+
readonly markets: "mkt";
|
|
165
172
|
readonly market_locales: "mklo";
|
|
166
173
|
readonly market_currencies: "mkcu";
|
|
167
174
|
readonly fx_rate_sets: "fxrs";
|
|
@@ -191,11 +198,11 @@ export declare const PREFIXES: {
|
|
|
191
198
|
readonly booking_question_extra_triggers: "bqet";
|
|
192
199
|
readonly booking_answers: "bqan";
|
|
193
200
|
readonly storefront_verification_challenges: "svch";
|
|
194
|
-
readonly offers: "
|
|
201
|
+
readonly offers: "ofr";
|
|
195
202
|
readonly offer_participants: "ofpt";
|
|
196
203
|
readonly offer_items: "ofit";
|
|
197
204
|
readonly offer_item_participants: "ofip";
|
|
198
|
-
readonly orders: "
|
|
205
|
+
readonly orders: "ord";
|
|
199
206
|
readonly order_participants: "orpt";
|
|
200
207
|
readonly order_items: "orit";
|
|
201
208
|
readonly order_item_participants: "orip";
|
|
@@ -218,7 +225,7 @@ export declare const PREFIXES: {
|
|
|
218
225
|
readonly contract_signatures: "ctsi";
|
|
219
226
|
readonly contract_number_series: "ctns";
|
|
220
227
|
readonly contract_attachments: "ctat";
|
|
221
|
-
readonly policies: "
|
|
228
|
+
readonly policies: "pol";
|
|
222
229
|
readonly policy_versions: "plvr";
|
|
223
230
|
readonly policy_rules: "plrl";
|
|
224
231
|
readonly policy_assignments: "plas";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeid-prefixes.d.ts","sourceRoot":"","sources":["../../src/lib/typeid-prefixes.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"typeid-prefixes.d.ts","sourceRoot":"","sources":["../../src/lib/typeid-prefixes.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmQX,CAAA;AAEV,MAAM,MAAM,SAAS,GAAG,MAAM,OAAO,QAAQ,CAAA;AAC7C,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAA"}
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* All entity prefixes for the Voyant platform.
|
|
3
|
-
*
|
|
3
|
+
*
|
|
4
|
+
* Convention:
|
|
5
|
+
* - Root entities: first N chars of the entity name, shortest unambiguous (2-4 chars).
|
|
6
|
+
* Examples: prod (product), book (booking), inv (invoice), pers (person), org (organization).
|
|
7
|
+
* - Child entities: 2-char module code + 2-char child suffix from the child entity's first chars.
|
|
8
|
+
* Examples: bk+it = bkit (booking_item), ch+co = chco (channel_contract).
|
|
9
|
+
* - All lowercase alphanumeric, max 4 chars.
|
|
10
|
+
* - Prefer guessable over clever — a developer should be able to guess the prefix from the entity name.
|
|
4
11
|
*/
|
|
5
12
|
export const PREFIXES = {
|
|
6
13
|
// --- IAM ---
|
|
@@ -19,8 +26,8 @@ export const PREFIXES = {
|
|
|
19
26
|
notification_reminder_runs: "ntrn",
|
|
20
27
|
person_notes: "pnot",
|
|
21
28
|
organization_notes: "onot",
|
|
22
|
-
segments: "
|
|
23
|
-
segment_members: "
|
|
29
|
+
segments: "seg",
|
|
30
|
+
segment_members: "segm",
|
|
24
31
|
suppliers: "supp",
|
|
25
32
|
supplier_services: "ssvc",
|
|
26
33
|
supplier_rates: "srat",
|
|
@@ -67,16 +74,16 @@ export const PREFIXES = {
|
|
|
67
74
|
pickup_locations: "pklo",
|
|
68
75
|
location_pickup_times: "lpkt",
|
|
69
76
|
custom_pickup_areas: "cpka",
|
|
70
|
-
organizations: "
|
|
71
|
-
people: "
|
|
77
|
+
organizations: "org",
|
|
78
|
+
people: "pers",
|
|
72
79
|
pipelines: "pipe",
|
|
73
|
-
stages: "
|
|
74
|
-
opportunities: "
|
|
80
|
+
stages: "stg",
|
|
81
|
+
opportunities: "opp",
|
|
75
82
|
opportunity_participants: "oppp",
|
|
76
83
|
opportunity_products: "oppr",
|
|
77
84
|
quotes: "quot",
|
|
78
85
|
quote_lines: "qtln",
|
|
79
|
-
activities: "
|
|
86
|
+
activities: "act",
|
|
80
87
|
activity_links: "actl",
|
|
81
88
|
activity_participants: "actp",
|
|
82
89
|
custom_field_definitions: "cfdf",
|
|
@@ -92,16 +99,16 @@ export const PREFIXES = {
|
|
|
92
99
|
booking_item_commissions: "bcom",
|
|
93
100
|
invoice_line_items: "inli",
|
|
94
101
|
payments: "pay",
|
|
95
|
-
credit_notes: "
|
|
102
|
+
credit_notes: "crn",
|
|
96
103
|
credit_note_line_items: "cnli",
|
|
97
104
|
supplier_payments: "spay",
|
|
98
105
|
finance_notes: "fnot",
|
|
99
|
-
resources: "
|
|
100
|
-
resource_pools: "
|
|
101
|
-
resource_pool_members: "
|
|
102
|
-
resource_requirements: "
|
|
103
|
-
resource_slot_assignments: "
|
|
104
|
-
resource_closeouts: "
|
|
106
|
+
resources: "res",
|
|
107
|
+
resource_pools: "repl",
|
|
108
|
+
resource_pool_members: "repm",
|
|
109
|
+
resource_requirements: "rerq",
|
|
110
|
+
resource_slot_assignments: "resa",
|
|
111
|
+
resource_closeouts: "recl",
|
|
105
112
|
ground_operators: "gopr",
|
|
106
113
|
ground_vehicles: "gveh",
|
|
107
114
|
ground_drivers: "gdrv",
|
|
@@ -133,7 +140,7 @@ export const PREFIXES = {
|
|
|
133
140
|
channel_release_schedules: "chrs",
|
|
134
141
|
channel_remittance_exceptions: "chre",
|
|
135
142
|
channel_settlement_approvals: "chap",
|
|
136
|
-
facilities: "
|
|
143
|
+
facilities: "fac",
|
|
137
144
|
facility_contacts: "fcon",
|
|
138
145
|
facility_features: "ffea",
|
|
139
146
|
facility_operation_schedules: "fops",
|
|
@@ -164,7 +171,7 @@ export const PREFIXES = {
|
|
|
164
171
|
identity_contact_points: "idcp",
|
|
165
172
|
identity_addresses: "idad",
|
|
166
173
|
identity_named_contacts: "idnc",
|
|
167
|
-
markets: "
|
|
174
|
+
markets: "mkt",
|
|
168
175
|
market_locales: "mklo",
|
|
169
176
|
market_currencies: "mkcu",
|
|
170
177
|
fx_rate_sets: "fxrs",
|
|
@@ -194,11 +201,11 @@ export const PREFIXES = {
|
|
|
194
201
|
booking_question_extra_triggers: "bqet",
|
|
195
202
|
booking_answers: "bqan",
|
|
196
203
|
storefront_verification_challenges: "svch",
|
|
197
|
-
offers: "
|
|
204
|
+
offers: "ofr",
|
|
198
205
|
offer_participants: "ofpt",
|
|
199
206
|
offer_items: "ofit",
|
|
200
207
|
offer_item_participants: "ofip",
|
|
201
|
-
orders: "
|
|
208
|
+
orders: "ord",
|
|
202
209
|
order_participants: "orpt",
|
|
203
210
|
order_items: "orit",
|
|
204
211
|
order_item_participants: "orip",
|
|
@@ -223,7 +230,7 @@ export const PREFIXES = {
|
|
|
223
230
|
contract_number_series: "ctns",
|
|
224
231
|
contract_attachments: "ctat",
|
|
225
232
|
// --- POLICIES ---
|
|
226
|
-
policies: "
|
|
233
|
+
policies: "pol",
|
|
227
234
|
policy_versions: "plvr",
|
|
228
235
|
policy_rules: "plrl",
|
|
229
236
|
policy_assignments: "plas",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeid-prefixes.js","sourceRoot":"","sources":["../../src/lib/typeid-prefixes.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"typeid-prefixes.js","sourceRoot":"","sources":["../../src/lib/typeid-prefixes.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/db",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"license": "FSL-1.1-Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"postgres": "^3.4.8",
|
|
127
127
|
"typeid-js": "^1.2.0",
|
|
128
128
|
"zod": "^4.3.6",
|
|
129
|
-
"@voyantjs/core": "0.4.
|
|
129
|
+
"@voyantjs/core": "0.4.5"
|
|
130
130
|
},
|
|
131
131
|
"devDependencies": {
|
|
132
132
|
"typescript": "^6.0.2",
|