@uniformdev/canvas 19.196.1-alpha.2 → 19.196.1-alpha.8
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 +1276 -744
- package/dist/index.d.ts +1276 -744
- package/dist/index.esm.js +67 -12
- package/dist/index.js +71 -15
- package/dist/index.mjs +67 -12
- package/package.json +5 -5
package/dist/index.esm.js
CHANGED
@@ -2782,10 +2782,64 @@ function subscribeToComposition({
|
|
2782
2782
|
};
|
2783
2783
|
}
|
2784
2784
|
|
2785
|
-
// src/
|
2785
|
+
// src/PreviewClient.ts
|
2786
2786
|
import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
|
2787
|
+
var previewUrlsUrl = "/api/v1/preview-urls";
|
2788
|
+
var previewViewportsUrl = "/api/v1/preview-viewports";
|
2789
|
+
var PreviewClient = class extends ApiClient8 {
|
2790
|
+
constructor(options) {
|
2791
|
+
super(options);
|
2792
|
+
}
|
2793
|
+
/** Fetches all preview URLs for a project */
|
2794
|
+
async getPreviewUrls(options) {
|
2795
|
+
const { projectId } = this.options;
|
2796
|
+
const fetchUri = this.createUrl(previewUrlsUrl, { ...options, projectId });
|
2797
|
+
return await this.apiClient(fetchUri);
|
2798
|
+
}
|
2799
|
+
/** Creates or updates a preview URL */
|
2800
|
+
async upsertPreviewUrl(body) {
|
2801
|
+
const fetchUri = this.createUrl(previewUrlsUrl);
|
2802
|
+
return await this.apiClient(fetchUri, {
|
2803
|
+
method: "PUT",
|
2804
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2805
|
+
});
|
2806
|
+
}
|
2807
|
+
/** Deletes a preview URL */
|
2808
|
+
async deletePreviewUrl(body) {
|
2809
|
+
const fetchUri = this.createUrl(previewUrlsUrl);
|
2810
|
+
return await this.apiClient(fetchUri, {
|
2811
|
+
method: "DELETE",
|
2812
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2813
|
+
});
|
2814
|
+
}
|
2815
|
+
/** Fetches all preview viewports for a project */
|
2816
|
+
async getPreviewViewports(options) {
|
2817
|
+
const { projectId } = this.options;
|
2818
|
+
const fetchUri = this.createUrl(previewViewportsUrl, { ...options, projectId });
|
2819
|
+
return await this.apiClient(fetchUri);
|
2820
|
+
}
|
2821
|
+
/** Creates or updates a preview viewport */
|
2822
|
+
async upsertPreviewViewport(body) {
|
2823
|
+
const fetchUri = this.createUrl(previewViewportsUrl);
|
2824
|
+
return await this.apiClient(fetchUri, {
|
2825
|
+
method: "PUT",
|
2826
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2827
|
+
});
|
2828
|
+
}
|
2829
|
+
/** Deletes a preview viewport */
|
2830
|
+
async deletePreviewViewport(body) {
|
2831
|
+
const fetchUri = this.createUrl(previewViewportsUrl);
|
2832
|
+
return await this.apiClient(fetchUri, {
|
2833
|
+
method: "DELETE",
|
2834
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2835
|
+
});
|
2836
|
+
}
|
2837
|
+
};
|
2838
|
+
|
2839
|
+
// src/PromptClient.ts
|
2840
|
+
import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
|
2787
2841
|
var PromptsUrl = "/api/v1/prompts";
|
2788
|
-
var PromptClient = class extends
|
2842
|
+
var PromptClient = class extends ApiClient9 {
|
2789
2843
|
constructor(options) {
|
2790
2844
|
super(options);
|
2791
2845
|
}
|
@@ -2816,9 +2870,9 @@ var PromptClient = class extends ApiClient8 {
|
|
2816
2870
|
};
|
2817
2871
|
|
2818
2872
|
// src/RelationshipClient.ts
|
2819
|
-
import { ApiClient as
|
2873
|
+
import { ApiClient as ApiClient10 } from "@uniformdev/context/api";
|
2820
2874
|
var RELATIONSHIPS_URL = "/api/v1/relationships";
|
2821
|
-
var RelationshipClient = class extends
|
2875
|
+
var RelationshipClient = class extends ApiClient10 {
|
2822
2876
|
constructor(options) {
|
2823
2877
|
super(options);
|
2824
2878
|
this.get = async (options) => {
|
@@ -2830,9 +2884,9 @@ var RelationshipClient = class extends ApiClient9 {
|
|
2830
2884
|
};
|
2831
2885
|
|
2832
2886
|
// src/ReleaseClient.ts
|
2833
|
-
import { ApiClient as
|
2887
|
+
import { ApiClient as ApiClient11 } from "@uniformdev/context/api";
|
2834
2888
|
var releasesUrl = "/api/v1/releases";
|
2835
|
-
var ReleaseClient = class extends
|
2889
|
+
var ReleaseClient = class extends ApiClient11 {
|
2836
2890
|
constructor(options) {
|
2837
2891
|
super(options);
|
2838
2892
|
}
|
@@ -2872,9 +2926,9 @@ var ReleaseClient = class extends ApiClient10 {
|
|
2872
2926
|
};
|
2873
2927
|
|
2874
2928
|
// src/ReleaseContentsClient.ts
|
2875
|
-
import { ApiClient as
|
2929
|
+
import { ApiClient as ApiClient12 } from "@uniformdev/context/api";
|
2876
2930
|
var releaseContentsUrl2 = "/api/v1/release-contents";
|
2877
|
-
var ReleaseContentsClient = class extends
|
2931
|
+
var ReleaseContentsClient = class extends ApiClient12 {
|
2878
2932
|
constructor(options) {
|
2879
2933
|
super(options);
|
2880
2934
|
}
|
@@ -2896,9 +2950,9 @@ var ReleaseContentsClient = class extends ApiClient11 {
|
|
2896
2950
|
};
|
2897
2951
|
|
2898
2952
|
// src/RouteClient.ts
|
2899
|
-
import { ApiClient as
|
2953
|
+
import { ApiClient as ApiClient13 } from "@uniformdev/context/api";
|
2900
2954
|
var ROUTE_URL = "/api/v1/route";
|
2901
|
-
var RouteClient = class extends
|
2955
|
+
var RouteClient = class extends ApiClient13 {
|
2902
2956
|
constructor(options) {
|
2903
2957
|
var _a;
|
2904
2958
|
if (!options.limitPolicy) {
|
@@ -3222,9 +3276,9 @@ function handleRichTextNodeBinding(object, options) {
|
|
3222
3276
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3223
3277
|
|
3224
3278
|
// src/WorkflowClient.ts
|
3225
|
-
import { ApiClient as
|
3279
|
+
import { ApiClient as ApiClient14 } from "@uniformdev/context/api";
|
3226
3280
|
var workflowsUrl = "/api/v1/workflows";
|
3227
|
-
var WorkflowClient = class extends
|
3281
|
+
var WorkflowClient = class extends ApiClient14 {
|
3228
3282
|
constructor(options) {
|
3229
3283
|
super(options);
|
3230
3284
|
}
|
@@ -3316,6 +3370,7 @@ export {
|
|
3316
3370
|
LOCALE_DYNAMIC_INPUT_NAME,
|
3317
3371
|
LocaleClient,
|
3318
3372
|
PLACEHOLDER_ID,
|
3373
|
+
PreviewClient,
|
3319
3374
|
PromptClient,
|
3320
3375
|
RelationshipClient,
|
3321
3376
|
ReleaseClient,
|
package/dist/index.js
CHANGED
@@ -279,7 +279,7 @@ __export(src_exports, {
|
|
279
279
|
ATTRIBUTE_PARAMETER_TYPE: () => ATTRIBUTE_PARAMETER_TYPE,
|
280
280
|
ATTRIBUTE_PARAMETER_VALUE: () => ATTRIBUTE_PARAMETER_VALUE,
|
281
281
|
ATTRIBUTE_PLACEHOLDER: () => ATTRIBUTE_PLACEHOLDER,
|
282
|
-
ApiClientError: () =>
|
282
|
+
ApiClientError: () => import_api16.ApiClientError,
|
283
283
|
BatchEntry: () => BatchEntry,
|
284
284
|
BlockFormatError: () => BlockFormatError,
|
285
285
|
CANVAS_BLOCK_PARAM_TYPE: () => CANVAS_BLOCK_PARAM_TYPE,
|
@@ -329,6 +329,7 @@ __export(src_exports, {
|
|
329
329
|
LOCALE_DYNAMIC_INPUT_NAME: () => LOCALE_DYNAMIC_INPUT_NAME,
|
330
330
|
LocaleClient: () => LocaleClient,
|
331
331
|
PLACEHOLDER_ID: () => PLACEHOLDER_ID,
|
332
|
+
PreviewClient: () => PreviewClient,
|
332
333
|
PromptClient: () => PromptClient,
|
333
334
|
RelationshipClient: () => RelationshipClient,
|
334
335
|
ReleaseClient: () => ReleaseClient,
|
@@ -2939,10 +2940,64 @@ function subscribeToComposition({
|
|
2939
2940
|
};
|
2940
2941
|
}
|
2941
2942
|
|
2942
|
-
// src/
|
2943
|
+
// src/PreviewClient.ts
|
2943
2944
|
var import_api9 = require("@uniformdev/context/api");
|
2945
|
+
var previewUrlsUrl = "/api/v1/preview-urls";
|
2946
|
+
var previewViewportsUrl = "/api/v1/preview-viewports";
|
2947
|
+
var PreviewClient = class extends import_api9.ApiClient {
|
2948
|
+
constructor(options) {
|
2949
|
+
super(options);
|
2950
|
+
}
|
2951
|
+
/** Fetches all preview URLs for a project */
|
2952
|
+
async getPreviewUrls(options) {
|
2953
|
+
const { projectId } = this.options;
|
2954
|
+
const fetchUri = this.createUrl(previewUrlsUrl, { ...options, projectId });
|
2955
|
+
return await this.apiClient(fetchUri);
|
2956
|
+
}
|
2957
|
+
/** Creates or updates a preview URL */
|
2958
|
+
async upsertPreviewUrl(body) {
|
2959
|
+
const fetchUri = this.createUrl(previewUrlsUrl);
|
2960
|
+
return await this.apiClient(fetchUri, {
|
2961
|
+
method: "PUT",
|
2962
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2963
|
+
});
|
2964
|
+
}
|
2965
|
+
/** Deletes a preview URL */
|
2966
|
+
async deletePreviewUrl(body) {
|
2967
|
+
const fetchUri = this.createUrl(previewUrlsUrl);
|
2968
|
+
return await this.apiClient(fetchUri, {
|
2969
|
+
method: "DELETE",
|
2970
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2971
|
+
});
|
2972
|
+
}
|
2973
|
+
/** Fetches all preview viewports for a project */
|
2974
|
+
async getPreviewViewports(options) {
|
2975
|
+
const { projectId } = this.options;
|
2976
|
+
const fetchUri = this.createUrl(previewViewportsUrl, { ...options, projectId });
|
2977
|
+
return await this.apiClient(fetchUri);
|
2978
|
+
}
|
2979
|
+
/** Creates or updates a preview viewport */
|
2980
|
+
async upsertPreviewViewport(body) {
|
2981
|
+
const fetchUri = this.createUrl(previewViewportsUrl);
|
2982
|
+
return await this.apiClient(fetchUri, {
|
2983
|
+
method: "PUT",
|
2984
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2985
|
+
});
|
2986
|
+
}
|
2987
|
+
/** Deletes a preview viewport */
|
2988
|
+
async deletePreviewViewport(body) {
|
2989
|
+
const fetchUri = this.createUrl(previewViewportsUrl);
|
2990
|
+
return await this.apiClient(fetchUri, {
|
2991
|
+
method: "DELETE",
|
2992
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2993
|
+
});
|
2994
|
+
}
|
2995
|
+
};
|
2996
|
+
|
2997
|
+
// src/PromptClient.ts
|
2998
|
+
var import_api10 = require("@uniformdev/context/api");
|
2944
2999
|
var PromptsUrl = "/api/v1/prompts";
|
2945
|
-
var PromptClient = class extends
|
3000
|
+
var PromptClient = class extends import_api10.ApiClient {
|
2946
3001
|
constructor(options) {
|
2947
3002
|
super(options);
|
2948
3003
|
}
|
@@ -2973,9 +3028,9 @@ var PromptClient = class extends import_api9.ApiClient {
|
|
2973
3028
|
};
|
2974
3029
|
|
2975
3030
|
// src/RelationshipClient.ts
|
2976
|
-
var
|
3031
|
+
var import_api11 = require("@uniformdev/context/api");
|
2977
3032
|
var RELATIONSHIPS_URL = "/api/v1/relationships";
|
2978
|
-
var RelationshipClient = class extends
|
3033
|
+
var RelationshipClient = class extends import_api11.ApiClient {
|
2979
3034
|
constructor(options) {
|
2980
3035
|
super(options);
|
2981
3036
|
this.get = async (options) => {
|
@@ -2987,9 +3042,9 @@ var RelationshipClient = class extends import_api10.ApiClient {
|
|
2987
3042
|
};
|
2988
3043
|
|
2989
3044
|
// src/ReleaseClient.ts
|
2990
|
-
var
|
3045
|
+
var import_api12 = require("@uniformdev/context/api");
|
2991
3046
|
var releasesUrl = "/api/v1/releases";
|
2992
|
-
var ReleaseClient = class extends
|
3047
|
+
var ReleaseClient = class extends import_api12.ApiClient {
|
2993
3048
|
constructor(options) {
|
2994
3049
|
super(options);
|
2995
3050
|
}
|
@@ -3029,9 +3084,9 @@ var ReleaseClient = class extends import_api11.ApiClient {
|
|
3029
3084
|
};
|
3030
3085
|
|
3031
3086
|
// src/ReleaseContentsClient.ts
|
3032
|
-
var
|
3087
|
+
var import_api13 = require("@uniformdev/context/api");
|
3033
3088
|
var releaseContentsUrl2 = "/api/v1/release-contents";
|
3034
|
-
var ReleaseContentsClient = class extends
|
3089
|
+
var ReleaseContentsClient = class extends import_api13.ApiClient {
|
3035
3090
|
constructor(options) {
|
3036
3091
|
super(options);
|
3037
3092
|
}
|
@@ -3053,9 +3108,9 @@ var ReleaseContentsClient = class extends import_api12.ApiClient {
|
|
3053
3108
|
};
|
3054
3109
|
|
3055
3110
|
// src/RouteClient.ts
|
3056
|
-
var
|
3111
|
+
var import_api14 = require("@uniformdev/context/api");
|
3057
3112
|
var ROUTE_URL = "/api/v1/route";
|
3058
|
-
var RouteClient = class extends
|
3113
|
+
var RouteClient = class extends import_api14.ApiClient {
|
3059
3114
|
constructor(options) {
|
3060
3115
|
var _a;
|
3061
3116
|
if (!options.limitPolicy) {
|
@@ -3376,12 +3431,12 @@ function handleRichTextNodeBinding(object, options) {
|
|
3376
3431
|
}
|
3377
3432
|
|
3378
3433
|
// src/index.ts
|
3379
|
-
var
|
3434
|
+
var import_api16 = require("@uniformdev/context/api");
|
3380
3435
|
|
3381
3436
|
// src/WorkflowClient.ts
|
3382
|
-
var
|
3437
|
+
var import_api15 = require("@uniformdev/context/api");
|
3383
3438
|
var workflowsUrl = "/api/v1/workflows";
|
3384
|
-
var WorkflowClient = class extends
|
3439
|
+
var WorkflowClient = class extends import_api15.ApiClient {
|
3385
3440
|
constructor(options) {
|
3386
3441
|
super(options);
|
3387
3442
|
}
|
@@ -3412,7 +3467,7 @@ var WorkflowClient = class extends import_api14.ApiClient {
|
|
3412
3467
|
};
|
3413
3468
|
|
3414
3469
|
// src/index.ts
|
3415
|
-
var CanvasClientError =
|
3470
|
+
var CanvasClientError = import_api16.ApiClientError;
|
3416
3471
|
// Annotate the CommonJS export names for ESM import in node:
|
3417
3472
|
0 && (module.exports = {
|
3418
3473
|
ASSETS_SOURCE_CUSTOM_URL,
|
@@ -3474,6 +3529,7 @@ var CanvasClientError = import_api15.ApiClientError;
|
|
3474
3529
|
LOCALE_DYNAMIC_INPUT_NAME,
|
3475
3530
|
LocaleClient,
|
3476
3531
|
PLACEHOLDER_ID,
|
3532
|
+
PreviewClient,
|
3477
3533
|
PromptClient,
|
3478
3534
|
RelationshipClient,
|
3479
3535
|
ReleaseClient,
|
package/dist/index.mjs
CHANGED
@@ -2782,10 +2782,64 @@ function subscribeToComposition({
|
|
2782
2782
|
};
|
2783
2783
|
}
|
2784
2784
|
|
2785
|
-
// src/
|
2785
|
+
// src/PreviewClient.ts
|
2786
2786
|
import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
|
2787
|
+
var previewUrlsUrl = "/api/v1/preview-urls";
|
2788
|
+
var previewViewportsUrl = "/api/v1/preview-viewports";
|
2789
|
+
var PreviewClient = class extends ApiClient8 {
|
2790
|
+
constructor(options) {
|
2791
|
+
super(options);
|
2792
|
+
}
|
2793
|
+
/** Fetches all preview URLs for a project */
|
2794
|
+
async getPreviewUrls(options) {
|
2795
|
+
const { projectId } = this.options;
|
2796
|
+
const fetchUri = this.createUrl(previewUrlsUrl, { ...options, projectId });
|
2797
|
+
return await this.apiClient(fetchUri);
|
2798
|
+
}
|
2799
|
+
/** Creates or updates a preview URL */
|
2800
|
+
async upsertPreviewUrl(body) {
|
2801
|
+
const fetchUri = this.createUrl(previewUrlsUrl);
|
2802
|
+
return await this.apiClient(fetchUri, {
|
2803
|
+
method: "PUT",
|
2804
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2805
|
+
});
|
2806
|
+
}
|
2807
|
+
/** Deletes a preview URL */
|
2808
|
+
async deletePreviewUrl(body) {
|
2809
|
+
const fetchUri = this.createUrl(previewUrlsUrl);
|
2810
|
+
return await this.apiClient(fetchUri, {
|
2811
|
+
method: "DELETE",
|
2812
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2813
|
+
});
|
2814
|
+
}
|
2815
|
+
/** Fetches all preview viewports for a project */
|
2816
|
+
async getPreviewViewports(options) {
|
2817
|
+
const { projectId } = this.options;
|
2818
|
+
const fetchUri = this.createUrl(previewViewportsUrl, { ...options, projectId });
|
2819
|
+
return await this.apiClient(fetchUri);
|
2820
|
+
}
|
2821
|
+
/** Creates or updates a preview viewport */
|
2822
|
+
async upsertPreviewViewport(body) {
|
2823
|
+
const fetchUri = this.createUrl(previewViewportsUrl);
|
2824
|
+
return await this.apiClient(fetchUri, {
|
2825
|
+
method: "PUT",
|
2826
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2827
|
+
});
|
2828
|
+
}
|
2829
|
+
/** Deletes a preview viewport */
|
2830
|
+
async deletePreviewViewport(body) {
|
2831
|
+
const fetchUri = this.createUrl(previewViewportsUrl);
|
2832
|
+
return await this.apiClient(fetchUri, {
|
2833
|
+
method: "DELETE",
|
2834
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId })
|
2835
|
+
});
|
2836
|
+
}
|
2837
|
+
};
|
2838
|
+
|
2839
|
+
// src/PromptClient.ts
|
2840
|
+
import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
|
2787
2841
|
var PromptsUrl = "/api/v1/prompts";
|
2788
|
-
var PromptClient = class extends
|
2842
|
+
var PromptClient = class extends ApiClient9 {
|
2789
2843
|
constructor(options) {
|
2790
2844
|
super(options);
|
2791
2845
|
}
|
@@ -2816,9 +2870,9 @@ var PromptClient = class extends ApiClient8 {
|
|
2816
2870
|
};
|
2817
2871
|
|
2818
2872
|
// src/RelationshipClient.ts
|
2819
|
-
import { ApiClient as
|
2873
|
+
import { ApiClient as ApiClient10 } from "@uniformdev/context/api";
|
2820
2874
|
var RELATIONSHIPS_URL = "/api/v1/relationships";
|
2821
|
-
var RelationshipClient = class extends
|
2875
|
+
var RelationshipClient = class extends ApiClient10 {
|
2822
2876
|
constructor(options) {
|
2823
2877
|
super(options);
|
2824
2878
|
this.get = async (options) => {
|
@@ -2830,9 +2884,9 @@ var RelationshipClient = class extends ApiClient9 {
|
|
2830
2884
|
};
|
2831
2885
|
|
2832
2886
|
// src/ReleaseClient.ts
|
2833
|
-
import { ApiClient as
|
2887
|
+
import { ApiClient as ApiClient11 } from "@uniformdev/context/api";
|
2834
2888
|
var releasesUrl = "/api/v1/releases";
|
2835
|
-
var ReleaseClient = class extends
|
2889
|
+
var ReleaseClient = class extends ApiClient11 {
|
2836
2890
|
constructor(options) {
|
2837
2891
|
super(options);
|
2838
2892
|
}
|
@@ -2872,9 +2926,9 @@ var ReleaseClient = class extends ApiClient10 {
|
|
2872
2926
|
};
|
2873
2927
|
|
2874
2928
|
// src/ReleaseContentsClient.ts
|
2875
|
-
import { ApiClient as
|
2929
|
+
import { ApiClient as ApiClient12 } from "@uniformdev/context/api";
|
2876
2930
|
var releaseContentsUrl2 = "/api/v1/release-contents";
|
2877
|
-
var ReleaseContentsClient = class extends
|
2931
|
+
var ReleaseContentsClient = class extends ApiClient12 {
|
2878
2932
|
constructor(options) {
|
2879
2933
|
super(options);
|
2880
2934
|
}
|
@@ -2896,9 +2950,9 @@ var ReleaseContentsClient = class extends ApiClient11 {
|
|
2896
2950
|
};
|
2897
2951
|
|
2898
2952
|
// src/RouteClient.ts
|
2899
|
-
import { ApiClient as
|
2953
|
+
import { ApiClient as ApiClient13 } from "@uniformdev/context/api";
|
2900
2954
|
var ROUTE_URL = "/api/v1/route";
|
2901
|
-
var RouteClient = class extends
|
2955
|
+
var RouteClient = class extends ApiClient13 {
|
2902
2956
|
constructor(options) {
|
2903
2957
|
var _a;
|
2904
2958
|
if (!options.limitPolicy) {
|
@@ -3222,9 +3276,9 @@ function handleRichTextNodeBinding(object, options) {
|
|
3222
3276
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3223
3277
|
|
3224
3278
|
// src/WorkflowClient.ts
|
3225
|
-
import { ApiClient as
|
3279
|
+
import { ApiClient as ApiClient14 } from "@uniformdev/context/api";
|
3226
3280
|
var workflowsUrl = "/api/v1/workflows";
|
3227
|
-
var WorkflowClient = class extends
|
3281
|
+
var WorkflowClient = class extends ApiClient14 {
|
3228
3282
|
constructor(options) {
|
3229
3283
|
super(options);
|
3230
3284
|
}
|
@@ -3316,6 +3370,7 @@ export {
|
|
3316
3370
|
LOCALE_DYNAMIC_INPUT_NAME,
|
3317
3371
|
LocaleClient,
|
3318
3372
|
PLACEHOLDER_ID,
|
3373
|
+
PreviewClient,
|
3319
3374
|
PromptClient,
|
3320
3375
|
RelationshipClient,
|
3321
3376
|
ReleaseClient,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "19.196.1-alpha.
|
3
|
+
"version": "19.196.1-alpha.8+a0a6727a3c",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -38,9 +38,9 @@
|
|
38
38
|
"pusher-js": "8.2.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@uniformdev/assets": "19.196.1-alpha.
|
42
|
-
"@uniformdev/context": "19.196.1-alpha.
|
43
|
-
"@uniformdev/richtext": "19.196.1-alpha.
|
41
|
+
"@uniformdev/assets": "19.196.1-alpha.8+a0a6727a3c",
|
42
|
+
"@uniformdev/context": "19.196.1-alpha.8+a0a6727a3c",
|
43
|
+
"@uniformdev/richtext": "19.196.1-alpha.8+a0a6727a3c",
|
44
44
|
"immer": "10.1.1"
|
45
45
|
},
|
46
46
|
"files": [
|
@@ -49,5 +49,5 @@
|
|
49
49
|
"publishConfig": {
|
50
50
|
"access": "public"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "a0a6727a3cc042858d337818c4331d63785da6fa"
|
53
53
|
}
|