@uipath/uipath-typescript 1.4.2 → 1.5.1

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.
Files changed (52) hide show
  1. package/README.md +7 -1
  2. package/dist/agent-memory/index.d.ts +4 -1
  3. package/dist/agents/index.cjs +341 -6
  4. package/dist/agents/index.d.ts +717 -16
  5. package/dist/agents/index.mjs +342 -7
  6. package/dist/assets/index.cjs +132 -15
  7. package/dist/assets/index.d.ts +12 -1
  8. package/dist/assets/index.mjs +132 -15
  9. package/dist/attachments/index.cjs +120 -12
  10. package/dist/attachments/index.mjs +120 -12
  11. package/dist/buckets/index.cjs +136 -15
  12. package/dist/buckets/index.d.ts +12 -1
  13. package/dist/buckets/index.mjs +136 -15
  14. package/dist/cases/index.cjs +1203 -938
  15. package/dist/cases/index.d.ts +325 -45
  16. package/dist/cases/index.mjs +1203 -938
  17. package/dist/conversational-agent/index.cjs +48 -10
  18. package/dist/conversational-agent/index.d.ts +117 -6
  19. package/dist/conversational-agent/index.mjs +48 -10
  20. package/dist/core/index.cjs +1 -1
  21. package/dist/core/index.mjs +1 -1
  22. package/dist/entities/index.cjs +448 -9
  23. package/dist/entities/index.d.ts +441 -1
  24. package/dist/entities/index.mjs +447 -10
  25. package/dist/feedback/index.cjs +25 -9
  26. package/dist/feedback/index.mjs +25 -9
  27. package/dist/index.cjs +1281 -330
  28. package/dist/index.d.ts +1988 -143
  29. package/dist/index.mjs +1282 -331
  30. package/dist/index.umd.js +1230 -279
  31. package/dist/jobs/index.cjs +141 -19
  32. package/dist/jobs/index.d.ts +22 -6
  33. package/dist/jobs/index.mjs +141 -19
  34. package/dist/maestro-processes/index.cjs +553 -354
  35. package/dist/maestro-processes/index.d.ts +376 -47
  36. package/dist/maestro-processes/index.mjs +553 -354
  37. package/dist/notifications/index.cjs +2012 -0
  38. package/dist/notifications/index.d.ts +615 -0
  39. package/dist/notifications/index.mjs +2010 -0
  40. package/dist/processes/index.cjs +118 -18
  41. package/dist/processes/index.d.ts +18 -2
  42. package/dist/processes/index.mjs +118 -18
  43. package/dist/queues/index.cjs +131 -14
  44. package/dist/queues/index.d.ts +12 -1
  45. package/dist/queues/index.mjs +131 -14
  46. package/dist/tasks/index.cjs +125 -13
  47. package/dist/tasks/index.d.ts +4 -1
  48. package/dist/tasks/index.mjs +125 -13
  49. package/dist/traces/index.cjs +220 -6
  50. package/dist/traces/index.d.ts +360 -25
  51. package/dist/traces/index.mjs +221 -7
  52. package/package.json +14 -4
@@ -976,7 +976,16 @@ const BUCKET_TOKEN_PARAMS = {
976
976
  * Returns the original value if parsing fails.
977
977
  */
978
978
  /**
979
- * Transforms data by mapping fields according to the provided field mapping
979
+ * Transforms data by renaming each key in `data` exactly once, using the
980
+ * mapping (`sourceField → targetField`). Keys not present in the mapping
981
+ * pass through unchanged. The original (pre-rename) key is dropped — the
982
+ * result contains only the renamed key.
983
+ *
984
+ * Each rename is independent. If the mapping happens to contain chained
985
+ * entries (`a → b` and `b → c`), they do NOT compose: a field named `a`
986
+ * in `data` becomes `b` (not `c`), because the renames are applied based
987
+ * on the original data's keys, not the running result.
988
+ *
980
989
  * @param data The source data to transform
981
990
  * @param fieldMapping Object mapping source field names to target field names
982
991
  * @returns Transformed data with mapped field names
@@ -999,21 +1008,28 @@ const BUCKET_TOKEN_PARAMS = {
999
1008
  * // { userId: '123', name: 'john' },
1000
1009
  * // { userId: '456', name: 'jane' }
1001
1010
  * // ]
1011
+ *
1012
+ * // No chaining — `a → b` does not become `a → c` even if the map has `b → c`.
1013
+ * transformData({ a: 1 }, { a: 'b', b: 'c' });
1014
+ * // result = { b: 1 }
1002
1015
  * ```
1003
1016
  */
1004
1017
  function transformData(data, fieldMapping) {
1018
+ // Pass null/undefined through unchanged — callers (e.g. AttachmentService.getById)
1019
+ // may invoke this on optional fields that an OData `select` excluded.
1020
+ if (data == null) {
1021
+ return data;
1022
+ }
1005
1023
  // Handle array of objects
1006
1024
  if (Array.isArray(data)) {
1007
1025
  return data.map(item => transformData(item, fieldMapping));
1008
1026
  }
1009
- // Handle single object
1010
- const result = { ...data };
1011
- for (const [sourceField, targetField] of Object.entries(fieldMapping)) {
1012
- if (sourceField in result) {
1013
- const value = result[sourceField];
1014
- delete result[sourceField];
1015
- result[targetField] = value;
1016
- }
1027
+ // Walk the ORIGINAL data's keys, look up each in the mapping. One rename
1028
+ // per data key — no mutation of an in-progress result, so chains can't form.
1029
+ const result = {};
1030
+ for (const [key, value] of Object.entries(data)) {
1031
+ const renamedKey = fieldMapping[key] ?? key;
1032
+ result[renamedKey] = value;
1017
1033
  }
1018
1034
  return result;
1019
1035
  }
@@ -2000,6 +2016,14 @@ const DATA_FABRIC_ENDPOINTS = {
2000
2016
  UPDATE_BY_NAME: (choiceSetName, valueId) => `${DATAFABRIC_BASE}/api/EntityService/${choiceSetName}/choiceset/${valueId}/update`,
2001
2017
  DELETE_BY_ID: (choiceSetId) => `${DATAFABRIC_BASE}/api/EntityService/entity/${choiceSetId}/choiceset/delete`,
2002
2018
  },
2019
+ ROLES: {
2020
+ GET_ALL: `${DATAFABRIC_BASE}/api/v2/Role`,
2021
+ },
2022
+ DIRECTORY: {
2023
+ GET_ALL: `${DATAFABRIC_BASE}/api/Directory`,
2024
+ ASSIGN_ROLES: `${DATAFABRIC_BASE}/api/Directory/Role`,
2025
+ REVOKE_ROLES: `${DATAFABRIC_BASE}/api/Directory/RevokeRole`,
2026
+ },
2003
2027
  };
2004
2028
 
2005
2029
  /**
@@ -3792,8 +3816,423 @@ __decorate([
3792
3816
  track('Choicesets.DeleteValuesById')
3793
3817
  ], ChoiceSetService.prototype, "deleteValuesById", null);
3794
3818
 
3819
+ /**
3820
+ * @internal
3821
+ */
3822
+ var DataFabricRoleType;
3823
+ (function (DataFabricRoleType) {
3824
+ DataFabricRoleType["System"] = "System";
3825
+ DataFabricRoleType["UserDefined"] = "UserDefined";
3826
+ })(DataFabricRoleType || (DataFabricRoleType = {}));
3827
+
3828
+ function isRecord$1(value) {
3829
+ return value !== null && typeof value === 'object' && !Array.isArray(value);
3830
+ }
3831
+ function isDataFabricRole(value) {
3832
+ if (!isRecord$1(value)) {
3833
+ return false;
3834
+ }
3835
+ const { id, name, type, directoryEntityCount, folderId } = value;
3836
+ const hasValidDirectoryEntityCount = directoryEntityCount === undefined ||
3837
+ directoryEntityCount === null ||
3838
+ typeof directoryEntityCount === 'number';
3839
+ const hasValidFolderId = folderId === undefined || typeof folderId === 'string';
3840
+ return typeof id === 'string' &&
3841
+ typeof name === 'string' &&
3842
+ (type === DataFabricRoleType.System || type === DataFabricRoleType.UserDefined) &&
3843
+ hasValidDirectoryEntityCount &&
3844
+ hasValidFolderId;
3845
+ }
3846
+ function validateRolesResponse(data) {
3847
+ if (Array.isArray(data) && data.every(isDataFabricRole)) {
3848
+ return data;
3849
+ }
3850
+ throw new ServerError({
3851
+ message: 'Invalid Data Fabric roles response format.',
3852
+ });
3853
+ }
3854
+ /**
3855
+ * @internal
3856
+ */
3857
+ class DataFabricRoleService extends BaseService {
3858
+ /**
3859
+ * Lists Data Fabric access roles.
3860
+ *
3861
+ * Returns tenant Data Fabric roles such as Admin, Designer, DataWriter, and
3862
+ * DataReader. Role IDs from this method can be passed to
3863
+ * `DataFabricDirectoryService.assignRoles()`.
3864
+ *
3865
+ * @param options - Optional query options
3866
+ * @returns Promise resolving to an array of {@link DataFabricRole}
3867
+ *
3868
+ * @example
3869
+ * ```typescript
3870
+ * import { DataFabricRoleService } from '@uipath/uipath-typescript/entities';
3871
+ *
3872
+ * const roles = new DataFabricRoleService(sdk);
3873
+ * const allRoles = await roles.getAll();
3874
+ * const dataWriter = allRoles.find(role => role.name === 'DataWriter');
3875
+ * ```
3876
+ *
3877
+ * @example
3878
+ * ```typescript
3879
+ * const rolesWithoutStats = await roles.getAll({ stats: false });
3880
+ * ```
3881
+ *
3882
+ * @example
3883
+ * ```typescript
3884
+ * const folderRoles = await roles.getAll({ folderKey: '<folder-key>' });
3885
+ * ```
3886
+ *
3887
+ * @internal
3888
+ */
3889
+ async getAll(options = {}) {
3890
+ const params = createParams({
3891
+ stats: options.stats ?? true,
3892
+ });
3893
+ const headers = createHeaders({ [FOLDER_KEY]: options.folderKey });
3894
+ const response = await this.get(DATA_FABRIC_ENDPOINTS.ROLES.GET_ALL, { params, headers });
3895
+ return validateRolesResponse(response.data);
3896
+ }
3897
+ }
3898
+ __decorate([
3899
+ track('DataFabricRoles.GetAll')
3900
+ ], DataFabricRoleService.prototype, "getAll", null);
3901
+
3902
+ /**
3903
+ * @internal
3904
+ */
3905
+ var DataFabricDirectoryEntityType;
3906
+ (function (DataFabricDirectoryEntityType) {
3907
+ /** Identity user, robot user, or directory robot principal. */
3908
+ DataFabricDirectoryEntityType[DataFabricDirectoryEntityType["User"] = 0] = "User";
3909
+ /** Identity group principal. */
3910
+ DataFabricDirectoryEntityType[DataFabricDirectoryEntityType["Group"] = 1] = "Group";
3911
+ /** External application principal. */
3912
+ DataFabricDirectoryEntityType[DataFabricDirectoryEntityType["Application"] = 2] = "Application";
3913
+ })(DataFabricDirectoryEntityType || (DataFabricDirectoryEntityType = {}));
3914
+ /**
3915
+ * @internal
3916
+ */
3917
+ var DataFabricDirectoryEntityTypeName;
3918
+ (function (DataFabricDirectoryEntityTypeName) {
3919
+ DataFabricDirectoryEntityTypeName["User"] = "User";
3920
+ DataFabricDirectoryEntityTypeName["Group"] = "Group";
3921
+ DataFabricDirectoryEntityTypeName["Application"] = "Application";
3922
+ })(DataFabricDirectoryEntityTypeName || (DataFabricDirectoryEntityTypeName = {}));
3923
+
3924
+ const DEFAULT_DIRECTORY_PAGE_SIZE = 100;
3925
+ const MAX_DIRECTORY_PAGE_SIZE = 100;
3926
+ function validateDirectoryListResponse(data) {
3927
+ if (data === null || typeof data !== 'object' || Array.isArray(data)) {
3928
+ throw new ServerError({
3929
+ message: 'Invalid Data Fabric directory response format.',
3930
+ });
3931
+ }
3932
+ const response = data;
3933
+ if (typeof response.totalCount !== 'number' || !Array.isArray(response.results)) {
3934
+ throw new ServerError({
3935
+ message: 'Invalid Data Fabric directory response format.',
3936
+ });
3937
+ }
3938
+ return {
3939
+ totalCount: response.totalCount,
3940
+ results: response.results,
3941
+ };
3942
+ }
3943
+ function isRecord(value) {
3944
+ return value !== null && typeof value === 'object' && !Array.isArray(value);
3945
+ }
3946
+ function isDirectoryEntityTypeName(value) {
3947
+ return value === DataFabricDirectoryEntityTypeName.User ||
3948
+ value === DataFabricDirectoryEntityTypeName.Group ||
3949
+ value === DataFabricDirectoryEntityTypeName.Application;
3950
+ }
3951
+ function isDirectoryRole(value) {
3952
+ if (!isRecord(value)) {
3953
+ return false;
3954
+ }
3955
+ return typeof value.id === 'string' && typeof value.name === 'string';
3956
+ }
3957
+ function normalizeDirectoryEntry(entry) {
3958
+ if (!isRecord(entry) ||
3959
+ typeof entry.externalId !== 'string' ||
3960
+ typeof entry.name !== 'string' ||
3961
+ !isDirectoryEntityTypeName(entry.type) ||
3962
+ (entry.email !== undefined && entry.email !== null && typeof entry.email !== 'string') ||
3963
+ (entry.objectType !== undefined && entry.objectType !== null && typeof entry.objectType !== 'string') ||
3964
+ (entry.isUIEnabled !== undefined && typeof entry.isUIEnabled !== 'boolean') ||
3965
+ (entry.roles !== undefined && entry.roles !== null && (!Array.isArray(entry.roles) || !entry.roles.every(isDirectoryRole)))) {
3966
+ throw new ServerError({
3967
+ message: 'Invalid Data Fabric directory entry response format.',
3968
+ });
3969
+ }
3970
+ const normalized = {
3971
+ externalId: entry.externalId,
3972
+ name: entry.name,
3973
+ type: entry.type,
3974
+ roles: entry.roles ?? [],
3975
+ isUIEnabled: entry.isUIEnabled ?? true,
3976
+ };
3977
+ if (entry.email !== undefined) {
3978
+ normalized.email = entry.email;
3979
+ }
3980
+ if (entry.objectType !== undefined) {
3981
+ normalized.objectType = entry.objectType;
3982
+ }
3983
+ return normalized;
3984
+ }
3985
+ function normalizePrincipalIds(principalIds) {
3986
+ const ids = Array.isArray(principalIds) ? principalIds : [principalIds];
3987
+ return [...new Set(ids.map(id => id.trim()).filter(Boolean))];
3988
+ }
3989
+ function normalizeRoleIds(roleIds) {
3990
+ return [...new Set(roleIds.map(id => id.trim()).filter(Boolean))];
3991
+ }
3992
+ function normalizePrincipalType(type) {
3993
+ if (typeof type === 'number') {
3994
+ if (type === DataFabricDirectoryEntityType.User ||
3995
+ type === DataFabricDirectoryEntityType.Group ||
3996
+ type === DataFabricDirectoryEntityType.Application) {
3997
+ return type;
3998
+ }
3999
+ throw new ValidationError({
4000
+ message: 'Invalid Data Fabric principal type.',
4001
+ });
4002
+ }
4003
+ switch (type) {
4004
+ case DataFabricDirectoryEntityTypeName.User:
4005
+ return DataFabricDirectoryEntityType.User;
4006
+ case DataFabricDirectoryEntityTypeName.Group:
4007
+ return DataFabricDirectoryEntityType.Group;
4008
+ case DataFabricDirectoryEntityTypeName.Application:
4009
+ return DataFabricDirectoryEntityType.Application;
4010
+ default:
4011
+ throw new ValidationError({
4012
+ message: 'Invalid Data Fabric principal type.',
4013
+ });
4014
+ }
4015
+ }
4016
+ function roleIdsFromEntry(entry) {
4017
+ if (!entry) {
4018
+ return [];
4019
+ }
4020
+ return normalizeRoleIds(entry.roles.map(role => role.id));
4021
+ }
4022
+ function clampDirectoryPageSize(pageSize) {
4023
+ return Math.max(1, Math.min(pageSize ?? DEFAULT_DIRECTORY_PAGE_SIZE, MAX_DIRECTORY_PAGE_SIZE));
4024
+ }
4025
+ /**
4026
+ * @internal
4027
+ */
4028
+ class DataFabricDirectoryService extends BaseService {
4029
+ async fetchAllEntries(options = {}) {
4030
+ const top = clampDirectoryPageSize(options.pageSize);
4031
+ const entries = [];
4032
+ let skip = 0;
4033
+ while (true) {
4034
+ const page = await this.list(skip === 0 ? { top } : { top, skip });
4035
+ entries.push(...page.results);
4036
+ if (page.results.length < top || (page.totalCount !== undefined && entries.length >= page.totalCount)) {
4037
+ return entries;
4038
+ }
4039
+ skip += top;
4040
+ }
4041
+ }
4042
+ /**
4043
+ * Lists one page of Data Fabric directory principals and their current roles.
4044
+ *
4045
+ * Returns directory entries with external IDs, principal metadata, and
4046
+ * assigned Data Fabric roles.
4047
+ *
4048
+ * @param options - Optional offset paging options
4049
+ * @returns Promise resolving to {@link DataFabricDirectoryListResponse}
4050
+ *
4051
+ * @example
4052
+ * ```typescript
4053
+ * import { DataFabricDirectoryService } from '@uipath/uipath-typescript/entities';
4054
+ *
4055
+ * const directory = new DataFabricDirectoryService(sdk);
4056
+ * const page = await directory.list({ skip: 0, top: 50 });
4057
+ * const firstPrincipal = page.results[0];
4058
+ * ```
4059
+ *
4060
+ * @internal
4061
+ */
4062
+ async list(options = {}) {
4063
+ const params = createParams({
4064
+ skip: options.skip,
4065
+ top: clampDirectoryPageSize(options.top),
4066
+ });
4067
+ const response = await this.get(DATA_FABRIC_ENDPOINTS.DIRECTORY.GET_ALL, { params });
4068
+ const data = validateDirectoryListResponse(response.data);
4069
+ const results = data.results.map(normalizeDirectoryEntry);
4070
+ return {
4071
+ totalCount: data.totalCount,
4072
+ results,
4073
+ };
4074
+ }
4075
+ /**
4076
+ * Lists all Data Fabric directory principals and their current roles.
4077
+ *
4078
+ * Follows the Data Fabric directory top/skip pagination and returns
4079
+ * normalized entries. Entries without assigned roles include an empty
4080
+ * `roles` array.
4081
+ *
4082
+ * @param options - Optional page-size options
4083
+ * @returns Promise resolving to an array of {@link DataFabricDirectoryEntry}
4084
+ *
4085
+ * @example
4086
+ * ```typescript
4087
+ * import { DataFabricDirectoryService } from '@uipath/uipath-typescript/entities';
4088
+ *
4089
+ * const directory = new DataFabricDirectoryService(sdk);
4090
+ * const principals = await directory.getAll({ pageSize: 100 });
4091
+ * ```
4092
+ *
4093
+ * @internal
4094
+ */
4095
+ async getAll(options = {}) {
4096
+ return this.fetchAllEntries(options);
4097
+ }
4098
+ /**
4099
+ * Assigns Data Fabric roles to one or more principals.
4100
+ *
4101
+ * The Data Fabric API replaces the role set for each principal, so this
4102
+ * method preserves existing roles by default and posts the union of current
4103
+ * and requested role IDs.
4104
+ *
4105
+ * Role IDs can be discovered with `DataFabricRoleService.getAll()`. Set
4106
+ * `preserveExisting: false` only when intentionally replacing a principal's
4107
+ * Data Fabric role set.
4108
+ *
4109
+ * @param principalIds - Principal external ID or IDs
4110
+ * @param principalType - Principal type
4111
+ * @param roleIds - Data Fabric role IDs to assign
4112
+ * @param options - Optional assignment behavior
4113
+ * @returns Promise resolving to an array of {@link DataFabricDirectoryAssignmentResult}
4114
+ *
4115
+ * @example
4116
+ * ```typescript
4117
+ * import { DataFabricDirectoryEntityTypeName, DataFabricDirectoryService, DataFabricRoleService } from '@uipath/uipath-typescript/entities';
4118
+ *
4119
+ * const roles = new DataFabricRoleService(sdk);
4120
+ * const directory = new DataFabricDirectoryService(sdk);
4121
+ *
4122
+ * const dataWriter = (await roles.getAll()).find(role => role.name === 'DataWriter');
4123
+ * if (!dataWriter) {
4124
+ * throw new Error('DataWriter role not found');
4125
+ * }
4126
+ *
4127
+ * await directory.assignRoles('<identity-group-id>', DataFabricDirectoryEntityTypeName.Group, [dataWriter.id]);
4128
+ * ```
4129
+ *
4130
+ * @example
4131
+ * ```typescript
4132
+ * await directory.assignRoles('<identity-user-id>', DataFabricDirectoryEntityTypeName.User, ['<role-id>'], {
4133
+ * preserveExisting: false,
4134
+ * });
4135
+ * ```
4136
+ *
4137
+ * @internal
4138
+ */
4139
+ async assignRoles(principalIds, principalType, roleIds, options = {}) {
4140
+ const normalizedPrincipalIds = normalizePrincipalIds(principalIds);
4141
+ const normalizedRoleIds = normalizeRoleIds(roleIds);
4142
+ if (normalizedPrincipalIds.length === 0) {
4143
+ throw new ValidationError({ message: 'At least one principal ID is required.' });
4144
+ }
4145
+ if (normalizedRoleIds.length === 0) {
4146
+ throw new ValidationError({ message: 'At least one Data Fabric role ID is required.' });
4147
+ }
4148
+ const type = normalizePrincipalType(principalType);
4149
+ const preserveExisting = options.preserveExisting ?? true;
4150
+ const existingById = new Map();
4151
+ if (preserveExisting) {
4152
+ for (const entry of await this.fetchAllEntries()) {
4153
+ existingById.set(entry.externalId.toLowerCase(), entry);
4154
+ }
4155
+ }
4156
+ return Promise.all(normalizedPrincipalIds.map(async (principalId) => {
4157
+ const existing = existingById.get(principalId.toLowerCase());
4158
+ const mergedRoleIds = preserveExisting
4159
+ ? normalizeRoleIds([...roleIdsFromEntry(existing), ...normalizedRoleIds])
4160
+ : normalizedRoleIds;
4161
+ const payload = {
4162
+ directoryEntities: [
4163
+ {
4164
+ externalId: principalId,
4165
+ type,
4166
+ resolved: true,
4167
+ },
4168
+ ],
4169
+ roles: mergedRoleIds,
4170
+ isUIEnabled: options.uiEnabled ?? true,
4171
+ };
4172
+ await this.post(DATA_FABRIC_ENDPOINTS.DIRECTORY.ASSIGN_ROLES, payload);
4173
+ return {
4174
+ principalId,
4175
+ roleIds: mergedRoleIds,
4176
+ };
4177
+ }));
4178
+ }
4179
+ /**
4180
+ * Revokes all direct Data Fabric roles from one or more principals.
4181
+ *
4182
+ * The Data Fabric API removes all role assignments for each supplied external
4183
+ * ID. Use this when a principal should no longer have direct Data Fabric
4184
+ * access. Inherited access through groups is not changed.
4185
+ *
4186
+ * @param principalIds - Principal external ID or IDs
4187
+ * @returns Promise resolving when the roles are revoked
4188
+ *
4189
+ * @example
4190
+ * ```typescript
4191
+ * import { DataFabricDirectoryService } from '@uipath/uipath-typescript/entities';
4192
+ *
4193
+ * const directory = new DataFabricDirectoryService(sdk);
4194
+ *
4195
+ * await directory.revokeRoles('<identity-user-id>');
4196
+ * ```
4197
+ *
4198
+ * @example
4199
+ * ```typescript
4200
+ * await directory.revokeRoles([
4201
+ * '<identity-user-id>',
4202
+ * '<identity-group-id>',
4203
+ * ]);
4204
+ * ```
4205
+ *
4206
+ * @internal
4207
+ */
4208
+ async revokeRoles(principalIds) {
4209
+ const normalizedPrincipalIds = normalizePrincipalIds(principalIds);
4210
+ if (normalizedPrincipalIds.length === 0) {
4211
+ throw new ValidationError({ message: 'At least one principal ID is required.' });
4212
+ }
4213
+ const payload = {
4214
+ externalIds: normalizedPrincipalIds,
4215
+ };
4216
+ await this.post(DATA_FABRIC_ENDPOINTS.DIRECTORY.REVOKE_ROLES, payload);
4217
+ }
4218
+ }
4219
+ __decorate([
4220
+ track('DataFabricDirectory.List')
4221
+ ], DataFabricDirectoryService.prototype, "list", null);
4222
+ __decorate([
4223
+ track('DataFabricDirectory.GetAll')
4224
+ ], DataFabricDirectoryService.prototype, "getAll", null);
4225
+ __decorate([
4226
+ track('DataFabricDirectory.AssignRoles')
4227
+ ], DataFabricDirectoryService.prototype, "assignRoles", null);
4228
+ __decorate([
4229
+ track('DataFabricDirectory.RevokeRoles')
4230
+ ], DataFabricDirectoryService.prototype, "revokeRoles", null);
4231
+
3795
4232
  exports.ChoiceSetService = ChoiceSetService;
3796
4233
  exports.ChoiceSets = ChoiceSetService;
4234
+ exports.DataFabricDirectoryService = DataFabricDirectoryService;
4235
+ exports.DataFabricRoleService = DataFabricRoleService;
3797
4236
  exports.Entities = EntityService;
3798
4237
  exports.EntityService = EntityService;
3799
4238
  exports.createEntityWithMethods = createEntityWithMethods;