@fctc/interface-logic 3.7.2 → 3.7.3

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
@@ -4726,12 +4726,17 @@ function useViewService() {
4726
4726
  client_id,
4727
4727
  scopes
4728
4728
  };
4729
- return env?.requests.post("/grant-access" /* GRANT_ACCESS */, jsonData, {
4730
- headers: {
4731
- "Content-Type": "application/json"
4729
+ return env?.requests.post(
4730
+ "/grant-access" /* GRANT_ACCESS */,
4731
+ jsonData,
4732
+ {
4733
+ headers: {
4734
+ "Content-Type": "application/json"
4735
+ },
4736
+ withCredentials: true
4732
4737
  },
4733
- withCredentials: true
4734
- });
4738
+ "id"
4739
+ );
4735
4740
  },
4736
4741
  [env]
4737
4742
  );
@@ -4743,11 +4748,16 @@ function useViewService() {
4743
4748
  token
4744
4749
  }
4745
4750
  };
4746
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4747
- headers: {
4748
- "Content-Type": "application/json"
4749
- }
4750
- });
4751
+ return env?.requests.post(
4752
+ "/call" /* CALL_PATH */,
4753
+ jsonData,
4754
+ {
4755
+ headers: {
4756
+ "Content-Type": "application/json"
4757
+ }
4758
+ },
4759
+ "id"
4760
+ );
4751
4761
  },
4752
4762
  [env]
4753
4763
  );
@@ -4757,11 +4767,16 @@ function useViewService() {
4757
4767
  method,
4758
4768
  with_context: { token }
4759
4769
  };
4760
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4761
- headers: {
4762
- "Content-Type": "application/json"
4763
- }
4764
- });
4770
+ return env?.requests.post(
4771
+ "/call" /* CALL_PATH */,
4772
+ jsonData,
4773
+ {
4774
+ headers: {
4775
+ "Content-Type": "application/json"
4776
+ }
4777
+ },
4778
+ "id"
4779
+ );
4765
4780
  },
4766
4781
  [env]
4767
4782
  );
@@ -4812,12 +4827,16 @@ function useViewService() {
4812
4827
  scope
4813
4828
  )}`;
4814
4829
  const url = `${path}?${queryString}`;
4815
- return env?.requests.get(url, {
4816
- headers: {
4817
- "Content-Type": "application/json"
4830
+ return env?.requests.get(
4831
+ url,
4832
+ {
4833
+ headers: {
4834
+ "Content-Type": "application/json"
4835
+ },
4836
+ withCredentials: true
4818
4837
  },
4819
- withCredentials: true
4820
- });
4838
+ "id"
4839
+ );
4821
4840
  },
4822
4841
  [env]
4823
4842
  );
package/dist/hooks.mjs CHANGED
@@ -4587,12 +4587,17 @@ function useViewService() {
4587
4587
  client_id,
4588
4588
  scopes
4589
4589
  };
4590
- return env?.requests.post("/grant-access" /* GRANT_ACCESS */, jsonData, {
4591
- headers: {
4592
- "Content-Type": "application/json"
4590
+ return env?.requests.post(
4591
+ "/grant-access" /* GRANT_ACCESS */,
4592
+ jsonData,
4593
+ {
4594
+ headers: {
4595
+ "Content-Type": "application/json"
4596
+ },
4597
+ withCredentials: true
4593
4598
  },
4594
- withCredentials: true
4595
- });
4599
+ "id"
4600
+ );
4596
4601
  },
4597
4602
  [env]
4598
4603
  );
@@ -4604,11 +4609,16 @@ function useViewService() {
4604
4609
  token
4605
4610
  }
4606
4611
  };
4607
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4608
- headers: {
4609
- "Content-Type": "application/json"
4610
- }
4611
- });
4612
+ return env?.requests.post(
4613
+ "/call" /* CALL_PATH */,
4614
+ jsonData,
4615
+ {
4616
+ headers: {
4617
+ "Content-Type": "application/json"
4618
+ }
4619
+ },
4620
+ "id"
4621
+ );
4612
4622
  },
4613
4623
  [env]
4614
4624
  );
@@ -4618,11 +4628,16 @@ function useViewService() {
4618
4628
  method,
4619
4629
  with_context: { token }
4620
4630
  };
4621
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4622
- headers: {
4623
- "Content-Type": "application/json"
4624
- }
4625
- });
4631
+ return env?.requests.post(
4632
+ "/call" /* CALL_PATH */,
4633
+ jsonData,
4634
+ {
4635
+ headers: {
4636
+ "Content-Type": "application/json"
4637
+ }
4638
+ },
4639
+ "id"
4640
+ );
4626
4641
  },
4627
4642
  [env]
4628
4643
  );
@@ -4673,12 +4688,16 @@ function useViewService() {
4673
4688
  scope
4674
4689
  )}`;
