@shopify/oxygen-cli 2.0.1-unstable.202309251442.0 → 2.0.2-unstable.202309270856.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -50,7 +50,7 @@ oxygen:deploy [options]
50
50
  - --metadataUser <metadataUser>: User that initiated the deployment.
51
51
  - --metadataVersion <metadataVersion>: A version identifier for the deployment.
52
52
 
53
- **Note**: All metadata options (--metadataDescription, --metadataUrl, --metadataUser, and --metadataVersion) have a maximum character limit of 85.
53
+ **Note**: All metadata options (--metadataDescription, --metadataUrl, --metadataUser, and --metadataVersion) have a maximum character limit of 375.
54
54
 
55
55
  ### Example:
56
56
 
@@ -10,7 +10,7 @@ declare enum Header {
10
10
  }
11
11
  declare function isClientError(error: unknown): error is ClientError;
12
12
  declare function stderrLogger(log: string): void;
13
- declare const maxLabelLength = 85;
13
+ declare const maxLabelLength = 375;
14
14
  declare function parseToken(inputToken: string): DeploymentToken;
15
15
  interface VerifyConfigParams {
16
16
  config: DeploymentConfig;
@@ -71,7 +71,7 @@ function stderrLogger(log) {
71
71
  process.stderr.write(`${log}
72
72
  `);
73
73
  }
74
- const maxLabelLength = 85;
74
+ const maxLabelLength = 375;
75
75
  function parseToken(inputToken) {
76
76
  try {
77
77
  const decodedToken = Buffer.from(inputToken, "base64").toString("utf-8");
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.1-unstable.202309251442.0",
2
+ "version": "2.0.2-unstable.202309270856.0",
3
3
  "commands": {
4
4
  "oxygen:deploy": {
5
5
  "id": "oxygen:deploy",
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "@shopify:registry": "https://registry.npmjs.org"
6
6
  },
7
7
  "license": "MIT",
8
- "version": "2.0.1-unstable.202309251442.0",
8
+ "version": "2.0.2-unstable.202309270856.0",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "build": "tsup --clean --config ./tsup.config.ts && oclif manifest",