octopian-apis 1.0.42 → 1.0.43

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/src/index.d.ts CHANGED
@@ -263,6 +263,13 @@ import { RequestStepAssignableRoleInput } from "./modals/input-modals/request-st
263
263
  import { RequestStepAssignableRoleOutput } from "./modals/output-modals/request-step-modals/RequestStepAssignableRoleOutput";
264
264
  import { ProcessStepSpecialActionInput } from "./modals/input-modals/request-step-modals/ProcessStepSpecialActionInput";
265
265
  import { LinkedLoginOutput } from "./modals/output-modals/authentications-modals/LinkedLoginOutput";
266
+ import { GetPersonalUnitMemberInput } from "./modals/input-modals/transaction-catalog-modals/GetPersonalUnitMemberInput";
267
+ import { ConvertPersonalUnitMemberInput } from "./modals/input-modals/transaction-catalog-modals/ConvertPersonalUnitMemberInput";
268
+ import { MaintainServiceManagementInput } from "./modals/input-modals/transaction-catalog-modals/MaintainServiceManagementInput";
269
+ import { MaintainAgentUnitInput } from "./modals/input-modals/transaction-catalog-modals/MaintainAgentUnitInput";
270
+ import { MaintainAgentInteractorInput } from "./modals/input-modals/transaction-catalog-modals/MaintainAgentInteractorInput";
271
+ import { MaintainAgentInteractorOutput } from "./modals/output-modals/transaction-catalog-modals/MaintainAgentInteractorOutput";
272
+ import { GetServiceManagementServiceListOutput } from "./modals/output-modals/request-modals/GetServiceManagementServiceListOutput";
266
273
  // Define each module with its specific functions
267
274
 
