@fctc/interface-logic 3.8.1 → 3.8.3

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/hooks.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-DUiFtWlQ.mjs';
2
+ import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-CRNLhTVq.mjs';
3
3
  import { B as BaseModelInit } from './base-model-type-DD8uZnDP.mjs';
4
4
  import { BaseModel } from './models.mjs';
5
5
 
@@ -377,7 +377,7 @@ declare const useRemoveRow: () => _tanstack_react_query.UseMutationResult<any, E
377
377
  xNode?: string;
378
378
  }, unknown>;
379
379
 
380
- declare const useGetResequence: (model: string, resIds: any, context: any, offset: any) => _tanstack_react_query.UseQueryResult<any, Error>;
380
+ declare const useGetResequence: (model: string, resIds: any, context: any, offset: any, xNode?: string, service?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
381
381
 
382
382
  declare const useRunAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
383
383
  idAction: any;
package/dist/hooks.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
- import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-DUiFtWlQ.js';
2
+ import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-CRNLhTVq.js';
3
3
  import { B as BaseModelInit } from './base-model-type-DD8uZnDP.js';
4
4
  import { BaseModel } from './models.js';
5
5
 
@@ -377,7 +377,7 @@ declare const useRemoveRow: () => _tanstack_react_query.UseMutationResult<any, E
377
377
  xNode?: string;
378
378
  }, unknown>;
379
379
 
380
- declare const useGetResequence: (model: string, resIds: any, context: any, offset: any) => _tanstack_react_query.UseQueryResult<any, Error>;
380
+ declare const useGetResequence: (model: string, resIds: any, context: any, offset: any, xNode?: string, service?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
381
381
 
382
382
  declare const useRunAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
383
383
  idAction: any;
package/dist/hooks.js CHANGED
@@ -3227,7 +3227,7 @@ function useAuthService() {
3227
3227
  "Content-Type": "application/x-www-form-urlencoded"
3228
3228
  }
3229
3229
  },
3230
- "id"
3230
+ body.service
3231
3231
  );
3232
3232
  },
3233
3233
  [env]
@@ -4645,7 +4645,9 @@ function useViewService() {
4645
4645
  model,
4646
4646
  ids,
4647
4647
  context,
4648
- offset
4648
+ offset,
4649
+ service,
4650
+ xNode
4649
4651
  }) => {
4650
4652
  const jsonData = {
4651
4653
  model,
@@ -4654,11 +4656,17 @@ function useViewService() {
4654
4656
  field: "sequence",
4655
4657
  ...offset > 0 ? { offset } : {}
4656
4658
  };
4657
- return env?.requests.post("/web/dataset/resequence", jsonData, {
4658
- headers: {
4659
- "Content-Type": "application/json"
4660
- }
4661
- });
4659
+ return env?.requests.post(
4660
+ "/web/dataset/resequence",
4661
+ jsonData,
4662
+ {
4663
+ headers: {
4664
+ "Content-Type": "application/json",
4665
+ ...xNode ? { "X-Node": xNode } : {}
4666
+ }
4667
+ },
4668
+ service
4669
+ );
4662
4670
  },
4663
4671
  [env]
4664
4672
  );
@@ -7140,15 +7148,17 @@ var use_remove_row_default = useRemoveRow;
7140
7148
 
7141
7149
  // src/hooks/view/use-resequence.ts
7142
7150
  var import_react_query65 = require("@tanstack/react-query");
7143
- var useGetResequence = (model, resIds, context, offset) => {
7151
+ var useGetResequence = (model, resIds, context, offset, xNode, service) => {
7144
7152
  const { getResequence } = useViewService();
7145
7153
  return (0, import_react_query65.useQuery)({
7146
- queryKey: [],
7154
+ queryKey: [offset, resIds, context, model],
7147
7155
  queryFn: () => getResequence({
7148
7156
  model,
7149
7157
  ids: resIds,
7150
7158
  context,
7151
- offset
7159
+ offset,
7160
+ xNode,
7161
+ service
7152
7162
  }),
7153
7163
  enabled: false,
7154
7164
  refetchOnWindowFocus: false
package/dist/hooks.mjs CHANGED
@@ -3087,7 +3087,7 @@ function useAuthService() {
3087
3087
  "Content-Type": "application/x-www-form-urlencoded"
3088
3088
  }
3089
3089
  },
3090
- "id"
3090
+ body.service
3091
3091
  );
3092
3092
  },
3093
3093
  [env]
@@ -4505,7 +4505,9 @@ function useViewService() {
4505
4505
  model,
4506
4506
  ids,
4507
4507
  context,
4508
- offset
4508
+ offset,
4509
+ service,
4510
+ xNode
4509
4511
  }) => {
4510
4512
  const jsonData = {
4511
4513
  model,
@@ -4514,11 +4516,17 @@ function useViewService() {
4514
4516
  field: "sequence",
4515
4517
  ...offset > 0 ? { offset } : {}
4516
4518
  };
4517
- return env?.requests.post("/web/dataset/resequence", jsonData, {
4518
- headers: {
4519
- "Content-Type": "application/json"
4520
- }
4521
- });
4519
+ return env?.requests.post(
4520
+ "/web/dataset/resequence",
4521
+ jsonData,
4522
+ {
4523
+ headers: {
4524
+ "Content-Type": "application/json",
4525
+ ...xNode ? { "X-Node": xNode } : {}
4526
+ }
4527
+ },
4528
+ service
4529
+ );
4522
4530
  },
4523
4531
  [env]
4524
4532
  );
@@ -7000,15 +7008,17 @@ var use_remove_row_default = useRemoveRow;
7000
7008
 
7001
7009
  // src/hooks/view/use-resequence.ts
7002
7010
  import { useQuery as useQuery23 } from "@tanstack/react-query";
7003
- var useGetResequence = (model, resIds, context, offset) => {
7011
+ var useGetResequence = (model, resIds, context, offset, xNode, service) => {
7004
7012
  const { getResequence } = useViewService();
7005
7013
  return useQuery23({
7006
- queryKey: [],
7014
+ queryKey: [offset, resIds, context, model],
7007
7015
  queryFn: () => getResequence({
7008
7016
  model,
7009
7017
  ids: resIds,
7010
7018
  context,
7011
- offset
7019
+ offset,
7020
+ xNode,
7021
+ service
7012
7022
  }),
7013
7023
  enabled: false,
7014
7024
  refetchOnWindowFocus: false
@@ -3,7 +3,7 @@ import { ReactNode } from 'react';
3
3
  import { L as LocalStorageUtilsType } from './local-storage-BPvoMGYJ.mjs';
4
4
  import { useForgotPassword, useForgotPasswordSSO, useGetProvider, useIsValidToken, useLoginCredential, useLoginSocial, useResetPassword, useResetPasswordSSO, useUpdatePassword, useLogout, useGetAccessByCode, useValidateActionToken, useGetCompanyInfo, useGetCurrentCompany, useGetListCompany, useExecuteImport, useExportExcel, useGetFieldExport, useGetFileExcel, useParsePreview, useUploadFileExcel, useUploadIdFile, useChangeStatus, useDeleteComment, useGetComment, useGetFormView, useGetImage, useSendComment, useUploadImage, useDelete, useGetAll, useGetConversionRate, useGetCurrency, useGetDetail, useGetFieldOnChange, useGetListMyBankAccount, useModel, useOdooDataTransform, useOnChangeForm, useSave, useGetProfile, useGetUser, useSwitchLocale, useButton, useDuplicateRecord, useGet2FAMethods, useGetActionDetail, useGetCalendar, useGetGroups, useGetListData, useGetMenu, useGetPrintReport, useGetProGressBar, useGetResequence, useGetSelection, useGetView, useLoadAction, useLoadMessage, usePrint, useRemoveRow, useRunAction, useSignInSSO, useVerify2FA, useGrantAccess, useRemoveTotpSetup, useRequestSetupTotp, useSettingsWebRead2fa, useVerifyTotp, useUploadFile, useCreateEntity, useGetASession, useCreateSession, useDeleteEntity, useGetList, useGetPos, useHandleClosingSession, useManageSession, useUpdateClosedSession, useUpdateEntity, useLoadDataPosSession, useManageOnChange, useGenSerialNumber, useGetOrderLine, useGetProductImage, useAddEntity, useCheckPayment, useHandleCloseSession, useHandleClosingDetailSession, useCreatePosConfig, useSearchJournal, useGetTenantMapping, useGetToken, useGetPreparationDisplayData, useChangeOrderPreparaionState as useChangeOrderPreparationState, useUpdateOrderStatus, useGetThreadData, useGetThreadMessages, useGetExternalTabs, useProcessOrder, useGeneratePaymentQrInfo, useSavePinCode, useGetPinCode, useReadGroup, useGetNotifications, useGetDataChart } from './hooks.mjs';
5
5
  import '@tanstack/react-query';
6
- import './view-type-DUiFtWlQ.mjs';
6
+ import './view-type-CRNLhTVq.mjs';
7
7
  import './base-model-type-DD8uZnDP.mjs';
8
8
  import './models.mjs';
9
9
 
@@ -3,7 +3,7 @@ import { ReactNode } from 'react';
3
3
  import { L as LocalStorageUtilsType } from './local-storage-BPvoMGYJ.js';
4
4
  import { useForgotPassword, useForgotPasswordSSO, useGetProvider, useIsValidToken, useLoginCredential, useLoginSocial, useResetPassword, useResetPasswordSSO, useUpdatePassword, useLogout, useGetAccessByCode, useValidateActionToken, useGetCompanyInfo, useGetCurrentCompany, useGetListCompany, useExecuteImport, useExportExcel, useGetFieldExport, useGetFileExcel, useParsePreview, useUploadFileExcel, useUploadIdFile, useChangeStatus, useDeleteComment, useGetComment, useGetFormView, useGetImage, useSendComment, useUploadImage, useDelete, useGetAll, useGetConversionRate, useGetCurrency, useGetDetail, useGetFieldOnChange, useGetListMyBankAccount, useModel, useOdooDataTransform, useOnChangeForm, useSave, useGetProfile, useGetUser, useSwitchLocale, useButton, useDuplicateRecord, useGet2FAMethods, useGetActionDetail, useGetCalendar, useGetGroups, useGetListData, useGetMenu, useGetPrintReport, useGetProGressBar, useGetResequence, useGetSelection, useGetView, useLoadAction, useLoadMessage, usePrint, useRemoveRow, useRunAction, useSignInSSO, useVerify2FA, useGrantAccess, useRemoveTotpSetup, useRequestSetupTotp, useSettingsWebRead2fa, useVerifyTotp, useUploadFile, useCreateEntity, useGetASession, useCreateSession, useDeleteEntity, useGetList, useGetPos, useHandleClosingSession, useManageSession, useUpdateClosedSession, useUpdateEntity, useLoadDataPosSession, useManageOnChange, useGenSerialNumber, useGetOrderLine, useGetProductImage, useAddEntity, useCheckPayment, useHandleCloseSession, useHandleClosingDetailSession, useCreatePosConfig, useSearchJournal, useGetTenantMapping, useGetToken, useGetPreparationDisplayData, useChangeOrderPreparaionState as useChangeOrderPreparationState, useUpdateOrderStatus, useGetThreadData, useGetThreadMessages, useGetExternalTabs, useProcessOrder, useGeneratePaymentQrInfo, useSavePinCode, useGetPinCode, useReadGroup, useGetNotifications, useGetDataChart } from './hooks.js';
5
5
  import '@tanstack/react-query';
6
- import './view-type-DUiFtWlQ.js';
6
+ import './view-type-CRNLhTVq.js';
7
7
  import './base-model-type-DD8uZnDP.js';
8
8
  import './models.js';
9
9
 
package/dist/provider.js CHANGED
@@ -3216,7 +3216,7 @@ function useAuthService() {
3216
3216
  "Content-Type": "application/x-www-form-urlencoded"
3217
3217
  }
3218
3218
  },
3219
- "id"
3219
+ body.service
3220
3220
  );
3221
3221
  },
3222
3222
  [env]
@@ -4634,7 +4634,9 @@ function useViewService() {
4634
4634
  model,
4635
4635
  ids,
4636
4636
  context,
4637
- offset
4637
+ offset,
4638
+ service,
4639
+ xNode
4638
4640
  }) => {
4639
4641
  const jsonData = {
4640
4642
  model,
@@ -4643,11 +4645,17 @@ function useViewService() {
4643
4645
  field: "sequence",
4644
4646
  ...offset > 0 ? { offset } : {}
4645
4647
  };
4646
- return env?.requests.post("/web/dataset/resequence", jsonData, {
4647
- headers: {
4648
- "Content-Type": "application/json"
4649
- }
4650
- });
4648
+ return env?.requests.post(
4649
+ "/web/dataset/resequence",
4650
+ jsonData,
4651
+ {
4652
+ headers: {
4653
+ "Content-Type": "application/json",
4654
+ ...xNode ? { "X-Node": xNode } : {}
4655
+ }
4656
+ },
4657
+ service
4658
+ );
4651
4659
  },
4652
4660
  [env]
4653
4661
  );
