@aetherpush/cli 0.1.0 → 0.2.0

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.
@@ -0,0 +1,112 @@
1
+ export interface CustomHeaders {
2
+ [headerName: string]: string;
3
+ }
4
+ export interface Account {
5
+ email: string;
6
+ name: string;
7
+ linkedProviders: string[];
8
+ }
9
+ export interface AccessKey {
10
+ friendlyName: string;
11
+ createdBy?: string;
12
+ createdTime?: number;
13
+ expires: number;
14
+ isSession?: boolean;
15
+ }
16
+ export interface AccessKeyWithSecret extends AccessKey {
17
+ name: string;
18
+ }
19
+ export interface AccessKeyRequest {
20
+ friendlyName?: string;
21
+ ttl?: number;
22
+ }
23
+ export interface Session {
24
+ loggedInTime: number;
25
+ createdBy: string;
26
+ }
27
+ export interface CollaboratorProperties {
28
+ permission: "Owner" | "Collaborator";
29
+ isCurrentAccount?: boolean;
30
+ }
31
+ export interface CollaboratorMap {
32
+ [email: string]: CollaboratorProperties;
33
+ }
34
+ export interface App {
35
+ name: string;
36
+ collaborators?: CollaboratorMap;
37
+ deployments?: string[];
38
+ }
39
+ export interface AppCreationRequest {
40
+ name: string;
41
+ manuallyProvisionDeployments?: boolean;
42
+ }
43
+ export interface Deployment {
44
+ name: string;
45
+ key?: string;
46
+ package?: Package;
47
+ }
48
+ export interface BlobInfo {
49
+ size: number;
50
+ url: string;
51
+ }
52
+ export interface PackageHashToBlobInfoMap {
53
+ [packageHash: string]: BlobInfo;
54
+ }
55
+ export interface PackageInfo {
56
+ appVersion?: string;
57
+ description?: string;
58
+ isDisabled?: boolean;
59
+ isMandatory?: boolean;
60
+ label?: string;
61
+ packageHash?: string;
62
+ rollout?: number;
63
+ }
64
+ export interface Package extends PackageInfo {
65
+ blobUrl: string;
66
+ diffPackageMap?: PackageHashToBlobInfoMap;
67
+ manifestBlobUrl?: string;
68
+ originalDeployment?: string;
69
+ originalLabel?: string;
70
+ releasedBy?: string;
71
+ releaseMethod?: "Upload" | "Promote" | "Rollback";
72
+ size: number;
73
+ uploadTime: number;
74
+ }
75
+ export interface UpdateMetrics {
76
+ active: number;
77
+ downloaded?: number;
78
+ failed?: number;
79
+ installed?: number;
80
+ }
81
+ export interface DeploymentMetrics {
82
+ [packageLabelOrAppVersion: string]: UpdateMetrics;
83
+ }
84
+ export type ApiKeyScope = "deploy" | "apps" | "keys" | "read";
85
+ export interface ApiKey {
86
+ id: string;
87
+ name: string;
88
+ key_prefix: string;
89
+ scopes: ApiKeyScope[];
90
+ expires_at: string | null;
91
+ revoked_at: string | null;
92
+ last_used_at: string | null;
93
+ created_at: string;
94
+ updated_at: string;
95
+ }
96
+ export interface ApiKeyWithSecret extends ApiKey {
97
+ key: string;
98
+ }
99
+ export interface ApiKeyCreationRequest {
100
+ name: string;
101
+ scopes: ApiKeyScope[];
102
+ expires_at?: string | null;
103
+ }
104
+ export interface ApiKeyUpdateRequest {
105
+ name?: string;
106
+ scopes?: ApiKeyScope[];
107
+ expires_at?: string | null;
108
+ }
109
+ export interface ApiKeyRevokeResult {
110
+ id: string;
111
+ revoked_at: string;
112
+ }
@@ -0,0 +1,6 @@
1
+ export declare function isBinaryOrZip(path: string): boolean;
2
+ export declare function isDirectory(path: string): boolean;
3
+ export declare function fileExists(file: string): boolean;
4
+ export declare function copyFileToTmpDir(filePath: string): string;
5
+ export declare function fileDoesNotExistOrIsDirectory(path: string): boolean;
6
+ export declare function normalizePath(filePath: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aetherpush/cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Command-line interface for Aether — over-the-air updates for React Native apps.",
5
5
  "main": "./bin/script/index.js",
6
6
  "types": "./bin/script/index.d.ts",
@@ -66,16 +66,12 @@
66
66
  "semver": "^7.5.3",
67
67
  "simctl": "^3.0.0",
68
68
  "temp": "^0.9.4",
69
- "which": "^5.0.0",
69
+ "which": "^7.0.0",
70
70
  "wordwrap": "1.0.0",
71
- "xcode": "^0.9.1",
71
+ "xcode": "^3.0.1",
72
72
  "xml2js": "^0.6.0",
73
73
  "yargs": "^17.7.2",
74
- "yazl": "^2.5.1"
75
- },
76
- "overrides": {
77
- "lodash": "^4.17.21",
78
- "xmldom": "npm:@xmldom/xmldom@^0.8.10"
74
+ "yazl": "^3.3.1"
79
75
  },
