@fctc/interface-logic 3.7.0 → 3.7.2
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
|
@@ -4780,11 +4780,16 @@ function useViewService() {
|
|
|
4780
4780
|
token
|
|
4781
4781
|
}
|
|
4782
4782
|
};
|
|
4783
|
-
return env?.requests.post(
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4783
|
+
return env?.requests.post(
|
|
4784
|
+
"/call" /* CALL_PATH */,
|
|
4785
|
+
jsonData,
|
|
4786
|
+
{
|
|
4787
|
+
headers: {
|
|
4788
|
+
"Content-Type": "application/json"
|
|
4789
|
+
}
|
|
4790
|
+
},
|
|
4791
|
+
"id"
|
|
4792
|
+
);
|
|
4788
4793
|
},
|
|
4789
4794
|
[env]
|
|
4790
4795
|
);
|
|
@@ -4835,12 +4840,17 @@ function useViewService() {
|
|
|
4835
4840
|
},
|
|
4836
4841
|
with_context
|
|
4837
4842
|
};
|
|
4838
|
-
return env?.requests.post(
|
|
4839
|
-
|
|
4840
|
-
|
|
4843
|
+
return env?.requests.post(
|
|
4844
|
+
"/call" /* CALL_PATH */,
|
|
4845
|
+
jsonData,
|
|
4846
|
+
{
|
|
4847
|
+
headers: {
|
|
4848
|
+
"Content-Type": "application/json"
|
|
4849
|
+
},
|
|
4850
|
+
withCredentials: true
|
|
4841
4851
|
},
|
|
4842
|
-
|
|
4843
|
-
|
|
4852
|
+
"id"
|
|
4853
|
+
);
|
|
4844
4854
|
},
|
|
4845
4855
|
[env]
|
|
4846
4856
|
);
|
package/dist/hooks.mjs
CHANGED
|
@@ -4641,11 +4641,16 @@ function useViewService() {
|
|
|
4641
4641
|
token
|
|
4642
4642
|
}
|
|
4643
4643
|
};
|
|
4644
|
-
return env?.requests.post(
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4644
|
+
return env?.requests.post(
|
|
4645
|
+
"/call" /* CALL_PATH */,
|
|
4646
|
+
jsonData,
|
|
4647
|
+
{
|
|
4648
|
+
headers: {
|
|
4649
|
+
"Content-Type": "application/json"
|
|
4650
|
+
}
|
|
4651
|
+
},
|
|
4652
|
+
"id"
|
|
4653
|
+
);
|
|
4649
4654
|
},
|
|
4650
4655
|
[env]
|
|
4651
4656
|
);
|
|
@@ -4696,12 +4701,17 @@ function useViewService() {
|
|
|
4696
4701
|
},
|
|
4697
4702
|
with_context
|
|
4698
4703
|
};
|
|
4699
|
-
return env?.requests.post(
|
|
4700
|
-
|
|
4701
|
-
|
|
4704
|
+
return env?.requests.post(
|
|
4705
|
+
"/call" /* CALL_PATH */,
|
|
4706
|
+
jsonData,
|
|
4707
|
+
{
|
|
4708
|
+
headers: {
|
|
4709
|
+
"Content-Type": "application/json"
|
|
4710
|
+
},
|
|
4711
|
+
withCredentials: true
|
|
4702
4712
|
},
|
|
4703
|
-
|
|
4704
|
-
|
|
4713
|
+
"id"
|
|
4714
|
+
);
|
|
4705
4715
|
},
|
|
4706
4716
|
[env]
|
|
4707
4717
|
);
|
package/dist/provider.js
CHANGED
|
@@ -4770,11 +4770,16 @@ function useViewService() {
|
|
|
4770
4770
|
token
|
|
4771
4771
|
}
|
|
4772
4772
|
};
|
|
4773
|
-
return env?.requests.post(
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4773
|
+
return env?.requests.post(
|
|
4774
|
+
"/call" /* CALL_PATH */,
|
|
4775
|
+
jsonData,
|
|
4776
|
+
{
|
|
4777
|
+
headers: {
|
|
4778
|
+
"Content-Type": "application/json"
|
|
4779
|
+
}
|
|
4780
|
+
},
|
|
4781
|
+
"id"
|
|
4782
|
+
);
|
|
4778
4783
|
},
|
|
4779
4784
|
[env]
|
|
4780
4785
|
);
|
|
@@ -4825,12 +4830,17 @@ function useViewService() {
|
|
|
4825
4830
|
},
|
|
4826
4831
|
with_context
|
|
4827
4832
|
};
|
|
4828
|
-
return env?.requests.post(
|
|
4829
|
-
|
|
4830
|
-
|
|
4833
|
+
return env?.requests.post(
|
|
4834
|
+
"/call" /* CALL_PATH */,
|
|
4835
|
+
jsonData,
|
|
4836
|
+
{
|
|
4837
|
+
headers: {
|
|
4838
|
+
"Content-Type": "application/json"
|
|
4839
|
+
},
|
|
4840
|
+
withCredentials: true
|
|
4831
4841
|
},
|
|
4832
|
-
|
|
4833
|
-
|
|
4842
|
+
"id"
|
|
4843
|
+
);
|
|
4834
4844
|
},
|
|
4835
4845
|
[env]
|
|
4836
4846
|
);
|
package/dist/provider.mjs
CHANGED
|
@@ -4727,11 +4727,16 @@ function useViewService() {
|
|
|
4727
4727
|
token
|
|
4728
4728
|
}
|
|
4729
4729
|
};
|
|
4730
|
-
return env?.requests.post(
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4730
|
+
return env?.requests.post(
|
|
4731
|
+
"/call" /* CALL_PATH */,
|
|
4732
|
+
jsonData,
|
|
4733
|
+
{
|
|
4734
|
+
headers: {
|
|
4735
|
+
"Content-Type": "application/json"
|
|
4736
|
+
}
|
|
4737
|
+
},
|
|
4738
|
+
"id"
|
|
4739
|
+
);
|
|
4735
4740
|
},
|
|
4736
4741
|
[env]
|
|
4737
4742
|
);
|
|
@@ -4782,12 +4787,17 @@ function useViewService() {
|
|
|
4782
4787
|
},
|
|
4783
4788
|
with_context
|
|
4784
4789
|
};
|
|
4785
|
-
return env?.requests.post(
|
|
4786
|
-
|
|
4787
|
-
|
|
4790
|
+
return env?.requests.post(
|
|
4791
|
+
"/call" /* CALL_PATH */,
|
|
4792
|
+
jsonData,
|
|
4793
|
+
{
|
|
4794
|
+
headers: {
|
|
4795
|
+
"Content-Type": "application/json"
|
|
4796
|
+
},
|
|
4797
|
+
withCredentials: true
|
|
4788
4798
|
},
|
|
4789
|
-
|
|
4790
|
-
|
|
4799
|
+
"id"
|
|
4800
|
+
);
|
|
4791
4801
|
},
|
|
4792
4802
|
[env]
|
|
4793
4803
|
);
|
package/dist/services.js
CHANGED
|
@@ -4969,11 +4969,16 @@ function useViewService() {
|
|
|
4969
4969
|
token
|
|
4970
4970
|
}
|
|
4971
4971
|
};
|
|
4972
|
-
return env?.requests.post(
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4972
|
+
return env?.requests.post(
|
|
4973
|
+
"/call" /* CALL_PATH */,
|
|
4974
|
+
jsonData,
|
|
4975
|
+
{
|
|
4976
|
+
headers: {
|
|
4977
|
+
"Content-Type": "application/json"
|
|
4978
|
+
}
|
|
4979
|
+
},
|
|
4980
|
+
"id"
|
|
4981
|
+
);
|
|
4977
4982
|
},
|
|
4978
4983
|
[env]
|
|
4979
4984
|
);
|
|
@@ -5024,12 +5029,17 @@ function useViewService() {
|
|
|
5024
5029
|
},
|
|
5025
5030
|
with_context
|
|
5026
5031
|
};
|
|
5027
|
-
return env?.requests.post(
|
|
5028
|
-
|
|
5029
|
-
|
|
5032
|
+
return env?.requests.post(
|
|
5033
|
+
"/call" /* CALL_PATH */,
|
|
5034
|
+
jsonData,
|
|
5035
|
+
{
|
|
5036
|
+
headers: {
|
|
5037
|
+
"Content-Type": "application/json"
|
|
5038
|
+
},
|
|
5039
|
+
withCredentials: true
|
|
5030
5040
|
},
|
|
5031
|
-
|
|
5032
|
-
|
|
5041
|
+
"id"
|
|
5042
|
+
);
|
|
5033
5043
|
},
|
|
5034
5044
|
[env]
|
|
5035
5045
|
);
|
package/dist/services.mjs
CHANGED
|
@@ -4924,11 +4924,16 @@ function useViewService() {
|
|
|
4924
4924
|
token
|
|
4925
4925
|
}
|
|
4926
4926
|
};
|
|
4927
|
-
return env?.requests.post(
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4927
|
+
return env?.requests.post(
|
|
4928
|
+
"/call" /* CALL_PATH */,
|
|
4929
|
+
jsonData,
|
|
4930
|
+
{
|
|
4931
|
+
headers: {
|
|
4932
|
+
"Content-Type": "application/json"
|
|
4933
|
+
}
|
|
4934
|
+
},
|
|
4935
|
+
"id"
|
|
4936
|
+
);
|
|
4932
4937
|
},
|
|
4933
4938
|
[env]
|
|
4934
4939
|
);
|
|
@@ -4979,12 +4984,17 @@ function useViewService() {
|
|
|
4979
4984
|
},
|
|
4980
4985
|
with_context
|
|
4981
4986
|
};
|
|
4982
|
-
return env?.requests.post(
|
|
4983
|
-
|
|
4984
|
-
|
|
4987
|
+
return env?.requests.post(
|
|
4988
|
+
"/call" /* CALL_PATH */,
|
|
4989
|
+
jsonData,
|
|
4990
|
+
{
|
|
4991
|
+
headers: {
|
|
4992
|
+
"Content-Type": "application/json"
|
|
4993
|
+
},
|
|
4994
|
+
withCredentials: true
|
|
4985
4995
|
},
|
|
4986
|
-
|
|
4987
|
-
|
|
4996
|
+
"id"
|
|
4997
|
+
);
|
|
4988
4998
|
},
|
|
4989
4999
|
[env]
|
|
4990
5000
|
);
|