@epilot/entity-client 6.11.0-rc.1 → 6.11.0-rc.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/openapi.d.ts +12 -22
- package/dist/openapi.json +13 -24
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -4583,15 +4583,18 @@ declare namespace Components {
|
|
|
4583
4583
|
* [
|
|
4584
4584
|
* {
|
|
4585
4585
|
* "id": "portal_user",
|
|
4586
|
-
* "schema": "portal_user"
|
|
4586
|
+
* "schema": "portal_user",
|
|
4587
|
+
* "cardinality": "one"
|
|
4587
4588
|
* },
|
|
4588
4589
|
* {
|
|
4589
4590
|
* "id": "contact",
|
|
4590
|
-
* "schema": "contact"
|
|
4591
|
+
* "schema": "contact",
|
|
4592
|
+
* "cardinality": "one"
|
|
4591
4593
|
* },
|
|
4592
4594
|
* {
|
|
4593
|
-
* "id": "
|
|
4594
|
-
* "schema": "account"
|
|
4595
|
+
* "id": "billing_accounts",
|
|
4596
|
+
* "schema": "account",
|
|
4597
|
+
* "cardinality": "many"
|
|
4595
4598
|
* }
|
|
4596
4599
|
* ]
|
|
4597
4600
|
*/
|
|
@@ -4602,13 +4605,11 @@ declare namespace Components {
|
|
|
4602
4605
|
* [
|
|
4603
4606
|
* {
|
|
4604
4607
|
* "from": "portal_user",
|
|
4605
|
-
* "to": "contact"
|
|
4606
|
-
* "cardinality": "one"
|
|
4608
|
+
* "to": "contact"
|
|
4607
4609
|
* },
|
|
4608
4610
|
* {
|
|
4609
4611
|
* "from": "contact",
|
|
4610
|
-
* "to": "
|
|
4611
|
-
* "cardinality": "many"
|
|
4612
|
+
* "to": "billing_accounts"
|
|
4612
4613
|
* }
|
|
4613
4614
|
* ]
|
|
4614
4615
|
*/
|
|
@@ -4627,15 +4628,6 @@ declare namespace Components {
|
|
|
4627
4628
|
* billing_account
|
|
4628
4629
|
*/
|
|
4629
4630
|
to: string;
|
|
4630
|
-
/**
|
|
4631
|
-
* Cardinality of the relationship:
|
|
4632
|
-
* - "one": Take the first related entity only
|
|
4633
|
-
* - "many": Take all related entities
|
|
4634
|
-
*
|
|
4635
|
-
* example:
|
|
4636
|
-
* one
|
|
4637
|
-
*/
|
|
4638
|
-
cardinality: "one" | "many";
|
|
4639
4631
|
}
|
|
4640
4632
|
export interface GraphNode {
|
|
4641
4633
|
/**
|
|
@@ -4680,7 +4672,7 @@ declare namespace Components {
|
|
|
4680
4672
|
* "contact": [
|
|
4681
4673
|
* "550e8400-e29b-41d4-a716-446655440002"
|
|
4682
4674
|
* ],
|
|
4683
|
-
* "
|
|
4675
|
+
* "billing_accounts": [
|
|
4684
4676
|
* "550e8400-e29b-41d4-a716-446655440003",
|
|
4685
4677
|
* "550e8400-e29b-41d4-a716-446655440004"
|
|
4686
4678
|
* ]
|
|
@@ -4774,13 +4766,11 @@ declare namespace Components {
|
|
|
4774
4766
|
* [
|
|
4775
4767
|
* {
|
|
4776
4768
|
* "from": "portal_user",
|
|
4777
|
-
* "to": "contact"
|
|
4778
|
-
* "cardinality": "one"
|
|
4769
|
+
* "to": "contact"
|
|
4779
4770
|
* },
|
|
4780
4771
|
* {
|
|
4781
4772
|
* "from": "contact",
|
|
4782
|
-
* "to": "
|
|
4783
|
-
* "cardinality": "many"
|
|
4773
|
+
* "to": "billing_accounts"
|
|
4784
4774
|
* }
|
|
4785
4775
|
* ]
|
|
4786
4776
|
*/
|
package/dist/openapi.json
CHANGED
|
@@ -7940,15 +7940,18 @@
|
|
|
7940
7940
|
"example": [
|
|
7941
7941
|
{
|
|
7942
7942
|
"id": "portal_user",
|
|
7943
|
-
"schema": "portal_user"
|
|
7943
|
+
"schema": "portal_user",
|
|
7944
|
+
"cardinality": "one"
|
|
7944
7945
|
},
|
|
7945
7946
|
{
|
|
7946
7947
|
"id": "contact",
|
|
7947
|
-
"schema": "contact"
|
|
7948
|
+
"schema": "contact",
|
|
7949
|
+
"cardinality": "one"
|
|
7948
7950
|
},
|
|
7949
7951
|
{
|
|
7950
|
-
"id": "
|
|
7951
|
-
"schema": "account"
|
|
7952
|
+
"id": "billing_accounts",
|
|
7953
|
+
"schema": "account",
|
|
7954
|
+
"cardinality": "many"
|
|
7952
7955
|
}
|
|
7953
7956
|
]
|
|
7954
7957
|
},
|
|
@@ -7961,13 +7964,11 @@
|
|
|
7961
7964
|
"example": [
|
|
7962
7965
|
{
|
|
7963
7966
|
"from": "portal_user",
|
|
7964
|
-
"to": "contact"
|
|
7965
|
-
"cardinality": "one"
|
|
7967
|
+
"to": "contact"
|
|
7966
7968
|
},
|
|
7967
7969
|
{
|
|
7968
7970
|
"from": "contact",
|
|
7969
|
-
"to": "
|
|
7970
|
-
"cardinality": "many"
|
|
7971
|
+
"to": "billing_accounts"
|
|
7971
7972
|
}
|
|
7972
7973
|
]
|
|
7973
7974
|
}
|
|
@@ -8005,8 +8006,7 @@
|
|
|
8005
8006
|
"type": "object",
|
|
8006
8007
|
"required": [
|
|
8007
8008
|
"from",
|
|
8008
|
-
"to"
|
|
8009
|
-
"cardinality"
|
|
8009
|
+
"to"
|
|
8010
8010
|
],
|
|
8011
8011
|
"properties": {
|
|
8012
8012
|
"from": {
|
|
@@ -8018,15 +8018,6 @@
|
|
|
8018
8018
|
"type": "string",
|
|
8019
8019
|
"description": "Target node ID",
|
|
8020
8020
|
"example": "billing_account"
|
|
8021
|
-
},
|
|
8022
|
-
"cardinality": {
|
|
8023
|
-
"type": "string",
|
|
8024
|
-
"enum": [
|
|
8025
|
-
"one",
|
|
8026
|
-
"many"
|
|
8027
|
-
],
|
|
8028
|
-
"description": "Cardinality of the relationship:\n- \"one\": Take the first related entity only\n- \"many\": Take all related entities\n",
|
|
8029
|
-
"example": "one"
|
|
8030
8021
|
}
|
|
8031
8022
|
}
|
|
8032
8023
|
},
|
|
@@ -8049,7 +8040,7 @@
|
|
|
8049
8040
|
"contact": [
|
|
8050
8041
|
"550e8400-e29b-41d4-a716-446655440002"
|
|
8051
8042
|
],
|
|
8052
|
-
"
|
|
8043
|
+
"billing_accounts": [
|
|
8053
8044
|
"550e8400-e29b-41d4-a716-446655440003",
|
|
8054
8045
|
"550e8400-e29b-41d4-a716-446655440004"
|
|
8055
8046
|
]
|
|
@@ -8081,13 +8072,11 @@
|
|
|
8081
8072
|
"example": [
|
|
8082
8073
|
{
|
|
8083
8074
|
"from": "portal_user",
|
|
8084
|
-
"to": "contact"
|
|
8085
|
-
"cardinality": "one"
|
|
8075
|
+
"to": "contact"
|
|
8086
8076
|
},
|
|
8087
8077
|
{
|
|
8088
8078
|
"from": "contact",
|
|
8089
|
-
"to": "
|
|
8090
|
-
"cardinality": "many"
|
|
8079
|
+
"to": "billing_accounts"
|
|
8091
8080
|
}
|
|
8092
8081
|
]
|
|
8093
8082
|
}
|