@mbanq/core-sdk-js 0.43.0 → 0.44.0

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.
@@ -16813,6 +16813,502 @@ declare const PayAccountChargeResponseSchema: z.ZodObject<{
16813
16813
  }>;
16814
16814
  type PayAccountChargeResponse = z.infer<typeof PayAccountChargeResponseSchema>;
16815
16815
 
16816
+ declare const CreateEntryInDataTableParamsSchema: z.ZodObject<{
16817
+ datatable: z.ZodString;
16818
+ apptableid: z.ZodNumber;
16819
+ command: z.ZodOptional<z.ZodString>;
16820
+ }, "strip", z.ZodTypeAny, {
16821
+ datatable: string;
16822
+ apptableid: number;
16823
+ command?: string | undefined;
16824
+ }, {
16825
+ datatable: string;
16826
+ apptableid: number;
16827
+ command?: string | undefined;
16828
+ }>;
16829
+ type CreateEntryInDataTableParams = z.infer<typeof CreateEntryInDataTableParamsSchema>;
16830
+ declare const CreateEntryInDataTableRequestSchema: z.ZodObject<{
16831
+ tableData: z.ZodRecord<z.ZodString, z.ZodAny>;
16832
+ fileData: z.ZodOptional<z.ZodUnion<[z.ZodType<buffer.File, z.ZodTypeDef, buffer.File>, z.ZodType<buffer.Blob, z.ZodTypeDef, buffer.Blob>]>>;
16833
+ }, "strip", z.ZodTypeAny, {
16834
+ tableData: Record<string, any>;
16835
+ fileData?: buffer.File | buffer.Blob | undefined;
16836
+ }, {
16837
+ tableData: Record<string, any>;
16838
+ fileData?: buffer.File | buffer.Blob | undefined;
16839
+ }>;
16840
+ type CreateEntryInDataTableRequest = z.infer<typeof CreateEntryInDataTableRequestSchema>;
16841
+ declare const CreateEntryInDataTableResponseSchema: z.ZodObject<{
16842
+ id: z.ZodNumber;
16843
+ resourceId: z.ZodNumber;
16844
+ officeId: z.ZodOptional<z.ZodNumber>;
16845
+ clientId: z.ZodOptional<z.ZodNumber>;
16846
+ savingsId: z.ZodOptional<z.ZodNumber>;
16847
+ loanId: z.ZodOptional<z.ZodNumber>;
16848
+ changes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
16849
+ additionalProp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
16850
+ }, "strip", z.ZodTypeAny, {
16851
+ id: number;
16852
+ resourceId: number;
16853
+ clientId?: number | undefined;
16854
+ officeId?: number | undefined;
16855
+ savingsId?: number | undefined;
16856
+ changes?: Record<string, any> | undefined;
16857
+ loanId?: number | undefined;
16858
+ additionalProp?: Record<string, any> | undefined;
16859
+ }, {
16860
+ id: number;
16861
+ resourceId: number;
16862
+ clientId?: number | undefined;
16863
+ officeId?: number | undefined;
16864
+ savingsId?: number | undefined;
16865
+ changes?: Record<string, any> | undefined;
16866
+ loanId?: number | undefined;
16867
+ additionalProp?: Record<string, any> | undefined;
16868
+ }>;
16869
+ type CreateEntryInDataTableResponse = z.infer<typeof CreateEntryInDataTableResponseSchema>;
16870
+ declare const GetEntriesFromDataTableParamsSchema: z.ZodObject<{
16871
+ datatable: z.ZodString;
16872
+ apptableid: z.ZodNumber;
16873
+ order: z.ZodOptional<z.ZodString>;
16874
+ mask: z.ZodOptional<z.ZodBoolean>;
16875
+ genericResultSet: z.ZodOptional<z.ZodBoolean>;
16876
+ }, "strip", z.ZodTypeAny, {
16877
+ datatable: string;
16878
+ apptableid: number;
16879
+ order?: string | undefined;
16880
+ mask?: boolean | undefined;
16881
+ genericResultSet?: boolean | undefined;
16882
+ }, {
16883
+ datatable: string;
16884
+ apptableid: number;
16885
+ order?: string | undefined;
16886
+ mask?: boolean | undefined;
16887
+ genericResultSet?: boolean | undefined;
16888
+ }>;
16889
+ type GetEntriesFromDataTableParams = z.infer<typeof GetEntriesFromDataTableParamsSchema>;
16890
+ declare const GetEntriesFromDataTableResponseSchema: z.ZodObject<{
16891
+ columnHeaders: z.ZodArray<z.ZodObject<{
16892
+ columnName: z.ZodString;
16893
+ columnType: z.ZodString;
16894
+ columnLength: z.ZodNumber;
16895
+ columnDisplayType: z.ZodString;
16896
+ isColumnNullable: z.ZodBoolean;
16897
+ isColumnPrimaryKey: z.ZodBoolean;
16898
+ columnValues: z.ZodArray<z.ZodObject<{
16899
+ id: z.ZodNumber;
16900
+ value: z.ZodString;
16901
+ score: z.ZodNumber;
16902
+ }, "strip", z.ZodTypeAny, {
16903
+ value: string;
16904
+ id: number;
16905
+ score: number;
16906
+ }, {
16907
+ value: string;
16908
+ id: number;
16909
+ score: number;
16910
+ }>, "many">;
16911
+ position: z.ZodNumber;
16912
+ sectionId: z.ZodNumber;
16913
+ columnCode: z.ZodOptional<z.ZodString>;
16914
+ columnDisplayName: z.ZodOptional<z.ZodString>;
16915
+ description: z.ZodOptional<z.ZodString>;
16916
+ id: z.ZodOptional<z.ZodNumber>;
16917
+ parentNameAttribute: z.ZodOptional<z.ZodString>;
16918
+ }, "strip", z.ZodTypeAny, {
16919
+ position: number;
16920
+ columnName: string;
16921
+ columnType: string;
16922
+ columnLength: number;
16923
+ columnDisplayType: string;
16924
+ isColumnNullable: boolean;
16925
+ isColumnPrimaryKey: boolean;
16926
+ columnValues: {
16927
+ value: string;
16928
+ id: number;
16929
+ score: number;
16930
+ }[];
16931
+ sectionId: number;
16932
+ id?: number | undefined;
16933
+ description?: string | undefined;
16934
+ columnCode?: string | undefined;
16935
+ columnDisplayName?: string | undefined;
16936
+ parentNameAttribute?: string | undefined;
16937
+ }, {
16938
+ position: number;
16939
+ columnName: string;
16940
+ columnType: string;
16941
+ columnLength: number;
16942
+ columnDisplayType: string;
16943
+ isColumnNullable: boolean;
16944
+ isColumnPrimaryKey: boolean;
16945
+ columnValues: {
16946
+ value: string;
16947
+ id: number;
16948
+ score: number;
16949
+ }[];
16950
+ sectionId: number;
16951
+ id?: number | undefined;
16952
+ description?: string | undefined;
16953
+ columnCode?: string | undefined;
16954
+ columnDisplayName?: string | undefined;
16955
+ parentNameAttribute?: string | undefined;
16956
+ }>, "many">;
16957
+ data: z.ZodArray<z.ZodObject<{
16958
+ row: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">;
16959
+ }, "strip", z.ZodTypeAny, {
16960
+ row: (string | number | null)[];
16961
+ }, {
16962
+ row: (string | number | null)[];
16963
+ }>, "many">;
16964
+ sections: z.ZodArray<z.ZodObject<{
16965
+ registeredDataTable: z.ZodString;
16966
+ title: z.ZodString;
16967
+ position: z.ZodNumber;
16968
+ id: z.ZodNumber;
16969
+ parentNameAttribute: z.ZodOptional<z.ZodString>;
16970
+ }, "strip", z.ZodTypeAny, {
16971
+ id: number;
16972
+ position: number;
16973
+ registeredDataTable: string;
16974
+ title: string;
16975
+ parentNameAttribute?: string | undefined;
16976
+ }, {
16977
+ id: number;
16978
+ position: number;
16979
+ registeredDataTable: string;
16980
+ title: string;
16981
+ parentNameAttribute?: string | undefined;
16982
+ }>, "many">;
16983
+ datatableDisplayName: z.ZodString;
16984
+ }, "strip", z.ZodTypeAny, {
16985
+ data: {
16986
+ row: (string | number | null)[];
16987
+ }[];
16988
+ columnHeaders: {
16989
+ position: number;
16990
+ columnName: string;
16991
+ columnType: string;
16992
+ columnLength: number;
16993
+ columnDisplayType: string;
16994
+ isColumnNullable: boolean;
16995
+ isColumnPrimaryKey: boolean;
16996
+ columnValues: {
16997
+ value: string;
16998
+ id: number;
16999
+ score: number;
17000
+ }[];
17001
+ sectionId: number;
17002
+ id?: number | undefined;
17003
+ description?: string | undefined;
17004
+ columnCode?: string | undefined;
17005
+ columnDisplayName?: string | undefined;
17006
+ parentNameAttribute?: string | undefined;
17007
+ }[];
17008
+ sections: {
17009
+ id: number;
17010
+ position: number;
17011
+ registeredDataTable: string;
17012
+ title: string;
17013
+ parentNameAttribute?: string | undefined;
17014
+ }[];
17015
+ datatableDisplayName: string;
17016
+ }, {
17017
+ data: {
17018
+ row: (string | number | null)[];
17019
+ }[];
17020
+ columnHeaders: {
17021
+ position: number;
17022
+ columnName: string;
17023
+ columnType: string;
17024
+ columnLength: number;
17025
+ columnDisplayType: string;
17026
+ isColumnNullable: boolean;
17027
+ isColumnPrimaryKey: boolean;
17028
+ columnValues: {
17029
+ value: string;
17030
+ id: number;
17031
+ score: number;
17032
+ }[];
17033
+ sectionId: number;
17034
+ id?: number | undefined;
17035
+ description?: string | undefined;
17036
+ columnCode?: string | undefined;
17037
+ columnDisplayName?: string | undefined;
17038
+ parentNameAttribute?: string | undefined;
17039
+ }[];
17040
+ sections: {
17041
+ id: number;
17042
+ position: number;
17043
+ registeredDataTable: string;
17044
+ title: string;
17045
+ parentNameAttribute?: string | undefined;
17046
+ }[];
17047
+ datatableDisplayName: string;
17048
+ }>;
17049
+ type GetEntriesFromDataTableResponse = z.infer<typeof GetEntriesFromDataTableResponseSchema>;
17050
+ declare const UpdateEntryInDataTableParamsSchema: z.ZodObject<{
17051
+ datatable: z.ZodString;
17052
+ apptableid: z.ZodNumber;
17053
+ datatableId: z.ZodNumber;
17054
+ }, "strip", z.ZodTypeAny, {
17055
+ datatable: string;
17056
+ apptableid: number;
17057
+ datatableId: number;
17058
+ }, {
17059
+ datatable: string;
17060
+ apptableid: number;
17061
+ datatableId: number;
17062
+ }>;
17063
+ type UpdateEntryInDataTableParams = z.infer<typeof UpdateEntryInDataTableParamsSchema>;
17064
+ declare const UpdateEntryInDataTableRequestSchema: z.ZodObject<{
17065
+ tableData: z.ZodRecord<z.ZodString, z.ZodAny>;
17066
+ fileData: z.ZodOptional<z.ZodUnion<[z.ZodType<buffer.File, z.ZodTypeDef, buffer.File>, z.ZodType<buffer.Blob, z.ZodTypeDef, buffer.Blob>]>>;
17067
+ }, "strip", z.ZodTypeAny, {
17068
+ tableData: Record<string, any>;
17069
+ fileData?: buffer.File | buffer.Blob | undefined;
17070
+ }, {
17071
+ tableData: Record<string, any>;
17072
+ fileData?: buffer.File | buffer.Blob | undefined;
17073
+ }>;
17074
+ type UpdateEntryInDataTableRequest = z.infer<typeof UpdateEntryInDataTableRequestSchema>;
17075
+ declare const UpdateEntryInDataTableResponseSchema: z.ZodObject<{
17076
+ id: z.ZodNumber;
17077
+ officeId: z.ZodOptional<z.ZodNumber>;
17078
+ clientId: z.ZodOptional<z.ZodNumber>;
17079
+ savingsId: z.ZodOptional<z.ZodNumber>;
17080
+ resourceId: z.ZodNumber;
17081
+ loanId: z.ZodOptional<z.ZodNumber>;
17082
+ changes: z.ZodOptional<z.ZodObject<{
17083
+ id: z.ZodNumber;
17084
+ }, "strip", z.ZodTypeAny, {
17085
+ id: number;
17086
+ }, {
17087
+ id: number;
17088
+ }>>;
17089
+ }, "strip", z.ZodTypeAny, {
17090
+ id: number;
17091
+ resourceId: number;
17092
+ clientId?: number | undefined;
17093
+ officeId?: number | undefined;
17094
+ savingsId?: number | undefined;
17095
+ changes?: {
17096
+ id: number;
17097
+ } | undefined;
17098
+ loanId?: number | undefined;
17099
+ }, {
17100
+ id: number;
17101
+ resourceId: number;
17102
+ clientId?: number | undefined;
17103
+ officeId?: number | undefined;
17104
+ savingsId?: number | undefined;
17105
+ changes?: {
17106
+ id: number;
17107
+ } | undefined;
17108
+ loanId?: number | undefined;
17109
+ }>;
17110
+ type UpdateEntryInDataTableResponse = z.infer<typeof UpdateEntryInDataTableResponseSchema>;
17111
+ declare const DeleteEntryFromDataTableParamsSchema: z.ZodObject<{
17112
+ datatable: z.ZodString;
17113
+ apptableid: z.ZodNumber;
17114
+ datatableId: z.ZodNumber;
17115
+ }, "strip", z.ZodTypeAny, {
17116
+ datatable: string;
17117
+ apptableid: number;
17118
+ datatableId: number;
17119
+ }, {
17120
+ datatable: string;
17121
+ apptableid: number;
17122
+ datatableId: number;
17123
+ }>;
17124
+ type DeleteEntryFromDataTableParams = z.infer<typeof DeleteEntryFromDataTableParamsSchema>;
17125
+ declare const DeleteEntryFromDataTableResponseSchema: z.ZodObject<{
17126
+ id: z.ZodNumber;
17127
+ resourceId: z.ZodNumber;
17128
+ officeId: z.ZodOptional<z.ZodNumber>;
17129
+ clientId: z.ZodOptional<z.ZodNumber>;
17130
+ savingsId: z.ZodOptional<z.ZodNumber>;
17131
+ loanId: z.ZodOptional<z.ZodNumber>;
17132
+ }, "strip", z.ZodTypeAny, {
17133
+ id: number;
17134
+ resourceId: number;
17135
+ clientId?: number | undefined;
17136
+ officeId?: number | undefined;
17137
+ savingsId?: number | undefined;
17138
+ loanId?: number | undefined;
17139
+ }, {
17140
+ id: number;
17141
+ resourceId: number;
17142
+ clientId?: number | undefined;
17143
+ officeId?: number | undefined;
17144
+ savingsId?: number | undefined;
17145
+ loanId?: number | undefined;
17146
+ }>;
17147
+ type DeleteEntryFromDataTableResponse = z.infer<typeof DeleteEntryFromDataTableResponseSchema>;
17148
+ declare const GetDataTableProductMappingTemplateParamsSchema: z.ZodObject<{
17149
+ apptable: z.ZodOptional<z.ZodString>;
17150
+ }, "strip", z.ZodTypeAny, {
17151
+ apptable?: string | undefined;
17152
+ }, {
17153
+ apptable?: string | undefined;
17154
+ }>;
17155
+ type GetDataTableProductMappingTemplateParams = z.infer<typeof GetDataTableProductMappingTemplateParamsSchema>;
17156
+ declare const DataTableProductMappingItemSchema: z.ZodObject<{
17157
+ id: z.ZodNumber;
17158
+ entity: z.ZodString;
17159
+ datatableName: z.ZodString;
17160
+ productId: z.ZodNumber;
17161
+ productName: z.ZodString;
17162
+ }, "strip", z.ZodTypeAny, {
17163
+ id: number;
17164
+ productId: number;
17165
+ productName: string;
17166
+ entity: string;
17167
+ datatableName: string;
17168
+ }, {
17169
+ id: number;
17170
+ productId: number;
17171
+ productName: string;
17172
+ entity: string;
17173
+ datatableName: string;
17174
+ }>;
17175
+ declare const GetDataTableProductMappingTemplateResponseSchema: z.ZodObject<{
17176
+ totalFilteredRecords: z.ZodNumber;
17177
+ pageItems: z.ZodArray<z.ZodObject<{
17178
+ id: z.ZodNumber;
17179
+ entity: z.ZodString;
17180
+ datatableName: z.ZodString;
17181
+ productId: z.ZodNumber;
17182
+ productName: z.ZodString;
17183
+ }, "strip", z.ZodTypeAny, {
17184
+ id: number;
17185
+ productId: number;
17186
+ productName: string;
17187
+ entity: string;
17188
+ datatableName: string;
17189
+ }, {
17190
+ id: number;
17191
+ productId: number;
17192
+ productName: string;
17193
+ entity: string;
17194
+ datatableName: string;
17195
+ }>, "many">;
17196
+ }, "strip", z.ZodTypeAny, {
17197
+ totalFilteredRecords: number;
17198
+ pageItems: {
17199
+ id: number;
17200
+ productId: number;
17201
+ productName: string;
17202
+ entity: string;
17203
+ datatableName: string;
17204
+ }[];
17205
+ }, {
17206
+ totalFilteredRecords: number;
17207
+ pageItems: {
17208
+ id: number;
17209
+ productId: number;
17210
+ productName: string;
17211
+ entity: string;
17212
+ datatableName: string;
17213
+ }[];
17214
+ }>;
17215
+ type GetDataTableProductMappingTemplateResponse = z.infer<typeof GetDataTableProductMappingTemplateResponseSchema>;
17216
+ declare const CreateDataTableProductMappingRequestSchema: z.ZodObject<{
17217
+ entity: z.ZodString;
17218
+ productId: z.ZodNumber;
17219
+ datatableName: z.ZodString;
17220
+ }, "strip", z.ZodTypeAny, {
17221
+ productId: number;
17222
+ entity: string;
17223
+ datatableName: string;
17224
+ }, {
17225
+ productId: number;
17226
+ entity: string;
17227
+ datatableName: string;
17228
+ }>;
17229
+ type CreateDataTableProductMappingRequest = z.infer<typeof CreateDataTableProductMappingRequestSchema>;
17230
+ declare const CreateDataTableProductMappingResponseSchema: z.ZodObject<{
17231
+ resourceId: z.ZodNumber;
17232
+ id: z.ZodNumber;
17233
+ }, "strip", z.ZodTypeAny, {
17234
+ id: number;
17235
+ resourceId: number;
17236
+ }, {
17237
+ id: number;
17238
+ resourceId: number;
17239
+ }>;
17240
+ type CreateDataTableProductMappingResponse = z.infer<typeof CreateDataTableProductMappingResponseSchema>;
17241
+ declare const GetDataTableProductMappingsParamsSchema: z.ZodObject<{
17242
+ limit: z.ZodOptional<z.ZodNumber>;
17243
+ offset: z.ZodOptional<z.ZodNumber>;
17244
+ entity: z.ZodOptional<z.ZodString>;
17245
+ productId: z.ZodOptional<z.ZodNumber>;
17246
+ }, "strip", z.ZodTypeAny, {
17247
+ limit?: number | undefined;
17248
+ offset?: number | undefined;
17249
+ productId?: number | undefined;
17250
+ entity?: string | undefined;
17251
+ }, {
17252
+ limit?: number | undefined;
17253
+ offset?: number | undefined;
17254
+ productId?: number | undefined;
17255
+ entity?: string | undefined;
17256
+ }>;
17257
+ type GetDataTableProductMappingsParams = z.infer<typeof GetDataTableProductMappingsParamsSchema>;
17258
+ declare const GetDataTableProductMappingsResponseSchema: z.ZodObject<{
17259
+ totalFilteredRecords: z.ZodNumber;
17260
+ pageItems: z.ZodArray<z.ZodObject<{
17261
+ id: z.ZodNumber;
17262
+ entity: z.ZodString;
17263
+ datatableName: z.ZodString;
17264
+ productId: z.ZodNumber;
17265
+ productName: z.ZodString;
17266
+ }, "strip", z.ZodTypeAny, {
17267
+ id: number;
17268
+ productId: number;
17269
+ productName: string;
17270
+ entity: string;
17271
+ datatableName: string;
17272
+ }, {
17273
+ id: number;
17274
+ productId: number;
17275
+ productName: string;
17276
+ entity: string;
17277
+ datatableName: string;
17278
+ }>, "many">;
17279
+ }, "strip", z.ZodTypeAny, {
17280
+ totalFilteredRecords: number;
17281
+ pageItems: {
17282
+ id: number;
17283
+ productId: number;
17284
+ productName: string;
17285
+ entity: string;
17286
+ datatableName: string;
17287
+ }[];
17288
+ }, {
17289
+ totalFilteredRecords: number;
17290
+ pageItems: {
17291
+ id: number;
17292
+ productId: number;
17293
+ productName: string;
17294
+ entity: string;
17295
+ datatableName: string;
17296
+ }[];
17297
+ }>;
17298
+ type GetDataTableProductMappingsResponse = z.infer<typeof GetDataTableProductMappingsResponseSchema>;
17299
+ type GetDataTableProductMappingByIdResponse = z.infer<typeof DataTableProductMappingItemSchema>;
17300
+ declare const DeleteDataTableProductMappingResponseSchema: z.ZodObject<{
17301
+ resourceId: z.ZodNumber;
17302
+ id: z.ZodNumber;
17303
+ }, "strip", z.ZodTypeAny, {
17304
+ id: number;
17305
+ resourceId: number;
17306
+ }, {
17307
+ id: number;
17308
+ resourceId: number;
17309
+ }>;
17310
+ type DeleteDataTableProductMappingResponse = z.infer<typeof DeleteDataTableProductMappingResponseSchema>;
17311
+
16816
17312
  declare const CreditAccountPendingTransactionsSchema: z$1.ZodObject<{
16817
17313
  totalFilteredRecords: z$1.ZodNumber;
16818
17314
  pageItems: z$1.ZodArray<z$1.ZodObject<{
@@ -20746,12 +21242,12 @@ declare const DocumentUploadRequestSchema: z$1.ZodObject<{
20746
21242
  description: z$1.ZodOptional<z$1.ZodString>;
20747
21243
  }, "strip", z$1.ZodTypeAny, {
20748
21244
  name: string;
20749
- file: Buffer<ArrayBufferLike> | buffer.Blob | buffer.File;
21245
+ file: buffer.File | buffer.Blob | Buffer<ArrayBufferLike>;
20750
21246
  type?: string | undefined;
20751
21247
  description?: string | undefined;
20752
21248
  }, {
20753
21249
  name: string;
20754
- file: Buffer<ArrayBufferLike> | buffer.Blob | buffer.File;
21250
+ file: buffer.File | buffer.Blob | Buffer<ArrayBufferLike>;
20755
21251
  type?: string | undefined;
20756
21252
  description?: string | undefined;
20757
21253
  }>;
@@ -20821,12 +21317,12 @@ declare const ApproveRejectClientDocumentParamsSchema: z$1.ZodObject<{
20821
21317
  command: z$1.ZodEnum<["approve", "reject"]>;
20822
21318
  }, "strip", z$1.ZodTypeAny, {
20823
21319
  clientId: number;
20824
- identifierId: number;
20825
21320
  command: "approve" | "reject";
21321
+ identifierId: number;
20826
21322
  }, {
20827
21323
  clientId: number;
20828
- identifierId: number;
20829
21324
  command: "approve" | "reject";
21325
+ identifierId: number;
20830
21326
  }>;
20831
21327
  type ApproveRejectClientDocumentParams = z$1.infer<typeof ApproveRejectClientDocumentParamsSchema>;
20832
21328
  declare const ListClientDocumentQueryParamsSchema: z$1.ZodObject<{
@@ -27442,6 +27938,300 @@ declare const PayAccountCharge: (params: PayAccountChargeParams, data: PayAccoun
27442
27938
  data: PayAccountChargeRequest;
27443
27939
  }, PayAccountChargeResponse>;
27444
27940
 
27941
+ /**
27942
+ * Create a new entry (row) in a data table
27943
+ *
27944
+ * This endpoint allows you to add a new entry to a specified data table.
27945
+ * The data can be provided as JSON values or via file uploads.
27946
+ * When uploading files, ensure that the request body content type is set to multipart/form-data.
27947
+ *
27948
+ * @param params - The path and query parameters
27949
+ * @param params.datatable - The name of the data table where the entry will be made
27950
+ * @param params.apptableid - The ID of the application table (defaults to 101 for client tables)
27951
+ * @param params.command - Optional command parameter to control file upload behavior (e.g., 'largeFile')
27952
+ * @param data - The request body
27953
+ * @param data.tableData - JSON object containing data table fields details for the column
27954
+ * @param data.fileData - Optional file to upload (PDF, JPEG, JPG, PNG formats supported)
27955
+ * @returns Command object that executes the API request and returns the created entry details
27956
+ *
27957
+ * @example
27958
+ * ```typescript
27959
+ * const command = CreateEntryInDataTable(
27960
+ * { datatable: 'd_rdatatable', apptableid: 101 },
27961
+ * {
27962
+ * tableData: {
27963
+ employee_id: '2113',
27964
+ first_name: 'TTT1',
27965
+ last_name: 'DDD1',
27966
+ ids: '3432',
27967
+ name: 'TD2',
27968
+ locale: 'en',
27969
+ dateFormat: 'dd MMMM yyyy'
27970
+ }
27971
+ * }
27972
+ * );
27973
+ * const result = await client.request(command);
27974
+ * console.log(result.resourceId); // 1719455311113
27975
+ * console.log(result.clientId); // 517
27976
+ * ```
27977
+ */
27978
+ declare const CreateEntryInDataTable: (params: CreateEntryInDataTableParams, data: CreateEntryInDataTableRequest) => Command<{
27979
+ params: CreateEntryInDataTableParams;
27980
+ data: CreateEntryInDataTableRequest;
27981
+ }, CreateEntryInDataTableResponse>;
27982
+ /**
27983
+ * Get all entries from a data table
27984
+ *
27985
+ * This API retrieves all entries from the specified data table. It allows you to access
27986
+ * comprehensive information stored in the data table, including metadata such as column
27987
+ * headers, column types, and section details.
27988
+ *
27989
+ * Use this to fetch both the data and structure of the table for reporting, analysis, or
27990
+ * integration with other systems. Ideal for applications that need to display or process
27991
+ * tabular data dynamically.
27992
+ *
27993
+ * @param params - The path and query parameters
27994
+ * @param params.datatable - The name of the data table (e.g., 'd_testdatatable')
27995
+ * @param params.apptableid - The ID of the application table (defaults to 101 for client tables)
27996
+ * @param params.order - Optional sort order for the results (e.g., 'DESC')
27997
+ * @param params.mask - Controls whether sensitive data should be masked (defaults to true)
27998
+ * @param params.genericResultSet - Controls the response format (true for generic resultset, false for simplified JSON)
27999
+ * @returns Command object that executes the API request and returns the data table entries with metadata
28000
+ *
28001
+ * @example
28002
+ * ```typescript
28003
+ * const command = GetEntriesFromDataTable({
28004
+ * datatable: 'd_testdatatable',
28005
+ * apptableid: 517,
28006
+ * mask: true,
28007
+ * genericResultSet: true
28008
+ * });
28009
+ * const result = await client.request(command);
28010
+ * console.log(result.datatableDisplayName); // 'Test Data Table'
28011
+ * console.log(result.columnHeaders.length); // 4
28012
+ * console.log(result.data[0].row); // ['1651719413544', '517', '1200', null]
28013
+ * ```
28014
+ */
28015
+ declare const GetEntriesFromDataTable: (params: GetEntriesFromDataTableParams) => Command<{
28016
+ params: GetEntriesFromDataTableParams;
28017
+ }, GetEntriesFromDataTableResponse>;
28018
+ /**
28019
+ * Update an entry in a data table
28020
+ *
28021
+ * Use this API to update an entry in the data table. You must provide the unique
28022
+ * identifier of the entry you wish to update.
28023
+ *
28024
+ * Behavior: A successful response indicates that the entry has been successfully
28025
+ * updated in the data table.
28026
+ *
28027
+ * @param params - The path parameters
28028
+ * @param params.datatable - The name of the data table where the entry will be updated
28029
+ * @param params.apptableid - The ID of the application table (defaults to 101 for client tables)
28030
+ * @param params.datatableId - The unique identifier of the data table entry to update
28031
+ * @param data - The request body
28032
+ * @param data.tableData - JSON object containing data table fields details to update
28033
+ * @param data.fileData - Optional file to upload (PDF, JPEG, JPG, PNG formats supported)
28034
+ * @returns Command object that executes the API request and returns the updated entry details
28035
+ *
28036
+ * @example
28037
+ * ```typescript
28038
+ * const command = UpdateEntryInDataTable(
28039
+ * { datatable: 'd_testdatatable', apptableid: 101, datatableId: 1651719413544 },
28040
+ * {
28041
+ * tableData: {
28042
+ * "id": "1651719413544",
28043
+ * "locale": "en",
28044
+ * "dateFormat": "dd MMMM yyyy"
28045
+ * }
28046
+ * }
28047
+ * );
28048
+ * const result = await client.request(command);
28049
+ * console.log(result.id); // 1719455311113
28050
+ * console.log(result.resourceId); // 1105
28051
+ * ```
28052
+ */
28053
+ declare const UpdateEntryInDataTable: (params: UpdateEntryInDataTableParams, data: UpdateEntryInDataTableRequest) => Command<{
28054
+ params: UpdateEntryInDataTableParams;
28055
+ data: UpdateEntryInDataTableRequest;
28056
+ }, UpdateEntryInDataTableResponse>;
28057
+ /**
28058
+ * Delete an entry from a data table
28059
+ *
28060
+ * Use this API to delete an entry in the data table. You need to provide the unique
28061
+ * identifier of the entry you wish to delete.
28062
+ *
28063
+ * Behavior: A successful response indicates that the entry has been successfully
28064
+ * deleted from the data table.
28065
+ *
28066
+ * @param params - The path parameters
28067
+ * @param params.datatable - The name of the data table from which to delete the entry
28068
+ * @param params.apptableid - The ID of the application table (defaults to 101 for client tables)
28069
+ * @param params.datatableId - The unique identifier of the data table entry to delete
28070
+ * @returns Command object that executes the API request and returns the deletion confirmation
28071
+ *
28072
+ * @example
28073
+ * ```typescript
28074
+ * const command = DeleteEntryFromDataTable({
28075
+ * datatable: 'd_testdatatable',
28076
+ * apptableid: 101,
28077
+ * datatableId: 1651719413544
28078
+ * });
28079
+ * const result = await client.request(command);
28080
+ * console.log('Deleted entry ID:', result.id);
28081
+ * console.log('Resource ID:', result.resourceId);
28082
+ * ```
28083
+ */
28084
+ declare const DeleteEntryFromDataTable: (params: DeleteEntryFromDataTableParams) => Command<{
28085
+ params: DeleteEntryFromDataTableParams;
28086
+ }, DeleteEntryFromDataTableResponse>;
28087
+ /**
28088
+ * Get template for entity data table product mapping
28089
+ *
28090
+ * Use this API to get the template for the Entity Data Table Product Mapping.
28091
+ * This retrieves available entities, data tables, and products that can be mapped together.
28092
+ *
28093
+ * @param params - The query parameters (optional)
28094
+ * @param params.apptable - Optional parameter to filter the template by application table name (e.g., 'm_client')
28095
+ * @returns Command object that executes the API request and returns the mapping template
28096
+ *
28097
+ * @example
28098
+ * ```typescript
28099
+ * // Get all available mappings
28100
+ * const template = await client.request(GetDataTableProductMappingTemplate({}));
28101
+ * console.log('Total records:', template.totalFilteredRecords);
28102
+ * console.log('Mappings:', template.pageItems);
28103
+ *
28104
+ * // Filter by application table
28105
+ * const loanMappings = await client.request(GetDataTableProductMappingTemplate({
28106
+ * apptable: 'm_loan'
28107
+ * }));
28108
+ * // Returns mappings like:
28109
+ * // {
28110
+ * // totalFilteredRecords: 6,
28111
+ * // pageItems: [
28112
+ * // { id: 34, entity: 'm_loan', datatableName: 'd_underwriting_details', productId: 0, productName: 'All' },
28113
+ * // ...
28114
+ * // ]
28115
+ * // }
28116
+ * ```
28117
+ */
28118
+ declare const GetDataTableProductMappingTemplate: (params?: GetDataTableProductMappingTemplateParams) => Command<{
28119
+ params: GetDataTableProductMappingTemplateParams;
28120
+ }, GetDataTableProductMappingTemplateResponse>;
28121
+ /**
28122
+ * Create entity data table product mapping
28123
+ *
28124
+ * This API is used to establish a mapping between an entity table, a data table, and a
28125
+ * product. Once the backoffice user selects the desired entity table, data table, and
28126
+ * product, this API is called to create and store the mapping configuration, allowing
28127
+ * the system to link specific product data with the relevant entity and data tables for
28128
+ * future operations.
28129
+ *
28130
+ * @param data - The request body
28131
+ * @param data.entity - The name of the application table associated with the entity (e.g., 'm_loan')
28132
+ * @param data.productId - The ID of the product to be mapped with the entity and data table
28133
+ * @param data.datatableName - The name of the data table to be associated with the entity (e.g., 'd_loan_additional_details')
28134
+ * @returns Command object that executes the API request and returns the created mapping details
28135
+ *
28136
+ * @example
28137
+ * ```typescript
28138
+ * const mapping = await client.request(CreateDataTableProductMapping({
28139
+ * entity: 'm_loan',
28140
+ * productId: 23,
28141
+ * datatableName: 'd_loan_additional_details'
28142
+ * }));
28143
+ * console.log('Mapping created with ID:', mapping.id);
28144
+ * console.log('Resource ID:', mapping.resourceId);
28145
+ * ```
28146
+ */
28147
+ declare const CreateDataTableProductMapping: (data: CreateDataTableProductMappingRequest) => Command<{
28148
+ data: CreateDataTableProductMappingRequest;
28149
+ }, CreateDataTableProductMappingResponse>;
28150
+ /**
28151
+ * Get entity data table product mappings
28152
+ *
28153
+ * Use this API to retrieve a list of mappings between entity tables, data tables, and
28154
+ * products. Use this API to fetch the existing mapping configuration that links specific
28155
+ * products with their associated entity and data tables. This is useful for viewing or
28156
+ * verifying the relationships set up for data handling and business processes.
28157
+ *
28158
+ * @param params - The query parameters (optional)
28159
+ * @param params.limit - The maximum number of records to return in the response (e.g., 15)
28160
+ * @param params.offset - The number of records to skip before starting to return results (e.g., 0)
28161
+ * @param params.entity - Filter results by entity (application table) name (e.g., 'm_loan')
28162
+ * @param params.productId - Filter results by product identifier (e.g., 35)
28163
+ * @returns Command object that executes the API request and returns the list of mappings
28164
+ *
28165
+ * @example
28166
+ * ```typescript
28167
+ * // Get all mappings with default pagination
28168
+ * const mappings = await client.request(GetDataTableProductMappings({}));
28169
+ * console.log('Total records:', mappings.totalFilteredRecords);
28170
+ * console.log('Mappings:', mappings.pageItems);
28171
+ *
28172
+ * // Get mappings for a specific entity with pagination
28173
+ * const loanMappings = await client.request(GetDataTableProductMappings({
28174
+ * entity: 'm_loan',
28175
+ * limit: 10,
28176
+ * offset: 0
28177
+ * }));
28178
+ *
28179
+ * // Get mappings for a specific product
28180
+ * const productMappings = await client.request(GetDataTableProductMappings({
28181
+ * productId: 35
28182
+ * }));
28183
+ * ```
28184
+ */
28185
+ declare const GetDataTableProductMappings: (params?: GetDataTableProductMappingsParams) => Command<{
28186
+ params: GetDataTableProductMappingsParams;
28187
+ }, GetDataTableProductMappingsResponse>;
28188
+ /**
28189
+ * Get entity data table product mapping by ID
28190
+ *
28191
+ * Use this API to retrieve the mapping between an entity table, a data table, and
28192
+ * product by its unique identifier. This API fetches the specific mapping configuration
28193
+ * for a given ID, allowing you to view the details of how an individual product is linked
28194
+ * with its associated entity and data tables. This is useful for reviewing or verifying the
28195
+ * configuration for a specific product's data management and business processes.
28196
+ *
28197
+ * @param id - The unique identifier of the entity data table product mapping to retrieve
28198
+ * @returns Command object that executes the API request and returns the mapping details
28199
+ *
28200
+ * @example
28201
+ * ```typescript
28202
+ * const mapping = await client.request(GetDataTableProductMappingById(67));
28203
+ * console.log('Mapping ID:', mapping.id);
28204
+ * console.log('Entity:', mapping.entity);
28205
+ * console.log('Data Table:', mapping.datatableName);
28206
+ * console.log('Product ID:', mapping.productId);
28207
+ * console.log('Product Name:', mapping.productName);
28208
+ * ```
28209
+ */
28210
+ declare const GetDataTableProductMappingById: (id: number) => Command<{
28211
+ id: number;
28212
+ }, GetDataTableProductMappingByIdResponse>;
28213
+ /**
28214
+ * Delete entity data table product mapping by ID
28215
+ *
28216
+ * Use this API to delete a specific mapping between an entity table, a data table, and
28217
+ * product using its unique identifier. This API removes the mapping configuration for a
28218
+ * given ID, which is useful for maintaining the integrity of data handling and business
28219
+ * processes by ensuring that outdated or unnecessary mappings are removed.
28220
+ *
28221
+ * @param id - The unique identifier of the entity data table product mapping to delete
28222
+ * @returns Command object that executes the API request and returns the deletion confirmation
28223
+ *
28224
+ * @example
28225
+ * ```typescript
28226
+ * const result = await client.request(DeleteDataTableProductMapping(67));
28227
+ * console.log('Deleted mapping ID:', result.id);
28228
+ * console.log('Resource ID:', result.resourceId);
28229
+ * ```
28230
+ */
28231
+ declare const DeleteDataTableProductMapping: (id: number) => Command<{
28232
+ id: number;
28233
+ }, DeleteDataTableProductMappingResponse>;
28234
+
27445
28235
  /**
27446
28236
  * Create a note for a resource
27447
28237
  *
@@ -27547,4 +28337,4 @@ declare const DeleteNote: (params: DeleteNoteParamsRequest) => Command<{
27547
28337
  params: DeleteNoteParamsRequest;
27548
28338
  }, DeleteNoteResponse>;
27549
28339
 
27550
- export { ActivateCard, ActivatePhysicalCard, AddAcquiredCard, AddCardToMobileWallet, AddChargeToAccount, AddChargeToLoanAccount, AdjustCreditAccountLimits, ApproveCreditAccount, ApproveLoan, ApproveRejectClientDocument, BlockAccount, BlockAcquiredCardAddition, CalculateLoanSchedule, ChangeCardType, CloseAccount, CreateAccountProduct, CreateAndActivateAccount, CreateCard, CreateCardProduct, CreateClient, CreateClientAddress, CreateClientIdentifier, CreateCreditAccountAutoPayExternal, CreateCreditAccountAutoPayInternal, CreateCreditAccountPayment, CreateFixedDepositAccount, CreateLoan, CreateNote, CreatePayment, CreatePrepaidCard, CreateRecipient, CreateSecuredCreditAccount, CreateSubscriber, CreateTransfer, CreateUnsecuredCreditAccount, CustomCreate, CustomGet, CustomUpdate, DeactivatePrepaidCard, DeleteAccount, DeleteAcquiredCard, DeleteClient, DeleteClientDocument, DeleteFixedDepositAccount, DeleteNote, DeletePayment, DeleteRecipient, DeleteSelfServiceUser, DeleteSubscriber, DisburseLoan, DisburseLoanToLinkedAccount, DownloadAccountStatement, DownloadCreditAccountBilledStatement, EnableDisableConfiguration, EnableSelfServiceAccess, GenerateAccountStatement, GetAccount, GetAccountDocumentsDetails, GetAccountProductById, GetAccountsOfClient, GetAcquiredCardById, GetAcquiredCardPublicKey, GetAcquiredCards, GetAllAccountProducts, GetBankDetailsFromRoutingCode, GetCardAuthorizationById, GetCardAuthorizations, GetCardById, GetCardImageUrl, GetCardProduct, GetCardSettlementById, GetCardSettlements, GetCards, GetChargesByAccountId, GetChargesByLoanAccountId, GetClient, GetClientAddress, GetClientClassification, GetClients, GetCompletedTransactions, GetConfigurationByName, GetConfigurations, GetCreditAccountBilledStatements, GetCreditAccountCompletedTransactions, GetCreditAccountDetails, GetCreditAccountPendingTransactions, GetCreditAccountTransactionById, GetFixedDepositAccount, GetLoanById, GetLoanPreclosureTemplate, GetLoanSearchTemplate, GetLoanTransactionDetails, GetLoanWriteoffTemplate, GetNoteById, GetNotes, GetPayment, GetPayments, GetPendingTransactions, GetPermittedDocumentTypes, GetPrepaidCardById, GetPrepaidCardsByAccountId, GetRecentTransactions, GetRecipient, GetRecipients, GetSearchData, GetStatusOfVerifyClient, GetSubscriber, GetSubscribers, GetTransactionById, GetTransfer, GetTransfers, GetUserDetail, GraphQL, HoldAmount, ListCardProduct, ListClientDocument, MakeRepayment, OrderPhysicalCard, PayAccountCharge, PreCloseLoan, RenewCard, ReplaceCard, ScheduleAccountClosure, SetClientAddressStatus, SetPIN, SuspendCard, SwitchClientClassification, TerminateCard, UnblockAcquiredCardAddition, UndoChargeToAccount, UpdateAccount, UpdateAccountProduct, UpdateCardFeature, UpdateCardLimit, UpdateCardProduct, UpdateClient, UpdateClientAddress, UpdateClientIdentifier, UpdateFixedDepositAccount, UpdatePayment, UpdateRecipientGQL as UpdateRecipient, UpdateSelfServiceUser, UploadClientIdentifierDocument, VerifyWithActivateClients, WaiveChargeFromAccount, WriteLoanOff };
28340
+ export { ActivateCard, ActivatePhysicalCard, AddAcquiredCard, AddCardToMobileWallet, AddChargeToAccount, AddChargeToLoanAccount, AdjustCreditAccountLimits, ApproveCreditAccount, ApproveLoan, ApproveRejectClientDocument, BlockAccount, BlockAcquiredCardAddition, CalculateLoanSchedule, ChangeCardType, CloseAccount, CreateAccountProduct, CreateAndActivateAccount, CreateCard, CreateCardProduct, CreateClient, CreateClientAddress, CreateClientIdentifier, CreateCreditAccountAutoPayExternal, CreateCreditAccountAutoPayInternal, CreateCreditAccountPayment, CreateDataTableProductMapping, CreateEntryInDataTable, CreateFixedDepositAccount, CreateLoan, CreateNote, CreatePayment, CreatePrepaidCard, CreateRecipient, CreateSecuredCreditAccount, CreateSubscriber, CreateTransfer, CreateUnsecuredCreditAccount, CustomCreate, CustomGet, CustomUpdate, DeactivatePrepaidCard, DeleteAccount, DeleteAcquiredCard, DeleteClient, DeleteClientDocument, DeleteDataTableProductMapping, DeleteEntryFromDataTable, DeleteFixedDepositAccount, DeleteNote, DeletePayment, DeleteRecipient, DeleteSelfServiceUser, DeleteSubscriber, DisburseLoan, DisburseLoanToLinkedAccount, DownloadAccountStatement, DownloadCreditAccountBilledStatement, EnableDisableConfiguration, EnableSelfServiceAccess, GenerateAccountStatement, GetAccount, GetAccountDocumentsDetails, GetAccountProductById, GetAccountsOfClient, GetAcquiredCardById, GetAcquiredCardPublicKey, GetAcquiredCards, GetAllAccountProducts, GetBankDetailsFromRoutingCode, GetCardAuthorizationById, GetCardAuthorizations, GetCardById, GetCardImageUrl, GetCardProduct, GetCardSettlementById, GetCardSettlements, GetCards, GetChargesByAccountId, GetChargesByLoanAccountId, GetClient, GetClientAddress, GetClientClassification, GetClients, GetCompletedTransactions, GetConfigurationByName, GetConfigurations, GetCreditAccountBilledStatements, GetCreditAccountCompletedTransactions, GetCreditAccountDetails, GetCreditAccountPendingTransactions, GetCreditAccountTransactionById, GetDataTableProductMappingById, GetDataTableProductMappingTemplate, GetDataTableProductMappings, GetEntriesFromDataTable, GetFixedDepositAccount, GetLoanById, GetLoanPreclosureTemplate, GetLoanSearchTemplate, GetLoanTransactionDetails, GetLoanWriteoffTemplate, GetNoteById, GetNotes, GetPayment, GetPayments, GetPendingTransactions, GetPermittedDocumentTypes, GetPrepaidCardById, GetPrepaidCardsByAccountId, GetRecentTransactions, GetRecipient, GetRecipients, GetSearchData, GetStatusOfVerifyClient, GetSubscriber, GetSubscribers, GetTransactionById, GetTransfer, GetTransfers, GetUserDetail, GraphQL, HoldAmount, ListCardProduct, ListClientDocument, MakeRepayment, OrderPhysicalCard, PayAccountCharge, PreCloseLoan, RenewCard, ReplaceCard, ScheduleAccountClosure, SetClientAddressStatus, SetPIN, SuspendCard, SwitchClientClassification, TerminateCard, UnblockAcquiredCardAddition, UndoChargeToAccount, UpdateAccount, UpdateAccountProduct, UpdateCardFeature, UpdateCardLimit, UpdateCardProduct, UpdateClient, UpdateClientAddress, UpdateClientIdentifier, UpdateEntryInDataTable, UpdateFixedDepositAccount, UpdatePayment, UpdateRecipientGQL as UpdateRecipient, UpdateSelfServiceUser, UploadClientIdentifierDocument, VerifyWithActivateClients, WaiveChargeFromAccount, WriteLoanOff };