@gpt-core/admin 0.7.0 → 0.7.2

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.js CHANGED
@@ -54,15 +54,6 @@ var jsonBodySerializer = {
54
54
  )
55
55
  };
56
56
 
57
- // src/_internal/core/params.gen.ts
58
- var extraPrefixesMap = {
59
- $body_: "body",
60
- $headers_: "headers",
61
- $path_: "path",
62
- $query_: "query"
63
- };
64
- var extraPrefixes = Object.entries(extraPrefixesMap);
65
-
66
57
  // src/_internal/core/serverSentEvents.gen.ts
67
58
  var createSseClient = ({
68
59
  onRequest,
@@ -914,6 +905,7 @@ var BaseClient = class {
914
905
 
915
906
  // src/_internal/sdk.gen.ts
916
907
  var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch({
908
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
917
909
  security: [{ scheme: "bearer", type: "http" }],
918
910
  url: "/admin/accounts/{id}/credit",
919
911
  ...options,
@@ -923,6 +915,7 @@ var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch
923
915
  }
924
916
  });
925
917
  var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch({
918
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
926
919
  security: [{ scheme: "bearer", type: "http" }],
927
920
  url: "/admin/api_keys/{id}/rotate",
928
921
  ...options,
@@ -932,11 +925,19 @@ var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch(
932
925
  }
933
926
  });
934
927
  var getAdminWebhookConfigs = (options) => (options.client ?? client).get({
928
+ querySerializer: {
929
+ parameters: {
930
+ filter: { object: { style: "form" } },
931
+ page: { object: { style: "form" } },
932
+ fields: { object: { style: "form" } }
933
+ }
934
+ },
935
935
  security: [{ scheme: "bearer", type: "http" }],
936
936
  url: "/admin/webhook_configs",
937
937
  ...options
938
938
  });
939
939
  var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
940
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
940
941
  security: [{ scheme: "bearer", type: "http" }],
941
942
  url: "/admin/webhook_configs",
942
943
  ...options,
@@ -946,16 +947,19 @@ var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
946
947
  }
947
948
  });
948
949
  var deleteAdminWebhookConfigsById = (options) => (options.client ?? client).delete({
950
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
949
951
  security: [{ scheme: "bearer", type: "http" }],
950
952
  url: "/admin/webhook_configs/{id}",
951
953
  ...options
952
954
  });
953
955
  var getAdminWebhookConfigsById = (options) => (options.client ?? client).get({
956
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
954
957
  security: [{ scheme: "bearer", type: "http" }],
955
958
  url: "/admin/webhook_configs/{id}",
956
959
  ...options
957
960
  });
958
961
  var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch({
962
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
959
963
  security: [{ scheme: "bearer", type: "http" }],
960
964
  url: "/admin/webhook_configs/{id}",
961
965
  ...options,
@@ -965,6 +969,7 @@ var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch
965
969
  }
966
970
  });
967
971
  var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
972
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
968
973
  security: [{ scheme: "bearer", type: "http" }],
969
974
  url: "/admin/webhook_configs/{id}/test",
970
975
  ...options,
@@ -974,6 +979,7 @@ var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).po
974
979
  }
975
980
  });
976
981
  var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch({
982
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
977
983
  security: [{ scheme: "bearer", type: "http" }],
978
984
  url: "/admin/accounts/{id}/debit",
979
985
  ...options,
@@ -983,26 +989,42 @@ var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch(
983
989
  }
984
990
  });
985
991
  var getAdminExtractionDocumentsById = (options) => (options.client ?? client).get({
992
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
986
993
  security: [{ scheme: "bearer", type: "http" }],
987
994
  url: "/admin/extraction/documents/{id}",
988
995
  ...options
989
996
  });
990
997
  var getAdminAccounts = (options) => (options.client ?? client).get({
998
+ querySerializer: {
999
+ parameters: {
1000
+ filter: { object: { style: "form" } },
1001
+ page: { object: { style: "form" } },
1002
+ fields: { object: { style: "form" } }
1003
+ }
1004
+ },
991
1005
  security: [{ scheme: "bearer", type: "http" }],
992
1006
  url: "/admin/accounts",
993
1007
  ...options
994
1008
  });
995
1009
  var getAdminStorageStats = (options) => (options.client ?? client).get({
1010
+ querySerializer: {
1011
+ parameters: {
1012
+ filter: { object: { style: "form" } },
1013
+ fields: { object: { style: "form" } }
1014
+ }
1015
+ },
996
1016
  security: [{ scheme: "bearer", type: "http" }],
997
1017
  url: "/admin/storage/stats",
998
1018
  ...options
999
1019
  });
1000
1020
  var getAdminAccountsById = (options) => (options.client ?? client).get({
1021
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1001
1022
  security: [{ scheme: "bearer", type: "http" }],
1002
1023
  url: "/admin/accounts/{id}",
1003
1024
  ...options
1004
1025
  });
1005
1026
  var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
1027
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1006
1028
  security: [{ scheme: "bearer", type: "http" }],
1007
1029
  url: "/admin/documents/bulk_delete",
1008
1030
  ...options,
@@ -1012,6 +1034,7 @@ var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post(
1012
1034
  }
1013
1035
  });
1014
1036
  var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
1037
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1015
1038
  security: [{ scheme: "bearer", type: "http" }],
1016
1039
  url: "/admin/api_keys/{id}/allocate",
1017
1040
  ...options,
@@ -1021,11 +1044,13 @@ var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patc
1021
1044
  }
1022
1045
  });
1023
1046
  var getAdminBucketsByIdStats = (options) => (options.client ?? client).get({
1047
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1024
1048
  security: [{ scheme: "bearer", type: "http" }],
1025
1049
  url: "/admin/buckets/{id}/stats",
1026
1050
  ...options
1027
1051
  });
1028
1052
  var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
1053
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1029
1054
  security: [{ scheme: "bearer", type: "http" }],
1030
1055
  url: "/admin/api_keys/{id}/revoke",
1031
1056
  ...options,
@@ -1035,46 +1060,72 @@ var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch(
1035
1060
  }
1036
1061
  });
1037
1062
  var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
1063
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1038
1064
  security: [{ scheme: "bearer", type: "http" }],
1039
1065
  url: "/admin/webhook_deliveries/{id}",
1040
1066
  ...options
1041
1067
  });
1042
1068
  var getAdminDocumentsStats = (options) => (options.client ?? client).get({
1069
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1043
1070
  security: [{ scheme: "bearer", type: "http" }],
1044
1071
  url: "/admin/documents/stats",
1045
1072
  ...options
1046
1073
  });
1047
1074
  var getAdminExtractionDocuments = (options) => (options.client ?? client).get({
1075
+ querySerializer: {
1076
+ parameters: {
1077
+ filter: { object: { style: "form" } },
1078
+ fields: { object: { style: "form" } }
1079
+ }
1080
+ },
1048
1081
  security: [{ scheme: "bearer", type: "http" }],
1049
1082
  url: "/admin/extraction/documents",
1050
1083
  ...options
1051
1084
  });
1052
1085
  var getAdminBucketsByIdObjects = (options) => (options.client ?? client).get({
1086
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1053
1087
  security: [{ scheme: "bearer", type: "http" }],
1054
1088
  url: "/admin/buckets/{id}/objects",
1055
1089
  ...options
1056
1090
  });
1057
1091
  var getAdminApiKeys = (options) => (options.client ?? client).get({
1092
+ querySerializer: {
1093
+ parameters: {
1094
+ filter: { object: { style: "form" } },
1095
+ page: { object: { style: "form" } },
1096
+ fields: { object: { style: "form" } }
1097
+ }
1098
+ },
1058
1099
  security: [{ scheme: "bearer", type: "http" }],
1059
1100
  url: "/admin/api_keys",
1060
1101
  ...options
1061
1102
  });
1062
1103
  var getAdminApiKeysById = (options) => (options.client ?? client).get({
1104
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1063
1105
  security: [{ scheme: "bearer", type: "http" }],
1064
1106
  url: "/admin/api_keys/{id}",
1065
1107
  ...options
1066
1108
  });
1067
1109
  var getAdminBuckets = (options) => (options.client ?? client).get({
1110
+ querySerializer: {
1111
+ parameters: {
1112
+ filter: { object: { style: "form" } },
1113
+ page: { object: { style: "form" } },
1114
+ fields: { object: { style: "form" } }
1115
+ }
1116
+ },
1068
1117
  security: [{ scheme: "bearer", type: "http" }],
1069
1118
  url: "/admin/buckets",
1070
1119
  ...options
1071
1120
  });
1072
1121
  var getAdminBucketsById = (options) => (options.client ?? client).get({
1122
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1073
1123
  security: [{ scheme: "bearer", type: "http" }],
1074
1124
  url: "/admin/buckets/{id}",
1075
1125
  ...options
1076
1126
  });
1077
1127
  var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
1128
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1078
1129
  security: [{ scheme: "bearer", type: "http" }],
1079
1130
  url: "/admin/webhook_deliveries/{id}/retry",
1080
1131
  ...options,
@@ -1084,6 +1135,13 @@ var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client
1084
1135
  }
1085
1136
  });
1086
1137
  var getAdminWebhookDeliveries = (options) => (options.client ?? client).get({
1138
+ querySerializer: {
1139
+ parameters: {
1140
+ filter: { object: { style: "form" } },
1141
+ page: { object: { style: "form" } },
1142
+ fields: { object: { style: "form" } }
1143
+ }
1144
+ },
1087
1145
  security: [{ scheme: "bearer", type: "http" }],
1088
1146
  url: "/admin/webhook_deliveries",
1089
1147
  ...options
package/dist/index.mjs CHANGED
@@ -6,15 +6,6 @@ var jsonBodySerializer = {
6
6
  )
7
7
  };
8
8
 
9
- // src/_internal/core/params.gen.ts
10
- var extraPrefixesMap = {
11
- $body_: "body",
12
- $headers_: "headers",
13
- $path_: "path",
14
- $query_: "query"
15
- };
16
- var extraPrefixes = Object.entries(extraPrefixesMap);
17
-
18
9
  // src/_internal/core/serverSentEvents.gen.ts
19
10
  var createSseClient = ({
20
11
  onRequest,
@@ -866,6 +857,7 @@ var BaseClient = class {
866
857
 
867
858
  // src/_internal/sdk.gen.ts
868
859
  var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch({
860
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
869
861
  security: [{ scheme: "bearer", type: "http" }],
870
862
  url: "/admin/accounts/{id}/credit",
871
863
  ...options,
@@ -875,6 +867,7 @@ var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch
875
867
  }
876
868
  });
877
869
  var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch({
870
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
878
871
  security: [{ scheme: "bearer", type: "http" }],
879
872
  url: "/admin/api_keys/{id}/rotate",
880
873
  ...options,
@@ -884,11 +877,19 @@ var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch(
884
877
  }
885
878
  });
886
879
  var getAdminWebhookConfigs = (options) => (options.client ?? client).get({
880
+ querySerializer: {
881
+ parameters: {
882
+ filter: { object: { style: "form" } },
883
+ page: { object: { style: "form" } },
884
+ fields: { object: { style: "form" } }
885
+ }
886
+ },
887
887
  security: [{ scheme: "bearer", type: "http" }],
888
888
  url: "/admin/webhook_configs",
889
889
  ...options
890
890
  });
891
891
  var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
892
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
892
893
  security: [{ scheme: "bearer", type: "http" }],
893
894
  url: "/admin/webhook_configs",
894
895
  ...options,
@@ -898,16 +899,19 @@ var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
898
899
  }
899
900
  });
