@proveanything/smartlinks 1.0.7 → 1.0.8

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.
Files changed (49) hide show
  1. package/debug.log +6 -0
  2. package/dist/api/attestation.d.ts +23 -0
  3. package/dist/api/attestation.js +44 -0
  4. package/dist/api/index.d.ts +1 -0
  5. package/dist/api/index.js +1 -0
  6. package/dist/http.d.ts +19 -0
  7. package/dist/http.js +109 -0
  8. package/dist/types/attestation.d.ts +16 -0
  9. package/dist/types/attestation.js +1 -0
  10. package/docs/assets/navigation.js +1 -1
  11. package/docs/assets/search.js +1 -1
  12. package/docs/documentation.json +847 -166
  13. package/docs/functions/appConfiguration.get.html +1 -1
  14. package/docs/functions/asset.getAllForCollection.html +1 -1
  15. package/docs/functions/asset.getAllForProduct.html +1 -1
  16. package/docs/functions/asset.getAllForProof.html +1 -1
  17. package/docs/functions/asset.getForCollection.html +1 -1
  18. package/docs/functions/asset.getForProduct.html +1 -1
  19. package/docs/functions/asset.getForProof.html +1 -1
  20. package/docs/functions/asset.uploadAsset.html +1 -1
  21. package/docs/functions/attestation.create.html +2 -0
  22. package/docs/functions/attestation.get.html +2 -0
  23. package/docs/functions/attestation.getAll.html +2 -0
  24. package/docs/functions/attestation.remove.html +2 -0
  25. package/docs/functions/attestation.update.html +2 -0
  26. package/docs/functions/collection.get.html +1 -1
  27. package/docs/functions/initializeApi.html +1 -1
  28. package/docs/functions/product.get.html +1 -1
  29. package/docs/functions/product.getAll.html +1 -1
  30. package/docs/functions/proof.get.html +1 -1
  31. package/docs/functions/request.html +1 -1
  32. package/docs/interfaces/AppConfigurationResponse.html +4 -4
  33. package/docs/interfaces/AssetResponse.html +2 -2
  34. package/docs/interfaces/CollectionResponse.html +5 -5
  35. package/docs/interfaces/ErrorResponse.html +3 -3
  36. package/docs/interfaces/ProductResponse.html +5 -5
  37. package/docs/interfaces/ProofResponse.html +8 -8
  38. package/docs/modules/appConfiguration.html +1 -1
  39. package/docs/modules/asset.html +1 -1
  40. package/docs/modules/attestation.html +6 -0
  41. package/docs/modules/collection.html +1 -1
  42. package/docs/modules/product.html +1 -1
  43. package/docs/modules/proof.html +1 -1
  44. package/docs/modules.html +1 -0
  45. package/package.json +1 -1
  46. package/src/api/attestation.ts +69 -0
  47. package/src/api/index.ts +1 -0
  48. package/src/http.ts +136 -0
  49. package/src/types/attestation.ts +18 -0
