@uniformdev/canvas 20.66.7-alpha.10 → 20.67.1-alpha.17

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/index.d.mts CHANGED
@@ -1240,6 +1240,14 @@ interface components$q {
1240
1240
  variants?: {
1241
1241
  unpublished?: components$q["schemas"]["AlternativeDataSourceData"];
1242
1242
  };
1243
+ /** @description Created date of the data source in ISO 8601 format (ignored for writes) */
1244
+ created?: string;
1245
+ /** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
1246
+ modified?: string;
1247
+ /** @description User or API key ID that created the data source (ignored for writes) */
1248
+ createdBy?: string;
1249
+ /** @description User or API key ID that last modified the data source (ignored for writes) */
1250
+ modifiedBy?: string;
1243
1251
  };
1244
1252
  /** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
1245
1253
  DataType: {
@@ -1291,6 +1299,14 @@ interface components$q {
1291
1299
  custom?: {
1292
1300
  [key: string]: unknown;
1293
1301
  };
1302
+ /** @description Created date of the data type in ISO 8601 format (ignored for writes) */
1303
+ created?: string;
1304
+ /** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
1305
+ modified?: string;
1306
+ /** @description User or API key ID that created the data type (ignored for writes) */
1307
+ createdBy?: string;
1308
+ /** @description User or API key ID that last modified the data type (ignored for writes) */
1309
+ modifiedBy?: string;
1294
1310
  };
1295
1311
  /** @description Defines the shape of a data variable on a Data Source or Data Type */
