@epilot/entity-client 7.1.1 → 7.1.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 CHANGED
@@ -3728,6 +3728,10 @@ declare namespace Components {
3728
3728
  */
3729
3729
  attributes: Attribute[];
3730
3730
  _purpose?: string[];
3731
+ /**
3732
+ * Manifest ID used to create the schema
3733
+ */
3734
+ _manifest?: string /* uuid */[] | null;
3731
3735
  explicit_search_mappings?: /**
3732
3736
  * Advanced: explicit Elasticsearch index mapping definitions for entity data
3733
3737
  *
@@ -4120,6 +4124,10 @@ declare namespace Components {
4120
4124
  */
4121
4125
  attributes: Attribute[];
4122
4126
  _purpose?: string[];
4127
+ /**
4128
+ * Manifest ID used to create the schema
4129
+ */
4130
+ _manifest?: string /* uuid */[] | null;
4123
4131
  explicit_search_mappings?: /**
4124
4132
  * Advanced: explicit Elasticsearch index mapping definitions for entity data
4125
4133
  *
@@ -4805,6 +4813,12 @@ declare namespace Components {
4805
4813
  */
4806
4814
  enable_description?: boolean;
4807
4815
  default_access_control?: "public-read" | "private";
4816
+ /**
4817
+ * The maximum file size in bytes. Used to derive file_size and file_size_unit in the UI.
4818
+ * example:
4819
+ * 5000000
4820
+ */
4821
+ file_size_bytes?: number;
4808
4822
  }
4809
4823
  export interface GenerateEntityTableAIFiltersRequest {
4810
4824
  /**
@@ -9702,15 +9716,38 @@ declare namespace Components {
9702
9716
  * Whether this column is required for each row
9703
9717
  */
9704
9718
  required?: boolean;
9719
+ /**
9720
+ * When true, the row is rendered in bold (only applies in transposed mode)
9721
+ */
9722
+ bold?: boolean;
9705
9723
  }[];
9706
9724
  /**
9707
9725
  * Minimum number of rows required
9708
9726
  */
9709
9727
  min_rows?: number;
9710
9728
  /**
9711
- * Maximum number of rows allowed
9729
+ * Maximum number of rows allowed (or maximum periods when transposed)
9712
9730
  */
9713
9731
  max_rows?: number;
9732
+ /**
9733
+ * Enable transposed layout where rows become metrics and columns become periods
9734
+ */
9735
+ transposed?: boolean;
9736
+ /**
9737
+ * Configuration for column headers in transposed mode
9738
+ */
9739
+ column_header?: {
9740
+ /**
9741
+ * Header label pattern with {{i}} as index placeholder (e.g., "Year {{i}}")
9742
+ * example:
9743
+ * Year {{i}}
9744
+ */
9745
+ template?: string;
9746
+ /**
9747
+ * Starting index value for the template placeholder
9748
+ */
9749
+ start?: number;
9750
+ };
9714
9751
  }
9715
9752
  /**
9716
9753
  * Tags
@@ -12446,7 +12483,7 @@ declare namespace Paths {
12446
12483
  /**
12447
12484
  * ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).
12448
12485
  * example:
12449
- * 2023-01-01T00:00:00.000Z
12486
+ * 2023-01-01T00:00:00Z
12450
12487
  */
12451
12488
  export type CreatedAfter = string; // date-time
12452
12489
  /**
@@ -12472,7 +12509,7 @@ declare namespace Paths {
12472
12509
  created_after?: /**
12473
12510
  * ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).
12474
12511
  * example:
12475
- * 2023-01-01T00:00:00.000Z
12512
+ * 2023-01-01T00:00:00Z
12476
12513
  */
12477
12514
  Parameters.CreatedAfter /* date-time */;
12478
12515
  sort_pending_first?: /* When true, sorts PENDING status jobs to the top of the results. */ Parameters.SortPendingFirst;
