@caraer/client 2.0.386 → 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 CHANGED
@@ -2957,9 +2957,9 @@ export interface ModelRecord {
2957
2957
  'deleted'?: boolean;
2958
2958
  'complete'?: boolean;
2959
2959
  'uuid': string;
2960
- 'user'?: PublicUserDTO;
2961
2960
  'properties'?: Array<FilledProperty>;
2962
2961
  'objects'?: { [key: string]: any | null; };
2962
+ 'user'?: PublicUserDTO;
2963
2963
  }
2964
2964
  export interface MultiLine extends PropertyFormat {
2965
2965
  }
@@ -3961,7 +3961,7 @@ export interface RecordRelationRequestDTO {
3961
3961
  */
3962
3962
  'edgeProperties'?: { [key: string]: any | null; };
3963
3963
  /**
3964
- * Nested record to create before linking, or update first when record.uuid is provided
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
@@ -2950,11 +2950,11 @@ export interface ModelRecord {
2950
2950
  'deleted'?: boolean;
2951
2951
  'complete'?: boolean;
2952
2952
  'uuid': string;
2953
- 'user'?: PublicUserDTO;
2954
2953
  'properties'?: Array<FilledProperty>;
2955
2954
  'objects'?: {
2956
2955
  [key: string]: any | null;
2957
2956
  };
2957
+ 'user'?: PublicUserDTO;
2958
2958
  }
2959
2959
  export interface MultiLine extends PropertyFormat {
2960
2960
  }
@@ -3974,7 +3974,7 @@ export interface RecordRelationRequestDTO {
3974
3974
  [key: string]: any | null;
3975
3975
  };
3976
3976
  /**
3977
- * Nested record to create before linking, or update first when record.uuid is provided
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
@@ -2950,11 +2950,11 @@ export interface ModelRecord {
2950
2950
  'deleted'?: boolean;
2951
2951
  'complete'?: boolean;
2952
2952
  'uuid': string;
2953
- 'user'?: PublicUserDTO;
2954
2953
  'properties'?: Array<FilledProperty>;
2955
2954
  'objects'?: {
2956
2955
  [key: string]: any | null;
2957
2956
  };
2957
+ 'user'?: PublicUserDTO;
2958
2958
  }
2959
2959
  export interface MultiLine extends PropertyFormat {
2960
2960
  }
@@ -3974,7 +3974,7 @@ export interface RecordRelationRequestDTO {
3974
3974
  [key: string]: any | null;
3975
3975
  };
3976
3976
  /**
3977
- * Nested record to create before linking, or update first when record.uuid is provided
3977
+ * Nested record to create or update (by uuid or unique properties) before linking
3978
3978
  */
3979
3979
  'record'?: RecordDTO;
3980
3980
  /**
package/docs/Record.md CHANGED
@@ -17,9 +17,9 @@ Name | Type | Description | Notes
17
17
  **deleted** | **boolean** | | [optional] [default to undefined]
18
18
  **complete** | **boolean** | | [optional] [default to undefined]
19
19
  **uuid** | **string** | | [default to undefined]
20
- **user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
21
20
  **properties** | [**Array&lt;FilledProperty&gt;**](FilledProperty.md) | | [optional] [default to undefined]
22
21
  **objects** | **{ [key: string]: any | null; }** | | [optional] [default to undefined]
22
+ **user** | [**PublicUserDTO**](PublicUserDTO.md) | | [optional] [default to undefined]
23
23
 
24
24
  ## Example
25
25
 
@@ -39,9 +39,9 @@ const instance: ModelRecord = {
39
39
  deleted,
40
40
  complete,
41
41
  uuid,
42
- user,
43
42
  properties,
44
43
  objects,
44
+ user,
45
45
  };
46
46
  ```
47
47
 
@@ -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 before linking, or update first when record.uuid is provided | [optional] [default to undefined]
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]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caraer/client",
3
- "version": "2.0.386",
3
+ "version": "2.0.388",
4
4
  "description": "Generated TypeScript client for the Caraer API",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {