arky-sdk 0.3.42 → 0.3.43
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.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +4 -3
- package/dist/types.d.ts +4 -3
- package/package.json +1 -1
package/dist/types.d.cts
CHANGED
|
@@ -330,9 +330,10 @@ interface GetCollectionSubscribersParams {
|
|
|
330
330
|
id: string;
|
|
331
331
|
}
|
|
332
332
|
interface SubscribeToCollectionParams {
|
|
333
|
-
collectionId
|
|
334
|
-
email
|
|
335
|
-
planId
|
|
333
|
+
collectionId?: string;
|
|
334
|
+
email?: string;
|
|
335
|
+
planId?: string;
|
|
336
|
+
unsubscribeToken?: string;
|
|
336
337
|
}
|
|
337
338
|
interface CreateProductParams {
|
|
338
339
|
name: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -330,9 +330,10 @@ interface GetCollectionSubscribersParams {
|
|
|
330
330
|
id: string;
|
|
331
331
|
}
|
|
332
332
|
interface SubscribeToCollectionParams {
|
|
333
|
-
collectionId
|
|
334
|
-
email
|
|
335
|
-
planId
|
|
333
|
+
collectionId?: string;
|
|
334
|
+
email?: string;
|
|
335
|
+
planId?: string;
|
|
336
|
+
unsubscribeToken?: string;
|
|
336
337
|
}
|
|
337
338
|
interface CreateProductParams {
|
|
338
339
|
name: string;
|