@wix/create-app 0.0.152 → 0.0.154
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/build/index.js +144 -58
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -73387,6 +73387,9 @@ async function createPanorama(options) {
|
|
|
73387
73387
|
},
|
|
73388
73388
|
reporterOptions: {
|
|
73389
73389
|
silent: true
|
|
73390
|
+
},
|
|
73391
|
+
data: {
|
|
73392
|
+
trackingId: process.env.TRACKING_ID
|
|
73390
73393
|
}
|
|
73391
73394
|
}).withGlobalConfig(globalConfig).setMuted(!userConfig.telemetry);
|
|
73392
73395
|
return factory;
|
|
@@ -73668,7 +73671,7 @@ function reportCommandStartEvent({
|
|
|
73668
73671
|
var package_default = {
|
|
73669
73672
|
name: "@wix/create-app",
|
|
73670
73673
|
description: "Create Wix apps",
|
|
73671
|
-
version: "0.0.
|
|
73674
|
+
version: "0.0.154",
|
|
73672
73675
|
author: "Ihor Machuzhak",
|
|
73673
73676
|
bin: "bin/index.cjs",
|
|
73674
73677
|
devDependencies: {
|
|
@@ -78095,6 +78098,83 @@ function queryMyApps(payload5) {
|
|
|
78095
78098
|
return __queryMyApps;
|
|
78096
78099
|
}
|
|
78097
78100
|
|
|
78101
|
+
// ../../node_modules/@wix/ambassador-devcenter-myapps-v1-my-app/build/es/types.impl.js
|
|
78102
|
+
init_esm_shims();
|
|
78103
|
+
var CreatedByType;
|
|
78104
|
+
(function(CreatedByType3) {
|
|
78105
|
+
CreatedByType3["USER"] = "USER";
|
|
78106
|
+
CreatedByType3["APP"] = "APP";
|
|
78107
|
+
})(CreatedByType || (CreatedByType = {}));
|
|
78108
|
+
var AppType;
|
|
78109
|
+
(function(AppType5) {
|
|
78110
|
+
AppType5["SITE_APP"] = "SITE_APP";
|
|
78111
|
+
AppType5["API_KEY"] = "API_KEY";
|
|
78112
|
+
AppType5["VELO_APP"] = "VELO_APP";
|
|
78113
|
+
AppType5["PRIVATE_APP"] = "PRIVATE_APP";
|
|
78114
|
+
AppType5["HEADLESS"] = "HEADLESS";
|
|
78115
|
+
AppType5["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
78116
|
+
})(AppType || (AppType = {}));
|
|
78117
|
+
var VersionStatus;
|
|
78118
|
+
(function(VersionStatus3) {
|
|
78119
|
+
VersionStatus3["NONE_STATUS"] = "NONE_STATUS";
|
|
78120
|
+
VersionStatus3["DRAFT"] = "DRAFT";
|
|
78121
|
+
VersionStatus3["SUBMITTED"] = "SUBMITTED";
|
|
78122
|
+
VersionStatus3["IN_REVIEW"] = "IN_REVIEW";
|
|
78123
|
+
VersionStatus3["APPROVED"] = "APPROVED";
|
|
78124
|
+
VersionStatus3["PUBLISHED"] = "PUBLISHED";
|
|
78125
|
+
VersionStatus3["DECLINED"] = "DECLINED";
|
|
78126
|
+
VersionStatus3["ARCHIVED"] = "ARCHIVED";
|
|
78127
|
+
VersionStatus3["HIDDEN"] = "HIDDEN";
|
|
78128
|
+
VersionStatus3["RELEASED"] = "RELEASED";
|
|
78129
|
+
})(VersionStatus || (VersionStatus = {}));
|
|
78130
|
+
var SortOrder;
|
|
78131
|
+
(function(SortOrder2) {
|
|
78132
|
+
SortOrder2["ASC"] = "ASC";
|
|
78133
|
+
SortOrder2["DESC"] = "DESC";
|
|
78134
|
+
})(SortOrder || (SortOrder = {}));
|
|
78135
|
+
var RequestedFields;
|
|
78136
|
+
(function(RequestedFields2) {
|
|
78137
|
+
RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
78138
|
+
RequestedFields2["CREATED_BY_DATA"] = "CREATED_BY_DATA";
|
|
78139
|
+
})(RequestedFields || (RequestedFields = {}));
|
|
78140
|
+
var SubjectType;
|
|
78141
|
+
(function(SubjectType2) {
|
|
78142
|
+
SubjectType2["UNKNOWN"] = "UNKNOWN";
|
|
78143
|
+
SubjectType2["ACCOUNT"] = "ACCOUNT";
|
|
78144
|
+
SubjectType2["USER"] = "USER";
|
|
78145
|
+
SubjectType2["USER_GROUP"] = "USER_GROUP";
|
|
78146
|
+
SubjectType2["MEMBER_GROUP"] = "MEMBER_GROUP";
|
|
78147
|
+
SubjectType2["VISITOR_GROUP"] = "VISITOR_GROUP";
|
|
78148
|
+
SubjectType2["EXTERNAL_APP"] = "EXTERNAL_APP";
|
|
78149
|
+
SubjectType2["ACCOUNT_GROUP"] = "ACCOUNT_GROUP";
|
|
78150
|
+
SubjectType2["WIX_APP"] = "WIX_APP";
|
|
78151
|
+
})(SubjectType || (SubjectType = {}));
|
|
78152
|
+
var SubjectContextType;
|
|
78153
|
+
(function(SubjectContextType2) {
|
|
78154
|
+
SubjectContextType2["UNKNOWN_CTX"] = "UNKNOWN_CTX";
|
|
78155
|
+
SubjectContextType2["ORG_CTX"] = "ORG_CTX";
|
|
78156
|
+
SubjectContextType2["ACCOUNT_CTX"] = "ACCOUNT_CTX";
|
|
78157
|
+
})(SubjectContextType || (SubjectContextType = {}));
|
|
78158
|
+
var SimpleConditionOperator;
|
|
78159
|
+
(function(SimpleConditionOperator2) {
|
|
78160
|
+
SimpleConditionOperator2["UNKNOWN_SIMPLE_OP"] = "UNKNOWN_SIMPLE_OP";
|
|
78161
|
+
SimpleConditionOperator2["EQUAL"] = "EQUAL";
|
|
78162
|
+
})(SimpleConditionOperator || (SimpleConditionOperator = {}));
|
|
78163
|
+
var JoinedConditionOperator;
|
|
78164
|
+
(function(JoinedConditionOperator2) {
|
|
78165
|
+
JoinedConditionOperator2["UNKNOWN_JOIN_OP"] = "UNKNOWN_JOIN_OP";
|
|
78166
|
+
JoinedConditionOperator2["OR"] = "OR";
|
|
78167
|
+
JoinedConditionOperator2["AND"] = "AND";
|
|
78168
|
+
})(JoinedConditionOperator || (JoinedConditionOperator = {}));
|
|
78169
|
+
var WebhookIdentityType;
|
|
78170
|
+
(function(WebhookIdentityType4) {
|
|
78171
|
+
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
78172
|
+
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
78173
|
+
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
78174
|
+
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
78175
|
+
WebhookIdentityType4["APP"] = "APP";
|
|
78176
|
+
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
78177
|
+
|
|
78098
78178
|
// ../../node_modules/@wix/ambassador-devcenter-dsm-v1-development-site/build/es/http.impl.js
|
|
78099
78179
|
init_esm_shims();
|
|
78100
78180
|
var _createDevelopmentSiteRequest = {};
|
|
@@ -80138,12 +80218,12 @@ var CardStylesLayout;
|
|
|
80138
80218
|
CardStylesLayout3["STACKED"] = "STACKED";
|
|
80139
80219
|
CardStylesLayout3["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
80140
80220
|
})(CardStylesLayout || (CardStylesLayout = {}));
|
|
80141
|
-
var
|
|
80142
|
-
(function(
|
|
80143
|
-
|
|
80144
|
-
|
|
80145
|
-
|
|
80146
|
-
})(
|
|
80221
|
+
var AppType2;
|
|
80222
|
+
(function(AppType5) {
|
|
80223
|
+
AppType5["PRODUCT"] = "PRODUCT";
|
|
80224
|
+
AppType5["EVENT"] = "EVENT";
|
|
80225
|
+
AppType5["BOOKING"] = "BOOKING";
|
|
80226
|
+
})(AppType2 || (AppType2 = {}));
|
|
80147
80227
|
var InitialExpandedItems;
|
|
80148
80228
|
(function(InitialExpandedItems3) {
|
|
80149
80229
|
InitialExpandedItems3["FIRST"] = "FIRST";
|
|
@@ -81922,14 +82002,14 @@ var VersionType;
|
|
|
81922
82002
|
VersionType2["LATEST_VERSION"] = "LATEST_VERSION";
|
|
81923
82003
|
VersionType2["DEV_VERSION"] = "DEV_VERSION";
|
|
81924
82004
|
})(VersionType || (VersionType = {}));
|
|
81925
|
-
var
|
|
81926
|
-
(function(
|
|
81927
|
-
|
|
81928
|
-
|
|
81929
|
-
|
|
81930
|
-
|
|
81931
|
-
|
|
81932
|
-
})(
|
|
82005
|
+
var WebhookIdentityType2;
|
|
82006
|
+
(function(WebhookIdentityType4) {
|
|
82007
|
+
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
82008
|
+
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
82009
|
+
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
82010
|
+
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
82011
|
+
WebhookIdentityType4["APP"] = "APP";
|
|
82012
|
+
})(WebhookIdentityType2 || (WebhookIdentityType2 = {}));
|
|
81933
82013
|
|
|
81934
82014
|
// ../dev-center-client/src/schemas.ts
|
|
81935
82015
|
init_esm_shims();
|
|
@@ -81945,19 +82025,19 @@ var Classification;
|
|
|
81945
82025
|
Classification2["HEADLESS"] = "HEADLESS";
|
|
81946
82026
|
Classification2["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
81947
82027
|
})(Classification || (Classification = {}));
|
|
81948
|
-
var
|
|
81949
|
-
(function(
|
|
81950
|
-
|
|
81951
|
-
|
|
81952
|
-
|
|
81953
|
-
|
|
81954
|
-
|
|
81955
|
-
|
|
81956
|
-
|
|
81957
|
-
|
|
81958
|
-
|
|
81959
|
-
|
|
81960
|
-
})(
|
|
82028
|
+
var VersionStatus2;
|
|
82029
|
+
(function(VersionStatus3) {
|
|
82030
|
+
VersionStatus3["NONE_STATUS"] = "NONE_STATUS";
|
|
82031
|
+
VersionStatus3["DRAFT"] = "DRAFT";
|
|
82032
|
+
VersionStatus3["SUBMITTED"] = "SUBMITTED";
|
|
82033
|
+
VersionStatus3["IN_REVIEW"] = "IN_REVIEW";
|
|
82034
|
+
VersionStatus3["APPROVED"] = "APPROVED";
|
|
82035
|
+
VersionStatus3["PUBLISHED"] = "PUBLISHED";
|
|
82036
|
+
VersionStatus3["DECLINED"] = "DECLINED";
|
|
82037
|
+
VersionStatus3["ARCHIVED"] = "ARCHIVED";
|
|
82038
|
+
VersionStatus3["HIDDEN"] = "HIDDEN";
|
|
82039
|
+
VersionStatus3["RELEASED"] = "RELEASED";
|
|
82040
|
+
})(VersionStatus2 || (VersionStatus2 = {}));
|
|
81961
82041
|
var ComponentType2;
|
|
81962
82042
|
(function(ComponentType3) {
|
|
81963
82043
|
ComponentType3["NONE"] = "NONE";
|
|
@@ -82929,12 +83009,12 @@ var CardStylesLayout2;
|
|
|
82929
83009
|
CardStylesLayout3["STACKED"] = "STACKED";
|
|
82930
83010
|
CardStylesLayout3["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
82931
83011
|
})(CardStylesLayout2 || (CardStylesLayout2 = {}));
|
|
82932
|
-
var
|
|
82933
|
-
(function(
|
|
82934
|
-
|
|
82935
|
-
|
|
82936
|
-
|
|
82937
|
-
})(
|
|
83012
|
+
var AppType3;
|
|
83013
|
+
(function(AppType5) {
|
|
83014
|
+
AppType5["PRODUCT"] = "PRODUCT";
|
|
83015
|
+
AppType5["EVENT"] = "EVENT";
|
|
83016
|
+
AppType5["BOOKING"] = "BOOKING";
|
|
83017
|
+
})(AppType3 || (AppType3 = {}));
|
|
82938
83018
|
var InitialExpandedItems2;
|
|
82939
83019
|
(function(InitialExpandedItems3) {
|
|
82940
83020
|
InitialExpandedItems3["FIRST"] = "FIRST";
|
|
@@ -84559,14 +84639,14 @@ var TranslationType;
|
|
|
84559
84639
|
TranslationType2["UNINITIALIZED"] = "UNINITIALIZED";
|
|
84560
84640
|
TranslationType2["COMPONENT"] = "COMPONENT";
|
|
84561
84641
|
})(TranslationType || (TranslationType = {}));
|
|
84562
|
-
var
|
|
84563
|
-
(function(
|
|
84564
|
-
|
|
84565
|
-
|
|
84566
|
-
|
|
84567
|
-
|
|
84568
|
-
|
|
84569
|
-
})(
|
|
84642
|
+
var WebhookIdentityType3;
|
|
84643
|
+
(function(WebhookIdentityType4) {
|
|
84644
|
+
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
84645
|
+
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
84646
|
+
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
84647
|
+
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
84648
|
+
WebhookIdentityType4["APP"] = "APP";
|
|
84649
|
+
})(WebhookIdentityType3 || (WebhookIdentityType3 = {}));
|
|
84570
84650
|
|
|
84571
84651
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-template/build/es/types.impl.js
|
|
84572
84652
|
init_esm_shims();
|
|
@@ -84601,21 +84681,21 @@ var Status3;
|
|
|
84601
84681
|
Status4["DEPRECATED"] = "DEPRECATED";
|
|
84602
84682
|
Status4["ARCHIVED"] = "ARCHIVED";
|
|
84603
84683
|
})(Status3 || (Status3 = {}));
|
|
84604
|
-
var
|
|
84605
|
-
(function(
|
|
84606
|
-
|
|
84607
|
-
|
|
84608
|
-
|
|
84609
|
-
|
|
84610
|
-
|
|
84611
|
-
|
|
84612
|
-
})(
|
|
84613
|
-
var
|
|
84614
|
-
(function(
|
|
84615
|
-
|
|
84616
|
-
|
|
84617
|
-
|
|
84618
|
-
})(
|
|
84684
|
+
var AppType4;
|
|
84685
|
+
(function(AppType5) {
|
|
84686
|
+
AppType5["SITE_APP"] = "SITE_APP";
|
|
84687
|
+
AppType5["API_KEY"] = "API_KEY";
|
|
84688
|
+
AppType5["VELO_APP"] = "VELO_APP";
|
|
84689
|
+
AppType5["PRIVATE_APP"] = "PRIVATE_APP";
|
|
84690
|
+
AppType5["HEADLESS"] = "HEADLESS";
|
|
84691
|
+
AppType5["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
84692
|
+
})(AppType4 || (AppType4 = {}));
|
|
84693
|
+
var CreatedByType2;
|
|
84694
|
+
(function(CreatedByType3) {
|
|
84695
|
+
CreatedByType3["USER"] = "USER";
|
|
84696
|
+
CreatedByType3["APP"] = "APP";
|
|
84697
|
+
CreatedByType3["CODE_GEN"] = "CODE_GEN";
|
|
84698
|
+
})(CreatedByType2 || (CreatedByType2 = {}));
|
|
84619
84699
|
var ShowConsentBehaviour;
|
|
84620
84700
|
(function(ShowConsentBehaviour2) {
|
|
84621
84701
|
ShowConsentBehaviour2["DEFAULT_BEHAVIOUR"] = "DEFAULT_BEHAVIOUR";
|
|
@@ -84959,7 +85039,13 @@ var DevCenterClient = class {
|
|
|
84959
85039
|
query: {
|
|
84960
85040
|
paging: {
|
|
84961
85041
|
limit: 500
|
|
84962
|
-
}
|
|
85042
|
+
},
|
|
85043
|
+
sort: [
|
|
85044
|
+
{
|
|
85045
|
+
fieldName: "updatedDate",
|
|
85046
|
+
order: SortOrder.DESC
|
|
85047
|
+
}
|
|
85048
|
+
]
|
|
84963
85049
|
}
|
|
84964
85050
|
})
|
|
84965
85051
|
),
|