4675
4690
  const url = `${path}?${queryString}`;
4676
- return env?.requests.get(url, {
4677
- headers: {
4678
- "Content-Type": "application/json"
4691
+ return env?.requests.get(
4692
+ url,
4693
+ {
4694
+ headers: {
4695
+ "Content-Type": "application/json"
4696
+ },
4697
+ withCredentials: true
4679
4698
  },
4680
- withCredentials: true
4681
- });
4699
+ "id"
4700
+ );
4682
4701
  },
4683
4702
  [env]
4684
4703
  );
package/dist/provider.js CHANGED
@@ -4716,12 +4716,17 @@ function useViewService() {
4716
4716
  client_id,
4717
4717
  scopes
4718
4718
  };
4719
- return env?.requests.post("/grant-access" /* GRANT_ACCESS */, jsonData, {
4720
- headers: {
4721
- "Content-Type": "application/json"
4719
+ return env?.requests.post(
4720
+ "/grant-access" /* GRANT_ACCESS */,
4721
+ jsonData,
4722
+ {
4723
+ headers: {
4724
+ "Content-Type": "application/json"
4725
+ },
4726
+ withCredentials: true
4722
4727
  },
4723
- withCredentials: true
4724
- });
4728
+ "id"
4729
+ );
4725
4730
  },
4726
4731
  [env]
4727
4732
  );
@@ -4733,11 +4738,16 @@ function useViewService() {
4733
4738
  token
4734
4739
  }
4735
4740
  };
4736
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4737
- headers: {
4738
- "Content-Type": "application/json"
4739
- }
4740
- });
4741
+ return env?.requests.post(
4742
+ "/call" /* CALL_PATH */,
4743
+ jsonData,
4744
+ {
4745
+ headers: {
4746
+ "Content-Type": "application/json"
4747
+ }
4748
+ },
4749
+ "id"
4750
+ );
4741
4751
  },
4742
4752
  [env]
4743
4753
  );
@@ -4747,11 +4757,16 @@ function useViewService() {
4747
4757
  method,
4748
4758
  with_context: { token }
4749
4759
  };
4750
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4751
- headers: {
4752
- "Content-Type": "application/json"
4753
- }
4754
- });
4760
+ return env?.requests.post(
4761
+ "/call" /* CALL_PATH */,
4762
+ jsonData,
4763
+ {
4764
+ headers: {
4765
+ "Content-Type": "application/json"
4766
+ }
4767
+ },
4768
+ "id"
4769
+ );
4755
4770
  },
4756
4771
  [env]
4757
4772
  );
