@singi-labs/sifa-sdk 0.11.28 → 0.11.29
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1584,7 +1584,7 @@ function normalizeToken(token, isLeading) {
|
|
|
1584
1584
|
if (!/^[A-Za-z]+$/.test(letters)) return token;
|
|
1585
1585
|
const key = letters.toLowerCase();
|
|
1586
1586
|
const canonical = CANONICAL_LEGAL_FORMS[key];
|
|
1587
|
-
if (
|
|
1587
|
+
if (typeof canonical !== "string") return token;
|
|
1588
1588
|
if (isLeading && AMBIGUOUS_WHEN_LEADING.has(key)) return token;
|
|
1589
1589
|
return recase(token, canonical);
|
|
1590
1590
|
}
|
|
@@ -3118,7 +3118,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
|
|
|
3118
3118
|
});
|
|
3119
3119
|
|
|
3120
3120
|
// src/index.ts
|
|
3121
|
-
var SIFA_SDK_VERSION = "0.11.
|
|
3121
|
+
var SIFA_SDK_VERSION = "0.11.29";
|
|
3122
3122
|
|
|
3123
3123
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
3124
3124
|
exports.ACTIVITY_VISIBILITY_RULES = ACTIVITY_VISIBILITY_RULES;
|