@solana-mobile/dapp-store-publishing-tools 0.4.3 → 0.5.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.
package/lib/CoreUtils.js CHANGED
@@ -183,7 +183,7 @@ export var Constants = function Constants() {
183
183
  "use strict";
184
184
  _class_call_check(this, Constants);
185
185
  };
186
- _define_property(Constants, "PUBLISHING_SCHEMA_VER", "0.2.5");
186
+ _define_property(Constants, "PUBLISHING_SCHEMA_VER", "0.2.6");
187
187
  export var truncateAddress = function(address) {
188
188
  return "".concat(address.slice(0, 4), "...").concat(address.slice(address.length - 4, address.length));
189
189
  };
@@ -172,6 +172,9 @@
172
172
  "min_sdk": {
173
173
  "type": "integer"
174
174
  },
175
+ "cert_fingerprint": {
176
+ "type": "string"
177
+ },
175
178
  "permissions": {
176
179
  "type": "array",
177
180
  "items": {
@@ -190,6 +193,7 @@
190
193
  "version_code",
191
194
  "version",
192
195
  "min_sdk",
196
+ "cert_fingerprint",
193
197
  "permissions",
194
198
  "locales"
195
199
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana-mobile/dapp-store-publishing-tools",
3
- "version": "0.4.3",
3
+ "version": "0.5.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/src/CoreUtils.ts CHANGED
@@ -7,7 +7,7 @@ import type {
7
7
  } from "@metaplex-foundation/js";
8
8
 
9
9
  export class Constants {
10
- static PUBLISHING_SCHEMA_VER = "0.2.5";
10
+ static PUBLISHING_SCHEMA_VER = "0.2.6";
11
11
  }
12
12
  export const truncateAddress = (address: string) => {
13
13
  return `${address.slice(0, 4)}...${address.slice(
@@ -63,6 +63,7 @@ export interface ReleaseJsonMetadata {
63
63
  version_code: number;
64
64
  version: string;
65
65
  min_sdk: number;
66
+ cert_fingerprint: string;
66
67
  permissions: string[];
67
68
  locales: string[];
68
69
  [k: string]: unknown;
@@ -172,6 +172,9 @@
172
172
  "min_sdk": {
173
173
  "type": "integer"
174
174
  },
175
+ "cert_fingerprint": {
176
+ "type": "string"
177
+ },
175
178
  "permissions": {
176
179
  "type": "array",
177
180
  "items": {
@@ -190,6 +193,7 @@
190
193
  "version_code",
191
194
  "version",
192
195
  "min_sdk",
196
+ "cert_fingerprint",
193
197
  "permissions",
194
198
  "locales"
195
199
  ]