@fctc/interface-logic 3.6.8 → 3.6.9

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.js CHANGED
@@ -3218,11 +3218,16 @@ function useAuthService() {
3218
3218
  }).filter(([_, value]) => !!value)
3219
3219
  );
3220
3220
  const encodedData = new URLSearchParams(payload).toString();
3221
- return env?.requests?.post(body.path, encodedData, {
3222
- headers: {
3223
- "Content-Type": "application/x-www-form-urlencoded"
3224
- }
3225
- });
3221
+ return env?.requests?.post(
3222
+ body.path,
3223
+ encodedData,
3224
+ {
3225
+ headers: {
3226
+ "Content-Type": "application/x-www-form-urlencoded"
3227
+ }
3228
+ },
3229
+ "id"
3230
+ );
3226
3231
  },
3227
3232
  [env]
3228
3233
  );
package/dist/hooks.mjs CHANGED
@@ -3079,11 +3079,16 @@ function useAuthService() {
3079
3079
  }).filter(([_, value]) => !!value)
3080
3080
  );
3081
3081
  const encodedData = new URLSearchParams(payload).toString();
3082
- return env?.requests?.post(body.path, encodedData, {
3083
- headers: {
3084
- "Content-Type": "application/x-www-form-urlencoded"
3085
- }
3086
- });
3082
+ return env?.requests?.post(
3083
+ body.path,
3084
+ encodedData,
3085
+ {
3086
+ headers: {
3087
+ "Content-Type": "application/x-www-form-urlencoded"
3088
+ }
3089
+ },
3090
+ "id"
3091
+ );
3087
3092
  },
3088
3093
  [env]
3089
3094
  );
package/dist/provider.js CHANGED
@@ -3208,11 +3208,16 @@ function useAuthService() {
3208
3208
  }).filter(([_, value]) => !!value)
3209
3209
  );
3210
3210
  const encodedData = new URLSearchParams(payload).toString();
3211
- return env?.requests?.post(body.path, encodedData, {
3212
- headers: {
3213
- "Content-Type": "application/x-www-form-urlencoded"
3214
- }
3215
- });
3211
+ return env?.requests?.post(
3212
+ body.path,
3213
+ encodedData,
3214
+ {
3215
+ headers: {
3216
+ "Content-Type": "application/x-www-form-urlencoded"
3217
+ }
3218
+ },
3219
+ "id"
3220
+ );
3216
3221
  },
3217
3222
  [env]
3218
3223
  );
package/dist/provider.mjs CHANGED
@@ -3165,11 +3165,16 @@ function useAuthService() {
3165
3165
  }).filter(([_, value]) => !!value)
3166
3166
  );
3167
3167
  const encodedData = new URLSearchParams(payload).toString();
3168
- return env?.requests?.post(body.path, encodedData, {
3169
- headers: {
3170
- "Content-Type": "application/x-www-form-urlencoded"
3171
- }
3172
- });
3168
+ return env?.requests?.post(
3169
+ body.path,
3170
+ encodedData,
3171
+ {
3172
+ headers: {
3173
+ "Content-Type": "application/x-www-form-urlencoded"
3174
+ }
3175
+ },
3176
+ "id"
3177
+ );
3173
3178
  },
3174
3179
  [env]
3175
3180
  );
package/dist/services.js CHANGED
@@ -3407,11 +3407,16 @@ function useAuthService() {
3407
3407
  }).filter(([_, value]) => !!value)
3408
3408
  );
3409
3409
  const encodedData = new URLSearchParams(payload).toString();
3410
- return env?.requests?.post(body.path, encodedData, {
3411
- headers: {
3412
- "Content-Type": "application/x-www-form-urlencoded"
3413
- }
3414
- });
3410
+ return env?.requests?.post(
3411
+ body.path,
3412
+ encodedData,
3413
+ {
3414
+ headers: {
3415
+ "Content-Type": "application/x-www-form-urlencoded"
3416
+ }
3417
+ },
3418
+ "id"
3419
+ );
3415
3420
  },
3416
3421
  [env]
3417
3422
  );
package/dist/services.mjs CHANGED
@@ -3362,11 +3362,16 @@ function useAuthService() {
3362
3362
  }).filter(([_, value]) => !!value)
3363
3363
  );
3364
3364
  const encodedData = new URLSearchParams(payload).toString();
3365
- return env?.requests?.post(body.path, encodedData, {
3366
- headers: {
3367
- "Content-Type": "application/x-www-form-urlencoded"
3368
- }
3369
- });
3365
+ return env?.requests?.post(
3366
+ body.path,
3367
+ encodedData,
3368
+ {
3369
+ headers: {
3370
+ "Content-Type": "application/x-www-form-urlencoded"
3371
+ }
3372
+ },
3373
+ "id"
3374
+ );
3370
3375
  },
3371
3376
  [env]
3372
3377
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/interface-logic",
3
- "version": "3.6.8",
3
+ "version": "3.6.9",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",