@disconnectme/lightbox-sdk 0.1.4 → 0.1.5

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 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, privacy, urls, files, all).
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
@@ -103,9 +103,6 @@ interface AppProfile {
103
103
  created_at: string;
104
104
  frameworks?: string[];
105
105
  entitlements?: string[];
106
- privacy?: unknown[];
107
- urls?: unknown[];
108
- files?: unknown[];
109
106
  }
110
107
  interface AppVersion {
111
108
  version: string;
@@ -395,7 +392,7 @@ declare class LightboxClient {
395
392
  /**
396
393
  * Get detailed profile for a specific app bundle.
397
394
  * Use `version` param to get a specific version, defaults to latest.
398
- * Use `include` to specify which fields to include (frameworks, entitlements, privacy, urls, files, all).
395
+ * Use `include` to specify which fields to include (frameworks, entitlements, all).
399
396
  */
400
397
  get: (bundle: string, params?: AppGetParams) => Promise<AppProfileResponse>;
401
398
  /**
package/dist/index.d.ts CHANGED
@@ -103,9 +103,6 @@ interface AppProfile {
103
103
  created_at: string;
104
104
  frameworks?: string[];
105
105
  entitlements?: string[];
106
- privacy?: unknown[];
107
- urls?: unknown[];
108
- files?: unknown[];
109
106
  }
110
107
  interface AppVersion {
111
108
  version: string;
@@ -395,7 +392,7 @@ declare class LightboxClient {
395
392
  /**
396
393
  * Get detailed profile for a specific app bundle.
397
394
  * Use `version` param to get a specific version, defaults to latest.
398
- * Use `include` to specify which fields to include (frameworks, entitlements, privacy, urls, files, all).
395
+ * Use `include` to specify which fields to include (frameworks, entitlements, all).
399
396
  */
400
397
  get: (bundle: string, params?: AppGetParams) => Promise<AppProfileResponse>;
401
398
  /**
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, privacy, urls, files, all).
116
+ * Use `include` to specify which fields to include (frameworks, entitlements, all).
117
117
  */
118
118
  get: (bundle, params) => {
119
119
  const queryParams = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@disconnectme/lightbox-sdk",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "TypeScript SDK for the Lightbox Data API by Disconnect",
5
5
  "type": "module",
6
6
  "engines": {