@wevion/cli 1.0.2812 → 1.0.2868

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 -0
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -189918,6 +189918,78 @@
189918
189918
  ]
189919
189919
  }
189920
189920
  },
189921
+ "/api/v1/shopify/install-start": {
189922
+ "get": {
189923
+ "operationId": "getApiV1ShopifyInstallStart",
189924
+ "summary": "Shopify-initiated install entry point",
189925
+ "tags": [
189926
+ "shopify"
189927
+ ],
189928
+ "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.",
189929
+ "parameters": [
189930
+ {
189931
+ "schema": {
189932
+ "type": "string"
189933
+ },
189934
+ "in": "query",
189935
+ "name": "shop",
189936
+ "required": true
189937
+ },
189938
+ {
189939
+ "schema": {
189940
+ "type": "string"
189941
+ },
189942
+ "in": "query",
189943
+ "name": "hmac",
189944
+ "required": true
189945
+ },
189946
+ {
189947
+ "schema": {
189948
+ "type": "string"
189949
+ },
189950
+ "in": "query",
189951
+ "name": "timestamp",
189952
+ "required": true
189953
+ }
189954
+ ],
189955
+ "responses": {
189956
+ "302": {
189957
+ "description": "Redirect",
189958
+ "content": {
189959
+ "application/json": {
189960
+ "schema": {
189961
+ "type": "string"
189962
+ }
189963
+ }
189964
+ }
189965
+ },
189966
+ "400": {
189967
+ "description": "Invalid request - schema validation failed",
189968
+ "content": {
189969
+ "application/json": {
189970
+ "schema": {
189971
+ "type": "object",
189972
+ "required": [
189973
+ "error"
189974
+ ],
189975
+ "properties": {
189976
+ "error": {
189977
+ "type": "string"
189978
+ },
189979
+ "message": {
189980
+ "type": "string"
189981
+ },
189982
+ "statusCode": {
189983
+ "type": "number"
189984
+ }
189985
+ }
189986
+ }
189987
+ }
189988
+ }
189989
+ }
189990
+ }
189991
+ }
189992
+ },
189921
189993
  "/api/v1/shopify/install": {
189922
189994
  "post": {
189923
189995
  "operationId": "postApiV1ShopifyInstall",
@@ -204113,6 +204185,12 @@
204113
204185
  "ASSIGN_PIXELS"
204114
204186
  ]
204115
204187
  },
204188
+ {
204189
+ "type": "string",
204190
+ "enum": [
204191
+ "SYNC_TOKEN_PERMISSIONS"
204192
+ ]
204193
+ },
204116
204194
  {
204117
204195
  "type": "string",
204118
204196
  "enum": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.2812",
3
+ "version": "1.0.2868",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {