@nexeraid/identity-schemas 1.12.42-dev → 2.1.1-dev
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/{customers.schema-6bbfca72.cjs.dev.js → customers.schema-08570913.cjs.dev.js} +11 -1
- package/dist/{customers.schema-1bca732a.cjs.prod.js → customers.schema-811cbe71.cjs.prod.js} +11 -1
- package/dist/{customers.schema-cfe74143.esm.js → customers.schema-c9444639.esm.js} +11 -1
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts +0 -1
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/provider.schema.d.ts +0 -559
- package/dist/declarations/src/providers/provider.schema.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +1 -1
|
@@ -350,6 +350,14 @@ var BitRankRequest = zod.z.object({
|
|
|
350
350
|
address: identityApi_schema.AddressSchema.nullish(),
|
|
351
351
|
properties: zod.z.array(RequestProperty).describe("Optional query parameter to specify properties to include in the response.").nullish()["default"]([{
|
|
352
352
|
property: "score"
|
|
353
|
+
}, {
|
|
354
|
+
property: "entities"
|
|
355
|
+
}, {
|
|
356
|
+
property: "flags"
|
|
357
|
+
}, {
|
|
358
|
+
property: "currency"
|
|
359
|
+
}, {
|
|
360
|
+
property: "new_address"
|
|
353
361
|
}]),
|
|
354
362
|
label: zod.z.string().max(255).optional().describe("Optional string of up to 255 characters for labeling the search.").nullish(),
|
|
355
363
|
transactionsPerPage: zod.z.number().optional().describe("Optional parameter to specify the number of transactions per page in the response.").nullish()
|
|
@@ -1357,7 +1365,9 @@ var BigConfig = BitRankRequest.omit({
|
|
|
1357
1365
|
// address is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1358
1366
|
label: true,
|
|
1359
1367
|
// label is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1360
|
-
transactionsPerPage: true
|
|
1368
|
+
transactionsPerPage: true,
|
|
1369
|
+
// transactionsPerPage is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1370
|
+
properties: true
|
|
1361
1371
|
}).partial();
|
|
1362
1372
|
var ProviderIntegrationTypeOptions = ["integrated", "external"];
|
|
1363
1373
|
var ProviderIntegrationType = zod.z["enum"](ProviderIntegrationTypeOptions);
|
package/dist/{customers.schema-1bca732a.cjs.prod.js → customers.schema-811cbe71.cjs.prod.js}
RENAMED
|
@@ -350,6 +350,14 @@ var BitRankRequest = zod.z.object({
|
|
|
350
350
|
address: identityApi_schema.AddressSchema.nullish(),
|
|
351
351
|
properties: zod.z.array(RequestProperty).describe("Optional query parameter to specify properties to include in the response.").nullish()["default"]([{
|
|
352
352
|
property: "score"
|
|
353
|
+
}, {
|
|
354
|
+
property: "entities"
|
|
355
|
+
}, {
|
|
356
|
+
property: "flags"
|
|
357
|
+
}, {
|
|
358
|
+
property: "currency"
|
|
359
|
+
}, {
|
|
360
|
+
property: "new_address"
|
|
353
361
|
}]),
|
|
354
362
|
label: zod.z.string().max(255).optional().describe("Optional string of up to 255 characters for labeling the search.").nullish(),
|
|
355
363
|
transactionsPerPage: zod.z.number().optional().describe("Optional parameter to specify the number of transactions per page in the response.").nullish()
|
|
@@ -1357,7 +1365,9 @@ var BigConfig = BitRankRequest.omit({
|
|
|
1357
1365
|
// address is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1358
1366
|
label: true,
|
|
1359
1367
|
// label is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1360
|
-
transactionsPerPage: true
|
|
1368
|
+
transactionsPerPage: true,
|
|
1369
|
+
// transactionsPerPage is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1370
|
+
properties: true
|
|
1361
1371
|
}).partial();
|
|
1362
1372
|
var ProviderIntegrationTypeOptions = ["integrated", "external"];
|
|
1363
1373
|
var ProviderIntegrationType = zod.z["enum"](ProviderIntegrationTypeOptions);
|
|
@@ -348,6 +348,14 @@ var BitRankRequest = z.object({
|
|
|
348
348
|
address: AddressSchema.nullish(),
|
|
349
349
|
properties: z.array(RequestProperty).describe("Optional query parameter to specify properties to include in the response.").nullish()["default"]([{
|
|
350
350
|
property: "score"
|
|
351
|
+
}, {
|
|
352
|
+
property: "entities"
|
|
353
|
+
}, {
|
|
354
|
+
property: "flags"
|
|
355
|
+
}, {
|
|
356
|
+
property: "currency"
|
|
357
|
+
}, {
|
|
358
|
+
property: "new_address"
|
|
351
359
|
}]),
|
|
352
360
|
label: z.string().max(255).optional().describe("Optional string of up to 255 characters for labeling the search.").nullish(),
|
|
353
361
|
transactionsPerPage: z.number().optional().describe("Optional parameter to specify the number of transactions per page in the response.").nullish()
|
|
@@ -1355,7 +1363,9 @@ var BigConfig = BitRankRequest.omit({
|
|
|
1355
1363
|
// address is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1356
1364
|
label: true,
|
|
1357
1365
|
// label is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1358
|
-
transactionsPerPage: true
|
|
1366
|
+
transactionsPerPage: true,
|
|
1367
|
+
// transactionsPerPage is removed, because it is not stored in CMS but rather provided on the fly by the client
|
|
1368
|
+
properties: true
|
|
1359
1369
|
}).partial();
|
|
1360
1370
|
var ProviderIntegrationTypeOptions = ["integrated", "external"];
|
|
1361
1371
|
var ProviderIntegrationType = z["enum"](ProviderIntegrationTypeOptions);
|
|
@@ -1732,6 +1732,5 @@ export type BitRankVerified = z.infer<typeof BitRankVerified>;
|
|
|
1732
1732
|
export type BitRankVerifiedErrorResponse = z.infer<typeof BitRankVerifiedErrorResponse>;
|
|
1733
1733
|
export type BitRankVerifiedError = z.infer<typeof BitRankVerifiedError>;
|
|
1734
1734
|
export type BitRankRequest = z.infer<typeof BitRankRequest>;
|
|
1735
|
-
export type requestProperties = z.infer<typeof RequestProperty>;
|
|
1736
1735
|
export type RequestProperty = z.infer<typeof RequestProperty>;
|
|
1737
1736
|
//# sourceMappingURL=BIGBitRankVerifiedScore.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BIGBitRankVerifiedScore.schema.d.ts","sourceRoot":"../../../../../src/providers/big","sources":["BIGBitRankVerifiedScore.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,cAAc,iHAezB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,oBAAoB,0sBAwEvB,CAAC;AAEX,eAAO,MAAM,aAAa,oaAsBhB,CAAC;AACX,eAAO,MAAM,WAAW,saAAwB,CAAC;AACjD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AACtD,eAAO,MAAM,eAAe;;;;;;EAMzB,CAAC;AAEJ;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"BIGBitRankVerifiedScore.schema.d.ts","sourceRoot":"../../../../../src/providers/big","sources":["BIGBitRankVerifiedScore.schema.ts"],"names":[],"mappings":"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"}
|