@wix/workspace 1.2.0 → 1.3.1

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.
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["../../../../src/namespaces/apps/types.ts"],"sourcesContent":["type ResponseStatus = 'SUCCESS' | 'CANCELED';\n\ntype InstallFlowRequest = {\n appId: string;\n enablePostInstallNavigation?: boolean;\n};\n\ntype InstallFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\ntype PurchasePlanFlowRequest = {\n appId: string;\n};\n\ntype PurchasePlanFlowResponse = {\n appId: string;\n status: 'DISPATCHED' | 'NOT_INSTALLED';\n};\n\ntype UpdateFlowRequest = {\n appId: string;\n};\n\ntype UpdateFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\ntype ContactSupportRequest = {\n appId: string;\n};\n\ntype ContactSupportResponse = {\n status: 'DISPATCHED' | 'CANCELED';\n};\n\nexport type AppsNamespace = {\n startInstallFlow: (args: InstallFlowRequest) => Promise<InstallFlowResponse>;\n startPurchasePlanFlow: (\n args: PurchasePlanFlowRequest,\n ) => Promise<PurchasePlanFlowResponse>;\n startUpdateFlow: (args: UpdateFlowRequest) => Promise<UpdateFlowResponse>;\n openContactSupport: (\n args: ContactSupportRequest,\n ) => Promise<ContactSupportResponse>;\n};\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"names":[],"sources":["../../../../src/namespaces/apps/types.ts"],"sourcesContent":["type ResponseStatus = 'SUCCESS' | 'CANCELED';\n\nexport type InstallFlowRequest = {\n appId: string;\n enablePostInstallNavigation?: boolean;\n};\n\nexport type InstallFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\nexport type PurchasePlanFlowRequest = {\n appId: string;\n};\n\nexport type PurchasePlanFlowResponse = {\n appId: string;\n status: 'DISPATCHED' | 'NOT_INSTALLED';\n};\n\nexport type UpdateFlowRequest = {\n appId: string;\n};\n\nexport type UpdateFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\nexport type ContactSupportRequest = {\n appId: string;\n};\n\nexport type ContactSupportResponse = {\n status: 'DISPATCHED' | 'CANCELED';\n};\n\nexport type AppsNamespace = {\n startInstallFlow: (args: InstallFlowRequest) => Promise<InstallFlowResponse>;\n startPurchasePlanFlow: (\n args: PurchasePlanFlowRequest,\n ) => Promise<PurchasePlanFlowResponse>;\n startUpdateFlow: (args: UpdateFlowRequest) => Promise<UpdateFlowResponse>;\n openContactSupport: (\n args: ContactSupportRequest,\n ) => Promise<ContactSupportResponse>;\n};\n"],"mappings":"","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":[],"sources":["../../../../src/namespaces/apps/types.ts"],"sourcesContent":["type ResponseStatus = 'SUCCESS' | 'CANCELED';\n\ntype InstallFlowRequest = {\n appId: string;\n enablePostInstallNavigation?: boolean;\n};\n\ntype InstallFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\ntype PurchasePlanFlowRequest = {\n appId: string;\n};\n\ntype PurchasePlanFlowResponse = {\n appId: string;\n status: 'DISPATCHED' | 'NOT_INSTALLED';\n};\n\ntype UpdateFlowRequest = {\n appId: string;\n};\n\ntype UpdateFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\ntype ContactSupportRequest = {\n appId: string;\n};\n\ntype ContactSupportResponse = {\n status: 'DISPATCHED' | 'CANCELED';\n};\n\nexport type AppsNamespace = {\n startInstallFlow: (args: InstallFlowRequest) => Promise<InstallFlowResponse>;\n startPurchasePlanFlow: (\n args: PurchasePlanFlowRequest,\n ) => Promise<PurchasePlanFlowResponse>;\n startUpdateFlow: (args: UpdateFlowRequest) => Promise<UpdateFlowResponse>;\n openContactSupport: (\n args: ContactSupportRequest,\n ) => Promise<ContactSupportResponse>;\n};\n"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"names":[],"sources":["../../../../src/namespaces/apps/types.ts"],"sourcesContent":["type ResponseStatus = 'SUCCESS' | 'CANCELED';\n\nexport type InstallFlowRequest = {\n appId: string;\n enablePostInstallNavigation?: boolean;\n};\n\nexport type InstallFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\nexport type PurchasePlanFlowRequest = {\n appId: string;\n};\n\nexport type PurchasePlanFlowResponse = {\n appId: string;\n status: 'DISPATCHED' | 'NOT_INSTALLED';\n};\n\nexport type UpdateFlowRequest = {\n appId: string;\n};\n\nexport type UpdateFlowResponse = {\n status: ResponseStatus;\n installedApps: {\n appId: string;\n version: string;\n }[];\n};\n\nexport type ContactSupportRequest = {\n appId: string;\n};\n\nexport type ContactSupportResponse = {\n status: 'DISPATCHED' | 'CANCELED';\n};\n\nexport type AppsNamespace = {\n startInstallFlow: (args: InstallFlowRequest) => Promise<InstallFlowResponse>;\n startPurchasePlanFlow: (\n args: PurchasePlanFlowRequest,\n ) => Promise<PurchasePlanFlowResponse>;\n startUpdateFlow: (args: UpdateFlowRequest) => Promise<UpdateFlowResponse>;\n openContactSupport: (\n args: ContactSupportRequest,\n ) => Promise<ContactSupportResponse>;\n};\n"],"mappings":"","ignoreList":[]}
@@ -1,36 +1,36 @@
1
1
  declare type ResponseStatus = 'SUCCESS' | 'CANCELED';
2
- declare type InstallFlowRequest = {
2
+ export declare type InstallFlowRequest = {
3
3
  appId: string;
4
4
  enablePostInstallNavigation?: boolean;
5
5
  };
6
- declare type InstallFlowResponse = {
6
+ export declare type InstallFlowResponse = {
7
7
  status: ResponseStatus;
8
8
  installedApps: {
9
9
  appId: string;
10
10
  version: string;
11
11
  }[];
12
12
  };
13
- declare type PurchasePlanFlowRequest = {
13
+ export declare type PurchasePlanFlowRequest = {
14
14
  appId: string;
15
15
  };
16
- declare type PurchasePlanFlowResponse = {
16
+ export declare type PurchasePlanFlowResponse = {
17
17
  appId: string;
18
18
  status: 'DISPATCHED' | 'NOT_INSTALLED';
19
19
  };
20
- declare type UpdateFlowRequest = {
20
+ export declare type UpdateFlowRequest = {
21
21
  appId: string;
22
22
  };
23
- declare type UpdateFlowResponse = {
23
+ export declare type UpdateFlowResponse = {
24
24
  status: ResponseStatus;
25
25
  installedApps: {
26
26
  appId: string;
27
27
  version: string;
28
28
  }[];
29
29
  };
30
- declare type ContactSupportRequest = {
30
+ export declare type ContactSupportRequest = {
31
31
  appId: string;
32
32
  };
33
- declare type ContactSupportResponse = {
33
+ export declare type ContactSupportResponse = {
34
34
  status: 'DISPATCHED' | 'CANCELED';
35
35
  };
36
36
  export declare type AppsNamespace = {
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/namespaces/apps/types.ts"],"names":[],"mappings":"AAAA,aAAK,cAAc,GAAG,SAAS,GAAG,UAAU,CAAC;AAE7C,aAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC,CAAC;AAEF,aAAK,mBAAmB,GAAG;IACzB,MAAM,EAAE,cAAc,CAAC;IACvB,aAAa,EAAE;QACb,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,EAAE,CAAC;CACL,CAAC;AAEF,aAAK,uBAAuB,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,aAAK,wBAAwB,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,YAAY,GAAG,eAAe,CAAC;CACxC,CAAC;AAEF,aAAK,iBAAiB,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,aAAK,kBAAkB,GAAG;IACxB,MAAM,EAAE,cAAc,CAAC;IACvB,aAAa,EAAE;QACb,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,EAAE,CAAC;CACL,CAAC;AAEF,aAAK,qBAAqB,GAAG;IAC3B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,aAAK,sBAAsB,GAAG;IAC5B,MAAM,EAAE,YAAY,GAAG,UAAU,CAAC;CACnC,CAAC;AAEF,oBAAY,aAAa,GAAG;IAC1B,gBAAgB,EAAE,CAAC,IAAI,EAAE,kBAAkB,KAAK,OAAO,CAAC,mBAAmB,CAAC,CAAC;IAC7E,qBAAqB,EAAE,CACrB,IAAI,EAAE,uBAAuB,KAC1B,OAAO,CAAC,wBAAwB,CAAC,CAAC;IACvC,eAAe,EAAE,CAAC,IAAI,EAAE,iBAAiB,KAAK,OAAO,CAAC,kBAAkB,CAAC,CAAC;IAC1E,kBAAkB,EAAE,CAClB,IAAI,EAAE,qBAAqB,KACxB,OAAO,CAAC,sBAAsB,CAAC,CAAC;CACtC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/namespaces/apps/types.ts"],"names":[],"mappings":"AAAA,aAAK,cAAc,GAAG,SAAS,GAAG,UAAU,CAAC;AAE7C,oBAAY,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC,CAAC;AAEF,oBAAY,mBAAmB,GAAG;IAChC,MAAM,EAAE,cAAc,CAAC;IACvB,aAAa,EAAE;QACb,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,EAAE,CAAC;CACL,CAAC;AAEF,oBAAY,uBAAuB,GAAG;IACpC,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,wBAAwB,GAAG;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,YAAY,GAAG,eAAe,CAAC;CACxC,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,kBAAkB,GAAG;IAC/B,MAAM,EAAE,cAAc,CAAC;IACvB,aAAa,EAAE;QACb,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,EAAE,CAAC;CACL,CAAC;AAEF,oBAAY,qBAAqB,GAAG;IAClC,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,sBAAsB,GAAG;IACnC,MAAM,EAAE,YAAY,GAAG,UAAU,CAAC;CACnC,CAAC;AAEF,oBAAY,aAAa,GAAG;IAC1B,gBAAgB,EAAE,CAAC,IAAI,EAAE,kBAAkB,KAAK,OAAO,CAAC,mBAAmB,CAAC,CAAC;IAC7E,qBAAqB,EAAE,CACrB,IAAI,EAAE,uBAAuB,KAC1B,OAAO,CAAC,wBAAwB,CAAC,CAAC;IACvC,eAAe,EAAE,CAAC,IAAI,EAAE,iBAAiB,KAAK,OAAO,CAAC,kBAAkB,CAAC,CAAC;IAC1E,kBAAkB,EAAE,CAClB,IAAI,EAAE,qBAAqB,KACxB,OAAO,CAAC,sBAAsB,CAAC,CAAC;CACtC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/workspace",
3
- "version": "1.2.0",
3
+ "version": "1.3.1",
4
4
  "license": "UNLICENSED",
5
5
  "author": {
6
6
  "name": "Aviv Maimon",
@@ -69,5 +69,5 @@
69
69
  "wallaby": {
70
70
  "autoDetect": true
71
71
  },
72
- "falconPackageHash": "1d6eed135ce9cda2b5e3d93e5b193034fc355cab9308e6a302bea0ea"
72
+ "falconPackageHash": "0ea69910985f50f58a10e59aae148b2bfc332db8834cf58ed2941b1b"
73
73
  }