package/debug.log ADDED
@@ -0,0 +1,6 @@
1
+ [0602/081836.172:ERROR:registration_protocol_win.cc(108)] CreateFile: The system cannot find the file specified. (0x2)
2
+ [0602/081836.202:ERROR:registration_protocol_win.cc(108)] CreateFile: The system cannot find the file specified. (0x2)
3
+ [0602/081836.512:ERROR:registration_protocol_win.cc(108)] CreateFile: The system cannot find the file specified. (0x2)
4
+ [0602/081858.471:ERROR:registration_protocol_win.cc(108)] CreateFile: The system cannot find the file specified. (0x2)
5
+ [0602/081858.497:ERROR:registration_protocol_win.cc(108)] CreateFile: The system cannot find the file specified. (0x2)
6
+ [0602/081858.832:ERROR:registration_protocol_win.cc(108)] CreateFile: The system cannot find the file specified. (0x2)
@@ -0,0 +1,23 @@
1
+ import type { AttestationResponse, AttestationCreateRequest, AttestationUpdateRequest } from "../types/attestation";
2
+ export declare namespace attestation {
3
+ /**
4
+ * Get all attestations for a proof.
5
+ */
6
+ function getAll(collectionId: string, productId: string, proofId: string): Promise<AttestationResponse[]>;
7
+ /**
8
+ * Get a single attestation by ID.
9
+ */
10
+ function get(collectionId: string, productId: string, proofId: string, attestationId: string): Promise<AttestationResponse>;
11
+ /**
12
+ * Create a new attestation for a proof.
13
+ */
14
+ function create(collectionId: string, productId: string, proofId: string, data: AttestationCreateRequest): Promise<AttestationResponse>;
15
+ /**
16
+ * Update an attestation.
17
+ */
18
+ function update(collectionId: string, productId: string, proofId: string, attestationId: string, data: AttestationUpdateRequest): Promise<AttestationResponse>;
19
+ /**
20
+ * Delete an attestation.
21
+ */
22
+ function remove(collectionId: string, productId: string, proofId: string, attestationId: string): Promise<void>;
23
+ }
@@ -0,0 +1,44 @@
1
+ import { request, post, put, del } from "../http";
2
+ export var attestation;
3
+ (function (attestation) {
4
+ /**
5
+ * Get all attestations for a proof.
6
+ */
7
+ async function getAll(collectionId, productId, proofId) {
8
+ const path = `/public/collection/${encodeURIComponent(collectionId)}/product/${encodeURIComponent(productId)}/proof/${encodeURIComponent(proofId)}/attestation`;
9
+ return request(path);
10
+ }
11
+ attestation.getAll = getAll;
12
+ /**
13
+ * Get a single attestation by ID.
14
+ */
15
+ async function get(collectionId, productId, proofId, attestationId) {
16
+ const path = `/public/collection/${encodeURIComponent(collectionId)}/product/${encodeURIComponent(productId)}/proof/${encodeURIComponent(proofId)}/attestation/${encodeURIComponent(attestationId)}`;
17
+ return request(path);
18
+ }
19
+ attestation.get = get;
20
+ /**
21
+ * Create a new attestation for a proof.
22
+ */
23
+ async function create(collectionId, productId, proofId, data) {
24
+ const path = `/public/collection/${encodeURIComponent(collectionId)}/product/${encodeURIComponent(productId)}/proof/${encodeURIComponent(proofId)}/attestation`;
25
+ return post(path, data);
26
+ }
27
+ attestation.create = create;
28
+ /**
29
+ * Update an attestation.
30
+ */
31
+ async function update(collectionId, productId, proofId, attestationId, data) {
32
+ const path = `/public/collection/${encodeURIComponent(collectionId)}/product/${encodeURIComponent(productId)}/proof/${encodeURIComponent(proofId)}/attestation/${encodeURIComponent(attestationId)}`;
33
+ return put(path, data);
34
+ }
35
+ attestation.update = update;
36
+ /**
37
+ * Delete an attestation.
38
+ */
39
+ async function remove(collectionId, productId, proofId, attestationId) {
40
+ const path = `/public/collection/${encodeURIComponent(collectionId)}/product/${encodeURIComponent(productId)}/proof/${encodeURIComponent(proofId)}/attestation/${encodeURIComponent(attestationId)}`;
41
+ return del(path);
42
+ }
43
+ attestation.remove = remove;
44
+ })(attestation || (attestation = {}));
@@ -3,3 +3,4 @@ export { product } from "./product";
3
3
  export { proof } from "./proof";
4
4
  export { appConfiguration } from "./appConfiguration";
5
5
  export { asset } from "./asset";
6
+ export { attestation } from "./attestation";
package/dist/api/index.js CHANGED
@@ -5,3 +5,4 @@ export { product } from "./product";
5
5
  export { proof } from "./proof";
6
6
  export { appConfiguration } from "./appConfiguration";
7
7
  export { asset } from "./asset";
8
+ export { attestation } from "./attestation";
package/dist/http.d.ts CHANGED
@@ -23,6 +23,25 @@ export declare function request<T>(path: string): Promise<T>;
23
23
  * Returns the parsed JSON as T, or throws an Error.
24
24
  */
25
25
  export declare function post<T>(path: string, body: any, extraHeaders?: Record<string, string>): Promise<T>;
26
+ /**
27
+ * Internal helper that performs a PUT request to `${baseURL}${path}`,
28
+ * injecting headers for apiKey or bearerToken if present.
29
+ * If body is FormData, Content-Type is not set.
30
+ * Returns the parsed JSON as T, or throws an Error.
31
+ */
32
+ export declare function put<T>(path: string, body: any, extraHeaders?: Record<string, string>): Promise<T>;
33
+ /**
34
+ * Internal helper that performs a request to `${baseURL}${path}` with custom options,
35
+ * injecting headers for apiKey or bearerToken if present.
36
+ * Returns the parsed JSON as T, or throws an Error.
37
+ */
38
+ export declare function requestWithOptions<T>(path: string, options: RequestInit): Promise<T>;
39
+ /**
40
+ * Internal helper that performs a DELETE request to `${baseURL}${path}`,
41
+ * injecting headers for apiKey or bearerToken if present.
42
+ * Returns the parsed JSON as T, or throws an Error.
43
+ */
44
+ export declare function del<T>(path: string, extraHeaders?: Record<string, string>): Promise<T>;
26
45
  /**
27
46
  * Returns the common headers used for API requests, including apiKey and bearerToken if set.
28
47
  */
package/dist/http.js CHANGED
@@ -88,6 +88,115 @@ export async function post(path, body, extraHeaders) {
88
88
  }
89
89
  return (await response.json());
90
90
  }
91
+ /**
92
+ * Internal helper that performs a PUT request to `${baseURL}${path}`,
93
+ * injecting headers for apiKey or bearerToken if present.
94
+ * If body is FormData, Content-Type is not set.
95
+ * Returns the parsed JSON as T, or throws an Error.
96
+ */
97
+ export async function put(path, body, extraHeaders) {
98
+ if (!baseURL) {
99
+ throw new Error("HTTP client is not initialized. Call initializeApi(...) first.");
100
+ }
101
+ const url = `${baseURL}${path}`;
102
+ const headers = extraHeaders ? Object.assign({}, extraHeaders) : {};
103
+ if (apiKey)
104
+ headers["X-API-Key"] = apiKey;
105
+ if (bearerToken)
106
+ headers["AUTHORIZATION"] = `Bearer ${bearerToken}`;
107
+ // Only set Content-Type for non-FormData bodies
108
+ if (!(body instanceof FormData)) {
109
+ headers["Content-Type"] = "application/json";
110
+ }
111
+ const response = await fetch(url, {
112
+ method: "PUT",
113
+ headers,
114
+ body: body instanceof FormData ? body : JSON.stringify(body),
115
+ });
116
+ if (!response.ok) {
117
+ try {
118
+ const errBody = (await response.json());
119
+ throw new Error(`Error ${errBody.code}: ${errBody.message}`);
120
+ }
121
+ catch (_a) {
122
+ throw new Error(`Request to ${url} failed with status ${response.status}`);
123
+ }
124
+ }
125
+ return (await response.json());
126
+ }
127
+ /**
128
+ * Internal helper that performs a request to `${baseURL}${path}` with custom options,
129
+ * injecting headers for apiKey or bearerToken if present.
130
+ * Returns the parsed JSON as T, or throws an Error.
131
+ */
132
+ export async function requestWithOptions(path, options) {
133
+ if (!baseURL) {
134
+ throw new Error("HTTP client is not initialized. Call initializeApi(...) first.");
135
+ }
136
+ const url = `${baseURL}${path}`;
137
+ // Safely merge headers, converting Headers/init to Record<string, string>
138
+ let extraHeaders = {};
139
+ if (options.headers) {
140
+ if (options.headers instanceof Headers) {
141
+ options.headers.forEach((value, key) => {
142
+ extraHeaders[key] = value;
143
+ });
144
+ }
145
+ else if (Array.isArray(options.headers)) {
146
+ for (const [key, value] of options.headers) {
147
+ extraHeaders[key] = value;
148
+ }
149
+ }
150
+ else {
151
+ extraHeaders = Object.assign({}, options.headers);
152
+ }
153
+ }
154
+ const headers = Object.assign(Object.assign(Object.assign({ "Content-Type": "application/json" }, (apiKey ? { "X-API-Key": apiKey } : {})), (bearerToken ? { "AUTHORIZATION": `Bearer ${bearerToken}` } : {})), extraHeaders);
155
+ const response = await fetch(url, Object.assign(Object.assign({}, options), { headers }));
156
+ if (!response.ok) {
157
+ try {
158
+ const errBody = (await response.json());
159
+ throw new Error(`Error ${errBody.code}: ${errBody.message}`);
160
+ }
161
+ catch (_a) {
162
+ throw new Error(`Request to ${url} failed with status ${response.status}`);
163
+ }
164
+ }
165
+ return (await response.json());
166
+ }
167
+ /**
168
+ * Internal helper that performs a DELETE request to `${baseURL}${path}`,
169
+ * injecting headers for apiKey or bearerToken if present.
170
+ * Returns the parsed JSON as T, or throws an Error.
171
+ */
172
+ export async function del(path, extraHeaders) {
173
+ if (!baseURL) {
174
+ throw new Error("HTTP client is not initialized. Call initializeApi(...) first.");
175
+ }
176
+ const url = `${baseURL}${path}`;
177
+ const headers = extraHeaders ? Object.assign({}, extraHeaders) : {};
178
+ if (apiKey)
179
+ headers["X-API-Key"] = apiKey;
180
+ if (bearerToken)
181
+ headers["AUTHORIZATION"] = `Bearer ${bearerToken}`;
182
+ const response = await fetch(url, {
183
+ method: "DELETE",
184
+ headers,
185
+ });
186
+ if (!response.ok) {
187
+ try {
188
+ const errBody = (await response.json());
189
+ throw new Error(`Error ${errBody.code}: ${errBody.message}`);
190
+ }
191
+ catch (_a) {
192
+ throw new Error(`Request to ${url} failed with status ${response.status}`);
193
+ }
194
+ }
195
+ // If the response is empty, just return undefined
196
+ if (response.status === 204)
197
+ return undefined;
198
+ return (await response.json());
199
+ }
91
200
  /**
92
201
  * Returns the common headers used for API requests, including apiKey and bearerToken if set.
93
202
  */