@@ -7524,15 +7532,17 @@ var use_remove_row_default = useRemoveRow;
7524
7532
 
7525
7533
  // src/hooks/view/use-resequence.ts
7526
7534
  var import_react_query65 = require("@tanstack/react-query");
7527
- var useGetResequence = (model, resIds, context, offset) => {
7535
+ var useGetResequence = (model, resIds, context, offset, xNode, service) => {
7528
7536
  const { getResequence } = useViewService();
7529
7537
  return (0, import_react_query65.useQuery)({
7530
- queryKey: [],
7538
+ queryKey: [offset, resIds, context, model],
7531
7539
  queryFn: () => getResequence({
7532
7540
  model,
7533
7541
  ids: resIds,
7534
7542
  context,
7535
- offset
7543
+ offset,
7544
+ xNode,
7545
+ service
7536
7546
  }),
7537
7547
  enabled: false,
7538
7548
  refetchOnWindowFocus: false
package/dist/provider.mjs CHANGED
@@ -3173,7 +3173,7 @@ function useAuthService() {
3173
3173
  "Content-Type": "application/x-www-form-urlencoded"
3174
3174
  }
3175
3175
  },
3176
- "id"
3176
+ body.service
3177
3177
  );
3178
3178
  },
3179
3179
  [env]
@@ -4591,7 +4591,9 @@ function useViewService() {
4591
4591
  model,
4592
4592
  ids,
4593
4593
  context,
4594
- offset
4594
+ offset,
4595
+ service,
4596
+ xNode
4595
4597
  }) => {
4596
4598
  const jsonData = {
4597
4599
  model,
@@ -4600,11 +4602,17 @@ function useViewService() {
4600
4602
  field: "sequence",
4601
4603
  ...offset > 0 ? { offset } : {}
4602
4604
  };
4603
- return env?.requests.post("/web/dataset/resequence", jsonData, {
4604
- headers: {
4605
- "Content-Type": "application/json"
4606
- }
4607
- });
4605
+ return env?.requests.post(
4606
+ "/web/dataset/resequence",
4607
+ jsonData,
4608
+ {
4609
+ headers: {
4610
+ "Content-Type": "application/json",
4611
+ ...xNode ? { "X-Node": xNode } : {}
4612
+ }
4613
+ },
4614
+ service
4615
+ );
4608
4616
  },
4609
4617
  [env]
4610
4618
  );
@@ -7481,15 +7489,17 @@ var use_remove_row_default = useRemoveRow;
7481
7489
 
7482
7490
  // src/hooks/view/use-resequence.ts
7483
7491
  import { useQuery as useQuery23 } from "@tanstack/react-query";
