cloud-ide-core 2.0.118 → 2.0.121
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/fesm2022/cloud-ide-core.mjs +123 -23
- package/fesm2022/cloud-ide-core.mjs.map +1 -1
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2298,6 +2298,13 @@ declare class CideCoreUserCreateComponent {
|
|
|
2298
2298
|
* @returns Entity ID string or undefined
|
|
2299
2299
|
*/
|
|
2300
2300
|
getEntityIdFromMapping(mappingIndex: number): string | undefined;
|
|
2301
|
+
/**
|
|
2302
|
+
* Check if a user type mapping belongs to a specific entity
|
|
2303
|
+
* @param typeMapping - User type mapping to check
|
|
2304
|
+
* @param entityId - Entity ID to compare against
|
|
2305
|
+
* @returns True if the mapping belongs to the entity
|
|
2306
|
+
*/
|
|
2307
|
+
isUserTypeMappingForEntity(typeMapping: CoreUserTypeMapping, entityId: string | undefined): boolean;
|
|
2301
2308
|
/**
|
|
2302
2309
|
* Get user type mappings for a specific entity
|
|
2303
2310
|
* @param entityId - Entity ID to filter mappings (can be string or object with _id property)
|