@croct/sdk 0.7.0 → 0.9.1
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/activeRecord.d.ts +4 -3
- package/activeRecord.js +8 -0
- package/channel/beaconSocketChannel.js +1 -1
- package/channel/guaranteedChannel.js +4 -4
- package/channel/queuedChannel.js +3 -3
- package/channel/retryChannel.js +2 -2
- package/channel/socketChannel.js +2 -2
- package/cid/remoteAssigner.js +1 -1
- package/constants.js +1 -1
- package/container.d.ts +1 -0
- package/container.js +13 -7
- package/context.js +1 -1
- package/evaluator.d.ts +1 -1
- package/evaluator.js +6 -6
- package/facade/evaluatorFacade.d.ts +1 -1
- package/facade/evaluatorFacade.js +1 -1
- package/facade/sdkFacade.d.ts +1 -0
- package/facade/sdkFacade.js +8 -8
- package/facade/trackerFacade.js +3 -2
- package/logging/consoleLogger.js +1 -1
- package/logging/namespacedLogger.js +1 -1
- package/namespacedStorage.js +1 -1
- package/package.json +13 -12
- package/patch.d.ts +12 -8
- package/queue/inMemoryQueue.js +1 -1
- package/queue/monitoredQueue.js +1 -1
- package/retry/arbitraryPolicy.js +1 -1
- package/schema/eventSchemas.d.ts +1 -0
- package/schema/eventSchemas.js +9 -1
- package/schema/operationSchemas.d.ts +1 -0
- package/schema/operationSchemas.js +8 -1
- package/schema/sdkFacadeSchemas.js +1 -0
- package/schema/sdkSchemas.js +1 -0
- package/schema/tokenSchema.js +1 -1
- package/sdk.d.ts +1 -0
- package/sdk.js +11 -10
- package/sourceLocation.js +2 -2
- package/token/token.d.ts +1 -1
- package/token/token.js +8 -8
- package/tracker.d.ts +1 -0
- package/tracker.js +15 -7
- package/trackingEvents.d.ts +9 -3
- package/trackingEvents.js +6 -5
- package/uuid.js +1 -1
- package/validation/arrayType.js +7 -7
- package/validation/booleanType.js +1 -1
- package/validation/functionType.js +1 -1
- package/validation/jsonType.js +4 -4
- package/validation/nullType.js +1 -1
- package/validation/numberType.js +5 -5
- package/validation/objectType.js +10 -10
- package/validation/stringType.js +27 -15
- package/validation/unionType.js +3 -3
- package/validation/violation.js +1 -1
- package/json.d.ts +0 -11
- package/json.js +0 -2
package/json.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare type JsonPrimitive = string | number | boolean | null;
|
|
2
|
-
export declare type JsonObject = {
|
|
3
|
-
[member: string]: JsonValue;
|
|
4
|
-
};
|
|
5
|
-
export declare type JsonArray = Array<JsonValue>;
|
|
6
|
-
export declare type JsonValue = JsonPrimitive | JsonObject | JsonArray;
|
|
7
|
-
export declare type LenientJsonObject = {
|
|
8
|
-
[member: string]: LenientJsonValue | undefined;
|
|
9
|
-
};
|
|
10
|
-
export declare type LenientJsonArray = Array<JsonValue>;
|
|
11
|
-
export declare type LenientJsonValue = JsonPrimitive | LenientJsonObject | LenientJsonArray;
|
package/json.js
DELETED