268
275
  interface AuthenticationServices {
@@ -2064,6 +2071,257 @@ interface TransactionAgentServices {
2064
2071
  Timeout?: number | null,
2065
2072
  RequiredHeaderValue?: string
2066
2073
  ) => BaseResponse<GetAssignableRoleListOutput | BaseErrorResponse>;
2074
+
2075
+ /**
2076
+ * @description
2077
+ * Retrieves the profile of the current agent.
2078
+ *
2079
+ * @param {GetMyProfileInput} GetMyProfileDTO
2080
+ * Data object containing fields necessary for retrieving the agent profile.
2081
+ * --- agent profile data---
2082
+ *
2083
+ * @param {string} AuthToken
2084
+ * Authentication token for authorization purposes.
2085
+ *
2086
+ * @param {number} Timeout
2087
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2088
+ *
2089
+ * @param {string} RequiredHeaderValue
2090
+ * Value for any required header. Default is null.
2091
+ *
2092
+ * @returns
2093
+ * An object containing the response from the Get My Profile Agent API,
2094
+ * including success message, status code, and any additional data returned by the API.
2095
+ * Message: Success,
2096
+ * StatusCode: 200,
2097
+ * Result: --- agent profile data---,
2098
+ * HeaderValue: string
2099
+ */
2100
+ GetAgentProfile: (
2101
+ Input: GetMyProfileInput,
2102
+ AuthToken?: string | null,
2103
+ Timeout?: number | null,
2104
+ RequiredHeaderValue?: string
2105
+ ) => BaseResponse<GetMyProfileOutput | BaseErrorResponse>;
2106
+
2107
+ /**
2108
+ * @description
2109
+ * Maintains the list of attributes for an agent.
2110
+ *
2111
+ * @param {MaintainMyAttributeInput} MaintainMyAttributeListAgentDTO
2112
+ * Data object containing fields necessary for maintaining the agent attribute list.
2113
+ * --- agent attribute data list---
2114
+ *
2115
+ * @param {string} AuthToken
2116
+ * Authentication token for authorization purposes.
2117
+ *
2118
+ * @param {number} Timeout
2119
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2120
+ *
2121
+ * @param {string} RequiredHeaderValue
2122
+ * Value for any required header. Default is null.
2123
+ *
2124
+ * @returns
2125
+ * An object containing the response from the Maintain My Attribute List Agent API,
2126
+ * including success message, status code, and any additional data returned by the API.
2127
+ * Message: Success,
2128
+ * StatusCode: 200,
2129
+ * Result: --- update agent attribute list ---,
2130
+ * HeaderValue: string
2131
+ */
2132
+ MaintainMyAttributeListAgent: (
2133
+ Input: MaintainMyAttributeInput,
2134
+ AuthToken?: string | null,
2135
+ Timeout?: number | null,
2136
+ RequiredHeaderValue?: string
2137
+ ) => BaseResponse<MaintainMyAttributeInput[] | BaseErrorResponse>;
2138
+
2139
+ /**
2140
+ * @description
2141
+ * Updates the profile of the current agent.
2142
+ *
2143
+ * @param {UpdateMyProfileInput} UpdateMyProfileDTO
2144
+ * Data object containing fields necessary for updating the agent profile.
2145
+ * --- agent profile data---
2146
+ *
2147
+ * @param {string} AuthToken
2148
+ * Authentication token for authorization purposes.
2149
+ *
2150
+ * @param {number} Timeout
2151
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2152
+ *
2153
+ * @param {string} RequiredHeaderValue
2154
+ * Value for any required header. Default is null.
2155
+ *
2156
+ * @returns
2157
+ * An object containing the response from the Update My Profile Agent API,
2158
+ * including success message, status code, and any additional data returned by the API.
2159
+ * Message: Success,
2160
+ * StatusCode: 200,
2161
+ * Result: --- update agent profile ---,
2162
+ * HeaderValue: string
2163
+ */
2164
+ UpdateMyProfileAgent: (
2165
+ Input: UpdateMyProfileInput,
2166
+ AuthToken?: string | null,
2167
+ Timeout?: number | null,
2168
+ RequiredHeaderValue?: string
2169
+ ) => BaseResponse<GetMyProfileOutput | BaseErrorResponse>;
2170
+
2171
+ /**
2172
+ * @description
2173
+ * Maintains the list of addresses for an agent.
2174
+ *
2175
+ * @param {MaintainAddressListInput} MaintainMyAddressListAgentDTO
2176
+ * Data object containing fields necessary for maintaining the list of addresses.
2177
+ * --- list of addresses data ---
2178
+ *
2179
+ * @param {string} AuthToken
2180
+ * Authentication token for authorization purposes.
2181
+ *
2182
+ * @param {number} Timeout
2183
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2184
+ *
2185
+ * @param {string} RequiredHeaderValue
2186
+ * Value for any required header. Default is null.
2187
+ *
2188
+ * @returns
2189
+ * An object containing the response from the Maintain My Address List Agent API,
2190
+ * including success message, status code, and any additional data returned by the API.
2191
+ * Message: Success,
2192
+ * StatusCode: 200,
2193
+ * Result: [--- updated addresses list ---],
2194
+ * HeaderValue: string
2195
+ */
2196
+ MaintainMyAddressListAgent: (
2197
+ Input: MaintainAddressListInput[],
2198
+ AuthToken?: string | null,
2199
+ Timeout?: number | null,
2200
+ RequiredHeaderValue?: string
2201
+ ) => BaseResponse<MaintainAddressListOutput[] | BaseErrorResponse>;
2202
+
2203
+ /**
2204
+ * @description
2205
+ * Maintains the list of documents for an agent.
2206
+ *
2207
+ * @param {MaintainMyDocumentInput} MaintainMyDocumentAgentDTO
2208
+ * Data object containing fields necessary for maintaining the list of documents.
2209
+ * --- list of documents data ---
2210
+ *
2211
+ * @param {string} AuthToken
2212
+ * Authentication token for authorization purposes.
2213
+ *
2214
+ * @param {number} Timeout
2215
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2216
+ *
2217
+ * @param {string} RequiredHeaderValue
2218
+ * Value for any required header. Default is null.
2219
+ *
2220
+ * @returns
2221
+ * An object containing the response from the Maintain My Document Agent API,
2222
+ * including success message, status code, and any additional data returned by the API.
2223
+ * Message: Success,
2224
+ * StatusCode: 200,
2225
+ * Result: [--- updated documents list ---],
2226
+ * HeaderValue: string
2227
+ */
2228
+ MaintainMyDocumentAgent: (
2229
+ Input: MaintainMyDocumentInput,
2230
+ AuthToken?: string | null,
2231
+ Timeout?: number | null,
2232
+ RequiredHeaderValue?: string
2233
+ ) => BaseResponse<MaintainMyDocumentOutput[] | BaseErrorResponse>;
2234
+
2235
+ /**
2236
+ * @description
2237
+ * Retrieves a list of eligible documents for an agent.
2238
+ *
2239
+ * @param {string} AuthToken
2240
+ * Authentication token for authorization purposes.
2241
+ *
2242
+ * @param {number} Timeout
2243
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2244
+ *
2245
+ * @param {string} RequiredHeaderValue
2246
+ * Value for any required header. Default is null.
2247
+ *
2248
+ * @returns
2249
+ * An object containing the response from the Get Interactor Eligible Document List Agent API,
2250
+ * including success message, status code, and any additional data returned by the API.
2251
+ * Message: Success,
2252
+ * StatusCode: 200,
2253
+ * Result: [--- eligible documents list ---],
2254
+ * HeaderValue: string
2255
+ */
2256
+ GetInteractorEligibleDocumentListAgent: (
2257
+ AuthToken?: string | null,
2258
+ Timeout?: number | null,
2259
+ RequiredHeaderValue?: string
2260
+ ) => BaseResponse<InteractorEligibleDocumentOutput[] | BaseErrorResponse>;
2261
+
2262
+ /**
2263
+ * @description
2264
+ * Maintains the list of units for an agent.
2265
+ *
2266
+ * @param {MaintainAgentUnitInput} MaintainAgentUnitListDTO
2267
+ * Data object containing fields necessary for maintaining the list of units.
2268
+ * --- list of units data ---
2269
+ *
2270
+ * @param {string} AuthToken
2271
+ * Authentication token for authorization purposes.
2272
+ *
2273
+ * @param {number} Timeout
2274
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2275
+ *
2276
+ * @param {string} RequiredHeaderValue
2277
+ * Value for any required header. Default is null.
2278
+ *
2279
+ * @returns
2280
+ * An object containing the response from the Maintain Agent Unit List API,
2281
+ * including success message, status code, and any additional data returned by the API.
2282
+ * Message: Success,
2283
+ * StatusCode: 200,
2284
+ * Result: [--- updated units list ---],
2285
+ * HeaderValue: string
2286
+ */
2287
+ MaintainAgentUnitList: (
2288
+ Input: MaintainAgentUnitInput,
2289
+ AuthToken?: string | null,
2290
+ Timeout?: number | null,
2291
+ RequiredHeaderValue?: string
2292
+ ) => BaseResponse<boolean | BaseErrorResponse>;
2293
+
2294
+ /**
2295
+ * @description
2296
+ * Maintains the list of interactors for an agent.
2297
+ *
2298
+ * @param {MaintainAgentInteractorInput} MaintainAgentInteractorListDTO
2299
+ * Data object containing fields necessary for maintaining the list of interactors.
2300
+ * --- list of interactors data ---
2301
+ *
2302
+ * @param {string} AuthToken
2303
+ * Authentication token for authorization purposes.
2304
+ *
2305
+ * @param {number} Timeout
2306
+ * Time in milliseconds to wait before the request times out. Default is 30000.
2307
+ *
2308
+ * @param {string} RequiredHeaderValue
2309
+ * Value for any required header. Default is null.
2310
+ *
2311
+ * @returns
2312
+ * An object containing the response from the Maintain Agent Interactor List API,
2313
+ * including success message, status code, and any additional data returned by the API.
2314
+ * Message: Success,
2315
+ * StatusCode: 200,
2316
+ * Result: [--- updated interactors list ---],
2317
+ * HeaderValue: string
2318
+ */
2319
+ MaintainAgentInteractorList: (
2320
+ Input: MaintainAgentInteractorInput[],
2321
+ AuthToken?: string | null,
2322
+ Timeout?: number | null,
2323
+ RequiredHeaderValue?: string
2324
+ ) => BaseResponse<MaintainAgentInteractorOutput[]| BaseErrorResponse>;
2067
2325
  }