@@ -0,0 +1,16 @@
1
+ export interface AttestationResponse {
2
+ id: string;
3
+ proofId: string;
4
+ createdAt: string;
5
+ updatedAt: string;
6
+ type: string;
7
+ data: Record<string, any>;
8
+ }
9
+ export interface AttestationCreateRequest {
10
+ type: string;
11
+ data: Record<string, any>;
12
+ }
13
+ export interface AttestationUpdateRequest {
14
+ type?: string;
15
+ data?: Record<string, any>;
16
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -1 +1 @@
1
- window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAACpWUzW6DMBCE38Vn1EhVmgM3FLXnqteoB2TWxKrjdfwjVa3y7hUVBNs4xlxh/DGznuX0Syx8W1KTVqkjSsZ7p1vLUZKKqNaeSU0u2DkBZhcrns72IkhFvrjsSL2vCD1z0WmQpD7dsT3YmcScpMPJBKsHG/IO+9vnrZrtGeOT7p6Gx6VGGiHeUB9RCKBhRM/YPzAhXrirluh3jZ2j6cAhd1QWQpGVIZHlgeXpN0QvzF0auihxQVynBLZdE9YmRnmibPtoYmpTBemDOW1bCI+ytgoqnvbkRKXmu83GhEh5iLu5cr4RYi2Gf8teiPheN0dAtjrEJvoBfYBRKA3MRC4taNZSMLtH4vALzy8H/wNDqfJUX5FDzZuY5S1lOeir1qizvECRQ417nYVFmhUcsjXYrMihuOSWt4L/QKN4qiyBINN4DVcHJtm38dWybX+3gK5VXAcAAA=="
1
+ window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAACp2VzW7DIBCE34Wz1UhVmoNvVtSeq16jHhBeJ6iEJYCrqlXevUrzY8BkjXu1h8877Ox688M8fHlWM27MGnUnt73lXqJmFTPc71jN9tj2CtwiVTzs/F6xin1I3bJ6WTGxk6q1oFm9uWG34AdS12txOplhbcHHvNXy+H6shvKcC0m3mk6PSwtplHpBu0alQMQWg8L+gBnxqLpqjH612PYibzjmXpSFUOzKkNjRwHL3M6wX+i41XeS4wG5vFPK2iWOTogIRnT7vwfl7czG8LEqisMA9ZIsKSGcVfVdTjNxQpQkrYDRKERgLe/yctHNWkf1qC27lrCJ7JTIJv7ZK3Mn0vOUVUKbWlkkn41qJyc3CvDKuiP92OTif63BiI5zIwEQ6g7MtYDd5iU3ys3gDZ1C7ICxSe7AdF+AW98TxFx6fVuEHTguApoYKCjVsTZI3llHQZ2vRkrxIQaEuO5iEJZoJHHZTsEFBoaSWXnIlv6ExMheWSEAupEMPLpu3y6tx2n4BFNJgvggJAAA="
@@ -1 +1 @@
1
- window.searchData = "data:application/octet-stream;base64,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";
1
+ window.searchData = "data:application/octet-stream;base64,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";