@uniformdev/canvas 20.50.2-alpha.117 → 20.50.2-alpha.149
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 +106 -16
- package/dist/index.d.ts +106 -16
- 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: {
|
|
@@ -1363,9 +1379,12 @@ interface components$q {
|
|
|
1363
1379
|
versionId: string;
|
|
1364
1380
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
1365
1381
|
timestamp: number;
|
|
1366
|
-
/** @description The name (full name) of the user who created the version */
|
|
1382
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
1367
1383
|
authorName: string;
|
|
1368
1384
|
authorIsApiKey: boolean;
|
|
1385
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
1386
|
+
* */
|
|
1387
|
+
authorSubject?: string;
|
|
1369
1388
|
/** @description The state of the entity when the history entry was made */
|
|
1370
1389
|
state: number;
|
|
1371
1390
|
};
|
|
@@ -4142,9 +4161,12 @@ interface components$l {
|
|
|
4142
4161
|
versionId: string;
|
|
4143
4162
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
4144
4163
|
timestamp: number;
|
|
4145
|
-
/** @description The name (full name) of the user who created the version */
|
|
4164
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
4146
4165
|
authorName: string;
|
|
4147
4166
|
authorIsApiKey: boolean;
|
|
4167
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
4168
|
+
* */
|
|
4169
|
+
authorSubject?: string;
|
|
4148
4170
|
/** @description The state of the entity when the history entry was made */
|
|
4149
4171
|
state: number;
|
|
4150
4172
|
};
|
|
@@ -4441,6 +4463,14 @@ interface components$k {
|
|
|
4441
4463
|
variants?: {
|
|
4442
4464
|
unpublished?: components$k["schemas"]["AlternativeDataSourceData"];
|
|
4443
4465
|
};
|
|
4466
|
+
/** @description Created date of the data source in ISO 8601 format (ignored for writes) */
|
|
4467
|
+
created?: string;
|
|
4468
|
+
/** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
|
|
4469
|
+
modified?: string;
|
|
4470
|
+
/** @description User or API key ID that created the data source (ignored for writes) */
|
|
4471
|
+
createdBy?: string;
|
|
4472
|
+
/** @description User or API key ID that last modified the data source (ignored for writes) */
|
|
4473
|
+
modifiedBy?: string;
|
|
4444
4474
|
};
|
|
4445
4475
|
Error: {
|
|
4446
4476
|
/** @description Error message(s) that occurred while processing the request */
|
|
@@ -4640,6 +4670,14 @@ interface components$j {
|
|
|
4640
4670
|
variants?: {
|
|
4641
4671
|
unpublished?: components$j["schemas"]["AlternativeDataSourceData"];
|
|
4642
4672
|
};
|
|
4673
|
+
/** @description Created date of the data source in ISO 8601 format (ignored for writes) */
|
|
4674
|
+
created?: string;
|
|
4675
|
+
/** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
|
|
4676
|
+
modified?: string;
|
|
4677
|
+
/** @description User or API key ID that created the data source (ignored for writes) */
|
|
4678
|
+
createdBy?: string;
|
|
4679
|
+
/** @description User or API key ID that last modified the data source (ignored for writes) */
|
|
4680
|
+
modifiedBy?: string;
|
|
4643
4681
|
};
|
|
4644
4682
|
Error: {
|
|
4645
4683
|
/** @description Error message(s) that occurred while processing the request */
|
|
@@ -4873,6 +4911,14 @@ interface components$i {
|
|
|
4873
4911
|
custom?: {
|
|
4874
4912
|
[key: string]: unknown;
|
|
4875
4913
|
};
|
|
4914
|
+
/** @description Created date of the data type in ISO 8601 format (ignored for writes) */
|
|
4915
|
+
created?: string;
|
|
4916
|
+
/** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
|
|
4917
|
+
modified?: string;
|
|
4918
|
+
/** @description User or API key ID that created the data type (ignored for writes) */
|
|
4919
|
+
createdBy?: string;
|
|
4920
|
+
/** @description User or API key ID that last modified the data type (ignored for writes) */
|
|
4921
|
+
modifiedBy?: string;
|
|
4876
4922
|
};
|
|
4877
4923
|
Error: {
|
|
4878
4924
|
/** @description Error message(s) that occurred while processing the request */
|
|
@@ -5164,10 +5210,7 @@ interface paths$e {
|
|
|
5164
5210
|
path?: never;
|
|
5165
5211
|
cookie?: never;
|
|
5166
5212
|
};
|
|
5167
|
-
/**
|
|
5168
|
-
* @deprecated
|
|
5169
|
-
* @description Gets labels for a project
|
|
5170
|
-
*/
|
|
5213
|
+
/** @description Gets labels for a project */
|
|
5171
5214
|
get: {
|
|
5172
5215
|
parameters: {
|
|
5173
5216
|
query: {
|
|
@@ -5237,10 +5280,7 @@ interface paths$e {
|
|
|
5237
5280
|
500: components$g["responses"]["InternalServerError"];
|
|
5238
5281
|
};
|
|
5239
5282
|
};
|
|
5240
|
-
/**
|
|
5241
|
-
* @deprecated
|
|
5242
|
-
* @description Creates or updates a label
|
|
5243
|
-
*/
|
|
5283
|
+
/** @description Creates or updates a label */
|
|
5244
5284
|
put: {
|
|
5245
5285
|
parameters: {
|
|
5246
5286
|
query?: never;
|
|
@@ -5285,10 +5325,7 @@ interface paths$e {
|
|
|
5285
5325
|
};
|
|
5286
5326
|
};
|
|
5287
5327
|
post?: never;
|
|
5288
|
-
/**
|
|
5289
|
-
* @deprecated
|
|
5290
|
-
* @description Deletes a label
|
|
5291
|
-
*/
|
|
5328
|
+
/** @description Deletes a label */
|
|
5292
5329
|
delete: {
|
|
5293
5330
|
parameters: {
|
|
5294
5331
|
query?: never;
|
|
@@ -7714,9 +7751,12 @@ interface components$c {
|
|
|
7714
7751
|
versionId: string;
|
|
7715
7752
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
7716
7753
|
timestamp: number;
|
|
7717
|
-
/** @description The name (full name) of the user who created the version */
|
|
7754
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
7718
7755
|
authorName: string;
|
|
7719
7756
|
authorIsApiKey: boolean;
|
|
7757
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
7758
|
+
* */
|
|
7759
|
+
authorSubject?: string;
|
|
7720
7760
|
/** @description The state of the entity when the history entry was made */
|
|
7721
7761
|
state: number;
|
|
7722
7762
|
};
|
|
@@ -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.
|
|
14335
|
+
declare const version = "20.68.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: {
|
|
@@ -1363,9 +1379,12 @@ interface components$q {
|
|
|
1363
1379
|
versionId: string;
|
|
1364
1380
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
1365
1381
|
timestamp: number;
|
|
1366
|
-
/** @description The name (full name) of the user who created the version */
|
|
1382
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
1367
1383
|
authorName: string;
|
|
1368
1384
|
authorIsApiKey: boolean;
|
|
1385
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
1386
|
+
* */
|
|
1387
|
+
authorSubject?: string;
|
|
1369
1388
|
/** @description The state of the entity when the history entry was made */
|
|
1370
1389
|
state: number;
|
|
1371
1390
|
};
|
|
@@ -4142,9 +4161,12 @@ interface components$l {
|
|
|
4142
4161
|
versionId: string;
|
|
4143
4162
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
4144
4163
|
timestamp: number;
|
|
4145
|
-
/** @description The name (full name) of the user who created the version */
|
|
4164
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
4146
4165
|
authorName: string;
|
|
4147
4166
|
authorIsApiKey: boolean;
|
|
4167
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
4168
|
+
* */
|
|
4169
|
+
authorSubject?: string;
|
|
4148
4170
|
/** @description The state of the entity when the history entry was made */
|
|
4149
4171
|
state: number;
|
|
4150
4172
|
};
|
|
@@ -4441,6 +4463,14 @@ interface components$k {
|
|
|
4441
4463
|
variants?: {
|
|
4442
4464
|
unpublished?: components$k["schemas"]["AlternativeDataSourceData"];
|
|
4443
4465
|
};
|
|
4466
|
+
/** @description Created date of the data source in ISO 8601 format (ignored for writes) */
|
|
4467
|
+
created?: string;
|
|
4468
|
+
/** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
|
|
4469
|
+
modified?: string;
|
|
4470
|
+
/** @description User or API key ID that created the data source (ignored for writes) */
|
|
4471
|
+
createdBy?: string;
|
|
4472
|
+
/** @description User or API key ID that last modified the data source (ignored for writes) */
|
|
4473
|
+
modifiedBy?: string;
|
|
4444
4474
|
};
|
|
4445
4475
|
Error: {
|
|
4446
4476
|
/** @description Error message(s) that occurred while processing the request */
|
|
@@ -4640,6 +4670,14 @@ interface components$j {
|
|
|
4640
4670
|
variants?: {
|
|
4641
4671
|
unpublished?: components$j["schemas"]["AlternativeDataSourceData"];
|
|
4642
4672
|
};
|
|
4673
|
+
/** @description Created date of the data source in ISO 8601 format (ignored for writes) */
|
|
4674
|
+
created?: string;
|
|
4675
|
+
/** @description Last modified date of the data source in ISO 8601 format (ignored for writes) */
|
|
4676
|
+
modified?: string;
|
|
4677
|
+
/** @description User or API key ID that created the data source (ignored for writes) */
|
|
4678
|
+
createdBy?: string;
|
|
4679
|
+
/** @description User or API key ID that last modified the data source (ignored for writes) */
|
|
4680
|
+
modifiedBy?: string;
|
|
4643
4681
|
};
|
|
4644
4682
|
Error: {
|
|
4645
4683
|
/** @description Error message(s) that occurred while processing the request */
|
|
@@ -4873,6 +4911,14 @@ interface components$i {
|
|
|
4873
4911
|
custom?: {
|
|
4874
4912
|
[key: string]: unknown;
|
|
4875
4913
|
};
|
|
4914
|
+
/** @description Created date of the data type in ISO 8601 format (ignored for writes) */
|
|
4915
|
+
created?: string;
|
|
4916
|
+
/** @description Last modified date of the data type in ISO 8601 format (ignored for writes) */
|
|
4917
|
+
modified?: string;
|
|
4918
|
+
/** @description User or API key ID that created the data type (ignored for writes) */
|
|
4919
|
+
createdBy?: string;
|
|
4920
|
+
/** @description User or API key ID that last modified the data type (ignored for writes) */
|
|
4921
|
+
modifiedBy?: string;
|
|
4876
4922
|
};
|
|
4877
4923
|
Error: {
|
|
4878
4924
|
/** @description Error message(s) that occurred while processing the request */
|
|
@@ -5164,10 +5210,7 @@ interface paths$e {
|
|
|
5164
5210
|
path?: never;
|
|
5165
5211
|
cookie?: never;
|
|
5166
5212
|
};
|
|
5167
|
-
/**
|
|
5168
|
-
* @deprecated
|
|
5169
|
-
* @description Gets labels for a project
|
|
5170
|
-
*/
|
|
5213
|
+
/** @description Gets labels for a project */
|
|
5171
5214
|
get: {
|
|
5172
5215
|
parameters: {
|
|
5173
5216
|
query: {
|
|
@@ -5237,10 +5280,7 @@ interface paths$e {
|
|
|
5237
5280
|
500: components$g["responses"]["InternalServerError"];
|
|
5238
5281
|
};
|
|
5239
5282
|
};
|
|
5240
|
-
/**
|
|
5241
|
-
* @deprecated
|
|
5242
|
-
* @description Creates or updates a label
|
|
5243
|
-
*/
|
|
5283
|
+
/** @description Creates or updates a label */
|
|
5244
5284
|
put: {
|
|
5245
5285
|
parameters: {
|
|
5246
5286
|
query?: never;
|
|
@@ -5285,10 +5325,7 @@ interface paths$e {
|
|
|
5285
5325
|
};
|
|
5286
5326
|
};
|
|
5287
5327
|
post?: never;
|
|
5288
|
-
/**
|
|
5289
|
-
* @deprecated
|
|
5290
|
-
* @description Deletes a label
|
|
5291
|
-
*/
|
|
5328
|
+
/** @description Deletes a label */
|
|
5292
5329
|
delete: {
|
|
5293
5330
|
parameters: {
|
|
5294
5331
|
query?: never;
|
|
@@ -7714,9 +7751,12 @@ interface components$c {
|
|
|
7714
7751
|
versionId: string;
|
|
7715
7752
|
/** @description The timestamp when the version was created in epoch milliseconds */
|
|
7716
7753
|
timestamp: number;
|
|
7717
|
-
/** @description The name (full name) of the user who created the version */
|
|
7754
|
+
/** @description The name (full name) of the user who created the version, or "Unknown user" if the author can no longer be resolved */
|
|
7718
7755
|
authorName: string;
|
|
7719
7756
|
authorIsApiKey: boolean;
|
|
7757
|
+
/** @description The identity who created the version; absent on old history entries.
|
|
7758
|
+
* */
|
|
7759
|
+
authorSubject?: string;
|
|
7720
7760
|
/** @description The state of the entity when the history entry was made */
|
|
7721
7761
|
state: number;
|
|
7722
7762
|
};
|
|
@@ -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.
|
|
14335
|
+
declare const version = "20.68.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.
|
|
3661
|
+
var version = "20.68.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.68.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.68.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.50.2-alpha.
|
|
3
|
+
"version": "20.50.2-alpha.149+913f0b7b57",
|
|
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.50.2-alpha.
|
|
43
|
-
"@uniformdev/context": "20.50.2-alpha.
|
|
44
|
-
"@uniformdev/richtext": "20.50.2-alpha.
|
|
42
|
+
"@uniformdev/assets": "20.50.2-alpha.149+913f0b7b57",
|
|
43
|
+
"@uniformdev/context": "20.50.2-alpha.149+913f0b7b57",
|
|
44
|
+
"@uniformdev/richtext": "20.50.2-alpha.149+913f0b7b57",
|
|
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": "913f0b7b57295ca79575810663c56a7a5deea9e4"
|
|
54
54
|
}
|