@snagsolutions/sdk 0.1.0-alpha.21 → 0.1.0-alpha.23

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 (34) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/loyalty/index.d.ts +1 -1
  4. package/resources/loyalty/index.d.ts.map +1 -1
  5. package/resources/loyalty/index.js.map +1 -1
  6. package/resources/loyalty/index.mjs +1 -1
  7. package/resources/loyalty/index.mjs.map +1 -1
  8. package/resources/loyalty/loyalty.d.ts +2 -2
  9. package/resources/loyalty/loyalty.d.ts.map +1 -1
  10. package/resources/loyalty/loyalty.js.map +1 -1
  11. package/resources/loyalty/loyalty.mjs +1 -1
  12. package/resources/loyalty/loyalty.mjs.map +1 -1
  13. package/resources/loyalty/rule-groups.d.ts +53 -8
  14. package/resources/loyalty/rule-groups.d.ts.map +1 -1
  15. package/resources/loyalty/rule-groups.js +20 -2
  16. package/resources/loyalty/rule-groups.js.map +1 -1
  17. package/resources/loyalty/rule-groups.mjs +20 -2
  18. package/resources/loyalty/rule-groups.mjs.map +1 -1
  19. package/resources/loyalty/rules.d.ts +12 -12
  20. package/resources/loyalty/rules.d.ts.map +1 -1
  21. package/resources/minting.d.ts +1 -1
  22. package/resources/minting.d.ts.map +1 -1
  23. package/resources/websites/website-collections.d.ts +1 -1
  24. package/resources/websites/website-collections.d.ts.map +1 -1
  25. package/src/resources/loyalty/index.ts +10 -1
  26. package/src/resources/loyalty/loyalty.ts +17 -3
  27. package/src/resources/loyalty/rule-groups.ts +121 -13
  28. package/src/resources/loyalty/rules.ts +36 -24
  29. package/src/resources/minting.ts +3 -2
  30. package/src/resources/websites/website-collections.ts +3 -2
  31. package/src/version.ts +1 -1
  32. package/version.d.ts +1 -1
  33. package/version.js +1 -1
  34. package/version.mjs +1 -1
