From 86e7d5cf82ed0290d466bc7995bf801e3f55e84e Mon Sep 17 00:00:00 2001 From: serpico1899 Date: Mon, 8 Jan 2024 14:25:58 +0330 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=93=9D=20improve=20schemas=20page=20d?= =?UTF-8?q?ocument?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/src/api/schemas/schemas_fn.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pages/src/api/schemas/schemas_fn.md b/pages/src/api/schemas/schemas_fn.md index e69de29b..11452128 100644 --- a/pages/src/api/schemas/schemas_fn.md +++ b/pages/src/api/schemas/schemas_fn.md @@ -0,0 +1,7 @@ +- [`schemaFns`](./schemaFns/schemaFns_fn.md) +- [`mainRelationsFns`](./mainRelationsFns/mainRelations_Fns.md) +- [`relatedRelationFns`](./relatedRelationFns/relatedRelation_Fns.md) +- [`getRelatedRelations`](./relatedRelationFns/getRelatedRelations_fn.md) +- [`pureFns`](./pureFns/pure_Fns.md) +- [`relationFns`](./relationFns/relation_Fns.md) +- [`selectStructFns`](./selectStructFns/selectStructFns_Fns.md) From fa9663111175566f619363be0dc7ba63dce2dffb Mon Sep 17 00:00:00 2001 From: serpico1899 Date: Thu, 11 Jan 2024 13:02:35 +0330 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=93=9D=20add=20Detail=20type=20docume?= =?UTF-8?q?nt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Services/Acts/Act/ActFn/TLesanBody/Details.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody/Details.md diff --git a/pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody/Details.md b/pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody/Details.md new file mode 100644 index 00000000..c3298b7e --- /dev/null +++ b/pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody/Details.md @@ -0,0 +1,10 @@ +# Details + +```ts +export interface Details { + set: Record; + get: Record; +} +``` + +_details of input is include set , get_ From c88fc4709b3f6fff5c62360104d290d2cc7f54df Mon Sep 17 00:00:00 2001 From: serpico1899 Date: Thu, 11 Jan 2024 13:16:05 +0330 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=93=9D=20add=20TLesanBody=20Type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Services/Acts/Act/ActFn/TLesanBody.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody.md diff --git a/pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody.md b/pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody.md new file mode 100644 index 00000000..3a07bd60 --- /dev/null +++ b/pages/src/api/types/Services/Acts/Act/ActFn/TLesanBody.md @@ -0,0 +1,19 @@ +# TLesanBody + +```ts +export interface TLesanBody { + service?: string; + model: string; + act: string; + details: Details; +} +``` + +_interface is type of input of Actions_ + +

Types

+
+  
+    Details
+  
+
From 4a98d2cd0defc746a7f58b499dd2839fdb3731f8 Mon Sep 17 00:00:00 2001 From: serpico1899 Date: Thu, 11 Jan 2024 13:55:25 +0330 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=93=9D=20add=20ActFn=20Type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/src/api/types/Services/Acts/Act/ActFn.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pages/src/api/types/Services/Acts/Act/ActFn.md diff --git a/pages/src/api/types/Services/Acts/Act/ActFn.md b/pages/src/api/types/Services/Acts/Act/ActFn.md new file mode 100644 index 00000000..63acf322 --- /dev/null +++ b/pages/src/api/types/Services/Acts/Act/ActFn.md @@ -0,0 +1,14 @@ +# ActFn + +```ts +export type ActFn = (body: TLesanBody) => any; +``` + +_type of ActFn_ + +

Parameters

+
+  
+    body: TLesanBody
+  
+
From 1d94658af2f8bec8f6807ca80c3843370141f37f Mon Sep 17 00:00:00 2001 From: serpico1899 Date: Thu, 11 Jan 2024 14:04:56 +0330 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=93=9D=20add=20Act=20Type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/src/api/types/Services/Acts/Act.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pages/src/api/types/Services/Acts/Act.md b/pages/src/api/types/Services/Acts/Act.md index 61c77a99..24b484d7 100644 --- a/pages/src/api/types/Services/Acts/Act.md +++ b/pages/src/api/types/Services/Acts/Act.md @@ -10,8 +10,13 @@ export interface Act { } ``` - *interface of Act is include of two features: validator of function and fn* +_interface of Act is include of two features: validator of function and fn_ +
-
- -- [`Struct`](https://docs.superstructjs.org/) +

Types

+
+  
+    Struct
+    ActFn
+  
+