2068
2326
 
2069
2327
  // Transaction Common Services interface
@@ -3663,6 +3921,194 @@ interface TransactionCommonServices {
3663
3921
  Timeout?: number | null,
3664
3922
  RequiredHeaderValue?: string
3665
3923
  ) => BaseResponse<string | BaseErrorResponse>;
3924
+
3925
+ /**
3926
+ * @description
3927
+ * Retrieves a list of asset management asset sub groups.
3928
+ *
3929
+ * @param {string} AuthToken
3930
+ * Authentication token for authorization purposes.
3931
+ *
3932
+ * @param {number} Timeout
3933
+ * Time in milliseconds to wait before the request times out. Default is 30000.
3934
+ *
3935
+ * @param {string} RequiredHeaderValue
3936
+ * Value for any required header. Default is null.
3937
+ *
3938
+ * @returns
3939
+ * An object containing the response from the Get Asset Management Asset Sub Group List API,
3940
+ * including success message, status code, and any additional data returned by the API.
3941
+ * Message: Success,
3942
+ * StatusCode: 200,
3943
+ * Result: [
3944
+ * --- asset management asset sub group data ---
3945
+ * ],
3946
+ * HeaderValue: string
3947
+ */
3948
+ GetAssetManagementAssetSubGroupList: (
3949
+ AuthToken?: string | null,
3950
+ Timeout?: number | null,
3951
+ RequiredHeaderValue?: string
3952
+ ) => BaseResponse<ServiceAssetOutput[] | BaseErrorResponse>;
3953
+
3954
+ /**
3955
+ * @description
3956
+ * Retrieves a list of service management services.
3957
+ *
3958
+ * @param {string} AuthToken
3959
+ * Authentication token for authorization purposes.
3960
+ *
3961
+ * @param {number} Timeout
3962
+ * Time in milliseconds to wait before the request times out. Default is 30000.
3963
+ *
3964
+ * @param {string} RequiredHeaderValue
3965
+ * Value for any required header. Default is null.
3966
+ *
3967
+ * @returns
3968
+ * An object containing the response from the Get Service Management Service List API,
3969
+ * including success message, status code, and any additional data returned by the API.
3970
+ * Message: Success,
3971
+ * StatusCode: 200,
3972
+ * Result: [
3973
+ * --- service management service data ---
3974
+ * ],
3975
+ * HeaderValue: string
3976
+ */
3977
+ GetServiceManagementServiceList: (
3978
+ AuthToken?: string | null,
3979
+ Timeout?: number | null,
3980
+ RequiredHeaderValue?: string
3981
+ ) => BaseResponse<FullServiceList[] | BaseErrorResponse>;
3982
+
3983
+ /**
3984
+ * @description
3985
+ * Maintains a list of asset management asset sub groups.
3986
+ *
3987
+ * @param {Assetlist[]} MaintainAssetManagementAssetSubGroupListDTO
3988
+ * Data object containing fields necessary for maintaining the asset management asset sub group list.
3989
+ * --- asset management asset sub group data list---
3990
+ *
3991
+ * @param {string} AuthToken
3992
+ * Authentication token for authorization purposes.
3993
+ *
3994
+ * @param {number} Timeout
3995
+ * Time in milliseconds to wait before the request times out. Default is 30000.
3996
+ *
3997
+ * @param {string} RequiredHeaderValue
3998
+ * Value for any required header. Default is null.
3999
+ *
4000
+ * @returns
4001
+ * An object containing the response from the Maintain Asset Management Asset Sub Group List API,
4002
+ * including success message, status code, and any additional data returned by the API.
4003
+ * Message: Success,
4004
+ * StatusCode: 200,
4005
+ * Result: boolean,
4006
+ * HeaderValue: string
4007
+ */
4008
+ MaintainAssetManagementAssetSubGroupList: (
4009
+ Input: Assetlist[],
4010
+ AuthToken?: string | null,
4011
+ Timeout?: number | null,
4012
+ RequiredHeaderValue?: string
4013
+ ) => BaseResponse<boolean | BaseErrorResponse>;
4014
+
4015
+ /**
4016
+ * @description
4017
+ * Retrieves a list of my personal unit members.
4018
+ *
4019
+ * @param {GetPersonalUnitMemberInput} GetMyPersonalUnitMemberListDTO
4020
+ * Data object containing fields necessary for retrieving the my personal unit member list.
4021
+ * --- my personal unit member data list---
4022
+ *
4023
+ * @param {string} AuthToken
4024
+ * Authentication token for authorization purposes.
4025
+ *
4026
+ * @param {number} Timeout
4027
+ * Time in milliseconds to wait before the request times out. Default is 30000.
4028
+ *
4029
+ * @param {string} RequiredHeaderValue
4030
+ * Value for any required header. Default is null.
4031
+ *
4032
+ * @returns
4033
+ * An object containing the response from the Get My Personal Unit Member List API,
4034
+ * including success message, status code, and any additional data returned by the API.
4035
+ * Message: Success,
4036
+ * StatusCode: 200,
4037
+ * Result: [
4038
+ * --- my personal unit member data ---
4039
+ * ],
4040
+ * HeaderValue: string
4041
+ */
4042
+ GetMyPersonalUnitMemberList: (
4043
+ Input: GetPersonalUnitMemberInput,
4044
+ AuthToken?: string | null,
4045
+ Timeout?: number | null,
4046
+ RequiredHeaderValue?: string
4047
+ ) => BaseResponse<GetAgentInteractorListOutput[] | BaseErrorResponse>;
4048
+
4049
+ /**
4050
+ * @description
4051
+ * Converts a personal unit member to a record.
4052
+ *
4053
+ * @param {ConvertPersonalUnitMemberInput} ConvertPersonalUnitMemberToRecordDTO
4054
+ * Data object containing fields necessary for converting the personal unit member to a record.
4055
+ * --- personal unit member data list---
4056
+ *
4057
+ * @param {string} AuthToken
4058
+ * Authentication token for authorization purposes.
4059
+ *
4060
+ * @param {number} Timeout
4061
+ * Time in milliseconds to wait before the request times out. Default is 30000.
4062
+ *
4063
+ * @param {string} RequiredHeaderValue
4064
+ * Value for any required header. Default is null.
4065
+ *
4066
+ * @returns
4067
+ * An object containing the response from the Convert Personal Unit Member To Record API,
4068
+ * including success message, status code, and any additional data returned by the API.
4069
+ * Message: Success,
4070
+ * StatusCode: 200,
4071
+ * Result: string,
4072
+ * HeaderValue: string
4073
+ */
4074
+ ConvertPersonalUnitMemberToRecord: (
4075
+ Input: ConvertPersonalUnitMemberInput,
4076
+ AuthToken?: string | null,
4077
+ Timeout?: number | null,
4078
+ RequiredHeaderValue?: string
4079
+ ) => BaseResponse<string | BaseErrorResponse>;
4080
+
4081
+ /**
4082
+ * @description
4083
+ * Maintains a list of service management services.
4084
+ *
4085
+ * @param {MaintainServiceManagementInput} MaintainServiceManagementServiceListDTO
4086
+ * Data object containing fields necessary for maintaining the service management service list.
4087
+ * --- service management service data list---
4088
+ *
4089
+ * @param {string} AuthToken
4090
+ * Authentication token for authorization purposes.
4091
+ *
4092
+ * @param {number} Timeout
4093
+ * Time in milliseconds to wait before the request times out. Default is 30000.
4094
+ *
4095
+ * @param {string} RequiredHeaderValue
4096
+ * Value for any required header. Default is null.
4097
+ *
4098
+ * @returns
4099
+ * An object containing the response from the Maintain Service Management Service List API,
4100
+ * including success message, status code, and any additional data returned by the API.
4101
+ * Message: Success,
4102
+ * StatusCode: 200,
4103
+ * Result: boolean,
4104
+ * HeaderValue: string
4105
+ */
4106
+ MaintainServiceManagementServiceList: (
4107
+ Input: MaintainServiceManagementInput,
4108
+ AuthToken?: string | null,
4109
+ Timeout?: number | null,
4110
+ RequiredHeaderValue?: string
4111
+ ) => BaseResponse<boolean | BaseErrorResponse>;
3666
4112
  }
