@wevion/cli 1.0.2845 → 1.0.2881

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.
Files changed (2) hide show
  1. package/openapi.json +78 -3
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -130918,7 +130918,8 @@
130918
130918
  },
130919
130919
  "in": "query",
130920
130920
  "name": "member_id",
130921
- "required": false
130921
+ "required": false,
130922
+ "description": "Filter to a single team member. Admins/owners may pass any accessible member id; other roles may only pass their own user id."
130922
130923
  },
130923
130924
  {
130924
130925
  "schema": {
@@ -131845,7 +131846,8 @@
131845
131846
  },
131846
131847
  "in": "query",
131847
131848
  "name": "member_id",
131848
- "required": false
131849
+ "required": false,
131850
+ "description": "Filter to a single team member. Admins/owners may pass any accessible member id; other roles may only pass their own user id."
131849
131851
  },
131850
131852
  {
131851
131853
  "schema": {
@@ -133051,7 +133053,8 @@
133051
133053
  },
133052
133054
  "in": "query",
133053
133055
  "name": "member_id",
133054
- "required": false
133056
+ "required": false,
133057
+ "description": "Filter to a single team member. Admins/owners may pass any accessible member id; other roles may only pass their own user id."
133055
133058
  },
133056
133059
  {
133057
133060
  "schema": {
@@ -189918,6 +189921,78 @@
189918
189921
  ]
189919
189922
  }
189920
189923
  },
189924
+ "/api/v1/shopify/install-start": {
189925
+ "get": {
189926
+ "operationId": "getApiV1ShopifyInstallStart",
189927
+ "summary": "Shopify-initiated install entry point",
189928
+ "tags": [
189929
+ "shopify"
189930
+ ],
189931
+ "description": "Public entry point Shopify redirects merchants to from the App Store or Shopify admin. Validates the Shopify HMAC signature and redirects the browser to the Wevion frontend to resume the connection.",
189932
+ "parameters": [
189933
+ {
189934
+ "schema": {
189935
+ "type": "string"
189936
+ },
189937
+ "in": "query",
189938
+ "name": "shop",
189939
+ "required": true
189940
+ },
189941
+ {
189942
+ "schema": {
189943
+ "type": "string"
189944
+ },
189945
+ "in": "query",
189946
+ "name": "hmac",
189947
+ "required": true
189948
+ },
189949
+ {
189950
+ "schema": {
189951
+ "type": "string"
189952
+ },
189953
+ "in": "query",
189954
+ "name": "timestamp",
189955
+ "required": true
189956
+ }
189957
+ ],
189958
+ "responses": {
189959
+ "302": {
189960
+ "description": "Redirect",
189961
+ "content": {
189962
+ "application/json": {
189963
+ "schema": {
189964
+ "type": "string"
189965
+ }
189966
+ }
189967
+ }
189968
+ },
189969
+ "400": {
189970
+ "description": "Invalid request - schema validation failed",
189971
+ "content": {
189972
+ "application/json": {
189973
+ "schema": {
189974
+ "type": "object",
189975
+ "required": [
189976
+ "error"
189977
+ ],
189978
+ "properties": {
189979
+ "error": {
189980
+ "type": "string"
189981
+ },
189982
+ "message": {
189983
+ "type": "string"
189984
+ },
189985
+ "statusCode": {
189986
+ "type": "number"
189987
+ }
189988
+ }
189989
+ }
189990
+ }
189991
+ }
189992
+ }
189993
+ }
189994
+ }
189995
+ },
189921
189996
  "/api/v1/shopify/install": {
189922
189997
  "post": {
189923
189998
  "operationId": "postApiV1ShopifyInstall",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.2845",
3
+ "version": "1.0.2881",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {