@vannizhang/living-atlas-content-validator 1.5.19-beta.5 → 1.5.19-beta.6
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.d.ts +2 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/package-info.json +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -38,7 +38,8 @@ import { checkFeatureServiceFieldDescriptions } from './lib/featureServiceFieldD
|
|
|
38
38
|
import { checkFeatureServiceFieldAliases } from './lib/featureServiceFieldAliases/checkFeatureServiceFieldAliases';
|
|
39
39
|
import { checkFeatureServiceFieldValueTypes } from './lib/featureServiceFieldValueTypes/checkFeatureServiceFieldValueTypes';
|
|
40
40
|
import { fetchFeatureServiceLayersAndTables } from './services/feature-service/fetchFeatureServiceLayersAndTables';
|
|
41
|
-
|
|
41
|
+
import { getRelevantFeatureLayerFields } from './lib/util/getRelevantFeatureLayerFields';
|
|
42
|
+
export { configureSettings, validate, isValidTitle, isValidAccessInformation, isValidDescription, isValidLicenseInfo, isValidAccess, isValidSSL, isValidSummary, isValidTags, isValidThumbnail, isValidUserProfileDescription, isValidUserProfileName, isValidUserProfileThumbnail, isDeprecated, isDeleteProtectionEnabled, checkTitleAndSnippetSearchability, matchLocationInfo, matchDateTimeInfo, matchSourceInfo, matchTopicInfo, isRecognizedLocation, isRecognizedDateTimeInfo, isRecognizedSource, isRecognizedTopic, isRejectedLocationInfo, isRejectedDateTimeInfo, isRejectedSourceInfo, isRejectedTopicInfo, isEligibleForCheckingTitleAndSnippetSearchability, getLivingAtlasSupportedItemTypes, checkIsLivingAtlasSupportedItemType, sanitizeTags, getStringsConfig, getDefaultStringsConfig, checkFeatureServiceFieldAliases, checkFeatureServiceFieldDescriptions, checkFeatureServiceFieldValueTypes, fetchFeatureServiceLayersAndTables, getRelevantFeatureLayerFields, };
|
|
42
43
|
export { fetchAdditonalPatterns4TitleAndSnippetSearchability, fetchProfanitiesData, getSubmittedCustomTerms, getMyCustomTerms, addCustomTerms2FeatureTable, updateStatusOfCustomTermsInFeatureTable, getPackagedReviewResults, getReviewedReviewResults, getUnarchivedReviewResults, getDeployedReviewResults, getReviewResultsByTermAndCategory, addReviewResults2FeatureTable, updateReviewResultsInFeatureTable, getCustomTermsFeatureTableItemInfo, getCustomTermsReviewResultsFeatureTableItemInfo, containsProfanity, };
|
|
43
44
|
export { isValidRegexPattern, escapeSpecialCharacters };
|
|
44
45
|
export type { ValidationMessage, ValidationInfo, ValidationResult, ValidationRulesStringJSON, ValidationResultStatus, MatchResult, CustomTermFeature, CustomTermCategory, CustomTermStatus, CustomTermsReviewResultLifecycle, CustomTermReviewResultFeature, AdditionalPatterns4TitleAndSnippetSearchability, AddFeaturesResponse, LivingAtlasSupportedItemType, FeatureLayerFieldRaw, FeatureLayerFieldFormatted, FeatureLayerJSON, FeatureLayerFieldValueType, FeatureServiceJSON, };
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.escapeSpecialCharacters = exports.isValidRegexPattern = exports.containsProfanity = exports.getCustomTermsReviewResultsFeatureTableItemInfo = exports.getCustomTermsFeatureTableItemInfo = exports.updateReviewResultsInFeatureTable = exports.addReviewResults2FeatureTable = void 0;
|
|
3
|
+
exports.getDeployedReviewResults = exports.getUnarchivedReviewResults = exports.getReviewedReviewResults = exports.getPackagedReviewResults = exports.updateStatusOfCustomTermsInFeatureTable = exports.addCustomTerms2FeatureTable = exports.getMyCustomTerms = exports.getSubmittedCustomTerms = exports.fetchProfanitiesData = exports.fetchAdditonalPatterns4TitleAndSnippetSearchability = exports.getRelevantFeatureLayerFields = exports.fetchFeatureServiceLayersAndTables = exports.checkFeatureServiceFieldValueTypes = exports.checkFeatureServiceFieldDescriptions = exports.checkFeatureServiceFieldAliases = exports.getDefaultStringsConfig = exports.getStringsConfig = exports.sanitizeTags = exports.checkIsLivingAtlasSupportedItemType = exports.getLivingAtlasSupportedItemTypes = exports.isEligibleForCheckingTitleAndSnippetSearchability = exports.isRejectedTopicInfo = exports.isRejectedSourceInfo = exports.isRejectedDateTimeInfo = exports.isRejectedLocationInfo = exports.isRecognizedTopic = exports.isRecognizedSource = exports.isRecognizedDateTimeInfo = exports.isRecognizedLocation = exports.matchTopicInfo = exports.matchSourceInfo = exports.matchDateTimeInfo = exports.matchLocationInfo = exports.checkTitleAndSnippetSearchability = exports.isDeleteProtectionEnabled = exports.isDeprecated = exports.isValidUserProfileThumbnail = exports.isValidUserProfileName = exports.isValidUserProfileDescription = exports.isValidThumbnail = exports.isValidTags = exports.isValidSummary = exports.isValidSSL = exports.isValidAccess = exports.isValidLicenseInfo = exports.isValidDescription = exports.isValidAccessInformation = exports.isValidTitle = exports.validate = exports.configureSettings = void 0;
|
|
4
|
+
exports.escapeSpecialCharacters = exports.isValidRegexPattern = exports.containsProfanity = exports.getCustomTermsReviewResultsFeatureTableItemInfo = exports.getCustomTermsFeatureTableItemInfo = exports.updateReviewResultsInFeatureTable = exports.addReviewResults2FeatureTable = exports.getReviewResultsByTermAndCategory = void 0;
|
|
5
5
|
const isValidTitle_1 = require("./lib/title/isValidTitle");
|
|
6
6
|
Object.defineProperty(exports, "isValidTitle", { enumerable: true, get: function () { return isValidTitle_1.isValidTitle; } });
|
|
7
7
|
const isValidAccessInformation_1 = require("./lib/accessInformation/isValidAccessInformation");
|
|
@@ -97,4 +97,6 @@ const checkFeatureServiceFieldValueTypes_1 = require("./lib/featureServiceFieldV
|
|
|
97
97
|
Object.defineProperty(exports, "checkFeatureServiceFieldValueTypes", { enumerable: true, get: function () { return checkFeatureServiceFieldValueTypes_1.checkFeatureServiceFieldValueTypes; } });
|
|
98
98
|
const fetchFeatureServiceLayersAndTables_1 = require("./services/feature-service/fetchFeatureServiceLayersAndTables");
|
|
99
99
|
Object.defineProperty(exports, "fetchFeatureServiceLayersAndTables", { enumerable: true, get: function () { return fetchFeatureServiceLayersAndTables_1.fetchFeatureServiceLayersAndTables; } });
|
|
100
|
+
const getRelevantFeatureLayerFields_1 = require("./lib/util/getRelevantFeatureLayerFields");
|
|
101
|
+
Object.defineProperty(exports, "getRelevantFeatureLayerFields", { enumerable: true, get: function () { return getRelevantFeatureLayerFields_1.getRelevantFeatureLayerFields; } });
|
|
100
102
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAiBA,2DAAwD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/package-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"lastCompiledTime":
|
|
1
|
+
{"lastCompiledTime":1747936362779}
|
package/package.json
CHANGED