80
76
  "devDependencies": {
81
77
  "@types/jest": "^30.0.0",
@@ -1,178 +0,0 @@
1
- "use strict";
2
- // Copyright (c) Aether. All rights reserved.
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.AcquisitionManager = exports.AcquisitionStatus = void 0;
5
- class AcquisitionStatus {
6
- static DeploymentSucceeded = "DeploymentSucceeded";
7
- static DeploymentFailed = "DeploymentFailed";
8
- }
9
- exports.AcquisitionStatus = AcquisitionStatus;
10
- class AcquisitionManager {
11
- _appVersion;
12
- _clientUniqueId;
13
- _deploymentKey;
14
- _httpRequester;
15
- _ignoreAppVersion;
16
- _serverUrl;
17
- constructor(httpRequester, configuration) {
18
- this._httpRequester = httpRequester;
19
- this._serverUrl = configuration.serverUrl;
20
- if (this._serverUrl.slice(-1) !== "/") {
21
- this._serverUrl += "/";
22
- }
23
- this._appVersion = configuration.appVersion;
24
- this._clientUniqueId = configuration.clientUniqueId;
25
- this._deploymentKey = configuration.deploymentKey;
26
- this._ignoreAppVersion = configuration.ignoreAppVersion;
27
- }
28
- queryUpdateWithCurrentPackage(currentPackage, callback) {
29
- if (!currentPackage || !currentPackage.appVersion) {
30
- throw new Error("Calling common acquisition SDK with incorrect package"); // Unexpected; indicates error in our implementation
31
- }
32
- const updateRequest = {
33
- deploymentKey: this._deploymentKey,
34
- appVersion: currentPackage.appVersion,
35
- packageHash: currentPackage.packageHash,
36
- isCompanion: this._ignoreAppVersion,
37
- label: currentPackage.label,
38
- clientUniqueId: this._clientUniqueId,
39
- };
40
- const requestUrl = this._serverUrl + "updateCheck?" + queryStringify(updateRequest);
41
- this._httpRequester.request(0 /* Http.Verb.GET */, requestUrl, (error, response) => {
42
- if (error) {
43
- callback(error, /*remotePackage=*/ null);
44
- return;
45
- }
46
- if (response.statusCode !== 200) {
47
- callback(new Error(response.statusCode + ": " + response.body), /*remotePackage=*/ null);
48
- return;
49
- }
50
- let updateInfo;
51
- try {
52
- const responseObject = JSON.parse(response.body);
53
- updateInfo = responseObject.updateInfo;
54
- }
55
- catch (error) {
56
- callback(error, /*remotePackage=*/ null);
57
- return;
58
- }
59
- if (!updateInfo) {
60
- callback(error, /*remotePackage=*/ null);
61
- return;
62
- }
63
- else if (updateInfo.updateAppVersion) {
64
- callback(/*error=*/ null, {
65
- updateAppVersion: true,
66
- appVersion: updateInfo.appVersion,
67
- });
68
- return;
69
- }
70
- else if (!updateInfo.isAvailable) {
71
- callback(/*error=*/ null, /*remotePackage=*/ null);
72
- return;
73
- }
74
- const remotePackage = {
75
- deploymentKey: this._deploymentKey,
76
- description: updateInfo.description,
77
- label: updateInfo.label,
78
- appVersion: updateInfo.appVersion,
79
- isMandatory: updateInfo.isMandatory,
80
- packageHash: updateInfo.packageHash,
81
- packageSize: updateInfo.packageSize,
82
- downloadUrl: updateInfo.downloadURL,
83
- };
84
- callback(/*error=*/ null, remotePackage);
85
- });
86
- }
87
- reportStatusDeploy(deployedPackage, status, previousLabelOrAppVersion, previousDeploymentKey, callback) {
88
- const url = this._serverUrl + "reportStatus/deploy";
89
- const body = {
90
- appVersion: this._appVersion,
91
- deploymentKey: this._deploymentKey,
92
- };
93
- if (this._clientUniqueId) {
94
- body.clientUniqueId = this._clientUniqueId;
95
- }
96
- if (deployedPackage) {
97
- body.label = deployedPackage.label;
98
- body.appVersion = deployedPackage.appVersion;
99
- switch (status) {
100
- case AcquisitionStatus.DeploymentSucceeded:
101
- case AcquisitionStatus.DeploymentFailed:
102
- body.status = status;
103
- break;
104
- default:
105
- if (callback) {
106
- if (!status) {
107
- callback(new Error("Missing status argument."), /*not used*/ null);
108
- }
109
- else {
110
- callback(new Error('Unrecognized status "' + status + '".'), /*not used*/ null);
111
- }
112
- }
113
- return;
114
- }
115
- }
116
- if (previousLabelOrAppVersion) {
117
- body.previousLabelOrAppVersion = previousLabelOrAppVersion;
118
- }
119
- if (previousDeploymentKey) {
120
- body.previousDeploymentKey = previousDeploymentKey;
121
- }
122
- callback = typeof arguments[arguments.length - 1] === "function" && arguments[arguments.length - 1];
123
- this._httpRequester.request(2 /* Http.Verb.POST */, url, JSON.stringify(body), (error, response) => {
124
- if (callback) {
125
- if (error) {
126
- callback(error, /*not used*/ null);
127
- return;
128
- }
129
- if (response.statusCode !== 200) {
130
- callback(new Error(response.statusCode + ": " + response.body), /*not used*/ null);
131
- return;
132
- }
133
- callback(/*error*/ null, /*not used*/ null);
134
- }
135
- });
136
- }
137
- reportStatusDownload(downloadedPackage, callback) {
138
- const url = this._serverUrl + "reportStatus/download";
139
- const body = {
140
- clientUniqueId: this._clientUniqueId,
141
- deploymentKey: this._deploymentKey,
142
- label: downloadedPackage.label,
143
- };
144
- this._httpRequester.request(2 /* Http.Verb.POST */, url, JSON.stringify(body), (error, response) => {
145
- if (callback) {
146
- if (error) {
147
- callback(error, /*not used*/ null);
148
- return;
149
- }
150
- if (response.statusCode !== 200) {
151
- callback(new Error(response.statusCode + ": " + response.body), /*not used*/ null);
152
- return;
153
- }
154
- callback(/*error*/ null, /*not used*/ null);
155
- }
156
- });
157
- }
158
- }
159
- exports.AcquisitionManager = AcquisitionManager;
160
- function queryStringify(object) {
161
- let queryString = "";
162
- let isFirst = true;
163
- for (const property in object) {
164
- if (object.hasOwnProperty(property)) {
165
- const value = object[property];
166
- if (!isFirst) {
167
- queryString += "&";
168
- }
169
- queryString += encodeURIComponent(property) + "=";
170
- if (value !== null && typeof value !== "undefined") {
171
- queryString += encodeURIComponent(value);
172
- }
173
- isFirst = false;
174
- }
175
- }
176
- return queryString;
177
- }
178
- //# sourceMappingURL=acquisition-sdk.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"acquisition-sdk.js","sourceRoot":"","sources":["../../script/acquisition-sdk.ts"],"names":[],"mappings":"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"}
@@ -1,4 +0,0 @@
1
- "use strict";
2
- // Copyright (c) Aether. All rights reserved.
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- //# sourceMappingURL=types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../script/types.ts"],"names":[],"mappings":";AAAA,6CAA6C"}