7484
- var useGetResequence = (model, resIds, context, offset) => {
7492
+ var useGetResequence = (model, resIds, context, offset, xNode, service) => {
7485
7493
  const { getResequence } = useViewService();
7486
7494
  return useQuery23({
7487
- queryKey: [],
7495
+ queryKey: [offset, resIds, context, model],
7488
7496
  queryFn: () => getResequence({
7489
7497
  model,
7490
7498
  ids: resIds,
7491
7499
  context,
7492
- offset
7500
+ offset,
7501
+ xNode,
7502
+ service
7493
7503
  }),
7494
7504
  enabled: false,
7495
7505
  refetchOnWindowFocus: false
@@ -1,4 +1,4 @@
1
- import { C as ContextApi, L as LoginCredentialBody, R as ResetPasswordRequest, U as UpdatePasswordRequest, T as TThreadData, h as GetExternalTab, b as GetListParams, a as GetDetailParams, S as SaveParams, D as DeleteParams, O as OnChangeParams, V as ViewData, f as GetViewParams, c as GetSelectionType } from './view-type-DUiFtWlQ.mjs';
1
+ import { C as ContextApi, L as LoginCredentialBody, R as ResetPasswordRequest, U as UpdatePasswordRequest, T as TThreadData, h as GetExternalTab, b as GetListParams, a as GetDetailParams, S as SaveParams, D as DeleteParams, O as OnChangeParams, V as ViewData, f as GetViewParams, c as GetSelectionType } from './view-type-CRNLhTVq.mjs';
2
2
 
3
3
  declare function useActionService(): {
4
4
  loadAction: ({ idAction, context, service, xNode, }: {
@@ -261,11 +261,13 @@ declare function useViewService(): {
261
261
  getView: ({ model, views, context, options, aid, service, xNode, }: GetViewParams) => Promise<any>;
262
262
  getMenu: (context: any, specification: any, domain: any, service?: string) => Promise<any>;
263
263
  getActionDetail: (aid: number, context: any) => Promise<any>;
264
- getResequence: ({ model, ids, context, offset, }: {
264
+ getResequence: ({ model, ids, context, offset, service, xNode, }: {
265
265
  model: string;
266
266
  ids: any;
267
267
  context: any;
268
268
  offset: any;
269
+ service?: string;
270
+ xNode?: string;
269
271
  }) => Promise<any>;
270
272
  getSelectionItem: ({ data, service, xNode, }: {
271
273
  data: GetSelectionType;
@@ -1,4 +1,4 @@
1
- import { C as ContextApi, L as LoginCredentialBody, R as ResetPasswordRequest, U as UpdatePasswordRequest, T as TThreadData, h as GetExternalTab, b as GetListParams, a as GetDetailParams, S as SaveParams, D as DeleteParams, O as OnChangeParams, V as ViewData, f as GetViewParams, c as GetSelectionType } from './view-type-DUiFtWlQ.js';
1
+ import { C as ContextApi, L as LoginCredentialBody, R as ResetPasswordRequest, U as UpdatePasswordRequest, T as TThreadData, h as GetExternalTab, b as GetListParams, a as GetDetailParams, S as SaveParams, D as DeleteParams, O as OnChangeParams, V as ViewData, f as GetViewParams, c as GetSelectionType } from './view-type-CRNLhTVq.js';
2
2
 
3
3
  declare function useActionService(): {
4
4
  loadAction: ({ idAction, context, service, xNode, }: {
@@ -261,11 +261,13 @@ declare function useViewService(): {
261
261
  getView: ({ model, views, context, options, aid, service, xNode, }: GetViewParams) => Promise<any>;
262
262
  getMenu: (context: any, specification: any, domain: any, service?: string) => Promise<any>;
263
263
  getActionDetail: (aid: number, context: any) => Promise<any>;
264
- getResequence: ({ model, ids, context, offset, }: {
264
+ getResequence: ({ model, ids, context, offset, service, xNode, }: {
265
265
  model: string;
266
266
  ids: any;
267
267
  context: any;
268
268
  offset: any;
269
+ service?: string;
270
+ xNode?: string;
269
271
  }) => Promise<any>;
270
272
  getSelectionItem: ({ data, service, xNode, }: {
271
273
  data: GetSelectionType;
package/dist/services.js CHANGED
@@ -3418,7 +3418,7 @@ function useAuthService() {
3418
3418
  "Content-Type": "application/x-www-form-urlencoded"
3419
3419
  }
3420
3420
  },
3421
- "id"
3421
+ body.service
3422
3422
  );
3423
3423
  },
3424
3424
  [env]
@@ -4836,7 +4836,9 @@ function useViewService() {
4836
4836
  model,
4837
4837
  ids,
4838
4838
  context,
4839
- offset
4839
+ offset,
4840
+ service,
4841
+ xNode
4840
4842
  }) => {
4841
4843
  const jsonData = {
4842
4844
  model,
@@ -4845,11 +4847,17 @@ function useViewService() {
4845
4847
  field: "sequence",
4846
4848
  ...offset > 0 ? { offset } : {}
4847
4849
  };
4848
- return env?.requests.post("/web/dataset/resequence", jsonData, {
4849
- headers: {
4850
- "Content-Type": "application/json"
4851
- }
4852
- });
4850
+ return env?.requests.post(
4851
+ "/web/dataset/resequence",
4852
+ jsonData,
4853
+ {
4854
+ headers: {
4855
+ "Content-Type": "application/json",
4856
+ ...xNode ? { "X-Node": xNode } : {}
4857
+ }
4858
+ },
4859
+ service
4860
+ );
4853
4861
  },
4854
4862
  [env]
4855
4863
  );
package/dist/services.mjs CHANGED
@@ -3373,7 +3373,7 @@ function useAuthService() {
3373
3373
  "Content-Type": "application/x-www-form-urlencoded"
3374
3374
  }
3375
3375
  },
3376
- "id"
3376
+ body.service
3377
3377
  );
3378
3378
  },
3379
3379
  [env]
@@ -4791,7 +4791,9 @@ function useViewService() {
4791
4791
  model,
4792
4792
  ids,
4793
4793
  context,
4794
- offset
4794
+ offset,
4795
+ service,
4796
+ xNode
4795
4797
  }) => {
4796
4798
  const jsonData = {
4797
4799
  model,
@@ -4800,11 +4802,17 @@ function useViewService() {
4800
4802
  field: "sequence",
4801
4803
  ...offset > 0 ? { offset } : {}
4802
4804
  };
4803
- return env?.requests.post("/web/dataset/resequence", jsonData, {
4804
- headers: {
4805
- "Content-Type": "application/json"
4806
- }
4807
- });
4805
+ return env?.requests.post(
4806
+ "/web/dataset/resequence",
4807
+ jsonData,
4808
+ {
4809
+ headers: {
4810
+ "Content-Type": "application/json",
4811
+ ...xNode ? { "X-Node": xNode } : {}
4812
+ }
4813
+ },
4814
+ service
4815
+ );
4808
4816
  },
4809
4817
  [env]
4810
4818
  );
package/dist/types.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, c as GetSelectionType, f as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, d as SocialTokenBody, e as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-DUiFtWlQ.mjs';
1
+ export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, c as GetSelectionType, f as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, d as SocialTokenBody, e as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-CRNLhTVq.mjs';
2
2
  export { B as BaseModelInit } from './base-model-type-DD8uZnDP.mjs';
3
3
 
4
4
  interface Config {
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, c as GetSelectionType, f as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, d as SocialTokenBody, e as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-DUiFtWlQ.js';
1
+ export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, G as GetAllParams, a as GetDetailParams, b as GetListParams, c as GetSelectionType, f as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, S as SaveParams, d as SocialTokenBody, e as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-CRNLhTVq.js';
2
2
  export { B as BaseModelInit } from './base-model-type-DD8uZnDP.js';
3
3
 
4
4
  interface Config {
@@ -2,6 +2,7 @@ interface LoginCredentialBody {
2
2
  email: string;
3
3
  password: string;
4
4
  path?: string;
5
+ service?: string;
5
6
  }
6
7
  interface ResetPasswordRequest {
7
8
  password: string;
@@ -2,6 +2,7 @@ interface LoginCredentialBody {
2
2
  email: string;
3
3
  password: string;
4
4
  path?: string;
5
+ service?: string;
5
6
  }
6
7
  interface ResetPasswordRequest {
7
8
  password: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/interface-logic",
3
- "version": "3.8.1",
3
+ "version": "3.8.3",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",