@@ -4802,12 +4817,16 @@ function useViewService() {
4802
4817
  scope
4803
4818
  )}`;
4804
4819
  const url = `${path}?${queryString}`;
4805
- return env?.requests.get(url, {
4806
- headers: {
4807
- "Content-Type": "application/json"
4820
+ return env?.requests.get(
4821
+ url,
4822
+ {
4823
+ headers: {
4824
+ "Content-Type": "application/json"
4825
+ },
4826
+ withCredentials: true
4808
4827
  },
4809
- withCredentials: true
4810
- });
4828
+ "id"
4829
+ );
4811
4830
  },
4812
4831
  [env]
4813
4832
  );
package/dist/provider.mjs CHANGED
@@ -4673,12 +4673,17 @@ function useViewService() {
4673
4673
  client_id,
4674
4674
  scopes
4675
4675
  };
4676
- return env?.requests.post("/grant-access" /* GRANT_ACCESS */, jsonData, {
4677
- headers: {
4678
- "Content-Type": "application/json"
4676
+ return env?.requests.post(
4677
+ "/grant-access" /* GRANT_ACCESS */,
4678
+ jsonData,
4679
+ {
4680
+ headers: {
4681
+ "Content-Type": "application/json"
4682
+ },
4683
+ withCredentials: true
4679
4684
  },
4680
- withCredentials: true
4681
- });
4685
+ "id"
4686
+ );
4682
4687
  },
4683
4688
  [env]
4684
4689
  );
@@ -4690,11 +4695,16 @@ function useViewService() {
4690
4695
  token
4691
4696
  }
4692
4697
  };
4693
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4694
- headers: {
4695
- "Content-Type": "application/json"
4696
- }
4697
- });
4698
+ return env?.requests.post(
4699
+ "/call" /* CALL_PATH */,
4700
+ jsonData,
4701
+ {
4702
+ headers: {
4703
+ "Content-Type": "application/json"
4704
+ }
4705
+ },
4706
+ "id"
4707
+ );
4698
4708
  },
4699
4709
  [env]
4700
4710
  );
@@ -4704,11 +4714,16 @@ function useViewService() {
4704
4714
  method,
4705
4715
  with_context: { token }
4706
4716
  };
4707
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4708
- headers: {
4709
- "Content-Type": "application/json"
4710
- }
4711
- });
4717
+ return env?.requests.post(
4718
+ "/call" /* CALL_PATH */,
4719
+ jsonData,
4720
+ {
4721
+ headers: {
4722
+ "Content-Type": "application/json"
4723
+ }
4724
+ },
4725
+ "id"
4726
+ );
4712
4727
  },
4713
4728
  [env]
4714
4729
  );
@@ -4759,12 +4774,16 @@ function useViewService() {
4759
4774
  scope
4760
4775
  )}`;
4761
4776
  const url = `${path}?${queryString}`;
4762
- return env?.requests.get(url, {
4763
- headers: {
4764
- "Content-Type": "application/json"
4777
+ return env?.requests.get(
4778
+ url,
4779
+ {
4780
+ headers: {
4781
+ "Content-Type": "application/json"
4782
+ },
4783
+ withCredentials: true
4765
4784
  },
4766
- withCredentials: true
4767
- });
4785
+ "id"
4786
+ );
4768
4787
  },
4769
4788
  [env]
4770
4789
  );
package/dist/services.js CHANGED
@@ -4915,12 +4915,17 @@ function useViewService() {
4915
4915
  client_id,
4916
4916
  scopes
4917
4917
  };
4918
- return env?.requests.post("/grant-access" /* GRANT_ACCESS */, jsonData, {
4919
- headers: {
4920
- "Content-Type": "application/json"
4918
+ return env?.requests.post(
4919
+ "/grant-access" /* GRANT_ACCESS */,
4920
+ jsonData,
4921
+ {
4922
+ headers: {
4923
+ "Content-Type": "application/json"
4924
+ },
4925
+ withCredentials: true
4921
4926
  },
4922
- withCredentials: true
4923
- });
4927
+ "id"
4928
+ );
4924
4929
  },
4925
4930
  [env]
4926
4931
  );
@@ -4932,11 +4937,16 @@ function useViewService() {
4932
4937
  token
4933
4938
  }
4934
4939
  };
4935
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4936
- headers: {
4937
- "Content-Type": "application/json"
4938
- }
4939
- });
4940
+ return env?.requests.post(
4941
+ "/call" /* CALL_PATH */,
4942
+ jsonData,
4943
+ {
4944
+ headers: {
4945
+ "Content-Type": "application/json"
4946
+ }
4947
+ },
4948
+ "id"
4949
+ );
4940
4950
  },
4941
4951
  [env]
4942
4952
  );
