@linktr.ee/create-link-app 1.7.8 → 1.7.10

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.
package/README.md CHANGED
@@ -89,7 +89,7 @@ USAGE
89
89
 
90
90
  FLAGS
91
91
  -p, --path=<value> Specify custom path to project directory
92
- --update Push update for existing Link App.
92
+ --update [Deprecated]
93
93
 
94
94
  DESCRIPTION
95
95
  Deploy your Link App and test it on Linktr.ee
@@ -82,6 +82,8 @@ class Deploy extends base_1.default {
82
82
  this.log(`\n--------------------------------`);
83
83
  this.log(`✅ Draft Link App successfully ${flags.update ? 'updated' : 'uploaded'}`);
84
84
  this.log(` - Link App ID: ${linkTypeId}`);
85
+ this.log(` - Status: ${result.linkType.status}`);
86
+ this.log(` - Updated: ${new Date(result.linkType.updated_timestamp).toLocaleString()}`);
85
87
  if (buildId) {
86
88
  this.log(` - Check Link App build: ${linkAppBuildUrl}`);
87
89
  }
@@ -101,7 +103,7 @@ Deploy.flags = {
101
103
  description: 'Specify custom path to project directory',
102
104
  }),
103
105
  update: core_1.Flags.boolean({
104
- description: 'Push update for existing Link App.',
106
+ description: '[Deprecated]',
105
107
  }),
106
108
  // Test local link-types service, with --endpoint http://localhost:8081
107
109
  endpoint: core_1.Flags.string({
@@ -117,7 +119,7 @@ Deploy.flags = {
117
119
  hidden: true,
118
120
  }),
119
121
  'skip-confirm': core_1.Flags.boolean({
120
- description: 'Skip confirmation prompt',
122
+ description: 'Skip confirmation prompt. Admin use only.',
121
123
  hidden: true,
122
124
  }),
123
125
  };
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.7.8",
2
+ "version": "1.7.10",
3
3
  "commands": {
4
4
  "build": {
5
5
  "id": "build",
@@ -96,7 +96,7 @@
96
96
  "update": {
97
97
  "name": "update",
98
98
  "type": "boolean",
99
- "description": "Push update for existing Link App.",
99
+ "description": "[Deprecated]",
100
100
  "allowNo": false
101
101
  },
102
102
  "endpoint": {
@@ -123,7 +123,7 @@
123
123
  "skip-confirm": {
124
124
  "name": "skip-confirm",
125
125
  "type": "boolean",
126
- "description": "Skip confirmation prompt",
126
+ "description": "Skip confirmation prompt. Admin use only.",
127
127
  "hidden": true,
128
128
  "allowNo": false
129
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/create-link-app",
3
- "version": "1.7.8",
3
+ "version": "1.7.10",
4
4
  "description": "Create a Link App on Linktr.ee.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Linktree",
@@ -5,6 +5,7 @@
5
5
  "The simple greeting link is an example link type which enables a user to to show a simple greeting on their linktr.ee profile.",
6
6
  "This example code acts as a base for experimenting with link type capabilities"
7
7
  ],
8
+ "manifest_version": "0.0.1",
8
9
  "version": "1.0.0",
9
10
  "supporting_links": {
10
11
  "terms_of_service": "https://example.com/terms-of-service",
File without changes