@sats-connect/core 0.5.8-2731ce5 → 0.5.8-9ce3fea

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.d.mts CHANGED
@@ -965,10 +965,6 @@ declare const stxCallContractParamsSchema: v.ObjectSchema<{
965
965
  * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
966
966
  */
967
967
  readonly functionName: v.StringSchema<undefined>;
968
- /**
969
- * @deprecated in favor of `functionArgs` for @stacks/connect compatibility
970
- */
971
- readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
972
968
  /**
973
969
  * The function's arguments. The arguments are expected to be hex-encoded
974
970
  * strings of Clarity values.
@@ -983,7 +979,7 @@ declare const stxCallContractParamsSchema: v.ObjectSchema<{
983
979
  * const hexArgs = functionArgs.map(cvToHex);
984
980
  * ```
985
981
  */
986
- readonly functionArgs: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
982
+ readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
987
983
  /**
988
984
  * The post conditions to apply to the contract call.
989
985
  */
@@ -1021,10 +1017,6 @@ declare const stxCallContractRequestMessageSchema: v.ObjectSchema<{
1021
1017
  * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
1022
1018
  */
1023
1019
  readonly functionName: v.StringSchema<undefined>;
1024
- /**
1025
- * @deprecated in favor of `functionArgs` for @stacks/connect compatibility
1026
- */
1027
- readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
1028
1020
  /**
1029
1021
  * The function's arguments. The arguments are expected to be hex-encoded
1030
1022
  * strings of Clarity values.
@@ -1039,7 +1031,7 @@ declare const stxCallContractRequestMessageSchema: v.ObjectSchema<{
1039
1031
  * const hexArgs = functionArgs.map(cvToHex);
1040
1032
  * ```
1041
1033
  */
1042
- readonly functionArgs: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
1034
+ readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
1043
1035
  /**
1044
1036
  * The post conditions to apply to the contract call.
1045
1037
  */
package/dist/index.d.ts CHANGED
@@ -965,10 +965,6 @@ declare const stxCallContractParamsSchema: v.ObjectSchema<{
965
965
  * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
966
966
  */
967
967
  readonly functionName: v.StringSchema<undefined>;
968
- /**
969
- * @deprecated in favor of `functionArgs` for @stacks/connect compatibility
970
- */
971
- readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
972
968
  /**
973
969
  * The function's arguments. The arguments are expected to be hex-encoded
974
970
  * strings of Clarity values.
@@ -983,7 +979,7 @@ declare const stxCallContractParamsSchema: v.ObjectSchema<{
983
979
  * const hexArgs = functionArgs.map(cvToHex);
984
980
  * ```
985
981
  */
986
- readonly functionArgs: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
982
+ readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
987
983
  /**
988
984
  * The post conditions to apply to the contract call.
989
985
  */
@@ -1021,10 +1017,6 @@ declare const stxCallContractRequestMessageSchema: v.ObjectSchema<{
1021
1017
  * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
1022
1018
  */
1023
1019
  readonly functionName: v.StringSchema<undefined>;
1024
- /**
1025
- * @deprecated in favor of `functionArgs` for @stacks/connect compatibility
1026
- */
1027
- readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
1028
1020
  /**
1029
1021
  * The function's arguments. The arguments are expected to be hex-encoded
1030
1022
  * strings of Clarity values.
@@ -1039,7 +1031,7 @@ declare const stxCallContractRequestMessageSchema: v.ObjectSchema<{
1039
1031
  * const hexArgs = functionArgs.map(cvToHex);
1040
1032
  * ```
1041
1033
  */
1042
- readonly functionArgs: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
1034
+ readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
1043
1035
  /**
1044
1036
  * The post conditions to apply to the contract call.
1045
1037
  */
package/dist/index.js CHANGED
@@ -343,10 +343,6 @@ var stxCallContractParamsSchema = v3.object({
343
343
  * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
344
344
  */
345
345
  functionName: v3.string(),
346
- /**
347
- * @deprecated in favor of `functionArgs` for @stacks/connect compatibility
348
- */
349
- arguments: v3.optional(v3.array(v3.string())),
350
346
  /**
351
347
  * The function's arguments. The arguments are expected to be hex-encoded
352
348
  * strings of Clarity values.
@@ -361,7 +357,7 @@ var stxCallContractParamsSchema = v3.object({
361
357
  * const hexArgs = functionArgs.map(cvToHex);
362
358
  * ```
363
359
  */
364
- functionArgs: v3.optional(v3.array(v3.string())),
360
+ arguments: v3.optional(v3.array(v3.string())),
365
361
  /**
366
362
  * The post conditions to apply to the contract call.
367
363
  */
package/dist/index.mjs CHANGED
@@ -136,10 +136,6 @@ var stxCallContractParamsSchema = v3.object({
136
136
  * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
137
137
  */
138
138
  functionName: v3.string(),
139
- /**
140
- * @deprecated in favor of `functionArgs` for @stacks/connect compatibility
141
- */
142
- arguments: v3.optional(v3.array(v3.string())),
143
139
  /**
144
140
  * The function's arguments. The arguments are expected to be hex-encoded
145
141
  * strings of Clarity values.
@@ -154,7 +150,7 @@ var stxCallContractParamsSchema = v3.object({
154
150
  * const hexArgs = functionArgs.map(cvToHex);
155
151
  * ```
156
152
  */
157
- functionArgs: v3.optional(v3.array(v3.string())),
153
+ arguments: v3.optional(v3.array(v3.string())),
158
154
  /**
159
155
  * The post conditions to apply to the contract call.
160
156
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sats-connect/core",
3
- "version": "0.5.8-2731ce5",
3
+ "version": "0.5.8-9ce3fea",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.mts",