@snagsolutions/sdk 0.1.0-alpha.246 → 0.1.0-alpha.248
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/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/websites/websites.d.ts +0 -178
- package/resources/websites/websites.d.ts.map +1 -1
- package/resources/websites/websites.js.map +1 -1
- package/resources/websites/websites.mjs.map +1 -1
- package/src/resources/websites/websites.ts +0 -214
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.248 (2026-02-24)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.247...v0.1.0-alpha.248](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.247...v0.1.0-alpha.248)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** open api update ([9e088cb](https://github.com/Snag-Solutions/node-sdk/commit/9e088cbbb3f63265ee0fcda23d54e114b29c51ca))
|
|
10
|
+
|
|
11
|
+
## 0.1.0-alpha.247 (2026-02-24)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.1.0-alpha.246...v0.1.0-alpha.247](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.246...v0.1.0-alpha.247)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** open api update ([16776a5](https://github.com/Snag-Solutions/node-sdk/commit/16776a5a7236eadb5857a2ba08221c8fe0ff2bd5))
|
|
18
|
+
|
|
3
19
|
## 0.1.0-alpha.246 (2026-02-24)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.1.0-alpha.245...v0.1.0-alpha.246](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.245...v0.1.0-alpha.246)
|
package/package.json
CHANGED
|
@@ -38,104 +38,15 @@ export interface WebsiteCreateResponse {
|
|
|
38
38
|
* Website ID
|
|
39
39
|
*/
|
|
40
40
|
id: string;
|
|
41
|
-
/**
|
|
42
|
-
* Counts of related entities
|
|
43
|
-
*/
|
|
44
|
-
_count: WebsiteCreateResponse._Count;
|
|
45
|
-
/**
|
|
46
|
-
* Collections associated with the website
|
|
47
|
-
*/
|
|
48
|
-
collections: Array<WebsiteCreateResponse.Collection>;
|
|
49
41
|
/**
|
|
50
42
|
* Website name
|
|
51
43
|
*/
|
|
52
44
|
name: string;
|
|
53
|
-
/**
|
|
54
|
-
* Onchain tokens associated with the website
|
|
55
|
-
*/
|
|
56
|
-
onchainTokens: Array<WebsiteCreateResponse.OnchainToken>;
|
|
57
45
|
/**
|
|
58
46
|
* Date when terms were signed
|
|
59
47
|
*/
|
|
60
48
|
termsSignedAt: string | null;
|
|
61
49
|
}
|
|
62
|
-
export declare namespace WebsiteCreateResponse {
|
|
63
|
-
/**
|
|
64
|
-
* Counts of related entities
|
|
65
|
-
*/
|
|
66
|
-
interface _Count {
|
|
67
|
-
/**
|
|
68
|
-
* Count of minting contract assets
|
|
69
|
-
*/
|
|
70
|
-
mintingContractAssets: number;
|
|
71
|
-
}
|
|
72
|
-
/**
|
|
73
|
-
* Schema representing a collection
|
|
74
|
-
*/
|
|
75
|
-
interface Collection {
|
|
76
|
-
/**
|
|
77
|
-
* Collection ID
|
|
78
|
-
*/
|
|
79
|
-
id: string;
|
|
80
|
-
/**
|
|
81
|
-
* URL of the collection image
|
|
82
|
-
*/
|
|
83
|
-
imageUrl: string | null;
|
|
84
|
-
/**
|
|
85
|
-
* Collection name
|
|
86
|
-
*/
|
|
87
|
-
name: string;
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* Schema representing an onchain token
|
|
91
|
-
*/
|
|
92
|
-
interface OnchainToken {
|
|
93
|
-
/**
|
|
94
|
-
* OnchainToken ID
|
|
95
|
-
*/
|
|
96
|
-
id: string;
|
|
97
|
-
/**
|
|
98
|
-
* Contract address of the onchain token
|
|
99
|
-
*/
|
|
100
|
-
address: string;
|
|
101
|
-
/**
|
|
102
|
-
* Chain ID where the token is deployed
|
|
103
|
-
*/
|
|
104
|
-
chainId: string;
|
|
105
|
-
/**
|
|
106
|
-
* Creation timestamp
|
|
107
|
-
*/
|
|
108
|
-
createdAt: string;
|
|
109
|
-
/**
|
|
110
|
-
* Associated loyalty currency ID
|
|
111
|
-
*/
|
|
112
|
-
currencyId: string;
|
|
113
|
-
/**
|
|
114
|
-
* Deletion timestamp
|
|
115
|
-
*/
|
|
116
|
-
deletedAt: string | null;
|
|
117
|
-
/**
|
|
118
|
-
* Organization ID
|
|
119
|
-
*/
|
|
120
|
-
organizationId: string;
|
|
121
|
-
/**
|
|
122
|
-
* Relayer ID for transaction processing
|
|
123
|
-
*/
|
|
124
|
-
relayerId: string | null;
|
|
125
|
-
/**
|
|
126
|
-
* Last sync timestamp
|
|
127
|
-
*/
|
|
128
|
-
syncedAt: string | null;
|
|
129
|
-
/**
|
|
130
|
-
* Last update timestamp
|
|
131
|
-
*/
|
|
132
|
-
updatedAt: string;
|
|
133
|
-
/**
|
|
134
|
-
* Website ID
|
|
135
|
-
*/
|
|
136
|
-
websiteId: string;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
50
|
/**
|
|
140
51
|
* Response schema for fetching websites
|
|
141
52
|
*/
|
|
@@ -158,104 +69,15 @@ export declare namespace WebsiteListResponse {
|
|
|
158
69
|
* Website ID
|
|
159
70
|
*/
|
|
160
71
|
id: string;
|
|
161
|
-
/**
|
|
162
|
-
* Counts of related entities
|
|
163
|
-
*/
|
|
164
|
-
_count: Data._Count;
|
|
165
|
-
/**
|
|
166
|
-
* Collections associated with the website
|
|
167
|
-
*/
|
|
168
|
-
collections: Array<Data.Collection>;
|
|
169
72
|
/**
|
|
170
73
|
* Website name
|
|
171
74
|
*/
|
|
172
75
|
name: string;
|
|
173
|
-
/**
|
|
174
|
-
* Onchain tokens associated with the website
|
|
175
|
-
*/
|
|
176
|
-
onchainTokens: Array<Data.OnchainToken>;
|
|
177
76
|
/**
|
|
178
77
|
* Date when terms were signed
|
|
179
78
|
*/
|
|
180
79
|
termsSignedAt: string | null;
|
|
181
80
|
}
|
|
182
|
-
namespace Data {
|
|
183
|
-
/**
|
|
184
|
-
* Counts of related entities
|
|
185
|
-
*/
|
|
186
|
-
interface _Count {
|
|
187
|
-
/**
|
|
188
|
-
* Count of minting contract assets
|
|
189
|
-
*/
|
|
190
|
-
mintingContractAssets: number;
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
* Schema representing a collection
|
|
194
|
-
*/
|
|
195
|
-
interface Collection {
|
|
196
|
-
/**
|
|
197
|
-
* Collection ID
|
|
198
|
-
*/
|
|
199
|
-
id: string;
|
|
200
|
-
/**
|
|
201
|
-
* URL of the collection image
|
|
202
|
-
*/
|
|
203
|
-
imageUrl: string | null;
|
|
204
|
-
/**
|
|
205
|
-
* Collection name
|
|
206
|
-
*/
|
|
207
|
-
name: string;
|
|
208
|
-
}
|
|
209
|
-
/**
|
|
210
|
-
* Schema representing an onchain token
|
|
211
|
-
*/
|
|
212
|
-
interface OnchainToken {
|
|
213
|
-
/**
|
|
214
|
-
* OnchainToken ID
|
|
215
|
-
*/
|
|
216
|
-
id: string;
|
|
217
|
-
/**
|
|
218
|
-
* Contract address of the onchain token
|
|
219
|
-
*/
|
|
220
|
-
address: string;
|
|
221
|
-
/**
|
|
222
|
-
* Chain ID where the token is deployed
|
|
223
|
-
*/
|
|
224
|
-
chainId: string;
|
|
225
|
-
/**
|
|
226
|
-
* Creation timestamp
|
|
227
|
-
*/
|
|
228
|
-
createdAt: string;
|
|
229
|
-
/**
|
|
230
|
-
* Associated loyalty currency ID
|
|
231
|
-
*/
|
|
232
|
-
currencyId: string;
|
|
233
|
-
/**
|
|
234
|
-
* Deletion timestamp
|
|
235
|
-
*/
|
|
236
|
-
deletedAt: string | null;
|
|
237
|
-
/**
|
|
238
|
-
* Organization ID
|
|
239
|
-
*/
|
|
240
|
-
organizationId: string;
|
|
241
|
-
/**
|
|
242
|
-
* Relayer ID for transaction processing
|
|
243
|
-
*/
|
|
244
|
-
relayerId: string | null;
|
|
245
|
-
/**
|
|
246
|
-
* Last sync timestamp
|
|
247
|
-
*/
|
|
248
|
-
syncedAt: string | null;
|
|
249
|
-
/**
|
|
250
|
-
* Last update timestamp
|
|
251
|
-
*/
|
|
252
|
-
updatedAt: string;
|
|
253
|
-
/**
|
|
254
|
-
* Website ID
|
|
255
|
-
*/
|
|
256
|
-
websiteId: string;
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
81
|
}
|
|
260
82
|
export interface WebsiteCreateParams {
|
|
261
83
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"websites.d.ts","sourceRoot":"","sources":["../../src/resources/websites/websites.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,qBAAqB,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,KAAK,mBAAmB,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EACL,2BAA2B,EAC3B,6BAA6B,EAC7B,yBAAyB,EACzB,2BAA2B,EAC3B,gBAAgB,EACjB,MAAM,sBAAsB,CAAC;AAE9B,qBAAa,QAAS,SAAQ,WAAW;IACvC,kBAAkB,EAAE,qBAAqB,CAAC,kBAAkB,CAE1D;IACF,gBAAgB,EAAE,mBAAmB,CAAC,gBAAgB,CAEpD;IAEF;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC;IAIxG;;;;;;;;OAQG;IACH,IAAI,CAAC,KAAK,CAAC,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC;IACpG,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC;CAU1E;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,
|
|
1
|
+
{"version":3,"file":"websites.d.ts","sourceRoot":"","sources":["../../src/resources/websites/websites.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"websites.js","sourceRoot":"","sources":["../../src/resources/websites/websites.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtF,gDAA6C;AAC7C,wCAA8C;AAE9C,gFAA+D;AAC/D,kEAA2D;AAC3D,6EAA4D;AAC5D,gEAM8B;AAE9B,MAAa,QAAS,SAAQ,sBAAW;IAAzC;;QACE,uBAAkB,GAA6C,IAAI,qBAAqB,CAAC,kBAAkB,CACzG,IAAI,CAAC,OAAO,CACb,CAAC;QACF,qBAAgB,GAAyC,IAAI,mBAAmB,CAAC,gBAAgB,CAC/F,IAAI,CAAC,OAAO,CACb,CAAC;IAoCJ,CAAC;IAlCC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAaD,IAAI,CACF,QAAiD,EAAE,EACnD,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;CACF;AA1CD,4BA0CC;
|
|
1
|
+
{"version":3,"file":"websites.js","sourceRoot":"","sources":["../../src/resources/websites/websites.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtF,gDAA6C;AAC7C,wCAA8C;AAE9C,gFAA+D;AAC/D,kEAA2D;AAC3D,6EAA4D;AAC5D,gEAM8B;AAE9B,MAAa,QAAS,SAAQ,sBAAW;IAAzC;;QACE,uBAAkB,GAA6C,IAAI,qBAAqB,CAAC,kBAAkB,CACzG,IAAI,CAAC,OAAO,CACb,CAAC;QACF,qBAAgB,GAAyC,IAAI,mBAAmB,CAAC,gBAAgB,CAC/F,IAAI,CAAC,OAAO,CACb,CAAC;IAoCJ,CAAC;IAlCC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAaD,IAAI,CACF,QAAiD,EAAE,EACnD,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;CACF;AA1CD,4BA0CC;AAsHD,QAAQ,CAAC,kBAAkB,GAAG,wCAAkB,CAAC;AACjD,QAAQ,CAAC,gBAAgB,GAAG,qCAAgB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"websites.mjs","sourceRoot":"","sources":["../../src/resources/websites/websites.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,KAAK,qBAAqB;OAC1B,EAAE,kBAAkB,EAAE;OACtB,KAAK,mBAAmB;OACxB,EAKL,gBAAgB,GACjB;AAED,MAAM,OAAO,QAAS,SAAQ,WAAW;IAAzC;;QACE,uBAAkB,GAA6C,IAAI,qBAAqB,CAAC,kBAAkB,CACzG,IAAI,CAAC,OAAO,CACb,CAAC;QACF,qBAAgB,GAAyC,IAAI,mBAAmB,CAAC,gBAAgB,CAC/F,IAAI,CAAC,OAAO,CACb,CAAC;IAoCJ,CAAC;IAlCC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAaD,IAAI,CACF,QAAiD,EAAE,EACnD,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;CACF;
|
|
1
|
+
{"version":3,"file":"websites.mjs","sourceRoot":"","sources":["../../src/resources/websites/websites.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,KAAK,qBAAqB;OAC1B,EAAE,kBAAkB,EAAE;OACtB,KAAK,mBAAmB;OACxB,EAKL,gBAAgB,GACjB;AAED,MAAM,OAAO,QAAS,SAAQ,WAAW;IAAzC;;QACE,uBAAkB,GAA6C,IAAI,qBAAqB,CAAC,kBAAkB,CACzG,IAAI,CAAC,OAAO,CACb,CAAC;QACF,qBAAgB,GAAyC,IAAI,mBAAmB,CAAC,gBAAgB,CAC/F,IAAI,CAAC,OAAO,CACb,CAAC;IAoCJ,CAAC;IAlCC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAaD,IAAI,CACF,QAAiD,EAAE,EACnD,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;CACF;AAsHD,QAAQ,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;AACjD,QAAQ,CAAC,gBAAgB,GAAG,gBAAgB,CAAC"}
|
|
@@ -67,124 +67,17 @@ export interface WebsiteCreateResponse {
|
|
|
67
67
|
*/
|
|
68
68
|
id: string;
|
|
69
69
|
|
|
70
|
-
/**
|
|
71
|
-
* Counts of related entities
|
|
72
|
-
*/
|
|
73
|
-
_count: WebsiteCreateResponse._Count;
|
|
74
|
-
|
|
75
|
-
/**
|
|
76
|
-
* Collections associated with the website
|
|
77
|
-
*/
|
|
78
|
-
collections: Array<WebsiteCreateResponse.Collection>;
|
|
79
|
-
|
|
80
70
|
/**
|
|
81
71
|
* Website name
|
|
82
72
|
*/
|
|
83
73
|
name: string;
|
|
84
74
|
|
|
85
|
-
/**
|
|
86
|
-
* Onchain tokens associated with the website
|
|
87
|
-
*/
|
|
88
|
-
onchainTokens: Array<WebsiteCreateResponse.OnchainToken>;
|
|
89
|
-
|
|
90
75
|
/**
|
|
91
76
|
* Date when terms were signed
|
|
92
77
|
*/
|
|
93
78
|
termsSignedAt: string | null;
|
|
94
79
|
}
|
|
95
80
|
|
|
96
|
-
export namespace WebsiteCreateResponse {
|
|
97
|
-
/**
|
|
98
|
-
* Counts of related entities
|
|
99
|
-
*/
|
|
100
|
-
export interface _Count {
|
|
101
|
-
/**
|
|
102
|
-
* Count of minting contract assets
|
|
103
|
-
*/
|
|
104
|
-
mintingContractAssets: number;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Schema representing a collection
|
|
109
|
-
*/
|
|
110
|
-
export interface Collection {
|
|
111
|
-
/**
|
|
112
|
-
* Collection ID
|
|
113
|
-
*/
|
|
114
|
-
id: string;
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* URL of the collection image
|
|
118
|
-
*/
|
|
119
|
-
imageUrl: string | null;
|
|
120
|
-
|
|
121
|
-
/**
|
|
122
|
-
* Collection name
|
|
123
|
-
*/
|
|
124
|
-
name: string;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* Schema representing an onchain token
|
|
129
|
-
*/
|
|
130
|
-
export interface OnchainToken {
|
|
131
|
-
/**
|
|
132
|
-
* OnchainToken ID
|
|
133
|
-
*/
|
|
134
|
-
id: string;
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* Contract address of the onchain token
|
|
138
|
-
*/
|
|
139
|
-
address: string;
|
|
140
|
-
|
|
141
|
-
/**
|
|
142
|
-
* Chain ID where the token is deployed
|
|
143
|
-
*/
|
|
144
|
-
chainId: string;
|
|
145
|
-
|
|
146
|
-
/**
|
|
147
|
-
* Creation timestamp
|
|
148
|
-
*/
|
|
149
|
-
createdAt: string;
|
|
150
|
-
|
|
151
|
-
/**
|
|
152
|
-
* Associated loyalty currency ID
|
|
153
|
-
*/
|
|
154
|
-
currencyId: string;
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
* Deletion timestamp
|
|
158
|
-
*/
|
|
159
|
-
deletedAt: string | null;
|
|
160
|
-
|
|
161
|
-
/**
|
|
162
|
-
* Organization ID
|
|
163
|
-
*/
|
|
164
|
-
organizationId: string;
|
|
165
|
-
|
|
166
|
-
/**
|
|
167
|
-
* Relayer ID for transaction processing
|
|
168
|
-
*/
|
|
169
|
-
relayerId: string | null;
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* Last sync timestamp
|
|
173
|
-
*/
|
|
174
|
-
syncedAt: string | null;
|
|
175
|
-
|
|
176
|
-
/**
|
|
177
|
-
* Last update timestamp
|
|
178
|
-
*/
|
|
179
|
-
updatedAt: string;
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* Website ID
|
|
183
|
-
*/
|
|
184
|
-
websiteId: string;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
|
|
188
81
|
/**
|
|
189
82
|
* Response schema for fetching websites
|
|
190
83
|
*/
|
|
@@ -210,123 +103,16 @@ export namespace WebsiteListResponse {
|
|
|
210
103
|
*/
|
|
211
104
|
id: string;
|
|
212
105
|
|
|
213
|
-
/**
|
|
214
|
-
* Counts of related entities
|
|
215
|
-
*/
|
|
216
|
-
_count: Data._Count;
|
|
217
|
-
|
|
218
|
-
/**
|
|
219
|
-
* Collections associated with the website
|
|
220
|
-
*/
|
|
221
|
-
collections: Array<Data.Collection>;
|
|
222
|
-
|
|
223
106
|
/**
|
|
224
107
|
* Website name
|
|
225
108
|
*/
|
|
226
109
|
name: string;
|
|
227
110
|
|
|
228
|
-
/**
|
|
229
|
-
* Onchain tokens associated with the website
|
|
230
|
-
*/
|
|
231
|
-
onchainTokens: Array<Data.OnchainToken>;
|
|
232
|
-
|
|
233
111
|
/**
|
|
234
112
|
* Date when terms were signed
|
|
235
113
|
*/
|
|
236
114
|
termsSignedAt: string | null;
|
|
237
115
|
}
|
|
238
|
-
|
|
239
|
-
export namespace Data {
|
|
240
|
-
/**
|
|
241
|
-
* Counts of related entities
|
|
242
|
-
*/
|
|
243
|
-
export interface _Count {
|
|
244
|
-
/**
|
|
245
|
-
* Count of minting contract assets
|
|
246
|
-
*/
|
|
247
|
-
mintingContractAssets: number;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
* Schema representing a collection
|
|
252
|
-
*/
|
|
253
|
-
export interface Collection {
|
|
254
|
-
/**
|
|
255
|
-
* Collection ID
|
|
256
|
-
*/
|
|
257
|
-
id: string;
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
* URL of the collection image
|
|
261
|
-
*/
|
|
262
|
-
imageUrl: string | null;
|
|
263
|
-
|
|
264
|
-
/**
|
|
265
|
-
* Collection name
|
|
266
|
-
*/
|
|
267
|
-
name: string;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
/**
|
|
271
|
-
* Schema representing an onchain token
|
|
272
|
-
*/
|
|
273
|
-
export interface OnchainToken {
|
|
274
|
-
/**
|
|
275
|
-
* OnchainToken ID
|
|
276
|
-
*/
|
|
277
|
-
id: string;
|
|
278
|
-
|
|
279
|
-
/**
|
|
280
|
-
* Contract address of the onchain token
|
|
281
|
-
*/
|
|
282
|
-
address: string;
|
|
283
|
-
|
|
284
|
-
/**
|
|
285
|
-
* Chain ID where the token is deployed
|
|
286
|
-
*/
|
|
287
|
-
chainId: string;
|
|
288
|
-
|
|
289
|
-
/**
|
|
290
|
-
* Creation timestamp
|
|
291
|
-
*/
|
|
292
|
-
createdAt: string;
|
|
293
|
-
|
|
294
|
-
/**
|
|
295
|
-
* Associated loyalty currency ID
|
|
296
|
-
*/
|
|
297
|
-
currencyId: string;
|
|
298
|
-
|
|
299
|
-
/**
|
|
300
|
-
* Deletion timestamp
|
|
301
|
-
*/
|
|
302
|
-
deletedAt: string | null;
|
|
303
|
-
|
|
304
|
-
/**
|
|
305
|
-
* Organization ID
|
|
306
|
-
*/
|
|
307
|
-
organizationId: string;
|
|
308
|
-
|
|
309
|
-
/**
|
|
310
|
-
* Relayer ID for transaction processing
|
|
311
|
-
*/
|
|
312
|
-
relayerId: string | null;
|
|
313
|
-
|
|
314
|
-
/**
|
|
315
|
-
* Last sync timestamp
|
|
316
|
-
*/
|
|
317
|
-
syncedAt: string | null;
|
|
318
|
-
|
|
319
|
-
/**
|
|
320
|
-
* Last update timestamp
|
|
321
|
-
*/
|
|
322
|
-
updatedAt: string;
|
|
323
|
-
|
|
324
|
-
/**
|
|
325
|
-
* Website ID
|
|
326
|
-
*/
|
|
327
|
-
websiteId: string;
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
116
|
}
|
|
331
117
|
|
|
332
118
|
export interface WebsiteCreateParams {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.248'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.248";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '0.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.248'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.248'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|