900
901
  var deleteAdminWebhookConfigsById = (options) => (options.client ?? client).delete({
902
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
901
903
  security: [{ scheme: "bearer", type: "http" }],
902
904
  url: "/admin/webhook_configs/{id}",
903
905
  ...options
904
906
  });
905
907
  var getAdminWebhookConfigsById = (options) => (options.client ?? client).get({
908
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
906
909
  security: [{ scheme: "bearer", type: "http" }],
907
910
  url: "/admin/webhook_configs/{id}",
908
911
  ...options
909
912
  });
910
913
  var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch({
914
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
911
915
  security: [{ scheme: "bearer", type: "http" }],
912
916
  url: "/admin/webhook_configs/{id}",
913
917
  ...options,
@@ -917,6 +921,7 @@ var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch
917
921
  }
918
922
  });
919
923
  var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
924
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
920
925
  security: [{ scheme: "bearer", type: "http" }],
921
926
  url: "/admin/webhook_configs/{id}/test",
922
927
  ...options,
@@ -926,6 +931,7 @@ var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).po
926
931
  }
927
932
  });
928
933
  var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch({
934
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
929
935
  security: [{ scheme: "bearer", type: "http" }],
930
936
  url: "/admin/accounts/{id}/debit",
931
937
  ...options,
@@ -935,26 +941,42 @@ var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch(
935
941
  }
936
942
  });
937
943
  var getAdminExtractionDocumentsById = (options) => (options.client ?? client).get({
944
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
938
945
  security: [{ scheme: "bearer", type: "http" }],
939
946
  url: "/admin/extraction/documents/{id}",
940
947
  ...options
941
948
  });
942
949
  var getAdminAccounts = (options) => (options.client ?? client).get({
950
+ querySerializer: {
951
+ parameters: {
952
+ filter: { object: { style: "form" } },
953
+ page: { object: { style: "form" } },
954
+ fields: { object: { style: "form" } }
955
+ }
956
+ },
943
957
  security: [{ scheme: "bearer", type: "http" }],
944
958
  url: "/admin/accounts",
945
959
  ...options
946
960
  });
947
961
  var getAdminStorageStats = (options) => (options.client ?? client).get({
962
+ querySerializer: {
963
+ parameters: {
964
+ filter: { object: { style: "form" } },
965
+ fields: { object: { style: "form" } }
966
+ }
967
+ },
948
968
  security: [{ scheme: "bearer", type: "http" }],
949
969
  url: "/admin/storage/stats",
950
970
  ...options
951
971
  });
952
972
  var getAdminAccountsById = (options) => (options.client ?? client).get({
973
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
953
974
  security: [{ scheme: "bearer", type: "http" }],
954
975
  url: "/admin/accounts/{id}",
955
976
  ...options
956
977
  });
957
978
  var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
979
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
958
980
  security: [{ scheme: "bearer", type: "http" }],
959
981
  url: "/admin/documents/bulk_delete",
960
982
  ...options,
@@ -964,6 +986,7 @@ var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post(
964
986
  }
965
987
  });
966
988
  var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
989
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
967
990
  security: [{ scheme: "bearer", type: "http" }],
968
991
  url: "/admin/api_keys/{id}/allocate",
969
992
  ...options,
@@ -973,11 +996,13 @@ var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patc
973
996
  }
974
997
  });
975
998
  var getAdminBucketsByIdStats = (options) => (options.client ?? client).get({
999
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
976
1000
  security: [{ scheme: "bearer", type: "http" }],
977
1001
  url: "/admin/buckets/{id}/stats",
978
1002
  ...options
979
1003
  });
980
1004
  var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
1005
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
981
1006
  security: [{ scheme: "bearer", type: "http" }],
982
1007
  url: "/admin/api_keys/{id}/revoke",
983
1008
  ...options,
@@ -987,46 +1012,72 @@ var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch(
987
1012
  }
988
1013
  });