3667
4113
 
3668
4114
  // Storage Services interface
@@ -4699,6 +5145,35 @@ interface RequestsRequesterServices {
4699
5145
  AuthToken?: string | null,
4700
5146
  Timeout?: number | null
4701
5147
  ) => BaseResponse<SubmitCartOrderOutput | BaseErrorResponse>;
5148
+
5149
+ /**
5150
+ * @description
5151
+ * Retrieves a list of distinct services from the service management request.
5152
+ *
5153
+ * @param {string} AuthToken
5154
+ * Authentication token for authorization purposes.
5155
+ *
5156
+ * @param {number} Timeout
5157
+ * Time in milliseconds to wait before the request times out. Default is 30000.
5158
+ *
5159
+ * @returns
5160
+ * An object containing the response from the Get Service Management Request Distinct Service List request, including
5161
+ * success message, status code, and any additional data returned by the API.
5162
+ * {
5163
+ * Message: Success,
5164
+ * StatusCode: 200,
5165
+ * Result: [
5166
+ * {
5167
+ * ServiceId: number,
5168
+ * Name: string
5169
+ * Translations: string
5170
+ * },..]
5171
+ * }
5172
+ */
5173
+ GetServiceManagementRequestDistinctServiceList: (
5174
+ AuthToken?: string | null,
5175
+ Timeout?: number | null
5176
+ ) => BaseResponse<GetServiceManagementServiceListOutput[] | BaseErrorResponse>;
4702
5177
  }
