@wevion/cli 1.0.2757 → 1.0.2781

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 +112 -20
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -31139,26 +31139,6 @@
31139
31139
  "effective_at": {
31140
31140
  "format": "date-time",
31141
31141
  "type": "string"
31142
- },
31143
- "downgraded_resources": {
31144
- "type": "object",
31145
- "properties": {
31146
- "ad_accounts": {
31147
- "type": "number"
31148
- },
31149
- "fan_pages": {
31150
- "type": "number"
31151
- },
31152
- "pixels": {
31153
- "type": "number"
31154
- },
31155
- "catalogs": {
31156
- "type": "number"
31157
- },
31158
- "team_members": {
31159
- "type": "number"
31160
- }
31161
- }
31162
31142
  }
31163
31143
  }
31164
31144
  }
@@ -31519,6 +31499,10 @@
31519
31499
  }
31520
31500
  }
31521
31501
  }
31502
+ },
31503
+ "seats_carried": {
31504
+ "description": "Purchased extra-user seats that will be carried onto the target plan (0 when none are carriable — those are then counted against the seat cap as a violation).",
31505
+ "type": "number"
31522
31506
  }
31523
31507
  }
31524
31508
  }
@@ -34900,6 +34884,32 @@
34900
34884
  }
34901
34885
  }
34902
34886
  },
34887
+ "409": {
34888
+ "description": "Conflict - resource state prevents the operation",
34889
+ "content": {
34890
+ "application/json": {
34891
+ "schema": {
34892
+ "type": "object",
34893
+ "required": [
34894
+ "statusCode",
34895
+ "error",
34896
+ "message"
34897
+ ],
34898
+ "properties": {
34899
+ "statusCode": {
34900
+ "type": "number"
34901
+ },
34902
+ "error": {
34903
+ "type": "string"
34904
+ },
34905
+ "message": {
34906
+ "type": "string"
34907
+ }
34908
+ }
34909
+ }
34910
+ }
34911
+ }
34912
+ },
34903
34913
  "429": {
34904
34914
  "description": "Too many requests - rate limit exceeded",
34905
34915
  "content": {
@@ -35094,6 +35104,32 @@
35094
35104
  }
35095
35105
  }
35096
35106
  },
35107
+ "409": {
35108
+ "description": "Conflict - resource state prevents the operation",
35109
+ "content": {
35110
+ "application/json": {
35111
+ "schema": {
35112
+ "type": "object",
35113
+ "required": [
35114
+ "statusCode",
35115
+ "error",
35116
+ "message"
35117
+ ],
35118
+ "properties": {
35119
+ "statusCode": {
35120
+ "type": "number"
35121
+ },
35122
+ "error": {
35123
+ "type": "string"
35124
+ },
35125
+ "message": {
35126
+ "type": "string"
35127
+ }
35128
+ }
35129
+ }
35130
+ }
35131
+ }
35132
+ },
35097
35133
  "500": {
35098
35134
  "description": "Internal server error",
35099
35135
  "content": {
@@ -92177,6 +92213,7 @@
92177
92213
  "anyOf": [
92178
92214
  {
92179
92215
  "minimum": 1,
92216
+ "maximum": 27777777,
92180
92217
  "type": "integer"
92181
92218
  },
92182
92219
  {
@@ -205687,6 +205724,24 @@
205687
205724
  "enum": [
205688
205725
  "finance"
205689
205726
  ]
205727
+ },
205728
+ {
205729
+ "type": "string",
205730
+ "enum": [
205731
+ "owner"
205732
+ ]
205733
+ },
205734
+ {
205735
+ "type": "string",
205736
+ "enum": [
205737
+ "admin"
205738
+ ]
205739
+ },
205740
+ {
205741
+ "type": "string",
205742
+ "enum": [
205743
+ "member"
205744
+ ]
205690
205745
  }
205691
205746
  ]
205692
205747
  }
@@ -227010,6 +227065,7 @@
227010
227065
  "schema": {
227011
227066
  "type": "object",
227012
227067
  "required": [
227068
+ "onboarding_call",
227013
227069
  "permissions_context",
227014
227070
  "runtime_flags",
227015
227071
  "scope_context",
@@ -227019,6 +227075,42 @@
227019
227075
  "user_overrides"
227020
227076
  ],
227021
227077
  "properties": {
227078
+ "onboarding_call": {
227079
+ "type": "object",
227080
+ "required": [
227081
+ "enabled",
227082
+ "booking_url",
227083
+ "window_days",
227084
+ "targeting"
227085
+ ],
227086
+ "properties": {
227087
+ "enabled": {
227088
+ "type": "boolean"
227089
+ },
227090
+ "booking_url": {
227091
+ "type": "string"
227092
+ },
227093
+ "window_days": {
227094
+ "type": "integer"
227095
+ },
227096
+ "targeting": {
227097
+ "anyOf": [
227098
+ {
227099
+ "type": "string",
227100
+ "enum": [
227101
+ "new_users"
227102
+ ]
227103
+ },
227104
+ {
227105
+ "type": "string",
227106
+ "enum": [
227107
+ "all"
227108
+ ]
227109
+ }
227110
+ ]
227111
+ }
227112
+ }
227113
+ },
227022
227114
  "permissions_context": {
227023
227115
  "type": "object",
227024
227116
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.2757",
3
+ "version": "1.0.2781",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {