@shelby-protocol/sdk 0.0.8 → 0.1.0

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 (81) hide show
  1. package/dist/browser/index.d.ts +13 -7
  2. package/dist/browser/index.mjs +102 -49
  3. package/dist/{chunk-HFGEQP5N.mjs → chunk-3ZL3FSNA.mjs} +4 -4
  4. package/dist/chunk-4MG4XGY4.mjs +91 -0
  5. package/dist/chunk-66GI734H.mjs +493 -0
  6. package/dist/chunk-AABBONAF.mjs +34 -0
  7. package/dist/{chunk-BBOG5JSX.mjs → chunk-AGRRYZWV.mjs} +215 -44
  8. package/dist/chunk-CQ6QPIZK.mjs +37 -0
  9. package/dist/{chunk-LGNWAXBG.mjs → chunk-DI2K6OUG.mjs} +1 -1
  10. package/dist/{chunk-SEXQTDX6.mjs → chunk-FLLOQZVD.mjs} +4 -0
  11. package/dist/chunk-IE6LYVIA.mjs +26 -0
  12. package/dist/{chunk-WJKSPJSS.mjs → chunk-KJ24NKPH.mjs} +46 -0
  13. package/dist/{chunk-ZPW742E7.mjs → chunk-LZSIZJYR.mjs} +3 -1
  14. package/dist/chunk-MSCUDBMH.mjs +83 -0
  15. package/dist/{chunk-CPNZAQVY.mjs → chunk-OMZOR2ZF.mjs} +2 -2
  16. package/dist/chunk-QQ57OGQ2.mjs +0 -0
  17. package/dist/{chunk-XWAPNLU6.mjs → chunk-RLRI2533.mjs} +4 -2
  18. package/dist/{chunk-NLPIHQ7K.mjs → chunk-UCDAABAS.mjs} +1 -1
  19. package/dist/{chunk-GY5DCVVL.mjs → chunk-W5NRGZEP.mjs} +1 -1
  20. package/dist/{chunk-MGAN2SBA.mjs → chunk-W6YL46DT.mjs} +28 -14
  21. package/dist/{chunk-CTGCK3H2.mjs → chunk-YZXIPUVQ.mjs} +32 -8
  22. package/dist/{chunk-QRGZJBAG.mjs → chunk-ZAM2EUVN.mjs} +165 -36
  23. package/dist/core/chunk.mjs +1 -1
  24. package/dist/core/clients/ShelbyBlobClient.d.ts +160 -11
  25. package/dist/core/clients/ShelbyBlobClient.mjs +11 -9
  26. package/dist/core/clients/ShelbyClient.d.ts +14 -3
  27. package/dist/core/clients/ShelbyClient.mjs +15 -13
  28. package/dist/core/clients/ShelbyClientConfig.d.ts +7 -2
  29. package/dist/core/clients/ShelbyMicropaymentChannelClient.d.ts +349 -0
  30. package/dist/core/clients/ShelbyMicropaymentChannelClient.mjs +16 -0
  31. package/dist/core/clients/ShelbyPlacementGroupClient.d.ts +73 -0
  32. package/dist/core/clients/ShelbyPlacementGroupClient.mjs +11 -0
  33. package/dist/core/clients/ShelbyRPCClient.d.ts +28 -4
  34. package/dist/core/clients/ShelbyRPCClient.mjs +9 -7
  35. package/dist/core/clients/index.d.ts +7 -3
  36. package/dist/core/clients/index.mjs +33 -17
  37. package/dist/core/clients/utils.d.ts +54 -0
  38. package/dist/core/clients/utils.mjs +1 -1
  39. package/dist/core/commitments.d.ts +5 -1
  40. package/dist/core/commitments.mjs +4 -2
  41. package/dist/core/constants.d.ts +4 -1
  42. package/dist/core/constants.mjs +3 -1
  43. package/dist/core/erasure/clay-codes.mjs +2 -2
  44. package/dist/core/erasure/constants.d.ts +5 -1
  45. package/dist/core/erasure/constants.mjs +3 -1
  46. package/dist/core/erasure/default.mjs +3 -3
  47. package/dist/core/erasure/index.d.ts +1 -1
  48. package/dist/core/erasure/index.mjs +8 -6
  49. package/dist/core/errors.d.ts +58 -0
  50. package/dist/core/errors.mjs +15 -0
  51. package/dist/core/index.d.ts +13 -7
  52. package/dist/core/index.mjs +102 -49
  53. package/dist/core/layout.mjs +2 -2
  54. package/dist/core/operations/generated/sdk.d.ts +207 -17
  55. package/dist/core/operations/generated/sdk.mjs +7 -1
  56. package/dist/core/operations/generated/types.d.ts +908 -0
  57. package/dist/core/operations/generated/types.mjs +63 -0
  58. package/dist/core/operations/index.d.ts +9 -3
  59. package/dist/core/operations/index.mjs +10 -4
  60. package/dist/core/rpc-responses.d.ts +69 -0
  61. package/dist/core/rpc-responses.mjs +15 -0
  62. package/dist/core/types/blobs.d.ts +7 -3
  63. package/dist/core/types/index.d.ts +3 -1
  64. package/dist/core/types/index.mjs +12 -2
  65. package/dist/core/types/payments.d.ts +94 -0
  66. package/dist/core/types/payments.mjs +9 -0
  67. package/dist/core/types/placement_groups.d.ts +30 -1
  68. package/dist/core/types/placement_groups.mjs +1 -0
  69. package/dist/core/types/storage_providers.d.ts +32 -2
  70. package/dist/node/clients/ShelbyMetadataClient.mjs +3 -3
  71. package/dist/node/clients/ShelbyNodeClient.d.ts +4 -3
  72. package/dist/node/clients/ShelbyNodeClient.mjs +16 -14
  73. package/dist/node/clients/index.d.ts +4 -3
  74. package/dist/node/clients/index.mjs +19 -17
  75. package/dist/node/index.d.ts +13 -7
  76. package/dist/node/index.mjs +106 -53
  77. package/package.json +3 -2
  78. package/dist/chunk-RBFWGDMY.mjs +0 -30
  79. /package/dist/{chunk-DJJD2AXO.mjs → chunk-AD2G3QYD.mjs} +0 -0
  80. /package/dist/{chunk-MWDW4ROU.mjs → chunk-EM67QTMR.mjs} +0 -0
  81. /package/dist/{chunk-RNXGC54D.mjs → chunk-FGUK6IBA.mjs} +0 -0
