From 5bebc1f40e476472fa59cddcb9c6879b404c0444 Mon Sep 17 00:00:00 2001 From: louiscklaw Date: Tue, 13 May 2025 13:28:21 +0800 Subject: [PATCH] ``` add COL_BILLING_ADDRESS constant and update exports ``` --- 002_source/cms/src/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/002_source/cms/src/constants.ts b/002_source/cms/src/constants.ts index f20a8e7..f3dd88d 100644 --- a/002_source/cms/src/constants.ts +++ b/002_source/cms/src/constants.ts @@ -5,6 +5,7 @@ const COL_LESSON_TYPES = 'LessonsTypes'; const COL_LESSON_CATEGORIES = 'LessonsCategories'; const COL_USERS = 'users'; const COL_USER_METAS = 'UserMetas'; +const COL_BILLING_ADDRESS = 'billingAddress'; // RULES: // do not use LP_CATEGORIES anymore @@ -56,4 +57,5 @@ export { COL_VOCABULARIES, NS_VOCABULARY, // + COL_BILLING_ADDRESS, };