@uniformdev/canvas 20.32.1-alpha.4 → 20.32.2-alpha.2
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 +817 -1189
- package/dist/index.d.ts +817 -1189
- package/dist/index.esm.js +19 -65
- package/dist/index.js +22 -69
- package/dist/index.mjs +19 -65
- package/package.json +5 -5
package/dist/index.esm.js
CHANGED
@@ -2513,55 +2513,10 @@ var EntityReleasesClient = class extends ApiClient6 {
|
|
2513
2513
|
}
|
2514
2514
|
};
|
2515
2515
|
|
2516
|
-
// src/IntegrationPropertyEditorsClient.ts
|
2517
|
-
import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
|
2518
|
-
var _baseUrl;
|
2519
|
-
var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient extends ApiClient7 {
|
2520
|
-
constructor(options) {
|
2521
|
-
super(options);
|
2522
|
-
this.teamId = options.teamId;
|
2523
|
-
}
|
2524
|
-
/**
|
2525
|
-
* Gets a list of property type and hook names for the current team, including public integrations' hooks.
|
2526
|
-
*/
|
2527
|
-
get(options) {
|
2528
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl), {
|
2529
|
-
...options,
|
2530
|
-
teamId: this.teamId
|
2531
|
-
});
|
2532
|
-
return this.apiClient(fetchUri);
|
2533
|
-
}
|
2534
|
-
/**
|
2535
|
-
* Creates or updates a custom AI property editor on a Mesh app.
|
2536
|
-
*/
|
2537
|
-
async deploy(body) {
|
2538
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl));
|
2539
|
-
await this.apiClient(fetchUri, {
|
2540
|
-
method: "PUT",
|
2541
|
-
body: JSON.stringify({ ...body, teamId: this.teamId }),
|
2542
|
-
expectNoContent: true
|
2543
|
-
});
|
2544
|
-
}
|
2545
|
-
/**
|
2546
|
-
* Removes a custom AI property editor from a Mesh app.
|
2547
|
-
*/
|
2548
|
-
async delete(body) {
|
2549
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl));
|
2550
|
-
await this.apiClient(fetchUri, {
|
2551
|
-
method: "DELETE",
|
2552
|
-
body: JSON.stringify({ ...body, teamId: this.teamId }),
|
2553
|
-
expectNoContent: true
|
2554
|
-
});
|
2555
|
-
}
|
2556
|
-
};
|
2557
|
-
_baseUrl = new WeakMap();
|
2558
|
-
__privateAdd(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
|
2559
|
-
var IntegrationPropertyEditorsClient = _IntegrationPropertyEditorsClient;
|
2560
|
-
|
2561
2516
|
// src/LocaleClient.ts
|
2562
|
-
import { ApiClient as
|
2517
|
+
import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
|
2563
2518
|
var localesUrl = "/api/v1/locales";
|
2564
|
-
var LocaleClient = class extends
|
2519
|
+
var LocaleClient = class extends ApiClient7 {
|
2565
2520
|
constructor(options) {
|
2566
2521
|
super(options);
|
2567
2522
|
}
|
@@ -2930,10 +2885,10 @@ var createCanvasChannel = ({
|
|
2930
2885
|
};
|
2931
2886
|
|
2932
2887
|
// src/PreviewClient.ts
|
2933
|
-
import { ApiClient as
|
2888
|
+
import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
|
2934
2889
|
var previewUrlsUrl = "/api/v1/preview-urls";
|
2935
2890
|
var previewViewportsUrl = "/api/v1/preview-viewports";
|
2936
|
-
var PreviewClient = class extends
|
2891
|
+
var PreviewClient = class extends ApiClient8 {
|
2937
2892
|
constructor(options) {
|
2938
2893
|
super(options);
|
2939
2894
|
}
|
@@ -2996,9 +2951,9 @@ var PreviewClient = class extends ApiClient9 {
|
|
2996
2951
|
};
|
2997
2952
|
|
2998
2953
|
// src/ProjectClient.ts
|
2999
|
-
import { ApiClient as
|
2954
|
+
import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
|
3000
2955
|
var _url2;
|
3001
|
-
var _ProjectClient = class _ProjectClient extends
|
2956
|
+
var _ProjectClient = class _ProjectClient extends ApiClient9 {
|
3002
2957
|
constructor(options) {
|
3003
2958
|
super({ ...options, bypassCache: true });
|
3004
2959
|
}
|
@@ -3030,9 +2985,9 @@ __privateAdd(_ProjectClient, _url2, "/api/v1/project");
|
|
3030
2985
|
var ProjectClient = _ProjectClient;
|
3031
2986
|
|
3032
2987
|
// src/PromptClient.ts
|
3033
|
-
import { ApiClient as
|
2988
|
+
import { ApiClient as ApiClient10 } from "@uniformdev/context/api";
|
3034
2989
|
var PromptsUrl = "/api/v1/prompts";
|
3035
|
-
var PromptClient = class extends
|
2990
|
+
var PromptClient = class extends ApiClient10 {
|
3036
2991
|
constructor(options) {
|
3037
2992
|
super(options);
|
3038
2993
|
}
|
@@ -3063,9 +3018,9 @@ var PromptClient = class extends ApiClient11 {
|
|
3063
3018
|
};
|
3064
3019
|
|
3065
3020
|
// src/RelationshipClient.ts
|
3066
|
-
import { ApiClient as
|
3021
|
+
import { ApiClient as ApiClient11 } from "@uniformdev/context/api";
|
3067
3022
|
var RELATIONSHIPS_URL = "/api/v1/relationships";
|
3068
|
-
var RelationshipClient = class extends
|
3023
|
+
var RelationshipClient = class extends ApiClient11 {
|
3069
3024
|
constructor(options) {
|
3070
3025
|
super(options);
|
3071
3026
|
this.get = async (options) => {
|
@@ -3077,9 +3032,9 @@ var RelationshipClient = class extends ApiClient12 {
|
|
3077
3032
|
};
|
3078
3033
|
|
3079
3034
|
// src/ReleaseClient.ts
|
3080
|
-
import { ApiClient as
|
3035
|
+
import { ApiClient as ApiClient12 } from "@uniformdev/context/api";
|
3081
3036
|
var releasesUrl = "/api/v1/releases";
|
3082
|
-
var ReleaseClient = class extends
|
3037
|
+
var ReleaseClient = class extends ApiClient12 {
|
3083
3038
|
constructor(options) {
|
3084
3039
|
super(options);
|
3085
3040
|
}
|
@@ -3119,9 +3074,9 @@ var ReleaseClient = class extends ApiClient13 {
|
|
3119
3074
|
};
|
3120
3075
|
|
3121
3076
|
// src/ReleaseContentsClient.ts
|
3122
|
-
import { ApiClient as
|
3077
|
+
import { ApiClient as ApiClient13 } from "@uniformdev/context/api";
|
3123
3078
|
var releaseContentsUrl2 = "/api/v1/release-contents";
|
3124
|
-
var ReleaseContentsClient = class extends
|
3079
|
+
var ReleaseContentsClient = class extends ApiClient13 {
|
3125
3080
|
constructor(options) {
|
3126
3081
|
super(options);
|
3127
3082
|
}
|
@@ -3143,9 +3098,9 @@ var ReleaseContentsClient = class extends ApiClient14 {
|
|
3143
3098
|
};
|
3144
3099
|
|
3145
3100
|
// src/RouteClient.ts
|
3146
|
-
import { ApiClient as
|
3101
|
+
import { ApiClient as ApiClient14 } from "@uniformdev/context/api";
|
3147
3102
|
var ROUTE_URL = "/api/v1/route";
|
3148
|
-
var RouteClient = class extends
|
3103
|
+
var RouteClient = class extends ApiClient14 {
|
3149
3104
|
constructor(options) {
|
3150
3105
|
var _a;
|
3151
3106
|
if (!options.limitPolicy) {
|
@@ -3462,12 +3417,12 @@ function handleRichTextNodeBinding(object, options) {
|
|
3462
3417
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3463
3418
|
|
3464
3419
|
// src/.version.ts
|
3465
|
-
var version = "20.32.
|
3420
|
+
var version = "20.32.1";
|
3466
3421
|
|
3467
3422
|
// src/WorkflowClient.ts
|
3468
|
-
import { ApiClient as
|
3423
|
+
import { ApiClient as ApiClient15 } from "@uniformdev/context/api";
|
3469
3424
|
var workflowsUrl = "/api/v1/workflows";
|
3470
|
-
var WorkflowClient = class extends
|
3425
|
+
var WorkflowClient = class extends ApiClient15 {
|
3471
3426
|
constructor(options) {
|
3472
3427
|
super(options);
|
3473
3428
|
}
|
@@ -3561,7 +3516,6 @@ export {
|
|
3561
3516
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
3562
3517
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
3563
3518
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
3564
|
-
IntegrationPropertyEditorsClient,
|
3565
3519
|
LOCALE_DYNAMIC_INPUT_NAME,
|
3566
3520
|
LocaleClient,
|
3567
3521
|
PLACEHOLDER_ID,
|
package/dist/index.js
CHANGED
@@ -397,7 +397,7 @@ __export(src_exports, {
|
|
397
397
|
ATTRIBUTE_PARAMETER_TYPE: () => ATTRIBUTE_PARAMETER_TYPE,
|
398
398
|
ATTRIBUTE_PARAMETER_VALUE: () => ATTRIBUTE_PARAMETER_VALUE,
|
399
399
|
ATTRIBUTE_PLACEHOLDER: () => ATTRIBUTE_PLACEHOLDER,
|
400
|
-
ApiClientError: () =>
|
400
|
+
ApiClientError: () => import_api17.ApiClientError,
|
401
401
|
BatchEntry: () => BatchEntry,
|
402
402
|
BlockFormatError: () => BlockFormatError,
|
403
403
|
CANVAS_BLOCK_PARAM_TYPE: () => CANVAS_BLOCK_PARAM_TYPE,
|
@@ -449,7 +449,6 @@ __export(src_exports, {
|
|
449
449
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM: () => IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
450
450
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM: () => IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
451
451
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE: () => IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
452
|
-
IntegrationPropertyEditorsClient: () => IntegrationPropertyEditorsClient,
|
453
452
|
LOCALE_DYNAMIC_INPUT_NAME: () => LOCALE_DYNAMIC_INPUT_NAME,
|
454
453
|
LocaleClient: () => LocaleClient,
|
455
454
|
PLACEHOLDER_ID: () => PLACEHOLDER_ID,
|
@@ -2680,55 +2679,10 @@ var EntityReleasesClient = class extends import_api7.ApiClient {
|
|
2680
2679
|
}
|
2681
2680
|
};
|
2682
2681
|
|
2683
|
-
// src/IntegrationPropertyEditorsClient.ts
|
2684
|
-
var import_api8 = require("@uniformdev/context/api");
|
2685
|
-
var _baseUrl;
|
2686
|
-
var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient extends import_api8.ApiClient {
|
2687
|
-
constructor(options) {
|
2688
|
-
super(options);
|
2689
|
-
this.teamId = options.teamId;
|
2690
|
-
}
|
2691
|
-
/**
|
2692
|
-
* Gets a list of property type and hook names for the current team, including public integrations' hooks.
|
2693
|
-
*/
|
2694
|
-
get(options) {
|
2695
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl), {
|
2696
|
-
...options,
|
2697
|
-
teamId: this.teamId
|
2698
|
-
});
|
2699
|
-
return this.apiClient(fetchUri);
|
2700
|
-
}
|
2701
|
-
/**
|
2702
|
-
* Creates or updates a custom AI property editor on a Mesh app.
|
2703
|
-
*/
|
2704
|
-
async deploy(body) {
|
2705
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl));
|
2706
|
-
await this.apiClient(fetchUri, {
|
2707
|
-
method: "PUT",
|
2708
|
-
body: JSON.stringify({ ...body, teamId: this.teamId }),
|
2709
|
-
expectNoContent: true
|
2710
|
-
});
|
2711
|
-
}
|
2712
|
-
/**
|
2713
|
-
* Removes a custom AI property editor from a Mesh app.
|
2714
|
-
*/
|
2715
|
-
async delete(body) {
|
2716
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl));
|
2717
|
-
await this.apiClient(fetchUri, {
|
2718
|
-
method: "DELETE",
|
2719
|
-
body: JSON.stringify({ ...body, teamId: this.teamId }),
|
2720
|
-
expectNoContent: true
|
2721
|
-
});
|
2722
|
-
}
|
2723
|
-
};
|
2724
|
-
_baseUrl = new WeakMap();
|
2725
|
-
__privateAdd(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
|
2726
|
-
var IntegrationPropertyEditorsClient = _IntegrationPropertyEditorsClient;
|
2727
|
-
|
2728
2682
|
// src/LocaleClient.ts
|
2729
|
-
var
|
2683
|
+
var import_api8 = require("@uniformdev/context/api");
|
2730
2684
|
var localesUrl = "/api/v1/locales";
|
2731
|
-
var LocaleClient = class extends
|
2685
|
+
var LocaleClient = class extends import_api8.ApiClient {
|
2732
2686
|
constructor(options) {
|
2733
2687
|
super(options);
|
2734
2688
|
}
|
@@ -3097,10 +3051,10 @@ var createCanvasChannel = ({
|
|
3097
3051
|
};
|
3098
3052
|
|
3099
3053
|
// src/PreviewClient.ts
|
3100
|
-
var
|
3054
|
+
var import_api9 = require("@uniformdev/context/api");
|
3101
3055
|
var previewUrlsUrl = "/api/v1/preview-urls";
|
3102
3056
|
var previewViewportsUrl = "/api/v1/preview-viewports";
|
3103
|
-
var PreviewClient = class extends
|
3057
|
+
var PreviewClient = class extends import_api9.ApiClient {
|
3104
3058
|
constructor(options) {
|
3105
3059
|
super(options);
|
3106
3060
|
}
|
@@ -3163,9 +3117,9 @@ var PreviewClient = class extends import_api10.ApiClient {
|
|
3163
3117
|
};
|
3164
3118
|
|
3165
3119
|
// src/ProjectClient.ts
|
3166
|
-
var
|
3120
|
+
var import_api10 = require("@uniformdev/context/api");
|
3167
3121
|
var _url2;
|
3168
|
-
var _ProjectClient = class _ProjectClient extends
|
3122
|
+
var _ProjectClient = class _ProjectClient extends import_api10.ApiClient {
|
3169
3123
|
constructor(options) {
|
3170
3124
|
super({ ...options, bypassCache: true });
|
3171
3125
|
}
|
@@ -3197,9 +3151,9 @@ __privateAdd(_ProjectClient, _url2, "/api/v1/project");
|
|
3197
3151
|
var ProjectClient = _ProjectClient;
|
3198
3152
|
|
3199
3153
|
// src/PromptClient.ts
|
3200
|
-
var
|
3154
|
+
var import_api11 = require("@uniformdev/context/api");
|
3201
3155
|
var PromptsUrl = "/api/v1/prompts";
|
3202
|
-
var PromptClient = class extends
|
3156
|
+
var PromptClient = class extends import_api11.ApiClient {
|
3203
3157
|
constructor(options) {
|
3204
3158
|
super(options);
|
3205
3159
|
}
|
@@ -3230,9 +3184,9 @@ var PromptClient = class extends import_api12.ApiClient {
|
|
3230
3184
|
};
|
3231
3185
|
|
3232
3186
|
// src/RelationshipClient.ts
|
3233
|
-
var
|
3187
|
+
var import_api12 = require("@uniformdev/context/api");
|
3234
3188
|
var RELATIONSHIPS_URL = "/api/v1/relationships";
|
3235
|
-
var RelationshipClient = class extends
|
3189
|
+
var RelationshipClient = class extends import_api12.ApiClient {
|
3236
3190
|
constructor(options) {
|
3237
3191
|
super(options);
|
3238
3192
|
this.get = async (options) => {
|
@@ -3244,9 +3198,9 @@ var RelationshipClient = class extends import_api13.ApiClient {
|
|
3244
3198
|
};
|
3245
3199
|
|
3246
3200
|
// src/ReleaseClient.ts
|
3247
|
-
var
|
3201
|
+
var import_api13 = require("@uniformdev/context/api");
|
3248
3202
|
var releasesUrl = "/api/v1/releases";
|
3249
|
-
var ReleaseClient = class extends
|
3203
|
+
var ReleaseClient = class extends import_api13.ApiClient {
|
3250
3204
|
constructor(options) {
|
3251
3205
|
super(options);
|
3252
3206
|
}
|
@@ -3286,9 +3240,9 @@ var ReleaseClient = class extends import_api14.ApiClient {
|
|
3286
3240
|
};
|
3287
3241
|
|
3288
3242
|
// src/ReleaseContentsClient.ts
|
3289
|
-
var
|
3243
|
+
var import_api14 = require("@uniformdev/context/api");
|
3290
3244
|
var releaseContentsUrl2 = "/api/v1/release-contents";
|
3291
|
-
var ReleaseContentsClient = class extends
|
3245
|
+
var ReleaseContentsClient = class extends import_api14.ApiClient {
|
3292
3246
|
constructor(options) {
|
3293
3247
|
super(options);
|
3294
3248
|
}
|
@@ -3310,9 +3264,9 @@ var ReleaseContentsClient = class extends import_api15.ApiClient {
|
|
3310
3264
|
};
|
3311
3265
|
|
3312
3266
|
// src/RouteClient.ts
|
3313
|
-
var
|
3267
|
+
var import_api15 = require("@uniformdev/context/api");
|
3314
3268
|
var ROUTE_URL = "/api/v1/route";
|
3315
|
-
var RouteClient = class extends
|
3269
|
+
var RouteClient = class extends import_api15.ApiClient {
|
3316
3270
|
constructor(options) {
|
3317
3271
|
var _a;
|
3318
3272
|
if (!options.limitPolicy) {
|
@@ -3626,15 +3580,15 @@ function handleRichTextNodeBinding(object, options) {
|
|
3626
3580
|
}
|
3627
3581
|
|
3628
3582
|
// src/index.ts
|
3629
|
-
var
|
3583
|
+
var import_api17 = require("@uniformdev/context/api");
|
3630
3584
|
|
3631
3585
|
// src/.version.ts
|
3632
|
-
var version = "20.32.
|
3586
|
+
var version = "20.32.1";
|
3633
3587
|
|
3634
3588
|
// src/WorkflowClient.ts
|
3635
|
-
var
|
3589
|
+
var import_api16 = require("@uniformdev/context/api");
|
3636
3590
|
var workflowsUrl = "/api/v1/workflows";
|
3637
|
-
var WorkflowClient = class extends
|
3591
|
+
var WorkflowClient = class extends import_api16.ApiClient {
|
3638
3592
|
constructor(options) {
|
3639
3593
|
super(options);
|
3640
3594
|
}
|
@@ -3665,7 +3619,7 @@ var WorkflowClient = class extends import_api17.ApiClient {
|
|
3665
3619
|
};
|
3666
3620
|
|
3667
3621
|
// src/index.ts
|
3668
|
-
var CanvasClientError =
|
3622
|
+
var CanvasClientError = import_api17.ApiClientError;
|
3669
3623
|
// Annotate the CommonJS export names for ESM import in node:
|
3670
3624
|
0 && (module.exports = {
|
3671
3625
|
ASSETS_SOURCE_CUSTOM_URL,
|
@@ -3729,7 +3683,6 @@ var CanvasClientError = import_api18.ApiClientError;
|
|
3729
3683
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
3730
3684
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
3731
3685
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
3732
|
-
IntegrationPropertyEditorsClient,
|
3733
3686
|
LOCALE_DYNAMIC_INPUT_NAME,
|
3734
3687
|
LocaleClient,
|
3735
3688
|
PLACEHOLDER_ID,
|
package/dist/index.mjs
CHANGED
@@ -2513,55 +2513,10 @@ var EntityReleasesClient = class extends ApiClient6 {
|
|
2513
2513
|
}
|
2514
2514
|
};
|
2515
2515
|
|
2516
|
-
// src/IntegrationPropertyEditorsClient.ts
|
2517
|
-
import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
|
2518
|
-
var _baseUrl;
|
2519
|
-
var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient extends ApiClient7 {
|
2520
|
-
constructor(options) {
|
2521
|
-
super(options);
|
2522
|
-
this.teamId = options.teamId;
|
2523
|
-
}
|
2524
|
-
/**
|
2525
|
-
* Gets a list of property type and hook names for the current team, including public integrations' hooks.
|
2526
|
-
*/
|
2527
|
-
get(options) {
|
2528
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl), {
|
2529
|
-
...options,
|
2530
|
-
teamId: this.teamId
|
2531
|
-
});
|
2532
|
-
return this.apiClient(fetchUri);
|
2533
|
-
}
|
2534
|
-
/**
|
2535
|
-
* Creates or updates a custom AI property editor on a Mesh app.
|
2536
|
-
*/
|
2537
|
-
async deploy(body) {
|
2538
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl));
|
2539
|
-
await this.apiClient(fetchUri, {
|
2540
|
-
method: "PUT",
|
2541
|
-
body: JSON.stringify({ ...body, teamId: this.teamId }),
|
2542
|
-
expectNoContent: true
|
2543
|
-
});
|
2544
|
-
}
|
2545
|
-
/**
|
2546
|
-
* Removes a custom AI property editor from a Mesh app.
|
2547
|
-
*/
|
2548
|
-
async delete(body) {
|
2549
|
-
const fetchUri = this.createUrl(__privateGet(_IntegrationPropertyEditorsClient, _baseUrl));
|
2550
|
-
await this.apiClient(fetchUri, {
|
2551
|
-
method: "DELETE",
|
2552
|
-
body: JSON.stringify({ ...body, teamId: this.teamId }),
|
2553
|
-
expectNoContent: true
|
2554
|
-
});
|
2555
|
-
}
|
2556
|
-
};
|
2557
|
-
_baseUrl = new WeakMap();
|
2558
|
-
__privateAdd(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
|
2559
|
-
var IntegrationPropertyEditorsClient = _IntegrationPropertyEditorsClient;
|
2560
|
-
|
2561
2516
|
// src/LocaleClient.ts
|
2562
|
-
import { ApiClient as
|
2517
|
+
import { ApiClient as ApiClient7 } from "@uniformdev/context/api";
|
2563
2518
|
var localesUrl = "/api/v1/locales";
|
2564
|
-
var LocaleClient = class extends
|
2519
|
+
var LocaleClient = class extends ApiClient7 {
|
2565
2520
|
constructor(options) {
|
2566
2521
|
super(options);
|
2567
2522
|
}
|
@@ -2930,10 +2885,10 @@ var createCanvasChannel = ({
|
|
2930
2885
|
};
|
2931
2886
|
|
2932
2887
|
// src/PreviewClient.ts
|
2933
|
-
import { ApiClient as
|
2888
|
+
import { ApiClient as ApiClient8 } from "@uniformdev/context/api";
|
2934
2889
|
var previewUrlsUrl = "/api/v1/preview-urls";
|
2935
2890
|
var previewViewportsUrl = "/api/v1/preview-viewports";
|
2936
|
-
var PreviewClient = class extends
|
2891
|
+
var PreviewClient = class extends ApiClient8 {
|
2937
2892
|
constructor(options) {
|
2938
2893
|
super(options);
|
2939
2894
|
}
|
@@ -2996,9 +2951,9 @@ var PreviewClient = class extends ApiClient9 {
|
|
2996
2951
|
};
|
2997
2952
|
|
2998
2953
|
// src/ProjectClient.ts
|
2999
|
-
import { ApiClient as
|
2954
|
+
import { ApiClient as ApiClient9 } from "@uniformdev/context/api";
|
3000
2955
|
var _url2;
|
3001
|
-
var _ProjectClient = class _ProjectClient extends
|
2956
|
+
var _ProjectClient = class _ProjectClient extends ApiClient9 {
|
3002
2957
|
constructor(options) {
|
3003
2958
|
super({ ...options, bypassCache: true });
|
3004
2959
|
}
|
@@ -3030,9 +2985,9 @@ __privateAdd(_ProjectClient, _url2, "/api/v1/project");
|
|
3030
2985
|
var ProjectClient = _ProjectClient;
|
3031
2986
|
|
3032
2987
|
// src/PromptClient.ts
|
3033
|
-
import { ApiClient as
|
2988
|
+
import { ApiClient as ApiClient10 } from "@uniformdev/context/api";
|
3034
2989
|
var PromptsUrl = "/api/v1/prompts";
|
3035
|
-
var PromptClient = class extends
|
2990
|
+
var PromptClient = class extends ApiClient10 {
|
3036
2991
|
constructor(options) {
|
3037
2992
|
super(options);
|
3038
2993
|
}
|
@@ -3063,9 +3018,9 @@ var PromptClient = class extends ApiClient11 {
|
|
3063
3018
|
};
|
3064
3019
|
|
3065
3020
|
// src/RelationshipClient.ts
|
3066
|
-
import { ApiClient as
|
3021
|
+
import { ApiClient as ApiClient11 } from "@uniformdev/context/api";
|
3067
3022
|
var RELATIONSHIPS_URL = "/api/v1/relationships";
|
3068
|
-
var RelationshipClient = class extends
|
3023
|
+
var RelationshipClient = class extends ApiClient11 {
|
3069
3024
|
constructor(options) {
|
3070
3025
|
super(options);
|
3071
3026
|
this.get = async (options) => {
|
@@ -3077,9 +3032,9 @@ var RelationshipClient = class extends ApiClient12 {
|
|
3077
3032
|
};
|
3078
3033
|
|
3079
3034
|
// src/ReleaseClient.ts
|
3080
|
-
import { ApiClient as
|
3035
|
+
import { ApiClient as ApiClient12 } from "@uniformdev/context/api";
|
3081
3036
|
var releasesUrl = "/api/v1/releases";
|
3082
|
-
var ReleaseClient = class extends
|
3037
|
+
var ReleaseClient = class extends ApiClient12 {
|
3083
3038
|
constructor(options) {
|
3084
3039
|
super(options);
|
3085
3040
|
}
|
@@ -3119,9 +3074,9 @@ var ReleaseClient = class extends ApiClient13 {
|
|
3119
3074
|
};
|
3120
3075
|
|
3121
3076
|
// src/ReleaseContentsClient.ts
|
3122
|
-
import { ApiClient as
|
3077
|
+
import { ApiClient as ApiClient13 } from "@uniformdev/context/api";
|
3123
3078
|
var releaseContentsUrl2 = "/api/v1/release-contents";
|
3124
|
-
var ReleaseContentsClient = class extends
|
3079
|
+
var ReleaseContentsClient = class extends ApiClient13 {
|
3125
3080
|
constructor(options) {
|
3126
3081
|
super(options);
|
3127
3082
|
}
|
@@ -3143,9 +3098,9 @@ var ReleaseContentsClient = class extends ApiClient14 {
|
|
3143
3098
|
};
|
3144
3099
|
|
3145
3100
|
// src/RouteClient.ts
|
3146
|
-
import { ApiClient as
|
3101
|
+
import { ApiClient as ApiClient14 } from "@uniformdev/context/api";
|
3147
3102
|
var ROUTE_URL = "/api/v1/route";
|
3148
|
-
var RouteClient = class extends
|
3103
|
+
var RouteClient = class extends ApiClient14 {
|
3149
3104
|
constructor(options) {
|
3150
3105
|
var _a;
|
3151
3106
|
if (!options.limitPolicy) {
|
@@ -3462,12 +3417,12 @@ function handleRichTextNodeBinding(object, options) {
|
|
3462
3417
|
import { ApiClientError as ApiClientError2 } from "@uniformdev/context/api";
|
3463
3418
|
|
3464
3419
|
// src/.version.ts
|
3465
|
-
var version = "20.32.
|
3420
|
+
var version = "20.32.1";
|
3466
3421
|
|
3467
3422
|
// src/WorkflowClient.ts
|
3468
|
-
import { ApiClient as
|
3423
|
+
import { ApiClient as ApiClient15 } from "@uniformdev/context/api";
|
3469
3424
|
var workflowsUrl = "/api/v1/workflows";
|
3470
|
-
var WorkflowClient = class extends
|
3425
|
+
var WorkflowClient = class extends ApiClient15 {
|
3471
3426
|
constructor(options) {
|
3472
3427
|
super(options);
|
3473
3428
|
}
|
@@ -3561,7 +3516,6 @@ export {
|
|
3561
3516
|
IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM,
|
3562
3517
|
IN_CONTEXT_EDITOR_QUERY_STRING_PARAM,
|
3563
3518
|
IS_RENDERED_BY_UNIFORM_ATTRIBUTE,
|
3564
|
-
IntegrationPropertyEditorsClient,
|
3565
3519
|
LOCALE_DYNAMIC_INPUT_NAME,
|
3566
3520
|
LocaleClient,
|
3567
3521
|
PLACEHOLDER_ID,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "20.32.
|
3
|
+
"version": "20.32.2-alpha.2+63682964b1",
|
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.32.
|
45
|
-
"@uniformdev/context": "20.32.
|
46
|
-
"@uniformdev/richtext": "20.32.
|
44
|
+
"@uniformdev/assets": "20.32.2-alpha.2+63682964b1",
|
45
|
+
"@uniformdev/context": "20.32.2-alpha.2+63682964b1",
|
46
|
+
"@uniformdev/richtext": "20.32.2-alpha.2+63682964b1",
|
47
47
|
"immer": "10.1.1"
|
48
48
|
},
|
49
49
|
"files": [
|
@@ -52,5 +52,5 @@
|
|
52
52
|
"publishConfig": {
|
53
53
|
"access": "public"
|
54
54
|
},
|
55
|
-
"gitHead": "
|
55
|
+
"gitHead": "63682964b1d48a8e78403f5c67365bb0db875568"
|
56
56
|
}
|