@wix/create-app 0.0.226 → 0.0.228

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 CHANGED
@@ -48749,6 +48749,7 @@ function buildVerificationUris(verificationUri) {
48749
48749
  coloredUri.searchParams.set("studio", "true");
48750
48750
  const signupUri = new URL("https://users.wix.com/login/signup/password");
48751
48751
  signupUri.searchParams.set("redirectTo", coloredUri.href);
48752
+ signupUri.searchParams.set("referralInfo", "cli");
48752
48753
  return {
48753
48754
  coloredVerificationUri: coloredUri.toString(),
48754
48755
  signupUri: signupUri.toString()
@@ -56118,6 +56119,8 @@ function reportCommandStartEvent({
56118
56119
  flow,
56119
56120
  cliVersion,
56120
56121
  projectId,
56122
+ msid,
56123
+ appId,
56121
56124
  extensions,
56122
56125
  extraFields
56123
56126
  }) {
@@ -56141,16 +56144,22 @@ function reportCommandStartEvent({
56141
56144
  ...commandFields,
56142
56145
  ...projectId ? { projectId } : {},
56143
56146
  ...extraFields ? { extraFields: JSON.stringify(extraFields) } : {},
56147
+ ...msid ? { _msid: msid } : {},
56148
+ ...appId ? { _appId: appId } : {},
56144
56149
  isValid: true
56145
56150
  })
56146
56151
  );
56147
56152
  return {
56148
- succeed() {
56153
+ succeed(fields10) {
56154
+ const _msid = fields10?.msid ?? msid;
56155
+ const _appId = fields10?.appId ?? appId;
56149
56156
  void biLogger.report(
56150
56157
  wixCliCliCommandStatus({
56151
56158
  ...commandFields,
56152
56159
  ...extensions ? { extensions: JSON.stringify(extensions) } : {},
56153
56160
  duration: getDuration(),
56161
+ ..._msid ? { _msid } : {},
56162
+ ..._appId ? { _appId } : {},
56154
56163
  isSuccess: true,
56155
56164
  isValid: true
56156
56165
  })
@@ -56187,7 +56196,7 @@ function reportCommandStartEvent({
56187
56196
  var package_default = {
56188
56197
  name: "@wix/create-app",
56189
56198
  description: "Create Wix apps",
56190
- version: "0.0.226",
56199
+ version: "0.0.228",
56191
56200
  author: "Ihor Machuzhak",
56192
56201
  bin: "bin/index.cjs",
56193
56202
  devDependencies: {