@disconnectme/lightbox-sdk 0.1.4 → 0.1.6
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/dist/index.cjs +1 -1
- package/dist/index.d.cts +15 -4
- package/dist/index.d.ts +15 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -140,7 +140,7 @@ var LightboxClient = class {
|
|
|
140
140
|
/**
|
|
141
141
|
* Get detailed profile for a specific app bundle.
|
|
142
142
|
* Use `version` param to get a specific version, defaults to latest.
|
|
143
|
-
* Use `include` to specify which fields to include (frameworks, entitlements,
|
|
143
|
+
* Use `include` to specify which fields to include (frameworks, entitlements, all).
|
|
144
144
|
*/
|
|
145
145
|
get: (bundle, params) => {
|
|
146
146
|
const queryParams = {};
|
package/dist/index.d.cts
CHANGED
|
@@ -83,6 +83,12 @@ interface AppSummary {
|
|
|
83
83
|
icon: string | null;
|
|
84
84
|
size: number | null;
|
|
85
85
|
min_os_version: string | null;
|
|
86
|
+
release_notes: string | null;
|
|
87
|
+
developer_id: string | null;
|
|
88
|
+
developer_website: string | null;
|
|
89
|
+
developer_url: string | null;
|
|
90
|
+
description: string | null;
|
|
91
|
+
content_rating: string | null;
|
|
86
92
|
created_at: string;
|
|
87
93
|
}
|
|
88
94
|
interface AppProfile {
|
|
@@ -98,14 +104,17 @@ interface AppProfile {
|
|
|
98
104
|
icon: string | null;
|
|
99
105
|
size: number | null;
|
|
100
106
|
min_os_version: string | null;
|
|
107
|
+
release_notes: string | null;
|
|
108
|
+
developer_id: string | null;
|
|
109
|
+
developer_website: string | null;
|
|
110
|
+
developer_url: string | null;
|
|
111
|
+
description: string | null;
|
|
112
|
+
content_rating: string | null;
|
|
101
113
|
screenshots: string[];
|
|
102
114
|
usage_descriptions: Record<string, string>;
|
|
103
115
|
created_at: string;
|
|
104
116
|
frameworks?: string[];
|
|
105
117
|
entitlements?: string[];
|
|
106
|
-
privacy?: unknown[];
|
|
107
|
-
urls?: unknown[];
|
|
108
|
-
files?: unknown[];
|
|
109
118
|
}
|
|
110
119
|
interface AppVersion {
|
|
111
120
|
version: string;
|
|
@@ -114,6 +123,8 @@ interface AppVersion {
|
|
|
114
123
|
rating: number | null;
|
|
115
124
|
genre: string | null;
|
|
116
125
|
developer: string | null;
|
|
126
|
+
release_notes: string | null;
|
|
127
|
+
content_rating: string | null;
|
|
117
128
|
}
|
|
118
129
|
interface AppFile {
|
|
119
130
|
bundle: string;
|
|
@@ -395,7 +406,7 @@ declare class LightboxClient {
|
|
|
395
406
|
/**
|
|
396
407
|
* Get detailed profile for a specific app bundle.
|
|
397
408
|
* Use `version` param to get a specific version, defaults to latest.
|
|
398
|
-
* Use `include` to specify which fields to include (frameworks, entitlements,
|
|
409
|
+
* Use `include` to specify which fields to include (frameworks, entitlements, all).
|
|
399
410
|
*/
|
|
400
411
|
get: (bundle: string, params?: AppGetParams) => Promise<AppProfileResponse>;
|
|
401
412
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,12 @@ interface AppSummary {
|
|
|
83
83
|
icon: string | null;
|
|
84
84
|
size: number | null;
|
|
85
85
|
min_os_version: string | null;
|
|
86
|
+
release_notes: string | null;
|
|
87
|
+
developer_id: string | null;
|
|
88
|
+
developer_website: string | null;
|
|
89
|
+
developer_url: string | null;
|
|
90
|
+
description: string | null;
|
|
91
|
+
content_rating: string | null;
|
|
86
92
|
created_at: string;
|
|
87
93
|
}
|
|
88
94
|
interface AppProfile {
|
|
@@ -98,14 +104,17 @@ interface AppProfile {
|
|
|
98
104
|
icon: string | null;
|
|
99
105
|
size: number | null;
|
|
100
106
|
min_os_version: string | null;
|
|
107
|
+
release_notes: string | null;
|
|
108
|
+
developer_id: string | null;
|
|
109
|
+
developer_website: string | null;
|
|
110
|
+
developer_url: string | null;
|
|
111
|
+
description: string | null;
|
|
112
|
+
content_rating: string | null;
|
|
101
113
|
screenshots: string[];
|
|
102
114
|
usage_descriptions: Record<string, string>;
|
|
103
115
|
created_at: string;
|
|
104
116
|
frameworks?: string[];
|
|
105
117
|
entitlements?: string[];
|
|
106
|
-
privacy?: unknown[];
|
|
107
|
-
urls?: unknown[];
|
|
108
|
-
files?: unknown[];
|
|
109
118
|
}
|
|
110
119
|
interface AppVersion {
|
|
111
120
|
version: string;
|
|
@@ -114,6 +123,8 @@ interface AppVersion {
|
|
|
114
123
|
rating: number | null;
|
|
115
124
|
genre: string | null;
|
|
116
125
|
developer: string | null;
|
|
126
|
+
release_notes: string | null;
|
|
127
|
+
content_rating: string | null;
|
|
117
128
|
}
|
|
118
129
|
interface AppFile {
|
|
119
130
|
bundle: string;
|
|
@@ -395,7 +406,7 @@ declare class LightboxClient {
|
|
|
395
406
|
/**
|
|
396
407
|
* Get detailed profile for a specific app bundle.
|
|
397
408
|
* Use `version` param to get a specific version, defaults to latest.
|
|
398
|
-
* Use `include` to specify which fields to include (frameworks, entitlements,
|
|
409
|
+
* Use `include` to specify which fields to include (frameworks, entitlements, all).
|
|
399
410
|
*/
|
|
400
411
|
get: (bundle: string, params?: AppGetParams) => Promise<AppProfileResponse>;
|
|
401
412
|
/**
|
package/dist/index.js
CHANGED
|
@@ -113,7 +113,7 @@ var LightboxClient = class {
|
|
|
113
113
|
/**
|
|
114
114
|
* Get detailed profile for a specific app bundle.
|
|
115
115
|
* Use `version` param to get a specific version, defaults to latest.
|
|
116
|
-
* Use `include` to specify which fields to include (frameworks, entitlements,
|
|
116
|
+
* Use `include` to specify which fields to include (frameworks, entitlements, all).
|
|
117
117
|
*/
|
|
118
118
|
get: (bundle, params) => {
|
|
119
119
|
const queryParams = {};
|