@@ -14437,6 +14474,7 @@ export interface OperationMethods {
14437
14474
  *
14438
14475
  * - All activites are published as events on the event bus
14439
14476
  * - Entity mutations are always part of an activity
14477
+ * - When more than 10 entities are passed, the first 10 are attached synchronously and the rest are processed asynchronously to avoid DynamoDB throttling
14440
14478
  *
14441
14479
  */
14442
14480
  'createActivity'(
@@ -15627,6 +15665,7 @@ export interface PathsDictionary {
15627
15665
  *
15628
15666
  * - All activites are published as events on the event bus
15629
15667
  * - Entity mutations are always part of an activity
15668
+ * - When more than 10 entities are passed, the first 10 are attached synchronously and the rest are processed asynchronously to avoid DynamoDB throttling
15630
15669
  *
15631
15670
  */
15632
15671
  'post'(
package/dist/openapi.json CHANGED
@@ -1881,7 +1881,7 @@
1881
1881
  "post": {
1882
1882
  "operationId": "createActivity",
1883
1883
  "summary": "createActivity",
1884
- "description": "Create an activity that can be displayed in activity feeds.\n\n- All activites are published as events on the event bus\n- Entity mutations are always part of an activity\n",
1884
+ "description": "Create an activity that can be displayed in activity feeds.\n\n- All activites are published as events on the event bus\n- Entity mutations are always part of an activity\n- When more than 10 entities are passed, the first 10 are attached synchronously and the rest are processed asynchronously to avoid DynamoDB throttling\n",
1885
1885
  "tags": [
1886
1886
  "Activity"
1887
1887
  ],
@@ -3704,7 +3704,7 @@
3704
3704
  "description": "ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).",
3705
3705
  "type": "string",
3706
3706
  "format": "date-time",
3707
- "example": "2023-01-01T00:00:00.000Z"
3707
+ "example": "2023-01-01T00:00:00Z"
3708
3708
  }
3709
3709
  },
3710
3710
  {
@@ -4935,6 +4935,16 @@
4935
4935
  "type": "string"
4936
4936
  }
4937
4937
  },
4938
+ "_manifest": {
4939
+ "type": "array",
4940
+ "description": "Manifest ID used to create the schema",
4941
+ "items": {
4942
+ "type": "string",
4943
+ "format": "uuid",
4944
+ "example": "123e4567-e89b-12d3-a456-426614174000"
4945
+ },
4946
+ "nullable": true
4947
+ },
4938
4948
  "explicit_search_mappings": {
4939
4949
  "$ref": "#/components/schemas/SearchMappings"
4940
4950
  },
@@ -5859,6 +5869,11 @@
5859
5869
  "public-read",
5860
5870
  "private"
5861
5871
  ]
5872
+ },
5873
+ "file_size_bytes": {
5874
+ "type": "integer",
5875
+ "description": "The maximum file size in bytes. Used to derive file_size and file_size_unit in the UI.",
5876
+ "example": 5000000
5862
5877
  }
5863
5878
  },
5864
5879
  "required": [
@@ -6544,6 +6559,11 @@
6544
6559
  "type": "boolean",
6545
6560
  "description": "Whether this column is required for each row",
6546
6561
  "default": false
6562
+ },
6563
+ "bold": {
6564
+ "type": "boolean",
6565
+ "description": "When true, the row is rendered in bold (only applies in transposed mode)",
6566
+ "default": false
6547
6567
  }
6548
6568
  },
6549
6569
  "required": [
@@ -6560,8 +6580,30 @@
6560
6580
  },
6561
6581
  "max_rows": {
6562
6582
  "type": "integer",
6563
- "description": "Maximum number of rows allowed",
6583
+ "description": "Maximum number of rows allowed (or maximum periods when transposed)",
6564
6584
  "minimum": 1
6585
+ },
6586
+ "transposed": {
6587
+ "type": "boolean",
6588
+ "description": "Enable transposed layout where rows become metrics and columns become periods",
6589
+ "default": false
6590
+ },
6591
+ "column_header": {
6592
+ "type": "object",
6593
+ "description": "Configuration for column headers in transposed mode",
6594
+ "properties": {
6595
+ "template": {
6596
+ "type": "string",
6597
+ "description": "Header label pattern with {{i}} as index placeholder (e.g., \"Year {{i}}\")",
6598
+ "example": "Year {{i}}"
6599
+ },
6600
+ "start": {
6601
+ "type": "integer",
6602
+ "description": "Starting index value for the template placeholder",
6603
+ "default": 0,
6604
+ "minimum": 0
6605
+ }
6606
+ }
6565
6607
  }
6566
6608
  }
6567
6609
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
4
4
  "description": "JavaScript client library for the epilot Core Entity API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",