4703
5178
 
4704
5179
  // Requests Transaction Common Services interface
@@ -6972,5 +7447,12 @@ export {
6972
7447
  RequestStepAssignableRoleOutput,
6973
7448
  ProcessStepSpecialActionInput,
6974
7449
  LinkedLoginOutput,
6975
- Attachment
7450
+ Attachment,
7451
+ GetPersonalUnitMemberInput,
7452
+ ConvertPersonalUnitMemberInput,
7453
+ MaintainServiceManagementInput,
7454
+ MaintainAgentUnitInput,
7455
+ MaintainAgentInteractorInput,
7456
+ MaintainAgentInteractorOutput,
7457
+ GetServiceManagementServiceListOutput
6976
7458
  };
package/src/index.js CHANGED
@@ -123,7 +123,21 @@ const {
123
123
  GetInvoiceDetails,
124
124
  ValidateAttributesWithIntegration,
125
125
  GetPaymentBatch,
126
- GenerateDocument
126
+ GenerateDocument,
127
+ GetAssetManagementAssetSubGroupList,
128
+ MaintainAssetManagementAssetSubGroupList,
129
+ GetServiceManagementServiceList,
130
+ MaintainServiceManagementServiceList,
131
+ GetMyPersonalUnitMemberList,
132
+ ConvertPersonalUnitMemberToRecord,
133
+ GetAgentProfile,
134
+ MaintainMyAttributeListAgent,
135
+ UpdateMyProfileAgent,
136
+ MaintainMyAddressListAgent,
137
+ MaintainMyDocumentAgent,
138
+ GetInteractorEligibleDocumentListAgent,
139
+ MaintainAgentUnitList,
140
+ MaintainAgentInteractorList,
127
141
  } = require("./CoreServices/transactionsServices");