@@ -255,6 +255,8 @@ export interface RuleCreateResponse {
255
255
  * Blockchain network where the rule will apply
256
256
  */
257
257
  network?:
258
+ | 'abstract'
259
+ | 'abstractTestnet'
258
260
  | 'apechain'
259
261
  | 'arbitrum'
260
262
  | 'avalanche'
@@ -287,8 +289,7 @@ export interface RuleCreateResponse {
287
289
  | 'goerli'
288
290
  | 'optimism_goerli'
289
291
  | 'arbitrumGoerli'
290
- | 'basecamp'
291
- | 'abstract';
292
+ | 'basecamp';
292
293
 
293
294
  /**
294
295
  * OAuth credentials associated with the rule
@@ -649,6 +650,8 @@ export namespace RuleCreateResponse {
649
650
  * Blockchain network of the collection.
650
651
  */
651
652
  network?:
653
+ | 'abstract'
654
+ | 'abstractTestnet'
652
655
  | 'apechain'
653
656
  | 'arbitrum'
654
657
  | 'avalanche'
@@ -681,8 +684,7 @@ export namespace RuleCreateResponse {
681
684
  | 'goerli'
682
685
  | 'optimism_goerli'
683
686
  | 'arbitrumGoerli'
684
- | 'basecamp'
685
- | 'abstract';
687
+ | 'basecamp';
686
688
  }
687
689
 
688
690
  /**
@@ -968,6 +970,8 @@ export namespace RuleCreateResponse {
968
970
  * Blockchain network for the collection
969
971
  */
970
972
  network:
973
+ | 'abstract'
974
+ | 'abstractTestnet'
971
975
  | 'apechain'
972
976
  | 'arbitrum'
973
977
  | 'avalanche'
@@ -1000,8 +1004,7 @@ export namespace RuleCreateResponse {
1000
1004
  | 'goerli'
1001
1005
  | 'optimism_goerli'
1002
1006
  | 'arbitrumGoerli'
1003
- | 'basecamp'
1004
- | 'abstract';
1007
+ | 'basecamp';
1005
1008
  }
1006
1009
  }
1007
1010
 
@@ -1097,6 +1100,8 @@ export interface RuleUpdateResponse {
1097
1100
  * Blockchain network where the rule will apply
1098
1101
  */
1099
1102
  network?:
1103
+ | 'abstract'
1104
+ | 'abstractTestnet'
1100
1105
  | 'apechain'
1101
1106
  | 'arbitrum'
1102
1107
  | 'avalanche'
@@ -1129,8 +1134,7 @@ export interface RuleUpdateResponse {
1129
1134
  | 'goerli'
1130
1135
  | 'optimism_goerli'
1131
1136
  | 'arbitrumGoerli'
1132
- | 'basecamp'
1133
- | 'abstract';
1137
+ | 'basecamp';
1134
1138
 
1135
1139
  /**
1136
1140
  * ID for associated OAuth credentials
@@ -1164,6 +1168,8 @@ export namespace RuleUpdateResponse {
1164
1168
  * Blockchain network for the collection
1165
1169
  */
1166
1170
  network:
1171
+ | 'abstract'
1172
+ | 'abstractTestnet'
1167
1173
  | 'apechain'
1168
1174
  | 'arbitrum'
1169
1175
  | 'avalanche'
@@ -1196,8 +1202,7 @@ export namespace RuleUpdateResponse {
1196
1202
  | 'goerli'
1197
1203
  | 'optimism_goerli'
1198
1204
  | 'arbitrumGoerli'
1199
- | 'basecamp'
1200
- | 'abstract';
1205
+ | 'basecamp';
1201
1206
  }
1202
1207
 
1203
1208
  /**
@@ -1542,6 +1547,8 @@ export namespace RuleUpdateResponse {
1542
1547
  * Blockchain network of the collection.
1543
1548
  */
1544
1549
  network?:
1550
+ | 'abstract'
1551
+ | 'abstractTestnet'
1545
1552
  | 'apechain'
1546
1553
  | 'arbitrum'
1547
1554
  | 'avalanche'
@@ -1574,8 +1581,7 @@ export namespace RuleUpdateResponse {
1574
1581
  | 'goerli'
1575
1582
  | 'optimism_goerli'
1576
1583
  | 'arbitrumGoerli'
1577
- | 'basecamp'
1578
- | 'abstract';
1584
+ | 'basecamp';
1579
1585
  }
1580
1586
 
1581
1587
  /**
@@ -2119,6 +2125,8 @@ export interface RuleCreateParams {
2119
2125
  * Blockchain network where the rule will apply
2120
2126
  */
2121
2127
  network?:
2128
+ | 'abstract'
2129
+ | 'abstractTestnet'
2122
2130
  | 'apechain'
2123
2131
  | 'arbitrum'
2124
2132
  | 'avalanche'
@@ -2151,8 +2159,7 @@ export interface RuleCreateParams {
2151
2159
  | 'goerli'
2152
2160
  | 'optimism_goerli'
2153
2161
  | 'arbitrumGoerli'
2154
- | 'basecamp'
2155
- | 'abstract';
2162
+ | 'basecamp';
2156
2163
 
2157
2164
  /**
2158
2165
  * OAuth credentials associated with the rule
@@ -2513,6 +2520,8 @@ export namespace RuleCreateParams {
2513
2520
  * Blockchain network of the collection.
2514
2521
  */
2515
2522
  network?:
2523
+ | 'abstract'
2524
+ | 'abstractTestnet'
2516
2525
  | 'apechain'
2517
2526
  | 'arbitrum'
2518
2527
  | 'avalanche'
@@ -2545,8 +2554,7 @@ export namespace RuleCreateParams {
2545
2554
  | 'goerli'
2546
2555
  | 'optimism_goerli'
2547
2556
  | 'arbitrumGoerli'
2548
- | 'basecamp'
2549
- | 'abstract';
2557
+ | 'basecamp';
2550
2558
  }
2551
2559
 
2552
2560
  /**
@@ -2832,6 +2840,8 @@ export namespace RuleCreateParams {
2832
2840
  * Blockchain network for the collection
2833
2841
  */
2834
2842
  network:
2843
+ | 'abstract'
2844
+ | 'abstractTestnet'
2835
2845
  | 'apechain'
2836
2846
  | 'arbitrum'
2837
2847
  | 'avalanche'
@@ -2864,8 +2874,7 @@ export namespace RuleCreateParams {
2864
2874
  | 'goerli'
2865
2875
  | 'optimism_goerli'
2866
2876
  | 'arbitrumGoerli'
2867
- | 'basecamp'
2868
- | 'abstract';
2877
+ | 'basecamp';
2869
2878
  }
2870
2879
  }
2871
2880
 
@@ -2959,6 +2968,8 @@ export interface RuleUpdateParams {
2959
2968
  * Blockchain network where the rule will apply
2960
2969
  */
2961
2970
  network?:
2971
+ | 'abstract'
2972
+ | 'abstractTestnet'
2962
2973
  | 'apechain'
2963
2974
  | 'arbitrum'
2964
2975
  | 'avalanche'
@@ -2991,8 +3002,7 @@ export interface RuleUpdateParams {
2991
3002
  | 'goerli'
2992
3003
  | 'optimism_goerli'
2993
3004
  | 'arbitrumGoerli'
2994
- | 'basecamp'
2995
- | 'abstract';
3005
+ | 'basecamp';
2996
3006
 
2997
3007
  /**
2998
3008
  * ID for associated OAuth credentials
@@ -3026,6 +3036,8 @@ export namespace RuleUpdateParams {
3026
3036
  * Blockchain network for the collection
3027
3037
  */
3028
3038
  network:
3039
+ | 'abstract'
3040
+ | 'abstractTestnet'
3029
3041
  | 'apechain'
3030
3042
  | 'arbitrum'
3031
3043
  | 'avalanche'
@@ -3058,8 +3070,7 @@ export namespace RuleUpdateParams {
3058
3070
  | 'goerli'
3059
3071
  | 'optimism_goerli'
3060
3072
  | 'arbitrumGoerli'
3061
- | 'basecamp'
3062
- | 'abstract';
3073
+ | 'basecamp';
3063
3074
  }
3064
3075
 
3065
3076
  /**
@@ -3404,6 +3415,8 @@ export namespace RuleUpdateParams {
3404
3415
  * Blockchain network of the collection.
3405
3416
  */
3406
3417
  network?:
3418
+ | 'abstract'
3419
+ | 'abstractTestnet'
3407
3420
  | 'apechain'
3408
3421
  | 'arbitrum'
3409
3422
  | 'avalanche'
@@ -3436,8 +3449,7 @@ export namespace RuleUpdateParams {
3436
3449
  | 'goerli'
3437
3450
  | 'optimism_goerli'
3438
3451
  | 'arbitrumGoerli'
3439
- | 'basecamp'
3440
- | 'abstract';
3452
+ | 'basecamp';
3441
3453
  }
3442
3454
 
3443
3455
  /**
@@ -89,6 +89,8 @@ export interface MintingGetAssetsParams {
89
89
  * Network
90
90
  */
91
91
  network?:
92
+ | 'abstract'
93
+ | 'abstractTestnet'
92
94
  | 'apechain'
93
95
  | 'arbitrum'
94
96
  | 'avalanche'
@@ -121,8 +123,7 @@ export interface MintingGetAssetsParams {
121
123
  | 'goerli'
122
124
  | 'optimism_goerli'
123
125
  | 'arbitrumGoerli'
124
- | 'basecamp'
125
- | 'abstract';
126
+ | 'basecamp';
126
127
 
127
128
  /**
128
129
  * Sort Dir
@@ -56,6 +56,8 @@ export interface WebsiteCollectionCreateParams {
56
56
  name: string;
57
57
 
58
58
  network:
59
+ | 'abstract'
60
+ | 'abstractTestnet'
59
61
  | 'apechain'
60
62
  | 'arbitrum'
61
63
  | 'avalanche'
@@ -88,8 +90,7 @@ export interface WebsiteCollectionCreateParams {
88
90
  | 'goerli'
89
91
  | 'optimism_goerli'
90
92
  | 'arbitrumGoerli'
91
- | 'basecamp'
92
- | 'abstract';
93
+ | 'basecamp';
93
94
 
94
95
  organizationId: string;
95
96
 
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.1.0-alpha.21'; // x-release-please-version
1
+ export const VERSION = '0.1.0-alpha.23'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.0-alpha.21";
1
+ export declare const VERSION = "0.1.0-alpha.23";
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.21'; // x-release-please-version
4
+ exports.VERSION = '0.1.0-alpha.23'; // 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.21'; // x-release-please-version
1
+ export const VERSION = '0.1.0-alpha.23'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map