@fctc/interface-logic 3.6.8 → 3.7.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.
- package/dist/hooks.js +20 -10
- package/dist/hooks.mjs +20 -10
- package/dist/provider.js +20 -10
- package/dist/provider.mjs +20 -10
- package/dist/services.js +20 -10
- package/dist/services.mjs +20 -10
- package/package.json +1 -1
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(
|
|
3222
|
-
|
|
3223
|
-
|
|
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
|
);
|
|
@@ -4845,11 +4850,16 @@ function useViewService() {
|
|
|
4845
4850
|
method,
|
|
4846
4851
|
with_context
|
|
4847
4852
|
};
|
|
4848
|
-
return env?.requests.post(
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
+
return env?.requests.post(
|
|
4854
|
+
"/call" /* CALL_PATH */,
|
|
4855
|
+
jsonData,
|
|
4856
|
+
{
|
|
4857
|
+
headers: {
|
|
4858
|
+
"Content-Type": "application/json"
|
|
4859
|
+
}
|
|
4860
|
+
},
|
|
4861
|
+
"id"
|
|
4862
|
+
);
|
|
4853
4863
|
},
|
|
4854
4864
|
[env]
|
|
4855
4865
|
);
|
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(
|
|
3083
|
-
|
|
3084
|
-
|
|
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
|
);
|
|
@@ -4706,11 +4711,16 @@ function useViewService() {
|
|
|
4706
4711
|
method,
|
|
4707
4712
|
with_context
|
|
4708
4713
|
};
|
|
4709
|
-
return env?.requests.post(
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
+
return env?.requests.post(
|
|
4715
|
+
"/call" /* CALL_PATH */,
|
|
4716
|
+
jsonData,
|
|
4717
|
+
{
|
|
4718
|
+
headers: {
|
|
4719
|
+
"Content-Type": "application/json"
|
|
4720
|
+
}
|
|
4721
|
+
},
|
|
4722
|
+
"id"
|
|
4723
|
+
);
|
|
4714
4724
|
},
|
|
4715
4725
|
[env]
|
|
4716
4726
|
);
|
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(
|
|
3212
|
-
|
|
3213
|
-
|
|
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
|
);
|
|
@@ -4835,11 +4840,16 @@ function useViewService() {
|
|
|
4835
4840
|
method,
|
|
4836
4841
|
with_context
|
|
4837
4842
|
};
|
|
4838
|
-
return env?.requests.post(
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
+
return env?.requests.post(
|
|
4844
|
+
"/call" /* CALL_PATH */,
|
|
4845
|
+
jsonData,
|
|
4846
|
+
{
|
|
4847
|
+
headers: {
|
|
4848
|
+
"Content-Type": "application/json"
|
|
4849
|
+
}
|
|
4850
|
+
},
|
|
4851
|
+
"id"
|
|
4852
|
+
);
|
|
4843
4853
|
},
|
|
4844
4854
|
[env]
|
|
4845
4855
|
);
|
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(
|
|
3169
|
-
|
|
3170
|
-
|
|
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
|
);
|
|
@@ -4792,11 +4797,16 @@ function useViewService() {
|
|
|
4792
4797
|
method,
|
|
4793
4798
|
with_context
|
|
4794
4799
|
};
|
|
4795
|
-
return env?.requests.post(
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
+
return env?.requests.post(
|
|
4801
|
+
"/call" /* CALL_PATH */,
|
|
4802
|
+
jsonData,
|
|
4803
|
+
{
|
|
4804
|
+
headers: {
|
|
4805
|
+
"Content-Type": "application/json"
|
|
4806
|
+
}
|
|
4807
|
+
},
|
|
4808
|
+
"id"
|
|
4809
|
+
);
|
|
4800
4810
|
},
|
|
4801
4811
|
[env]
|
|
4802
4812
|
);
|
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(
|
|
3411
|
-
|
|
3412
|
-
|
|
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
|
);
|
|
@@ -5034,11 +5039,16 @@ function useViewService() {
|
|
|
5034
5039
|
method,
|
|
5035
5040
|
with_context
|
|
5036
5041
|
};
|
|
5037
|
-
return env?.requests.post(
|
|
5038
|
-
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
+
return env?.requests.post(
|
|
5043
|
+
"/call" /* CALL_PATH */,
|
|
5044
|
+
jsonData,
|
|
5045
|
+
{
|
|
5046
|
+
headers: {
|
|
5047
|
+
"Content-Type": "application/json"
|
|
5048
|
+
}
|
|
5049
|
+
},
|
|
5050
|
+
"id"
|
|
5051
|
+
);
|
|
5042
5052
|
},
|
|
5043
5053
|
[env]
|
|
5044
5054
|
);
|
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(
|
|
3366
|
-
|
|
3367
|
-
|
|
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
|
);
|
|
@@ -4989,11 +4994,16 @@ function useViewService() {
|
|
|
4989
4994
|
method,
|
|
4990
4995
|
with_context
|
|
4991
4996
|
};
|
|
4992
|
-
return env?.requests.post(
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
+
return env?.requests.post(
|
|
4998
|
+
"/call" /* CALL_PATH */,
|
|
4999
|
+
jsonData,
|
|
5000
|
+
{
|
|
5001
|
+
headers: {
|
|
5002
|
+
"Content-Type": "application/json"
|
|
5003
|
+
}
|
|
5004
|
+
},
|
|
5005
|
+
"id"
|
|
5006
|
+
);
|
|
4997
5007
|
},
|
|
4998
5008
|
[env]
|
|
4999
5009
|
);
|