128
142
  const TransactionRequesterServices = {
129
143
  GetCompanyLanguageList,
@@ -157,6 +171,14 @@ const TransactionAgentServices = {
157
171
  GetServiceAssetAttributeListAgent,
158
172
  GetServiceItemAttributeListAgent,
159
173
  GetAssignbleRoleList,
174
+ GetAgentProfile,
175
+ MaintainMyAttributeListAgent,
176
+ UpdateMyProfileAgent,
177
+ MaintainMyAddressListAgent,
178
+ MaintainMyDocumentAgent,
179
+ GetInteractorEligibleDocumentListAgent,
180
+ MaintainAgentUnitList,
181
+ MaintainAgentInteractorList,
160
182
  };
161
183
  const TransactionCommonServices = {
162
184
  GetStyle,
@@ -207,7 +229,13 @@ const TransactionCommonServices = {
207
229
  MaintainInteractorRoleDelegationList,
208
230
  GetDocumentRecordTemplate,
209
231
  GetCompanyCustomLabelList,
210
- GenerateDocument
232
+ GenerateDocument,
233
+ GetAssetManagementAssetSubGroupList,
234
+ MaintainAssetManagementAssetSubGroupList,
235
+ GetServiceManagementServiceList,
236
+ MaintainServiceManagementServiceList,
237
+ GetMyPersonalUnitMemberList,
238
+ ConvertPersonalUnitMemberToRecord
211
239
  };
212
240
 
213
241
  const {
@@ -267,6 +295,7 @@ const {
267
295
  UpdateRequestDismiss,
268
296
  DispatcherGetRequestStatus,
269
297
  DispatcherCancelRequest,
298
+ GetServiceManagementRequestDistinctServiceList,
270
299
  } = require("./CoreServices/requestsServices");
271
300
  const RequestsAgentServices = {
272
301
  AgentAddRequest,
@@ -298,6 +327,7 @@ const RequestsRequesterServices = {
298
327
  PostComment,
299
328
  SubmitCart,
300
329
  SubmitCartOrder,
330
+ GetServiceManagementRequestDistinctServiceList,
301
331
  };
302
332
  const RequestsTransactionCommonServices = {
303
333
  AssignBatchToRequestList,
@@ -528,7 +558,7 @@ const {
528
558
  DABValidateAttributesWithIntegration,
529
559
  DABGetPaymentBatch,
530
560
  DABGetInvoiceDetails,
531
- DABAddToCart
561
+ DABAddToCart,
532
562
  } = require("./darAlBerServices/transactionsServices");
533
563
  const {
534
564
  DABCreateReadSAS,
@@ -0,0 +1,3 @@
1
+ export interface ConvertPersonalUnitMemberInput {
2
+ InteractorId?: number
3
+ }
@@ -0,0 +1,5 @@
1
+ export interface GetPersonalUnitMemberInput {
2
+ AttributeTypeId: number
3
+ UnitId: number
4
+ }
5
+