@uniformdev/canvas 20.66.7-alpha.10 → 20.67.1-alpha.22
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 +94 -13
- package/dist/index.d.ts +94 -13
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
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 */
|
|
@@ -5164,10 +5204,7 @@ interface paths$e {
|
|
|
5164
5204
|
path?: never;
|
|
5165
5205
|
cookie?: never;
|
|
5166
5206
|
};
|
|
5167
|
-
/**
|
|
5168
|
-
* @deprecated
|
|
5169
|
-
* @description Gets labels for a project
|
|
5170
|
-
*/
|
|
5207
|
+
/** @description Gets labels for a project */
|
|
5171
5208
|
get: {
|
|
5172
5209
|
parameters: {
|
|
5173
5210
|
query: {
|
|
@@ -5237,10 +5274,7 @@ interface paths$e {
|
|
|
5237
5274
|
500: components$g["responses"]["InternalServerError"];
|
|
5238
5275
|
};
|
|
5239
5276
|
};
|
|
5240
|
-
/**
|
|
5241
|
-
* @deprecated
|
|
5242
|
-
* @description Creates or updates a label
|
|
5243
|
-
*/
|
|
5277
|
+
/** @description Creates or updates a label */
|
|
5244
5278
|
put: {
|
|
5245
5279
|
parameters: {
|
|
5246
5280
|
query?: never;
|
|
@@ -5285,10 +5319,7 @@ interface paths$e {
|
|
|
5285
5319
|
};
|
|
5286
5320
|
};
|
|
5287
5321
|
post?: never;
|
|
5288
|
-
/**
|
|
5289
|
-
* @deprecated
|
|
5290
|
-
* @description Deletes a label
|
|
5291
|
-
*/
|
|
5322
|
+
/** @description Deletes a label */
|
|
5292
5323
|
delete: {
|
|
5293
5324
|
parameters: {
|
|
5294
5325
|
query?: never;
|
|
@@ -13474,6 +13505,30 @@ interface components$2 {
|
|
|
13474
13505
|
searchIndexVersion: string;
|
|
13475
13506
|
/** @enum {string} */
|
|
13476
13507
|
searchIndexStatus: "absent" | "present" | "unavailable" | "unknown";
|
|
13508
|
+
/**
|
|
13509
|
+
* @deprecated
|
|
13510
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13511
|
+
*
|
|
13512
|
+
*/
|
|
13513
|
+
searchIndexNextVersion?: string;
|
|
13514
|
+
/**
|
|
13515
|
+
* @deprecated
|
|
13516
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13517
|
+
*
|
|
13518
|
+
*/
|
|
13519
|
+
searchIndexNextVersionCreated?: string;
|
|
13520
|
+
/**
|
|
13521
|
+
* @deprecated
|
|
13522
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13523
|
+
*
|
|
13524
|
+
*/
|
|
13525
|
+
searchIndexQueuedVersion?: string;
|
|
13526
|
+
/**
|
|
13527
|
+
* @deprecated
|
|
13528
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13529
|
+
*
|
|
13530
|
+
*/
|
|
13531
|
+
searchIndexQueuedVersionCreated?: string;
|
|
13477
13532
|
/** @enum {string} */
|
|
13478
13533
|
relationshipsIndexStatus: "absent" | "outdated" | "indexing" | "indexed" | "failed";
|
|
13479
13534
|
};
|
|
@@ -13510,6 +13565,32 @@ interface components$2 {
|
|
|
13510
13565
|
searchIndexVersion?: string;
|
|
13511
13566
|
/** @enum {string} */
|
|
13512
13567
|
searchIndexStatus?: "absent" | "present" | "unavailable" | "unknown";
|
|
13568
|
+
/**
|
|
13569
|
+
* @deprecated
|
|
13570
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13571
|
+
* When set, a reindex is currently in flight; the dashboard can present
|
|
13572
|
+
* this project as "reindexing". Cleared when the rebuild swap completes.
|
|
13573
|
+
*
|
|
13574
|
+
*/
|
|
13575
|
+
searchIndexNextVersion?: string;
|
|
13576
|
+
/**
|
|
13577
|
+
* @deprecated
|
|
13578
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13579
|
+
*
|
|
13580
|
+
*/
|
|
13581
|
+
searchIndexNextVersionCreated?: string;
|
|
13582
|
+
/**
|
|
13583
|
+
* @deprecated
|
|
13584
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13585
|
+
*
|
|
13586
|
+
*/
|
|
13587
|
+
searchIndexQueuedVersion?: string;
|
|
13588
|
+
/**
|
|
13589
|
+
* @deprecated
|
|
13590
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13591
|
+
*
|
|
13592
|
+
*/
|
|
13593
|
+
searchIndexQueuedVersionCreated?: string;
|
|
13513
13594
|
/** @deprecated */
|
|
13514
13595
|
dependencyInvalidationHookUrl?: string;
|
|
13515
13596
|
};
|
|
@@ -14242,7 +14323,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
|
14242
14323
|
*/
|
|
14243
14324
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
|
14244
14325
|
|
|
14245
|
-
declare const version = "20.
|
|
14326
|
+
declare const version = "20.67.0";
|
|
14246
14327
|
|
|
14247
14328
|
/** API client to enable managing workflow definitions */
|
|
14248
14329
|
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 */
|
|
@@ -5164,10 +5204,7 @@ interface paths$e {
|
|
|
5164
5204
|
path?: never;
|
|
5165
5205
|
cookie?: never;
|
|
5166
5206
|
};
|
|
5167
|
-
/**
|
|
5168
|
-
* @deprecated
|
|
5169
|
-
* @description Gets labels for a project
|
|
5170
|
-
*/
|
|
5207
|
+
/** @description Gets labels for a project */
|
|
5171
5208
|
get: {
|
|
5172
5209
|
parameters: {
|
|
5173
5210
|
query: {
|
|
@@ -5237,10 +5274,7 @@ interface paths$e {
|
|
|
5237
5274
|
500: components$g["responses"]["InternalServerError"];
|
|
5238
5275
|
};
|
|
5239
5276
|
};
|
|
5240
|
-
/**
|
|
5241
|
-
* @deprecated
|
|
5242
|
-
* @description Creates or updates a label
|
|
5243
|
-
*/
|
|
5277
|
+
/** @description Creates or updates a label */
|
|
5244
5278
|
put: {
|
|
5245
5279
|
parameters: {
|
|
5246
5280
|
query?: never;
|
|
@@ -5285,10 +5319,7 @@ interface paths$e {
|
|
|
5285
5319
|
};
|
|
5286
5320
|
};
|
|
5287
5321
|
post?: never;
|
|
5288
|
-
/**
|
|
5289
|
-
* @deprecated
|
|
5290
|
-
* @description Deletes a label
|
|
5291
|
-
*/
|
|
5322
|
+
/** @description Deletes a label */
|
|
5292
5323
|
delete: {
|
|
5293
5324
|
parameters: {
|
|
5294
5325
|
query?: never;
|
|
@@ -13474,6 +13505,30 @@ interface components$2 {
|
|
|
13474
13505
|
searchIndexVersion: string;
|
|
13475
13506
|
/** @enum {string} */
|
|
13476
13507
|
searchIndexStatus: "absent" | "present" | "unavailable" | "unknown";
|
|
13508
|
+
/**
|
|
13509
|
+
* @deprecated
|
|
13510
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13511
|
+
*
|
|
13512
|
+
*/
|
|
13513
|
+
searchIndexNextVersion?: string;
|
|
13514
|
+
/**
|
|
13515
|
+
* @deprecated
|
|
13516
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13517
|
+
*
|
|
13518
|
+
*/
|
|
13519
|
+
searchIndexNextVersionCreated?: string;
|
|
13520
|
+
/**
|
|
13521
|
+
* @deprecated
|
|
13522
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13523
|
+
*
|
|
13524
|
+
*/
|
|
13525
|
+
searchIndexQueuedVersion?: string;
|
|
13526
|
+
/**
|
|
13527
|
+
* @deprecated
|
|
13528
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13529
|
+
*
|
|
13530
|
+
*/
|
|
13531
|
+
searchIndexQueuedVersionCreated?: string;
|
|
13477
13532
|
/** @enum {string} */
|
|
13478
13533
|
relationshipsIndexStatus: "absent" | "outdated" | "indexing" | "indexed" | "failed";
|
|
13479
13534
|
};
|
|
@@ -13510,6 +13565,32 @@ interface components$2 {
|
|
|
13510
13565
|
searchIndexVersion?: string;
|
|
13511
13566
|
/** @enum {string} */
|
|
13512
13567
|
searchIndexStatus?: "absent" | "present" | "unavailable" | "unknown";
|
|
13568
|
+
/**
|
|
13569
|
+
* @deprecated
|
|
13570
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13571
|
+
* When set, a reindex is currently in flight; the dashboard can present
|
|
13572
|
+
* this project as "reindexing". Cleared when the rebuild swap completes.
|
|
13573
|
+
*
|
|
13574
|
+
*/
|
|
13575
|
+
searchIndexNextVersion?: string;
|
|
13576
|
+
/**
|
|
13577
|
+
* @deprecated
|
|
13578
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13579
|
+
*
|
|
13580
|
+
*/
|
|
13581
|
+
searchIndexNextVersionCreated?: string;
|
|
13582
|
+
/**
|
|
13583
|
+
* @deprecated
|
|
13584
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13585
|
+
*
|
|
13586
|
+
*/
|
|
13587
|
+
searchIndexQueuedVersion?: string;
|
|
13588
|
+
/**
|
|
13589
|
+
* @deprecated
|
|
13590
|
+
* @description **Experimental / internal.** Subject to change or removal without notice.
|
|
13591
|
+
*
|
|
13592
|
+
*/
|
|
13593
|
+
searchIndexQueuedVersionCreated?: string;
|
|
13513
13594
|
/** @deprecated */
|
|
13514
13595
|
dependencyInvalidationHookUrl?: string;
|
|
13515
13596
|
};
|
|
@@ -14242,7 +14323,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
|
14242
14323
|
*/
|
|
14243
14324
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
|
14244
14325
|
|
|
14245
|
-
declare const version = "20.
|
|
14326
|
+
declare const version = "20.67.0";
|
|
14246
14327
|
|
|
14247
14328
|
/** API client to enable managing workflow definitions */
|
|
14248
14329
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
3
|
+
"version": "20.67.1-alpha.22+329be3528c",
|
|
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.
|
|
43
|
-
"@uniformdev/context": "20.
|
|
44
|
-
"@uniformdev/richtext": "20.
|
|
42
|
+
"@uniformdev/assets": "20.67.1-alpha.22+329be3528c",
|
|
43
|
+
"@uniformdev/context": "20.67.1-alpha.22+329be3528c",
|
|
44
|
+
"@uniformdev/richtext": "20.67.1-alpha.22+329be3528c",
|
|
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": "
|
|
53
|
+
"gitHead": "329be3528c6e4e6d01316386d18059ec0ffcd172"
|
|
54
54
|
}
|