@@ -0,0 +1,63 @@
1
+ import "../../../chunk-7P6ASYW6.mjs";
2
+
3
+ // src/core/operations/generated/types.ts
4
+ var Blob_Activities_Select_Column = /* @__PURE__ */ ((Blob_Activities_Select_Column2) => {
5
+ Blob_Activities_Select_Column2["BlobName"] = "blob_name";
6
+ Blob_Activities_Select_Column2["EventIndex"] = "event_index";
7
+ Blob_Activities_Select_Column2["EventType"] = "event_type";
8
+ Blob_Activities_Select_Column2["Timestamp"] = "timestamp";
9
+ Blob_Activities_Select_Column2["TransactionHash"] = "transaction_hash";
10
+ Blob_Activities_Select_Column2["TransactionVersion"] = "transaction_version";
11
+ return Blob_Activities_Select_Column2;
12
+ })(Blob_Activities_Select_Column || {});
13
+ var Blobs_Select_Column = /* @__PURE__ */ ((Blobs_Select_Column2) => {
14
+ Blobs_Select_Column2["BlobCommitment"] = "blob_commitment";
15
+ Blobs_Select_Column2["BlobName"] = "blob_name";
16
+ Blobs_Select_Column2["CreatedAt"] = "created_at";
17
+ Blobs_Select_Column2["ExpiresAt"] = "expires_at";
18
+ Blobs_Select_Column2["IsDeleted"] = "is_deleted";
19
+ Blobs_Select_Column2["IsWritten"] = "is_written";
20
+ Blobs_Select_Column2["NumChunksets"] = "num_chunksets";
21
+ Blobs_Select_Column2["Owner"] = "owner";
22
+ Blobs_Select_Column2["PlacementGroup"] = "placement_group";
23
+ Blobs_Select_Column2["Size"] = "size";
24
+ Blobs_Select_Column2["SliceAddress"] = "slice_address";
25
+ Blobs_Select_Column2["UpdatedAt"] = "updated_at";
26
+ return Blobs_Select_Column2;
27
+ })(Blobs_Select_Column || {});
28
+ var Cursor_Ordering = /* @__PURE__ */ ((Cursor_Ordering2) => {
29
+ Cursor_Ordering2["Asc"] = "ASC";
30
+ Cursor_Ordering2["Desc"] = "DESC";
31
+ return Cursor_Ordering2;
32
+ })(Cursor_Ordering || {});
33
+ var Order_By = /* @__PURE__ */ ((Order_By2) => {
34
+ Order_By2["Asc"] = "asc";
35
+ Order_By2["AscNullsFirst"] = "asc_nulls_first";
36
+ Order_By2["AscNullsLast"] = "asc_nulls_last";
37
+ Order_By2["Desc"] = "desc";
38
+ Order_By2["DescNullsFirst"] = "desc_nulls_first";
39
+ Order_By2["DescNullsLast"] = "desc_nulls_last";
40
+ return Order_By2;
41
+ })(Order_By || {});
42
+ var Placement_Group_Slots_Select_Column = /* @__PURE__ */ ((Placement_Group_Slots_Select_Column2) => {
43
+ Placement_Group_Slots_Select_Column2["PlacementGroup"] = "placement_group";
44
+ Placement_Group_Slots_Select_Column2["SlotIndex"] = "slot_index";
45
+ Placement_Group_Slots_Select_Column2["Status"] = "status";
46
+ Placement_Group_Slots_Select_Column2["StorageProvider"] = "storage_provider";
47
+ Placement_Group_Slots_Select_Column2["UpdatedAt"] = "updated_at";
48
+ return Placement_Group_Slots_Select_Column2;
49
+ })(Placement_Group_Slots_Select_Column || {});
50
+ var Processor_Status_Select_Column = /* @__PURE__ */ ((Processor_Status_Select_Column2) => {
51
+ Processor_Status_Select_Column2["LastSuccessVersion"] = "last_success_version";
52
+ Processor_Status_Select_Column2["LastTransactionTimestamp"] = "last_transaction_timestamp";
53
+ Processor_Status_Select_Column2["LastUpdated"] = "last_updated";
54
+ return Processor_Status_Select_Column2;
55
+ })(Processor_Status_Select_Column || {});
56
+ export {
57
+ Blob_Activities_Select_Column,
58
+ Blobs_Select_Column,
59
+ Cursor_Ordering,
60
+ Order_By,
61
+ Placement_Group_Slots_Select_Column,
62
+ Processor_Status_Select_Column
63
+ };
@@ -1,7 +1,7 @@
1
1
  import { GraphQLClient } from 'graphql-request';
2
2
  import { ShelbyClientConfig } from '../clients/ShelbyClientConfig.js';
