@fctc/interface-logic 3.6.9 → 3.7.1
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
|
@@ -4835,12 +4835,17 @@ function useViewService() {
|
|
|
4835
4835
|
},
|
|
4836
4836
|
with_context
|
|
4837
4837
|
};
|
|
4838
|
-
return env?.requests.post(
|
|
4839
|
-
|
|
4840
|
-
|
|
4838
|
+
return env?.requests.post(
|
|
4839
|
+
"/call" /* CALL_PATH */,
|
|
4840
|
+
jsonData,
|
|
4841
|
+
{
|
|
4842
|
+
headers: {
|
|
4843
|
+
"Content-Type": "application/json"
|
|
4844
|
+
},
|
|
4845
|
+
withCredentials: true
|
|
4841
4846
|
},
|
|
4842
|
-
|
|
4843
|
-
|
|
4847
|
+
"id"
|
|
4848
|
+
);
|
|
4844
4849
|
},
|
|
4845
4850
|
[env]
|
|
4846
4851
|
);
|
|
@@ -4850,11 +4855,16 @@ function useViewService() {
|
|
|
4850
4855
|
method,
|
|
4851
4856
|
with_context
|
|
4852
4857
|
};
|
|
4853
|
-
return env?.requests.post(
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
+
return env?.requests.post(
|
|
4859
|
+
"/call" /* CALL_PATH */,
|
|
4860
|
+
jsonData,
|
|
4861
|
+
{
|
|
4862
|
+
headers: {
|
|
4863
|
+
"Content-Type": "application/json"
|
|
4864
|
+
}
|
|
4865
|
+
},
|
|
4866
|
+
"id"
|
|
4867
|
+
);
|
|
4858
4868
|
},
|
|
4859
4869
|
[env]
|
|
4860
4870
|
);
|
package/dist/hooks.mjs
CHANGED
|
@@ -4696,12 +4696,17 @@ function useViewService() {
|
|
|
4696
4696
|
},
|
|
4697
4697
|
with_context
|
|
4698
4698
|
};
|
|
4699
|
-
return env?.requests.post(
|
|
4700
|
-
|
|
4701
|
-
|
|
4699
|
+
return env?.requests.post(
|
|
4700
|
+
"/call" /* CALL_PATH */,
|
|
4701
|
+
jsonData,
|
|
4702
|
+
{
|
|
4703
|
+
headers: {
|
|
4704
|
+
"Content-Type": "application/json"
|
|
4705
|
+
},
|
|
4706
|
+
withCredentials: true
|
|
4702
4707
|
},
|
|
4703
|
-
|
|
4704
|
-
|
|
4708
|
+
"id"
|
|
4709
|
+
);
|
|
4705
4710
|
},
|
|
4706
4711
|
[env]
|
|
4707
4712
|
);
|
|
@@ -4711,11 +4716,16 @@ function useViewService() {
|
|
|
4711
4716
|
method,
|
|
4712
4717
|
with_context
|
|
4713
4718
|
};
|
|
4714
|
-
return env?.requests.post(
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
+
return env?.requests.post(
|
|
4720
|
+
"/call" /* CALL_PATH */,
|
|
4721
|
+
jsonData,
|
|
4722
|
+
{
|
|
4723
|
+
headers: {
|
|
4724
|
+
"Content-Type": "application/json"
|
|
4725
|
+
}
|
|
4726
|
+
},
|
|
4727
|
+
"id"
|
|
4728
|
+
);
|
|
4719
4729
|
},
|
|
4720
4730
|
[env]
|
|
4721
4731
|
);
|
package/dist/provider.js
CHANGED
|
@@ -4825,12 +4825,17 @@ function useViewService() {
|
|
|
4825
4825
|
},
|
|
4826
4826
|
with_context
|
|
4827
4827
|
};
|
|
4828
|
-
return env?.requests.post(
|
|
4829
|
-
|
|
4830
|
-
|
|
4828
|
+
return env?.requests.post(
|
|
4829
|
+
"/call" /* CALL_PATH */,
|
|
4830
|
+
jsonData,
|
|
4831
|
+
{
|
|
4832
|
+
headers: {
|
|
4833
|
+
"Content-Type": "application/json"
|
|
4834
|
+
},
|
|
4835
|
+
withCredentials: true
|
|
4831
4836
|
},
|
|
4832
|
-
|
|
4833
|
-
|
|
4837
|
+
"id"
|
|
4838
|
+
);
|
|
4834
4839
|
},
|
|
4835
4840
|
[env]
|
|
4836
4841
|
);
|
|
@@ -4840,11 +4845,16 @@ function useViewService() {
|
|
|
4840
4845
|
method,
|
|
4841
4846
|
with_context
|
|
4842
4847
|
};
|
|
4843
|
-
return env?.requests.post(
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
+
return env?.requests.post(
|
|
4849
|
+
"/call" /* CALL_PATH */,
|
|
4850
|
+
jsonData,
|
|
4851
|
+
{
|
|
4852
|
+
headers: {
|
|
4853
|
+
"Content-Type": "application/json"
|
|
4854
|
+
}
|
|
4855
|
+
},
|
|
4856
|
+
"id"
|
|
4857
|
+
);
|
|
4848
4858
|
},
|
|
4849
4859
|
[env]
|
|
4850
4860
|
);
|
package/dist/provider.mjs
CHANGED
|
@@ -4782,12 +4782,17 @@ function useViewService() {
|
|
|
4782
4782
|
},
|
|
4783
4783
|
with_context
|
|
4784
4784
|
};
|
|
4785
|
-
return env?.requests.post(
|
|
4786
|
-
|
|
4787
|
-
|
|
4785
|
+
return env?.requests.post(
|
|
4786
|
+
"/call" /* CALL_PATH */,
|
|
4787
|
+
jsonData,
|
|
4788
|
+
{
|
|
4789
|
+
headers: {
|
|
4790
|
+
"Content-Type": "application/json"
|
|
4791
|
+
},
|
|
4792
|
+
withCredentials: true
|
|
4788
4793
|
},
|
|
4789
|
-
|
|
4790
|
-
|
|
4794
|
+
"id"
|
|
4795
|
+
);
|
|
4791
4796
|
},
|
|
4792
4797
|
[env]
|
|
4793
4798
|
);
|
|
@@ -4797,11 +4802,16 @@ function useViewService() {
|
|
|
4797
4802
|
method,
|
|
4798
4803
|
with_context
|
|
4799
4804
|
};
|
|
4800
|
-
return env?.requests.post(
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
+
return env?.requests.post(
|
|
4806
|
+
"/call" /* CALL_PATH */,
|
|
4807
|
+
jsonData,
|
|
4808
|
+
{
|
|
4809
|
+
headers: {
|
|
4810
|
+
"Content-Type": "application/json"
|
|
4811
|
+
}
|
|
4812
|
+
},
|
|
4813
|
+
"id"
|
|
4814
|
+
);
|
|
4805
4815
|
},
|
|
4806
4816
|
[env]
|
|
4807
4817
|
);
|
package/dist/services.js
CHANGED
|
@@ -5024,12 +5024,17 @@ function useViewService() {
|
|
|
5024
5024
|
},
|
|
5025
5025
|
with_context
|
|
5026
5026
|
};
|
|
5027
|
-
return env?.requests.post(
|
|
5028
|
-
|
|
5029
|
-
|
|
5027
|
+
return env?.requests.post(
|
|
5028
|
+
"/call" /* CALL_PATH */,
|
|
5029
|
+
jsonData,
|
|
5030
|
+
{
|
|
5031
|
+
headers: {
|
|
5032
|
+
"Content-Type": "application/json"
|
|
5033
|
+
},
|
|
5034
|
+
withCredentials: true
|
|
5030
5035
|
},
|
|
5031
|
-
|
|
5032
|
-
|
|
5036
|
+
"id"
|
|
5037
|
+
);
|
|
5033
5038
|
},
|
|
5034
5039
|
[env]
|
|
5035
5040
|
);
|
|
@@ -5039,11 +5044,16 @@ function useViewService() {
|
|
|
5039
5044
|
method,
|
|
5040
5045
|
with_context
|
|
5041
5046
|
};
|
|
5042
|
-
return env?.requests.post(
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
+
return env?.requests.post(
|
|
5048
|
+
"/call" /* CALL_PATH */,
|
|
5049
|
+
jsonData,
|
|
5050
|
+
{
|
|
5051
|
+
headers: {
|
|
5052
|
+
"Content-Type": "application/json"
|
|
5053
|
+
}
|
|
5054
|
+
},
|
|
5055
|
+
"id"
|
|
5056
|
+
);
|
|
5047
5057
|
},
|
|
5048
5058
|
[env]
|
|
5049
5059
|
);
|
package/dist/services.mjs
CHANGED
|
@@ -4979,12 +4979,17 @@ function useViewService() {
|
|
|
4979
4979
|
},
|
|
4980
4980
|
with_context
|
|
4981
4981
|
};
|
|
4982
|
-
return env?.requests.post(
|
|
4983
|
-
|
|
4984
|
-
|
|
4982
|
+
return env?.requests.post(
|
|
4983
|
+
"/call" /* CALL_PATH */,
|
|
4984
|
+
jsonData,
|
|
4985
|
+
{
|
|
4986
|
+
headers: {
|
|
4987
|
+
"Content-Type": "application/json"
|
|
4988
|
+
},
|
|
4989
|
+
withCredentials: true
|
|
4985
4990
|
},
|
|
4986
|
-
|
|
4987
|
-
|
|
4991
|
+
"id"
|
|
4992
|
+
);
|
|
4988
4993
|
},
|
|
4989
4994
|
[env]
|
|
4990
4995
|
);
|
|
@@ -4994,11 +4999,16 @@ function useViewService() {
|
|
|
4994
4999
|
method,
|
|
4995
5000
|
with_context
|
|
4996
5001
|
};
|
|
4997
|
-
return env?.requests.post(
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
+
return env?.requests.post(
|
|
5003
|
+
"/call" /* CALL_PATH */,
|
|
5004
|
+
jsonData,
|
|
5005
|
+
{
|
|
5006
|
+
headers: {
|
|
5007
|
+
"Content-Type": "application/json"
|
|
5008
|
+
}
|
|
5009
|
+
},
|
|
5010
|
+
"id"
|
|
5011
|
+
);
|
|
5002
5012
|
},
|
|
5003
5013
|
[env]
|
|
5004
5014
|
);
|