@caraer/client 2.0.385 → 2.0.388
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/api.ts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/esm/api.d.ts +1 -1
- package/docs/RecordRelationRequestDTO.md +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3961,7 +3961,7 @@ export interface RecordRelationRequestDTO {
|
|
|
3961
3961
|
*/
|
|
3962
3962
|
'edgeProperties'?: { [key: string]: any | null; };
|
|
3963
3963
|
/**
|
|
3964
|
-
* Nested record to create
|
|
3964
|
+
* Nested record to create or update (by uuid or unique properties) before linking
|
|
3965
3965
|
*/
|
|
3966
3966
|
'record'?: RecordDTO;
|
|
3967
3967
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -3974,7 +3974,7 @@ export interface RecordRelationRequestDTO {
|
|
|
3974
3974
|
[key: string]: any | null;
|
|
3975
3975
|
};
|
|
3976
3976
|
/**
|
|
3977
|
-
* Nested record to create
|
|
3977
|
+
* Nested record to create or update (by uuid or unique properties) before linking
|
|
3978
3978
|
*/
|
|
3979
3979
|
'record'?: RecordDTO;
|
|
3980
3980
|
/**
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3974,7 +3974,7 @@ export interface RecordRelationRequestDTO {
|
|
|
3974
3974
|
[key: string]: any | null;
|
|
3975
3975
|
};
|
|
3976
3976
|
/**
|
|
3977
|
-
* Nested record to create
|
|
3977
|
+
* Nested record to create or update (by uuid or unique properties) before linking
|
|
3978
3978
|
*/
|
|
3979
3979
|
'record'?: RecordDTO;
|
|
3980
3980
|
/**
|
|
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**uuid** | **string** | UUID of an existing record to link to | [optional] [default to undefined]
|
|
11
11
|
**properties** | **{ [key: string]: any | null; }** | Properties to update on the existing record referenced by uuid before linking | [optional] [default to undefined]
|
|
12
12
|
**edgeProperties** | **{ [key: string]: any | null; }** | Values for properties declared on the relation schema, stored on the relation edge itself (not on either record). Omit to leave existing edge values untouched; a null value clears a key. | [optional] [default to undefined]
|
|
13
|
-
**record** | [**RecordDTO**](RecordDTO.md) | Nested record to create
|
|
13
|
+
**record** | [**RecordDTO**](RecordDTO.md) | Nested record to create or update (by uuid or unique properties) before linking | [optional] [default to undefined]
|
|
14
14
|
**objectName** | **string** | Object name for nested record create when relation allows multiple target types | [optional] [default to undefined]
|
|
15
15
|
**primary** | **boolean** | When true, marks this relation edge as primary | [optional] [default to undefined]
|
|
16
16
|
**merge** | **boolean** | When true, MERGE relation edge instead of CREATE | [optional] [default to undefined]
|