3
- import { GetBlobsQueryVariables, GetBlobsQuery, GetBlobActivitiesQueryVariables, GetBlobActivitiesQuery, GetBlobsCountQueryVariables, GetBlobsCountQuery, GetBlobActivitiesCountQueryVariables, GetBlobActivitiesCountQuery } from './generated/sdk.js';
4
- export { Bigint_Comparison_Exp, Blob_Activities, Blob_Activities_Aggregate, Blob_Activities_Aggregate_Fields, Blob_Activities_Aggregate_FieldsCountArgs, Blob_Activities_Avg_Fields, Blob_Activities_Bool_Exp, Blob_Activities_Max_Fields, Blob_Activities_Min_Fields, Blob_Activities_Order_By, Blob_Activities_Select_Column, Blob_Activities_Stddev_Fields, Blob_Activities_Stddev_Pop_Fields, Blob_Activities_Stddev_Samp_Fields, Blob_Activities_Stream_Cursor_Input, Blob_Activities_Stream_Cursor_Value_Input, Blob_Activities_Sum_Fields, Blob_Activities_Var_Pop_Fields, Blob_Activities_Var_Samp_Fields, Blob_Activities_Variance_Fields, Blobs, BlobsPlacement_Group_SlotsArgs, Blobs_Aggregate, Blobs_Aggregate_Fields, Blobs_Aggregate_FieldsCountArgs, Blobs_Avg_Fields, Blobs_Bool_Exp, Blobs_Max_Fields, Blobs_Min_Fields, Blobs_Order_By, Blobs_Select_Column, Blobs_Stddev_Fields, Blobs_Stddev_Pop_Fields, Blobs_Stddev_Samp_Fields, Blobs_Stream_Cursor_Input, Blobs_Stream_Cursor_Value_Input, Blobs_Sum_Fields, Blobs_Var_Pop_Fields, Blobs_Var_Samp_Fields, Blobs_Variance_Fields, Cursor_Ordering, Exact, GetBlobActivitiesCountDocument, GetBlobActivitiesDocument, GetBlobsCountDocument, GetBlobsDocument, Incremental, InputMaybe, MakeEmpty, MakeMaybe, MakeOptional, Maybe, Numeric_Comparison_Exp, Order_By, Placement_Group_Slots, Placement_Group_Slots_Aggregate_Order_By, Placement_Group_Slots_Avg_Order_By, Placement_Group_Slots_Bool_Exp, Placement_Group_Slots_Max_Order_By, Placement_Group_Slots_Min_Order_By, Placement_Group_Slots_Order_By, Placement_Group_Slots_Select_Column, Placement_Group_Slots_Stddev_Order_By, Placement_Group_Slots_Stddev_Pop_Order_By, Placement_Group_Slots_Stddev_Samp_Order_By, Placement_Group_Slots_Stream_Cursor_Input, Placement_Group_Slots_Stream_Cursor_Value_Input, Placement_Group_Slots_Sum_Order_By, Placement_Group_Slots_Var_Pop_Order_By, Placement_Group_Slots_Var_Samp_Order_By, Placement_Group_Slots_Variance_Order_By, Processor_Status, Processor_Status_Bool_Exp, Processor_Status_Order_By, Processor_Status_Select_Column, Processor_Status_Stream_Cursor_Input, Processor_Status_Stream_Cursor_Value_Input, Query_Root, Query_RootBlob_ActivitiesArgs, Query_RootBlob_Activities_AggregateArgs, Query_RootBlob_Activities_By_PkArgs, Query_RootBlobsArgs, Query_RootBlobs_AggregateArgs, Query_RootBlobs_By_PkArgs, Query_RootPlacement_Group_SlotsArgs, Query_RootPlacement_Group_Slots_By_PkArgs, Query_RootProcessor_StatusArgs, Scalars, Sdk, SdkFunctionWrapper, String_Comparison_Exp, Subscription_Root, Subscription_RootBlob_ActivitiesArgs, Subscription_RootBlob_Activities_AggregateArgs, Subscription_RootBlob_Activities_By_PkArgs, Subscription_RootBlob_Activities_StreamArgs, Subscription_RootBlobsArgs, Subscription_RootBlobs_AggregateArgs, Subscription_RootBlobs_By_PkArgs, Subscription_RootBlobs_StreamArgs, Subscription_RootPlacement_Group_SlotsArgs, Subscription_RootPlacement_Group_Slots_By_PkArgs, Subscription_RootPlacement_Group_Slots_StreamArgs, Subscription_RootProcessor_StatusArgs, Subscription_RootProcessor_Status_StreamArgs, Timestamp_Comparison_Exp, getSdk } from './generated/sdk.js';
3
+ import { GetBlobsQueryVariables, GetBlobsQuery, GetBlobActivitiesQueryVariables, GetBlobActivitiesQuery, GetBlobsCountQueryVariables, GetBlobsCountQuery, GetBlobActivitiesCountQueryVariables, GetBlobActivitiesCountQuery, GetPlacementGroupSlotsQueryVariables, GetPlacementGroupSlotsQuery, GetPlacementGroupSlotsCountQueryVariables, GetPlacementGroupSlotsCountQuery, GetProcessorStatusQueryVariables, GetProcessorStatusQuery } from './generated/sdk.js';
4
+ export { Bigint_Comparison_Exp, Blob_Activities, Blob_Activities_Aggregate, Blob_Activities_Aggregate_Fields, Blob_Activities_Aggregate_FieldsCountArgs, Blob_Activities_Avg_Fields, Blob_Activities_Bool_Exp, Blob_Activities_Max_Fields, Blob_Activities_Min_Fields, Blob_Activities_Order_By, Blob_Activities_Select_Column, Blob_Activities_Stddev_Fields, Blob_Activities_Stddev_Pop_Fields, Blob_Activities_Stddev_Samp_Fields, Blob_Activities_Stream_Cursor_Input, Blob_Activities_Stream_Cursor_Value_Input, Blob_Activities_Sum_Fields, Blob_Activities_Var_Pop_Fields, Blob_Activities_Var_Samp_Fields, Blob_Activities_Variance_Fields, Blobs, BlobsPlacement_Group_SlotsArgs, BlobsPlacement_Group_Slots_AggregateArgs, Blobs_Aggregate, Blobs_Aggregate_Fields, Blobs_Aggregate_FieldsCountArgs, Blobs_Avg_Fields, Blobs_Bool_Exp, Blobs_Max_Fields, Blobs_Min_Fields, Blobs_Order_By, Blobs_Select_Column, Blobs_Stddev_Fields, Blobs_Stddev_Pop_Fields, Blobs_Stddev_Samp_Fields, Blobs_Stream_Cursor_Input, Blobs_Stream_Cursor_Value_Input, Blobs_Sum_Fields, Blobs_Var_Pop_Fields, Blobs_Var_Samp_Fields, Blobs_Variance_Fields, Cursor_Ordering, Exact, GetBlobActivitiesCountDocument, GetBlobActivitiesDocument, GetBlobsCountDocument, GetBlobsDocument, GetPlacementGroupSlotsCountDocument, GetPlacementGroupSlotsDocument, GetProcessorStatusDocument, Incremental, InputMaybe, Int_Comparison_Exp, MakeEmpty, MakeMaybe, MakeOptional, Maybe, Numeric_Comparison_Exp, Order_By, Placement_Group_Slots, Placement_Group_Slots_Aggregate, Placement_Group_Slots_Aggregate_Bool_Exp, Placement_Group_Slots_Aggregate_Bool_Exp_Count, Placement_Group_Slots_Aggregate_Fields, Placement_Group_Slots_Aggregate_FieldsCountArgs, Placement_Group_Slots_Aggregate_Order_By, Placement_Group_Slots_Avg_Fields, Placement_Group_Slots_Avg_Order_By, Placement_Group_Slots_Bool_Exp, Placement_Group_Slots_Max_Fields, Placement_Group_Slots_Max_Order_By, Placement_Group_Slots_Min_Fields, Placement_Group_Slots_Min_Order_By, Placement_Group_Slots_Order_By, Placement_Group_Slots_Select_Column, Placement_Group_Slots_Stddev_Fields, Placement_Group_Slots_Stddev_Order_By, Placement_Group_Slots_Stddev_Pop_Fields, Placement_Group_Slots_Stddev_Pop_Order_By, Placement_Group_Slots_Stddev_Samp_Fields, Placement_Group_Slots_Stddev_Samp_Order_By, Placement_Group_Slots_Stream_Cursor_Input, Placement_Group_Slots_Stream_Cursor_Value_Input, Placement_Group_Slots_Sum_Fields, Placement_Group_Slots_Sum_Order_By, Placement_Group_Slots_Var_Pop_Fields, Placement_Group_Slots_Var_Pop_Order_By, Placement_Group_Slots_Var_Samp_Fields, Placement_Group_Slots_Var_Samp_Order_By, Placement_Group_Slots_Variance_Fields, Placement_Group_Slots_Variance_Order_By, Processor_Status, Processor_Status_Bool_Exp, Processor_Status_Order_By, Processor_Status_Select_Column, Processor_Status_Stream_Cursor_Input, Processor_Status_Stream_Cursor_Value_Input, Query_Root, Query_RootBlob_ActivitiesArgs, Query_RootBlob_Activities_AggregateArgs, Query_RootBlob_Activities_By_PkArgs, Query_RootBlobsArgs, Query_RootBlobs_AggregateArgs, Query_RootBlobs_By_PkArgs, Query_RootPlacement_Group_SlotsArgs, Query_RootPlacement_Group_Slots_AggregateArgs, Query_RootPlacement_Group_Slots_By_PkArgs, Query_RootProcessor_StatusArgs, Scalars, Sdk, SdkFunctionWrapper, String_Comparison_Exp, Subscription_Root, Subscription_RootBlob_ActivitiesArgs, Subscription_RootBlob_Activities_AggregateArgs, Subscription_RootBlob_Activities_By_PkArgs, Subscription_RootBlob_Activities_StreamArgs, Subscription_RootBlobsArgs, Subscription_RootBlobs_AggregateArgs, Subscription_RootBlobs_By_PkArgs, Subscription_RootBlobs_StreamArgs, Subscription_RootPlacement_Group_SlotsArgs, Subscription_RootPlacement_Group_Slots_AggregateArgs, Subscription_RootPlacement_Group_Slots_By_PkArgs, Subscription_RootPlacement_Group_Slots_StreamArgs, Subscription_RootProcessor_StatusArgs, Subscription_RootProcessor_Status_StreamArgs, Timestamp_Comparison_Exp, getSdk } from './generated/sdk.js';
5
5
  import '@aptos-labs/ts-sdk';
