@uniformdev/canvas 20.56.1-alpha.5 → 20.56.2-alpha.5
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 +22 -2
- package/dist/index.d.ts +22 -2
- 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
|
@@ -6306,6 +6306,11 @@ interface components$e {
|
|
|
6306
6306
|
* unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
|
|
6307
6307
|
* */
|
|
6308
6308
|
dataSourceVariant: "unpublished";
|
|
6309
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
6310
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
6311
|
+
* that have redirects configured on their paths.
|
|
6312
|
+
* */
|
|
6313
|
+
ignoreRedirects: boolean;
|
|
6309
6314
|
};
|
|
6310
6315
|
requestBodies: never;
|
|
6311
6316
|
headers: never;
|
|
@@ -8923,6 +8928,11 @@ interface components$b {
|
|
|
8923
8928
|
* When the result is a redirect, this parameter has no effect
|
|
8924
8929
|
* */
|
|
8925
8930
|
"parameters-locale": string;
|
|
8931
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
8932
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
8933
|
+
* that have redirects configured on their paths.
|
|
8934
|
+
* */
|
|
8935
|
+
ignoreRedirects: boolean;
|
|
8926
8936
|
/** @description The project the entry/entries are on */
|
|
8927
8937
|
"components-parameters-projectId": string;
|
|
8928
8938
|
/** @description Specify one or more entry IDs to fetch.
|
|
@@ -9053,6 +9063,11 @@ interface paths$a {
|
|
|
9053
9063
|
* unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
|
|
9054
9064
|
* */
|
|
9055
9065
|
dataSourceVariant?: components$a["parameters"]["dataSourceVariant"];
|
|
9066
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
9067
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
9068
|
+
* that have redirects configured on their paths.
|
|
9069
|
+
* */
|
|
9070
|
+
ignoreRedirects?: components$a["parameters"]["ignoreRedirects"];
|
|
9056
9071
|
};
|
|
9057
9072
|
header?: never;
|
|
9058
9073
|
path?: never;
|
|
@@ -9863,6 +9878,11 @@ interface components$a {
|
|
|
9863
9878
|
* unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
|
|
9864
9879
|
* */
|
|
9865
9880
|
dataSourceVariant: "unpublished";
|
|
9881
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
9882
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
9883
|
+
* that have redirects configured on their paths.
|
|
9884
|
+
* */
|
|
9885
|
+
ignoreRedirects: boolean;
|
|
9866
9886
|
};
|
|
9867
9887
|
requestBodies: never;
|
|
9868
9888
|
headers: never;
|
|
@@ -10020,7 +10040,7 @@ type CanvasDefinitions = {
|
|
|
10020
10040
|
webhooks?: Array<WebhookDefinition>;
|
|
10021
10041
|
};
|
|
10022
10042
|
/** Defines shared parameters for requests getting a single composition */
|
|
10023
|
-
type CompositionGetOneSharedParameters = Pick<CompositionGetParameters, 'state' | 'skipEnhance' | 'skipPatternResolution' | 'withComponentIDs' | 'withUIStatus' | 'withWorkflowDefinition' | 'withProjectMapNodes' | 'withTotalCount' | 'skipOverridesResolution' | 'withContentSourceMap' | 'versionId' | 'locale' | 'releaseId' | 'editions'>;
|
|
10043
|
+
type CompositionGetOneSharedParameters = Pick<CompositionGetParameters, 'state' | 'skipEnhance' | 'skipPatternResolution' | 'withComponentIDs' | 'withUIStatus' | 'withWorkflowDefinition' | 'withProjectMapNodes' | 'withTotalCount' | 'skipOverridesResolution' | 'withContentSourceMap' | 'versionId' | 'locale' | 'releaseId' | 'editions' | 'withPatternType'>;
|
|
10024
10044
|
type CompositionGetBy<RequiredParameters extends keyof CompositionGetParameters> = CompositionGetOneSharedParameters & Required<Pick<CompositionGetParameters, RequiredParameters>>;
|
|
10025
10045
|
type SpecificProjectMap = {
|
|
10026
10046
|
projectMapId?: string;
|
|
@@ -14154,7 +14174,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
|
14154
14174
|
*/
|
|
14155
14175
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
|
14156
14176
|
|
|
14157
|
-
declare const version = "20.56.
|
|
14177
|
+
declare const version = "20.56.1";
|
|
14158
14178
|
|
|
14159
14179
|
/** API client to enable managing workflow definitions */
|
|
14160
14180
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -6306,6 +6306,11 @@ interface components$e {
|
|
|
6306
6306
|
* unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
|
|
6307
6307
|
* */
|
|
6308
6308
|
dataSourceVariant: "unpublished";
|
|
6309
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
6310
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
6311
|
+
* that have redirects configured on their paths.
|
|
6312
|
+
* */
|
|
6313
|
+
ignoreRedirects: boolean;
|
|
6309
6314
|
};
|
|
6310
6315
|
requestBodies: never;
|
|
6311
6316
|
headers: never;
|
|
@@ -8923,6 +8928,11 @@ interface components$b {
|
|
|
8923
8928
|
* When the result is a redirect, this parameter has no effect
|
|
8924
8929
|
* */
|
|
8925
8930
|
"parameters-locale": string;
|
|
8931
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
8932
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
8933
|
+
* that have redirects configured on their paths.
|
|
8934
|
+
* */
|
|
8935
|
+
ignoreRedirects: boolean;
|
|
8926
8936
|
/** @description The project the entry/entries are on */
|
|
8927
8937
|
"components-parameters-projectId": string;
|
|
8928
8938
|
/** @description Specify one or more entry IDs to fetch.
|
|
@@ -9053,6 +9063,11 @@ interface paths$a {
|
|
|
9053
9063
|
* unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
|
|
9054
9064
|
* */
|
|
9055
9065
|
dataSourceVariant?: components$a["parameters"]["dataSourceVariant"];
|
|
9066
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
9067
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
9068
|
+
* that have redirects configured on their paths.
|
|
9069
|
+
* */
|
|
9070
|
+
ignoreRedirects?: components$a["parameters"]["ignoreRedirects"];
|
|
9056
9071
|
};
|
|
9057
9072
|
header?: never;
|
|
9058
9073
|
path?: never;
|
|
@@ -9863,6 +9878,11 @@ interface components$a {
|
|
|
9863
9878
|
* unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
|
|
9864
9879
|
* */
|
|
9865
9880
|
dataSourceVariant: "unpublished";
|
|
9881
|
+
/** @description When true, redirects are not evaluated for the route matching; the result will be either a composition or not found.
|
|
9882
|
+
* Note: this is always true when state=63 (internal RSC editor state) to allow contextual editing of compositions
|
|
9883
|
+
* that have redirects configured on their paths.
|
|
9884
|
+
* */
|
|
9885
|
+
ignoreRedirects: boolean;
|
|
9866
9886
|
};
|
|
9867
9887
|
requestBodies: never;
|
|
9868
9888
|
headers: never;
|
|
@@ -10020,7 +10040,7 @@ type CanvasDefinitions = {
|
|
|
10020
10040
|
webhooks?: Array<WebhookDefinition>;
|
|
10021
10041
|
};
|
|
10022
10042
|
/** Defines shared parameters for requests getting a single composition */
|
|
10023
|
-
type CompositionGetOneSharedParameters = Pick<CompositionGetParameters, 'state' | 'skipEnhance' | 'skipPatternResolution' | 'withComponentIDs' | 'withUIStatus' | 'withWorkflowDefinition' | 'withProjectMapNodes' | 'withTotalCount' | 'skipOverridesResolution' | 'withContentSourceMap' | 'versionId' | 'locale' | 'releaseId' | 'editions'>;
|
|
10043
|
+
type CompositionGetOneSharedParameters = Pick<CompositionGetParameters, 'state' | 'skipEnhance' | 'skipPatternResolution' | 'withComponentIDs' | 'withUIStatus' | 'withWorkflowDefinition' | 'withProjectMapNodes' | 'withTotalCount' | 'skipOverridesResolution' | 'withContentSourceMap' | 'versionId' | 'locale' | 'releaseId' | 'editions' | 'withPatternType'>;
|
|
10024
10044
|
type CompositionGetBy<RequiredParameters extends keyof CompositionGetParameters> = CompositionGetOneSharedParameters & Required<Pick<CompositionGetParameters, RequiredParameters>>;
|
|
10025
10045
|
type SpecificProjectMap = {
|
|
10026
10046
|
projectMapId?: string;
|
|
@@ -14154,7 +14174,7 @@ declare function hasReferencedVariables(value: string | undefined): number;
|
|
|
14154
14174
|
*/
|
|
14155
14175
|
declare function parseVariableExpression(serialized: string, onToken?: (token: string, type: 'text' | 'variable') => void | false): number;
|
|
14156
14176
|
|
|
14157
|
-
declare const version = "20.56.
|
|
14177
|
+
declare const version = "20.56.1";
|
|
14158
14178
|
|
|
14159
14179
|
/** API client to enable managing workflow definitions */
|
|
14160
14180
|
declare class WorkflowClient extends ApiClient {
|
package/dist/index.esm.js
CHANGED
|
@@ -3638,7 +3638,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
|
3638
3638
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
|
3639
3639
|
|
|
3640
3640
|
// src/.version.ts
|
|
3641
|
-
var version = "20.56.
|
|
3641
|
+
var version = "20.56.1";
|
|
3642
3642
|
|
|
3643
3643
|
// src/WorkflowClient.ts
|
|
3644
3644
|
import { ApiClient as ApiClient17 } from "@uniformdev/context/api";
|
package/dist/index.js
CHANGED
|
@@ -3818,7 +3818,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
|
3818
3818
|
var import_api19 = require("@uniformdev/context/api");
|
|
3819
3819
|
|
|
3820
3820
|
// src/.version.ts
|
|
3821
|
-
var version = "20.56.
|
|
3821
|
+
var version = "20.56.1";
|
|
3822
3822
|
|
|
3823
3823
|
// src/WorkflowClient.ts
|
|
3824
3824
|
var import_api18 = require("@uniformdev/context/api");
|
package/dist/index.mjs
CHANGED
|
@@ -3638,7 +3638,7 @@ function handleRichTextNodeBinding(object, options) {
|
|
|
3638
3638
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
|
3639
3639
|
|
|
3640
3640
|
// src/.version.ts
|
|
3641
|
-
var version = "20.56.
|
|
3641
|
+
var version = "20.56.1";
|
|
3642
3642
|
|
|
3643
3643
|
// src/WorkflowClient.ts
|
|
3644
3644
|
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.56.
|
|
3
|
+
"version": "20.56.2-alpha.5+ae5a0d2550",
|
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"svix": "1.71.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@uniformdev/assets": "20.56.
|
|
45
|
-
"@uniformdev/context": "20.56.
|
|
46
|
-
"@uniformdev/richtext": "20.56.
|
|
44
|
+
"@uniformdev/assets": "20.56.2-alpha.5+ae5a0d2550",
|
|
45
|
+
"@uniformdev/context": "20.56.2-alpha.5+ae5a0d2550",
|
|
46
|
+
"@uniformdev/richtext": "20.56.2-alpha.5+ae5a0d2550",
|
|
47
47
|
"immer": "10.1.3"
|
|
48
48
|
},
|
|
49
49
|
"files": [
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "ae5a0d255085f10d36ad4f557d393536033eac7f"
|
|
56
56
|
}
|