@@ -4946,11 +4956,16 @@ function useViewService() {
4946
4956
  method,
4947
4957
  with_context: { token }
4948
4958
  };
4949
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4950
- headers: {
4951
- "Content-Type": "application/json"
4952
- }
4953
- });
4959
+ return env?.requests.post(
4960
+ "/call" /* CALL_PATH */,
4961
+ jsonData,
4962
+ {
4963
+ headers: {
4964
+ "Content-Type": "application/json"
4965
+ }
4966
+ },
4967
+ "id"
4968
+ );
4954
4969
  },
4955
4970
  [env]
4956
4971
  );
@@ -5001,12 +5016,16 @@ function useViewService() {
5001
5016
  scope
5002
5017
  )}`;
5003
5018
  const url = `${path}?${queryString}`;
5004
- return env?.requests.get(url, {
5005
- headers: {
5006
- "Content-Type": "application/json"
5019
+ return env?.requests.get(
5020
+ url,
5021
+ {
5022
+ headers: {
5023
+ "Content-Type": "application/json"
5024
+ },
5025
+ withCredentials: true
5007
5026
  },
5008
- withCredentials: true
5009
- });
5027
+ "id"
5028
+ );
5010
5029
  },
5011
5030
  [env]
5012
5031
  );
package/dist/services.mjs CHANGED
@@ -4870,12 +4870,17 @@ function useViewService() {
4870
4870
  client_id,
4871
4871
  scopes
4872
4872
  };
4873
- return env?.requests.post("/grant-access" /* GRANT_ACCESS */, jsonData, {
4874
- headers: {
4875
- "Content-Type": "application/json"
4873
+ return env?.requests.post(
4874
+ "/grant-access" /* GRANT_ACCESS */,
4875
+ jsonData,
4876
+ {
4877
+ headers: {
4878
+ "Content-Type": "application/json"
4879
+ },
4880
+ withCredentials: true
4876
4881
  },
4877
- withCredentials: true
4878
- });
4882
+ "id"
4883
+ );
4879
4884
  },
4880
4885
  [env]
4881
4886
  );
@@ -4887,11 +4892,16 @@ function useViewService() {
4887
4892
  token
4888
4893
  }
4889
4894
  };
4890
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4891
- headers: {
4892
- "Content-Type": "application/json"
4893
- }
4894
- });
4895
+ return env?.requests.post(
4896
+ "/call" /* CALL_PATH */,
4897
+ jsonData,
4898
+ {
4899
+ headers: {
4900
+ "Content-Type": "application/json"
4901
+ }
4902
+ },
4903
+ "id"
4904
+ );
4895
4905
  },
4896
4906
  [env]
4897
4907
  );
@@ -4901,11 +4911,16 @@ function useViewService() {
4901
4911
  method,
4902
4912
  with_context: { token }
4903
4913
  };
4904
- return env?.requests.post("/call" /* CALL_PATH */, jsonData, {
4905
- headers: {
4906
- "Content-Type": "application/json"
4907
- }
4908
- });
4914
+ return env?.requests.post(
4915
+ "/call" /* CALL_PATH */,
4916
+ jsonData,
4917
+ {
4918
+ headers: {
4919
+ "Content-Type": "application/json"
4920
+ }
4921
+ },
4922
+ "id"
4923
+ );
4909
4924
  },
4910
4925
  [env]
4911
4926
  );
@@ -4956,12 +4971,16 @@ function useViewService() {
4956
4971
  scope
4957
4972
  )}`;
4958
4973
  const url = `${path}?${queryString}`;
4959
- return env?.requests.get(url, {
4960
- headers: {
4961
- "Content-Type": "application/json"
4974
+ return env?.requests.get(
4975
+ url,
4976
+ {
4977
+ headers: {
4978
+ "Content-Type": "application/json"
4979
+ },
4980
+ withCredentials: true
4962
4981
  },
4963
- withCredentials: true
4964
- });
4982
+ "id"
4983
+ );
4965
4984
  },
4966
4985
  [env]
4967
4986
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/interface-logic",
3
- "version": "3.7.2",
3
+ "version": "3.7.3",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",