6
6
  import '../networks.js';
7
7
  import 'graphql';
@@ -11,6 +11,9 @@ declare function createShelbyIndexerClient(baseUrl: string, options?: Constructo
11
11
  getBlobActivities(variables?: GetBlobActivitiesQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetBlobActivitiesQuery>;
12
12
  getBlobsCount(variables?: GetBlobsCountQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetBlobsCountQuery>;
13
13
  getBlobActivitiesCount(variables?: GetBlobActivitiesCountQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetBlobActivitiesCountQuery>;
14
+ getPlacementGroupSlots(variables?: GetPlacementGroupSlotsQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetPlacementGroupSlotsQuery>;
15
+ getPlacementGroupSlotsCount(variables?: GetPlacementGroupSlotsCountQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetPlacementGroupSlotsCountQuery>;
16
+ getProcessorStatus(variables?: GetProcessorStatusQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetProcessorStatusQuery>;
14
17
  };
15
18
  /**
16
19
  * Creates a Shelby indexer client from a Shelby client config.
@@ -30,7 +33,10 @@ declare function getShelbyIndexerClient(config: ShelbyClientConfig): {
30
33
  getBlobActivities(variables?: GetBlobActivitiesQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetBlobActivitiesQuery>;
31
34
  getBlobsCount(variables?: GetBlobsCountQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetBlobsCountQuery>;
32
35
  getBlobActivitiesCount(variables?: GetBlobActivitiesCountQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetBlobActivitiesCountQuery>;
36
+ getPlacementGroupSlots(variables?: GetPlacementGroupSlotsQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetPlacementGroupSlotsQuery>;
37
+ getPlacementGroupSlotsCount(variables?: GetPlacementGroupSlotsCountQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetPlacementGroupSlotsCountQuery>;
38
+ getProcessorStatus(variables?: GetProcessorStatusQueryVariables, requestHeaders?: HeadersInit | undefined, signal?: RequestInit["signal"]): Promise<GetProcessorStatusQuery>;
33
39
  };
34
40
  type ShelbyIndexerClient = ReturnType<typeof createShelbyIndexerClient>;
35
41
 
36
- export { GetBlobActivitiesCountQuery, GetBlobActivitiesCountQueryVariables, GetBlobActivitiesQuery, GetBlobActivitiesQueryVariables, GetBlobsCountQuery, GetBlobsCountQueryVariables, GetBlobsQuery, GetBlobsQueryVariables, type ShelbyIndexerClient, createShelbyIndexerClient, getShelbyIndexerClient };
42
+ export { GetBlobActivitiesCountQuery, GetBlobActivitiesCountQueryVariables, GetBlobActivitiesQuery, GetBlobActivitiesQueryVariables, GetBlobsCountQuery, GetBlobsCountQueryVariables, GetBlobsQuery, GetBlobsQueryVariables, GetPlacementGroupSlotsCountQuery, GetPlacementGroupSlotsCountQueryVariables, GetPlacementGroupSlotsQuery, GetPlacementGroupSlotsQueryVariables, GetProcessorStatusQuery, GetProcessorStatusQueryVariables, type ShelbyIndexerClient, createShelbyIndexerClient, getShelbyIndexerClient };
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createShelbyIndexerClient,
3
3
  getShelbyIndexerClient
4
- } from "../../chunk-HFGEQP5N.mjs";
4
+ } from "../../chunk-3ZL3FSNA.mjs";
5
5
  import {
6
6
  Blob_Activities_Select_Column,
7
7
  Blobs_Select_Column,
@@ -10,13 +10,16 @@ import {
10
10
  GetBlobActivitiesDocument,
11
11
  GetBlobsCountDocument,
12
12
  GetBlobsDocument,
13
+ GetPlacementGroupSlotsCountDocument,
14
+ GetPlacementGroupSlotsDocument,
15
+ GetProcessorStatusDocument,
13
16
  Order_By,
14
17
  Placement_Group_Slots_Select_Column,
15
18
  Processor_Status_Select_Column,
16
19
  getSdk
17
- } from "../../chunk-WJKSPJSS.mjs";
18
- import "../../chunk-RBFWGDMY.mjs";
19
- import "../../chunk-SEXQTDX6.mjs";
20
+ } from "../../chunk-KJ24NKPH.mjs";
21
+ import "../../chunk-AABBONAF.mjs";
22
+ import "../../chunk-FLLOQZVD.mjs";
20
23
  import "../../chunk-7P6ASYW6.mjs";
21
24
  export {
22
25
  Blob_Activities_Select_Column,
@@ -26,6 +29,9 @@ export {
26
29
  GetBlobActivitiesDocument,
27
30
  GetBlobsCountDocument,
28
31
  GetBlobsDocument,
32
+ GetPlacementGroupSlotsCountDocument,
33
+ GetPlacementGroupSlotsDocument,
34
+ GetProcessorStatusDocument,
29
35
  Order_By,
30
36
  Placement_Group_Slots_Select_Column,
31
37
  Processor_Status_Select_Column,
@@ -0,0 +1,69 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * Shared response schemas for Shelby RPC API endpoints.
5
+ *
6
+ * These schemas define the contract between the RPC server and SDK client.
7
+ * Both the server (apps/server) and SDK client (ShelbyRPCClient) should use
8
+ * these schemas to ensure type safety and runtime validation.
9
+ */
10
+ /**
11
+ * Response from POST /v1/multipart-uploads
12
+ */
13
+ declare const StartMultipartUploadResponseSchema: z.ZodObject<{
14
+ uploadId: z.ZodString;
15
+ }, "strip", z.ZodTypeAny, {
16
+ uploadId: string;
17
+ }, {
18
+ uploadId: string;
19
+ }>;
20
+ type StartMultipartUploadResponse = z.infer<typeof StartMultipartUploadResponseSchema>;
21
+ /**
22
+ * Response from PUT /v1/multipart-uploads/:uploadId/parts/:partIdx
23
+ */
24
+ declare const UploadPartResponseSchema: z.ZodObject<{
25
+ success: z.ZodLiteral<true>;
26
+ }, "strip", z.ZodTypeAny, {
27
+ success: true;
28
+ }, {
29
+ success: true;
30
+ }>;
31
+ type UploadPartResponse = z.infer<typeof UploadPartResponseSchema>;
32
+ /**
33
+ * Response from POST /v1/multipart-uploads/:uploadId/complete
34
+ */
35
+ declare const CompleteMultipartUploadResponseSchema: z.ZodObject<{
36
+ success: z.ZodLiteral<true>;
37
+ }, "strip", z.ZodTypeAny, {
38
+ success: true;
39
+ }, {
40
+ success: true;
41
+ }>;
42
+ type CompleteMultipartUploadResponse = z.infer<typeof CompleteMultipartUploadResponseSchema>;
43
+ /**
44
+ * Error response returned by RPC endpoints on failure.
45
+ */
46
+ declare const RPCErrorResponseSchema: z.ZodObject<{
47
+ error: z.ZodString;
48
+ }, "strip", z.ZodTypeAny, {
49
+ error: string;
50
+ }, {
51
+ error: string;
52
+ }>;
53
+ type RPCErrorResponse = z.infer<typeof RPCErrorResponseSchema>;
54
+ /**
55
+ * Response from GET /v1/blobs/:account/:blobName when micropayment is stale (409).
56
+ */
57
+ declare const StaleMicropaymentErrorResponseSchema: z.ZodObject<{
58
+ error: z.ZodOptional<z.ZodString>;
59
+ storedMicropayment: z.ZodOptional<z.ZodString>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ error?: string | undefined;
62
+ storedMicropayment?: string | undefined;
63
+ }, {
64
+ error?: string | undefined;
65
+ storedMicropayment?: string | undefined;
66
+ }>;
67
+ type StaleMicropaymentErrorResponse = z.infer<typeof StaleMicropaymentErrorResponseSchema>;
68
+
69
+ export { type CompleteMultipartUploadResponse, CompleteMultipartUploadResponseSchema, type RPCErrorResponse, RPCErrorResponseSchema, type StaleMicropaymentErrorResponse, StaleMicropaymentErrorResponseSchema, type StartMultipartUploadResponse, StartMultipartUploadResponseSchema, type UploadPartResponse, UploadPartResponseSchema };
@@ -0,0 +1,15 @@
1
+ import {
2
+ CompleteMultipartUploadResponseSchema,
3
+ RPCErrorResponseSchema,
4
+ StaleMicropaymentErrorResponseSchema,
5
+ StartMultipartUploadResponseSchema,
6
+ UploadPartResponseSchema
7
+ } from "../chunk-IE6LYVIA.mjs";
8
+ import "../chunk-7P6ASYW6.mjs";
9
+ export {
10
+ CompleteMultipartUploadResponseSchema,
11
+ RPCErrorResponseSchema,
12
+ StaleMicropaymentErrorResponseSchema,
13
+ StartMultipartUploadResponseSchema,
14
+ UploadPartResponseSchema
15
+ };
@@ -35,12 +35,12 @@ interface BlobMetadata {
35
35
  * The name of the blob.
36
36
  * The full blob name is the account address followed by the blob name suffix.
37
37
  * Example: if the account address is 0x123 and the blob name suffix is "abc/def/ghi",
38
- * the full blob name will be "@0x123/abc/def/ghi"
38
+ * the full blob name will be "@123/abc/def/ghi"
39
39
  */
40
40
  name: BlobName;
41
41
  /**
42
42
  * The suffix of the blob name.
43
- * Example: if the full blob name is "@0x123/abc/def/ghi",
43
+ * Example: if the full blob name is "@123/abc/def/ghi",
44
44
  * the blob name suffix will be "abc/def/ghi"
45
45
  */
46
46
  blobNameSuffix: string;
@@ -72,6 +72,10 @@ interface BlobMetadata {
72
72
  * Whether the blob is written.
73
73
  */
74
74
  isWritten: boolean;
75
+ /**
76
+ * Whether the blob is deleted.
77
+ */
78
+ isDeleted?: boolean;
75
79
  }
76
80
  type BlobActivityType = "register_blob" | "delete_blob" | "extend_blob_expiration" | "write_blob" | "unknown";
77
81
  /**
@@ -109,7 +113,7 @@ interface BlobActivity {
109
113
  /**
110
114
  * The timestamp of the activity.
111
115
  */
112
- timestamp: number;
116
+ timestamp: string;
113
117
  }
114
118
  /**
115
119
  * A grouping of the the slot index for the storage provider in the slice the blob is assigned to (whew).
@@ -1,5 +1,7 @@
1
1
  export { BlobActivity, BlobActivityType, BlobEncoding, BlobMetadata, ClayEncoding, StorageProviderAck } from './blobs.js';
2
- export { StorageProviderInfo } from './storage_providers.js';
2
+ export { ChannelInfo, SenderBuiltMicropayment, StaleChannelStateError } from './payments.js';
3
+ export { PlacementGroupInfo, PlacementGroupSlot, PlacementGroupSlotStatus } from './placement_groups.js';
4
+ export { ActiveStateDetails, FrozenStateDetails, StorageProviderInfo, StorageProviderStateDetails, WaitlistedStateDetails } from './storage_providers.js';
3
5
  import '@aptos-labs/ts-sdk';
4
6
  import '../../clay-codes-pdZFxI_B.js';
5
7
  import '@shelby-protocol/clay-codes';
@@ -1,3 +1,13 @@
1
- import "../../chunk-MWDW4ROU.mjs";
2
- import "../../chunk-MQUVYMNQ.mjs";
1
+ import "../../chunk-QQ57OGQ2.mjs";
3
2
  import "../../chunk-ZHXCVRZX.mjs";
3
+ import "../../chunk-AD2G3QYD.mjs";
4
+ import "../../chunk-MQUVYMNQ.mjs";
5
+ import {
6
+ SenderBuiltMicropayment,
7
+ StaleChannelStateError
8
+ } from "../../chunk-4MG4XGY4.mjs";
9
+ import "../../chunk-7P6ASYW6.mjs";
10
+ export {
11
+ SenderBuiltMicropayment,
12
+ StaleChannelStateError
13
+ };
@@ -0,0 +1,94 @@
1
+ import { Serializable, MultiAgentTransaction, AccountAuthenticator, Serializer, Hex, AccountAddress } from '@aptos-labs/ts-sdk';
2
+
3
+ /**
4
+ * Error thrown when a micropayment is stale (sequence number or amount is behind
5
+ * the server's stored state). This can happen if the client lost their local state.
6
+ *
7
+ * The error includes the server's stored micropayment, which the client can use
8
+ * to reset their local channel state and retry.
9
+ */
10
+ declare class StaleChannelStateError extends Error {
11
+ /**
12
+ * The last valid micropayment stored by the server.
13
+ * Clients can use this to reset their local channel state.
14
+ */
15
+ readonly storedMicropayment: SenderBuiltMicropayment;
16
+ constructor(storedMicropayment: SenderBuiltMicropayment, message?: string);
17
+ /**
18
+ * Returns the stored micropayment as a base64-encoded string.
19
+ */
20
+ toBase64(): string;
21
+ /**
22
+ * Creates a StaleChannelStateError from a base64-encoded micropayment string.
23
+ */
24
+ static fromBase64(base64: string, message?: string): StaleChannelStateError;
25
+ }
26
+ /**
27
+ * A handy container for the things that constitute a half-built micropayment. It
28
+ * still needs to be signed and submitted by the receiver.
29
+ */
30
+ declare class SenderBuiltMicropayment implements Serializable {
31
+ /**
32
+ * The actual micropayment transaction. It is built with the receiver address as fee payer and also requires a signature from the receiver to submit.
33
+ */
34
+ readonly micropayment: MultiAgentTransaction;
35
+ /**
36
+ * The sender's signature.
37
+ */
38
+ readonly senderSignature: AccountAuthenticator;
39
+ constructor(micropayment: MultiAgentTransaction, senderSignature: AccountAuthenticator);
40
+ serialize(serializer: Serializer): void;
41
+ bcsToBytes(): Uint8Array;
42
+ bcsToHex(): Hex;
43
+ toStringWithoutPrefix(): string;
44
+ toString(): string;
45
+ /**
46
+ * Deserializes a SenderBuiltMicropayment from BCS bytes.
47
+ * @param bytes - The bytes to deserialize from (Uint8Array or hex string).
48
+ * @returns A new SenderBuiltMicropayment instance.
49
+ */
50
+ static deserialize(bytes: Uint8Array | string): SenderBuiltMicropayment;
51
+ }
52
+ /**
53
+ * The information associtated with a micropayment channel.
54
+ */
55
+ interface ChannelInfo {
56
+ /**
57
+ * The sender/owner of the channel.
58
+ */
59
+ sender: AccountAddress;
60
+ /**
61
+ * The receiver of the channel.
62
+ */
63
+ receiver?: AccountAddress;
64
+ /**
65
+ * The address of the fungible asset.
66
+ */
67
+ fungibleAssetAddress: AccountAddress;
68
+ /**
69
+ * The balance of the channel.
70
+ */
71
+ balance: number;
72
+ /**
73
+ * The creation timestamp of the channel.
74
+ */
75
+ creationMicros: number;
76
+ /**
77
+ * The current expiration timestamp of the channel.
78
+ */
79
+ expirationMicros: number;
80
+ /**
81
+ * The sequence number for the next allowed withdrawal.
82
+ */
83
+ nextWithdrawnSequenceNumber: number;
84
+ /**
85
+ * The channel's payment id.
86
+ */
87
+ paymentChannelId: number;
88
+ /**
89
+ * The amount already withdrawn by the receiver.
90
+ */
91
+ receiverWithdrawnAmount: number;
92
+ }
93
+
94
+ export { type ChannelInfo, SenderBuiltMicropayment, StaleChannelStateError };
@@ -0,0 +1,9 @@
1
+ import {
2
+ SenderBuiltMicropayment,
3
+ StaleChannelStateError
4
+ } from "../../chunk-4MG4XGY4.mjs";
5
+ import "../../chunk-7P6ASYW6.mjs";
6
+ export {
7
+ SenderBuiltMicropayment,
8
+ StaleChannelStateError
9
+ };
@@ -11,5 +11,34 @@ interface PlacementGroupInfo {
11
11
  */
12
12
  members: AccountAddress[];
13
13
  }
14
+ /**
15
+ * The status of a placement group slot.
16
+ */
17
+ type PlacementGroupSlotStatus = "joining" | "active" | "left";
18
+ /**
19
+ * A placement group slot representing an assignment of a storage provider to a placement group.
20
+ */
21
+ interface PlacementGroupSlot {
22
+ /**
23
+ * The address of the placement group.
24
+ */
25
+ placementGroup: string;
26
+ /**
27
+ * The index of the slot within the placement group.
28
+ */
29
+ slotIndex: number;
30
+ /**
31
+ * The address of the storage provider assigned to this slot.
32
+ */
33
+ storageProvider: string;
34
+ /**
35
+ * The status of this slot (joining, active, or left).
36
+ */
37
+ status: PlacementGroupSlotStatus;
38
+ /**
39
+ * The timestamp when this slot was last updated (in microseconds).
40
+ */
41
+ updatedAt: number;
42
+ }
14
43
 
15
- export type { PlacementGroupInfo };
44
+ export type { PlacementGroupInfo, PlacementGroupSlot, PlacementGroupSlotStatus };
@@ -0,0 +1 @@
1
+ import "../../chunk-AD2G3QYD.mjs";
@@ -1,9 +1,35 @@
1
1
  import { AccountAddress } from '@aptos-labs/ts-sdk';
2
2
 
3
+ /**
4
+ * State details for active storage providers
5
+ */
6
+ interface ActiveStateDetails {
7
+ variant: "Active";
8
+ quota: string;
9
+ stakeAtStartOfStakingEpoch: string;
10
+ faulty: boolean;
11
+ leaving: boolean;
12
+ }
13
+ /**
14
+ * State details for waitlisted storage providers
15
+ */
16
+ interface WaitlistedStateDetails {
17
+ variant: "Waitlisted";
18
+ }
19
+ /**
20
+ * State details for frozen storage providers
21
+ */
22
+ interface FrozenStateDetails {
23
+ variant: "Frozen";
24
+ frozenReason: string;
25
+ frozenFrom: string;
26
+ frozenTill: string;
27
+ }
28
+ type StorageProviderStateDetails = ActiveStateDetails | WaitlistedStateDetails | FrozenStateDetails;
3
29
  /**
4
30
  * The metadata of a storage provider.
5
31
  *
6
- * @link https://github.com/shelby/shelby/blob/da805cff8f0f55a0837cf43586eb4eaa04ad3f1f/move/shelby_contract/sources/storage_provider.move#L103
32
+ * @link https://github.com/shelby/shelby/blob/da805cff8f0f55a0837cf43586eb4eaa04ad3f1f/move/shelby_contract/sources/storage_provider_registry.move
7
33
  */
8
34
  interface StorageProviderInfo {
9
35
  /**
@@ -26,6 +52,10 @@ interface StorageProviderInfo {
26
52
  * The failure domain of the storage provider.
27
53
  */
28
54
  failureDomain: string;
55
+ /**
56
+ * The state details of the storage provider (Active, Waitlisted, or Frozen).
57
+ */
58
+ state: StorageProviderStateDetails;
29
59
  }
30
60
 
31
- export type { StorageProviderInfo };
61
+ export type { ActiveStateDetails, FrozenStateDetails, StorageProviderInfo, StorageProviderStateDetails, WaitlistedStateDetails };
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  ShelbyMetadataClient
3
- } from "../../chunk-CTGCK3H2.mjs";
4
- import "../../chunk-RBFWGDMY.mjs";
5
- import "../../chunk-SEXQTDX6.mjs";
3
+ } from "../../chunk-YZXIPUVQ.mjs";
4
+ import "../../chunk-AABBONAF.mjs";
5
+ import "../../chunk-FLLOQZVD.mjs";
6
6
  import "../../chunk-7P6ASYW6.mjs";
7
7
  export {
8
8
  ShelbyMetadataClient
@@ -1,19 +1,20 @@
1
1
  import { ShelbyClient } from '../../core/clients/ShelbyClient.js';
2
- import '../../core/clients/ShelbyBlobClient.js';
3
2
  import '@aptos-labs/ts-sdk';
3
+ import '../../core/blobs.js';
4
4
  import '../../core/layout.js';
5
5
  import 'zod';
6
- import '../../core/types/blobs.js';
7
6
  import '../../clay-codes-pdZFxI_B.js';
8
7
  import '@shelby-protocol/clay-codes';
8
+ import '../../core/clients/ShelbyBlobClient.js';
9
+ import '../../core/types/blobs.js';
9
10
  import '../../core/operations/index.js';
10
11
  import 'graphql-request';
11
12
  import '../../core/clients/ShelbyClientConfig.js';
12
13
  import '../../core/networks.js';
13
14
  import '../../core/operations/generated/sdk.js';
14
15
  import 'graphql';
15
- import '../../core/blobs.js';
16
16
  import '../../core/clients/ShelbyRPCClient.js';
17
+ import '../../core/types/payments.js';
17
18
 
18
19
  declare class ShelbyNodeClient extends ShelbyClient {
19
20
  }
@@ -1,24 +1,26 @@
1
1
  import {
2
2
  ShelbyNodeClient
3
- } from "../../chunk-LGNWAXBG.mjs";
4
- import "../../chunk-MGAN2SBA.mjs";
5
- import "../../chunk-QRGZJBAG.mjs";
6
- import "../../chunk-I6NG5GNL.mjs";
7
- import "../../chunk-BBOG5JSX.mjs";
3
+ } from "../../chunk-DI2K6OUG.mjs";
4
+ import "../../chunk-W6YL46DT.mjs";
5
+ import "../../chunk-AGRRYZWV.mjs";
8
6
  import "../../chunk-XNEIWM4O.mjs";
7
+ import "../../chunk-OMZOR2ZF.mjs";
8
+ import "../../chunk-UCDAABAS.mjs";
9
9
  import "../../chunk-PZF2VTGP.mjs";
10
- import "../../chunk-HFGEQP5N.mjs";
11
- import "../../chunk-WJKSPJSS.mjs";
12
- import "../../chunk-RBFWGDMY.mjs";
13
- import "../../chunk-CPNZAQVY.mjs";
14
- import "../../chunk-NLPIHQ7K.mjs";
10
+ import "../../chunk-ZAM2EUVN.mjs";
11
+ import "../../chunk-4MG4XGY4.mjs";
12
+ import "../../chunk-3ZL3FSNA.mjs";
13
+ import "../../chunk-KJ24NKPH.mjs";
14
+ import "../../chunk-AABBONAF.mjs";
15
+ import "../../chunk-W5NRGZEP.mjs";
16
+ import "../../chunk-I6NG5GNL.mjs";
17
+ import "../../chunk-IE6LYVIA.mjs";
15
18
  import "../../chunk-OTBLZL2S.mjs";
16
- import "../../chunk-XWAPNLU6.mjs";
19
+ import "../../chunk-RLRI2533.mjs";
17
20
  import "../../chunk-4JZO2D7T.mjs";
18
- import "../../chunk-SEXQTDX6.mjs";
19
- import "../../chunk-GY5DCVVL.mjs";
20
21
  import "../../chunk-67F5YZ25.mjs";
21
- import "../../chunk-ZPW742E7.mjs";
22
+ import "../../chunk-LZSIZJYR.mjs";
23
+ import "../../chunk-FLLOQZVD.mjs";
22
24
  import "../../chunk-7P6ASYW6.mjs";
23
25
  export {
24
26
  ShelbyNodeClient
@@ -5,15 +5,16 @@ import '../../core/clients/ShelbyClientConfig.js';
5
5
  import '../../core/networks.js';
6
6
  import '../../core/types/storage_providers.js';
7
7
  import '../../core/clients/ShelbyClient.js';
8
- import '../../core/clients/ShelbyBlobClient.js';
8
+ import '../../core/blobs.js';
9
9
  import '../../core/layout.js';
10
10
  import 'zod';
11
- import '../../core/types/blobs.js';
12
11
  import '../../clay-codes-pdZFxI_B.js';
13
12
  import '@shelby-protocol/clay-codes';
13
+ import '../../core/clients/ShelbyBlobClient.js';
14
+ import '../../core/types/blobs.js';
14
15
  import '../../core/operations/index.js';
15
16
  import 'graphql-request';
16
17
  import '../../core/operations/generated/sdk.js';
17
18
  import 'graphql';
18
- import '../../core/blobs.js';
19
19
  import '../../core/clients/ShelbyRPCClient.js';
20
+ import '../../core/types/payments.js';
@@ -1,28 +1,30 @@
1
1
  import "../../chunk-MB7C7VQF.mjs";
2
- import {
3
- ShelbyMetadataClient
4
- } from "../../chunk-CTGCK3H2.mjs";
5
2
  import {
6
3
  ShelbyNodeClient
7
- } from "../../chunk-LGNWAXBG.mjs";
8
- import "../../chunk-MGAN2SBA.mjs";
9
- import "../../chunk-QRGZJBAG.mjs";
10
- import "../../chunk-I6NG5GNL.mjs";
11
- import "../../chunk-BBOG5JSX.mjs";
4
+ } from "../../chunk-DI2K6OUG.mjs";
5
+ import {
6
+ ShelbyMetadataClient
7
+ } from "../../chunk-YZXIPUVQ.mjs";
8
+ import "../../chunk-W6YL46DT.mjs";
9
+ import "../../chunk-AGRRYZWV.mjs";
12
10
  import "../../chunk-XNEIWM4O.mjs";
11
+ import "../../chunk-OMZOR2ZF.mjs";
12
+ import "../../chunk-UCDAABAS.mjs";
13
13
  import "../../chunk-PZF2VTGP.mjs";
14
- import "../../chunk-HFGEQP5N.mjs";
15
- import "../../chunk-WJKSPJSS.mjs";
16
- import "../../chunk-RBFWGDMY.mjs";
17
- import "../../chunk-CPNZAQVY.mjs";
18
- import "../../chunk-NLPIHQ7K.mjs";
14
+ import "../../chunk-ZAM2EUVN.mjs";
15
+ import "../../chunk-4MG4XGY4.mjs";
16
+ import "../../chunk-3ZL3FSNA.mjs";
17
+ import "../../chunk-KJ24NKPH.mjs";
18
+ import "../../chunk-AABBONAF.mjs";
19
+ import "../../chunk-W5NRGZEP.mjs";
20
+ import "../../chunk-I6NG5GNL.mjs";
21
+ import "../../chunk-IE6LYVIA.mjs";
19
22
  import "../../chunk-OTBLZL2S.mjs";
20
- import "../../chunk-XWAPNLU6.mjs";
23
+ import "../../chunk-RLRI2533.mjs";
21
24
  import "../../chunk-4JZO2D7T.mjs";
22
- import "../../chunk-SEXQTDX6.mjs";
23
- import "../../chunk-GY5DCVVL.mjs";
24
25
  import "../../chunk-67F5YZ25.mjs";
25
- import "../../chunk-ZPW742E7.mjs";
26
+ import "../../chunk-LZSIZJYR.mjs";
27
+ import "../../chunk-FLLOQZVD.mjs";
26
28
  import "../../chunk-7P6ASYW6.mjs";
27
29
  export {
28
30
  ShelbyMetadataClient,