@agroyaar/sdk 3.6.10 → 3.6.11
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/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -659,7 +659,7 @@ var mechanizationMapper = {
|
|
|
659
659
|
}),
|
|
660
660
|
getAll: (dto) => dto.map(mechanizationMapper.getOne),
|
|
661
661
|
create: (_dto) => ({}),
|
|
662
|
-
delete: (
|
|
662
|
+
delete: (_dto) => ({})
|
|
663
663
|
};
|
|
664
664
|
|
|
665
665
|
// src/services/dashboard/mechanization/mechanization.service.ts
|
package/dist/index.d.ts
CHANGED
|
@@ -5471,7 +5471,7 @@ declare const createSDK: (config: ClientConfig, middlewares?: Parameters<typeof
|
|
|
5471
5471
|
getOne: ({ pathParams, }: MechanizationTypes["RequestParams"]["getOne"]) => Promise<_mobily_ts_belt.Error<Error> | _mobily_ts_belt.Ok<MechanizationModel>>;
|
|
5472
5472
|
getAll: ({ pathParams: { farmerId }, path: { kindName }, }: MechanizationTypes["RequestParams"]["getAll"]) => Promise<_mobily_ts_belt.Error<Error> | _mobily_ts_belt.Ok<MechanizationModel[]>>;
|
|
5473
5473
|
create: ({ body, pathParams, }: MechanizationTypes["RequestParams"]["create"]) => Promise<_mobily_ts_belt.Error<Error> | _mobily_ts_belt.Ok<unknown>>;
|
|
5474
|
-
delete: ({ pathParams, }: MechanizationTypes["RequestParams"]["delete"]) => Promise<_mobily_ts_belt.Error<Error> | _mobily_ts_belt.Ok<
|
|
5474
|
+
delete: ({ pathParams, }: MechanizationTypes["RequestParams"]["delete"]) => Promise<_mobily_ts_belt.Error<Error> | _mobily_ts_belt.Ok<unknown>>;
|
|
5475
5475
|
};
|
|
5476
5476
|
auth: {
|
|
5477
5477
|
verifyPhoneNumber: ({ body, }: AuthType["RequestParams"]["createVerifyPhoneNumber"]) => Promise<_mobily_ts_belt.Error<Error> | _mobily_ts_belt.Ok<VerifyPhoneNumberModel>>;
|
package/dist/index.mjs
CHANGED
|
@@ -623,7 +623,7 @@ var mechanizationMapper = {
|
|
|
623
623
|
}),
|
|
624
624
|
getAll: (dto) => dto.map(mechanizationMapper.getOne),
|
|
625
625
|
create: (_dto) => ({}),
|
|
626
|
-
delete: (
|
|
626
|
+
delete: (_dto) => ({})
|
|
627
627
|
};
|
|
628
628
|
|
|
629
629
|
// src/services/dashboard/mechanization/mechanization.service.ts
|