989
1014
  var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
1015
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
990
1016
  security: [{ scheme: "bearer", type: "http" }],
991
1017
  url: "/admin/webhook_deliveries/{id}",
992
1018
  ...options
993
1019
  });
994
1020
  var getAdminDocumentsStats = (options) => (options.client ?? client).get({
1021
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
995
1022
  security: [{ scheme: "bearer", type: "http" }],
996
1023
  url: "/admin/documents/stats",
997
1024
  ...options
998
1025
  });
999
1026
  var getAdminExtractionDocuments = (options) => (options.client ?? client).get({
1027
+ querySerializer: {
1028
+ parameters: {
1029
+ filter: { object: { style: "form" } },
1030
+ fields: { object: { style: "form" } }
1031
+ }
1032
+ },
1000
1033
  security: [{ scheme: "bearer", type: "http" }],
1001
1034
  url: "/admin/extraction/documents",
1002
1035
  ...options
1003
1036
  });
1004
1037
  var getAdminBucketsByIdObjects = (options) => (options.client ?? client).get({
1038
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1005
1039
  security: [{ scheme: "bearer", type: "http" }],
1006
1040
  url: "/admin/buckets/{id}/objects",
1007
1041
  ...options
1008
1042
  });
1009
1043
  var getAdminApiKeys = (options) => (options.client ?? client).get({
1044
+ querySerializer: {
1045
+ parameters: {
1046
+ filter: { object: { style: "form" } },
1047
+ page: { object: { style: "form" } },
1048
+ fields: { object: { style: "form" } }
1049
+ }
1050
+ },
1010
1051
  security: [{ scheme: "bearer", type: "http" }],
1011
1052
  url: "/admin/api_keys",
1012
1053
  ...options
1013
1054
  });
1014
1055
  var getAdminApiKeysById = (options) => (options.client ?? client).get({
1056
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1015
1057
  security: [{ scheme: "bearer", type: "http" }],
1016
1058
  url: "/admin/api_keys/{id}",
1017
1059
  ...options
1018
1060
  });
1019
1061
  var getAdminBuckets = (options) => (options.client ?? client).get({
1062
+ querySerializer: {
1063
+ parameters: {
1064
+ filter: { object: { style: "form" } },
1065
+ page: { object: { style: "form" } },
1066
+ fields: { object: { style: "form" } }
1067
+ }
1068
+ },
1020
1069
  security: [{ scheme: "bearer", type: "http" }],
1021
1070
  url: "/admin/buckets",
1022
1071
  ...options
1023
1072
  });
1024
1073
  var getAdminBucketsById = (options) => (options.client ?? client).get({
1074
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1025
1075
  security: [{ scheme: "bearer", type: "http" }],
1026
1076
  url: "/admin/buckets/{id}",
1027
1077
  ...options
1028
1078
  });
1029
1079
  var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
1080
+ querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1030
1081
  security: [{ scheme: "bearer", type: "http" }],
1031
1082
  url: "/admin/webhook_deliveries/{id}/retry",
1032
1083
  ...options,
@@ -1036,6 +1087,13 @@ var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client
1036
1087
  }
1037
1088
  });
1038
1089
  var getAdminWebhookDeliveries = (options) => (options.client ?? client).get({
1090
+ querySerializer: {
1091
+ parameters: {
1092
+ filter: { object: { style: "form" } },
1093
+ page: { object: { style: "form" } },
1094
+ fields: { object: { style: "form" } }
1095
+ }
1096
+ },
1039
1097
  security: [{ scheme: "bearer", type: "http" }],
1040
1098
  url: "/admin/webhook_deliveries",
1041
1099
  ...options
package/package.json CHANGED
@@ -1,17 +1,26 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
10
+ "import": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
13
18
  }
14
19
  },
20
+ "sideEffects": false,
21
+ "engines": {
22
+ "node": ">=18.0.0"
23
+ },
15
24
  "files": [
16
25
  "dist"
17
26
  ],