1296
1312
  DataVariableDefinition: {
@@ -4441,6 +4457,14 @@ interface components$k {
4441
4457
  variants?: {
4442
4458
  unpublished?: components$k["schemas"]["AlternativeDataSourceData"];
4443
4459
  };
4460
+ /** @description Created date of the data source in ISO 8601 format (ignored for writes) */
4461
+ created?: string;
4462
+ /** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
4463
+ modified?: string;
4464
+ /** @description User or API key ID that created the data source (ignored for writes) */
4465
+ createdBy?: string;
4466
+ /** @description User or API key ID that last modified the data source (ignored for writes) */
4467
+ modifiedBy?: string;
4444
4468
  };
4445
4469
  Error: {
4446
4470
  /** @description Error message(s) that occurred while processing the request */
@@ -4640,6 +4664,14 @@ interface components$j {
4640
4664
  variants?: {
4641
4665
  unpublished?: components$j["schemas"]["AlternativeDataSourceData"];
4642
4666
  };
4667
+ /** @description Created date of the data source in ISO 8601 format (ignored for writes) */
4668
+ created?: string;
4669
+ /** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
4670
+ modified?: string;
4671
+ /** @description User or API key ID that created the data source (ignored for writes) */
4672
+ createdBy?: string;
4673
+ /** @description User or API key ID that last modified the data source (ignored for writes) */
4674
+ modifiedBy?: string;
4643
4675
  };
4644
4676
  Error: {
4645
4677
  /** @description Error message(s) that occurred while processing the request */
@@ -4873,6 +4905,14 @@ interface components$i {
4873
4905
  custom?: {
4874
4906
  [key: string]: unknown;
4875
4907
  };
4908
+ /** @description Created date of the data type in ISO 8601 format (ignored for writes) */
4909
+ created?: string;
4910
+ /** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
4911
+ modified?: string;
4912
+ /** @description User or API key ID that created the data type (ignored for writes) */
4913
+ createdBy?: string;
4914
+ /** @description User or API key ID that last modified the data type (ignored for writes) */
4915
+ modifiedBy?: string;
4876
4916
  };
4877
4917
  Error: {
4878
4918
  /** @description Error message(s) that occurred while processing the request */
@@ -13474,6 +13514,30 @@ interface components$2 {
13474
13514
  searchIndexVersion: string;
13475
13515
  /** @enum {string} */
13476
13516
  searchIndexStatus: "absent" | "present" | "unavailable" | "unknown";
13517
+ /**
13518
+ * @deprecated
13519
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13520
+ *
13521
+ */
13522
+ searchIndexNextVersion?: string;
13523
+ /**
13524
+ * @deprecated
13525
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13526
+ *
13527
+ */
13528
+ searchIndexNextVersionCreated?: string;
13529
+ /**
13530
+ * @deprecated
13531
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13532
+ *
13533
+ */
13534
+ searchIndexQueuedVersion?: string;
13535
+ /**
13536
+ * @deprecated
13537
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13538
+ *
13539
+ */
13540
+ searchIndexQueuedVersionCreated?: string;
13477
13541
  /** @enum {string} */
13478
13542
  relationshipsIndexStatus: "absent" | "outdated" | "indexing" | "indexed" | "failed";
13479
13543
  };
@@ -13510,6 +13574,32 @@ interface components$2 {
13510
13574
  searchIndexVersion?: string;
13511
13575
  /** @enum {string} */
13512
13576
  searchIndexStatus?: "absent" | "present" | "unavailable" | "unknown";
13577
+ /**
13578
+ * @deprecated
13579
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13580
+ * When set, a reindex is currently in flight; the dashboard can present
13581
+ * this project as "reindexing". Cleared when the rebuild swap completes.
13582
+ *
13583
+ */
13584
+ searchIndexNextVersion?: string;
13585
+ /**
13586
+ * @deprecated
13587
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13588
+ *
13589
+ */
13590
+ searchIndexNextVersionCreated?: string;
13591
+ /**
13592
+ * @deprecated
13593
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13594
+ *
13595
+ */
13596
+ searchIndexQueuedVersion?: string;
13597
+ /**
13598
+ * @deprecated
13599
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13600
+ *
13601
+ */
13602
+ searchIndexQueuedVersionCreated?: string;
13513
13603
  /** @deprecated */
13514
13604
  dependencyInvalidationHookUrl?: string;
13515
13605
  };
@@ -14242,7 +14332,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
14242
14332
  */
14243
14333
  declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
14244
14334
 
14245
- declare const version = "20.66.6";
14335
+ declare const version = "20.67.0";
14246
14336
 
14247
14337
  /** API client to enable managing workflow definitions */
14248
14338
  declare class WorkflowClient extends ApiClient {
package/dist/index.d.ts CHANGED
@@ -1240,6 +1240,14 @@ interface components$q {
1240
1240
  variants?: {
1241
1241
  unpublished?: components$q["schemas"]["AlternativeDataSourceData"];
1242
1242
  };
1243
+ /** @description Created date of the data source in ISO 8601 format (ignored for writes) */
1244
+ created?: string;
1245
+ /** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
1246
+ modified?: string;
1247
+ /** @description User or API key ID that created the data source (ignored for writes) */
1248
+ createdBy?: string;
1249
+ /** @description User or API key ID that last modified the data source (ignored for writes) */
1250
+ modifiedBy?: string;
1243
1251
  };
1244
1252
  /** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
1245
1253
  DataType: {
@@ -1291,6 +1299,14 @@ interface components$q {
1291
1299
  custom?: {
1292
1300
  [key: string]: unknown;
1293
1301
  };
1302
+ /** @description Created date of the data type in ISO 8601 format (ignored for writes) */
1303
+ created?: string;
1304
+ /** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
1305
+ modified?: string;
1306
+ /** @description User or API key ID that created the data type (ignored for writes) */
1307
+ createdBy?: string;
1308
+ /** @description User or API key ID that last modified the data type (ignored for writes) */
1309
+ modifiedBy?: string;
1294
1310
  };
1295
1311
  /** @description Defines the shape of a data variable on a Data Source or Data Type */
1296
1312
  DataVariableDefinition: {
@@ -4441,6 +4457,14 @@ interface components$k {
4441
4457
  variants?: {
4442
4458
  unpublished?: components$k["schemas"]["AlternativeDataSourceData"];
4443
4459
  };
4460
+ /** @description Created date of the data source in ISO 8601 format (ignored for writes) */
4461
+ created?: string;
4462
+ /** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
4463
+ modified?: string;
4464
+ /** @description User or API key ID that created the data source (ignored for writes) */
4465
+ createdBy?: string;
4466
+ /** @description User or API key ID that last modified the data source (ignored for writes) */
4467
+ modifiedBy?: string;
4444
4468
  };
4445
4469
  Error: {
4446
4470
  /** @description Error message(s) that occurred while processing the request */
@@ -4640,6 +4664,14 @@ interface components$j {
4640
4664
  variants?: {
4641
4665
  unpublished?: components$j["schemas"]["AlternativeDataSourceData"];
4642
4666
  };
4667
+ /** @description Created date of the data source in ISO 8601 format (ignored for writes) */
4668
+ created?: string;
4669
+ /** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
4670
+ modified?: string;
4671
+ /** @description User or API key ID that created the data source (ignored for writes) */
4672
+ createdBy?: string;
4673
+ /** @description User or API key ID that last modified the data source (ignored for writes) */
4674
+ modifiedBy?: string;
4643
4675
  };
4644
4676
  Error: {
4645
4677
  /** @description Error message(s) that occurred while processing the request */
@@ -4873,6 +4905,14 @@ interface components$i {
4873
4905
  custom?: {
4874
4906
  [key: string]: unknown;
4875
4907
  };
4908
+ /** @description Created date of the data type in ISO 8601 format (ignored for writes) */
4909
+ created?: string;
4910
+ /** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
4911
+ modified?: string;
4912
+ /** @description User or API key ID that created the data type (ignored for writes) */
4913
+ createdBy?: string;
4914
+ /** @description User or API key ID that last modified the data type (ignored for writes) */
4915
+ modifiedBy?: string;
4876
4916
  };
4877
4917
  Error: {
4878
4918
  /** @description Error message(s) that occurred while processing the request */
@@ -13474,6 +13514,30 @@ interface components$2 {
13474
13514
  searchIndexVersion: string;
13475
13515
  /** @enum {string} */
13476
13516
  searchIndexStatus: "absent" | "present" | "unavailable" | "unknown";
13517
+ /**
13518
+ * @deprecated
13519
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13520
+ *
13521
+ */
13522
+ searchIndexNextVersion?: string;
13523
+ /**
13524
+ * @deprecated
13525
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13526
+ *
13527
+ */
13528
+ searchIndexNextVersionCreated?: string;
13529
+ /**
13530
+ * @deprecated
13531
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13532
+ *
13533
+ */
13534
+ searchIndexQueuedVersion?: string;
13535
+ /**
13536
+ * @deprecated
13537
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13538
+ *
13539
+ */
13540
+ searchIndexQueuedVersionCreated?: string;
13477
13541
  /** @enum {string} */
13478
13542
  relationshipsIndexStatus: "absent" | "outdated" | "indexing" | "indexed" | "failed";
13479
13543
  };
@@ -13510,6 +13574,32 @@ interface components$2 {
13510
13574
  searchIndexVersion?: string;
13511
13575
  /** @enum {string} */
13512
13576
  searchIndexStatus?: "absent" | "present" | "unavailable" | "unknown";
13577
+ /**
13578
+ * @deprecated
13579
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13580
+ * When set, a reindex is currently in flight; the dashboard can present
13581
+ * this project as "reindexing". Cleared when the rebuild swap completes.
13582
+ *
13583
+ */
13584
+ searchIndexNextVersion?: string;
13585
+ /**
13586
+ * @deprecated
13587
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13588
+ *
13589
+ */
13590
+ searchIndexNextVersionCreated?: string;
13591
+ /**
13592
+ * @deprecated
13593
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13594
+ *
13595
+ */
13596
+ searchIndexQueuedVersion?: string;
13597
+ /**
13598
+ * @deprecated
13599
+ * @description **Experimental / internal.** Subject to change or removal without notice.
13600
+ *
13601
+ */
13602
+ searchIndexQueuedVersionCreated?: string;
13513
13603
  /** @deprecated */
13514
13604
  dependencyInvalidationHookUrl?: string;
13515
13605
  };
@@ -14242,7 +14332,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
14242
14332
  */
14243
14333
  declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
14244
14334
 
14245
- declare const version = "20.66.6";
14335
+ declare const version = "20.67.0";
14246
14336
 
14247
14337
  /** API client to enable managing workflow definitions */
14248
14338
  declare class WorkflowClient extends ApiClient {
package/dist/index.esm.js CHANGED
@@ -3658,7 +3658,7 @@ function handleRichTextNodeBinding(object, options) {
3658
3658
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
3659
3659
 
3660
3660
  // src/.version.ts
3661
- var version = "20.66.6";
3661
+ var version = "20.67.0";
3662
3662
 
3663
3663
  // src/WorkflowClient.ts
3664
3664
  import { ApiClient as ApiClient17 } from "@uniformdev/context/api";
package/dist/index.js CHANGED
@@ -3841,7 +3841,7 @@ function handleRichTextNodeBinding(object, options) {
3841
3841
  var import_api19 = require("@uniformdev/context/api");
3842
3842
 
3843
3843
  // src/.version.ts
3844
- var version = "20.66.6";
3844
+ var version = "20.67.0";
3845
3845
 
3846
3846
  // src/WorkflowClient.ts
3847
3847
  var import_api18 = require("@uniformdev/context/api");
package/dist/index.mjs CHANGED
@@ -3658,7 +3658,7 @@ function handleRichTextNodeBinding(object, options) {
3658
3658
  import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
3659
3659
 
3660
3660
  // src/.version.ts
3661
- var version = "20.66.6";
3661
+ var version = "20.67.0";
3662
3662
 
3663
3663
  // src/WorkflowClient.ts
3664
3664
  import { ApiClient as ApiClient17 } from "@uniformdev/context/api";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas",
3
- "version": "20.66.7-alpha.10+82091b216c",
3
+ "version": "20.67.1-alpha.17+f02f0b67f8",
4
4
  "description": "Common functionality and types for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -39,9 +39,9 @@
39
39
  "svix": "1.71.0"
40
40
  },
41
41
  "dependencies": {
42
- "@uniformdev/assets": "20.66.7-alpha.10+82091b216c",
43
- "@uniformdev/context": "20.66.7-alpha.10+82091b216c",
44
- "@uniformdev/richtext": "20.66.7-alpha.10+82091b216c",
42
+ "@uniformdev/assets": "20.67.1-alpha.17+f02f0b67f8",
43
+ "@uniformdev/context": "20.67.1-alpha.17+f02f0b67f8",
44
+ "@uniformdev/richtext": "20.67.1-alpha.17+f02f0b67f8",
45
45
  "immer": "10.1.3"
46
46
  },
47
47
  "files": [
@@ -50,5 +50,5 @@
50
50
  "publishConfig": {
51
51
  "access": "public"
52
52
  },
53
- "gitHead": "82091b216c4d60c8c9032b5e967c2adcbe18d3c0"
53
+ "gitHead": "f02f0b67f86bf3e1f8283212e0045e2d62e49ddd"
54
54
  }