@casual-simulation/aux-common 3.1.11 → 3.1.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@casual-simulation/aux-common",
3
- "version": "3.1.11",
3
+ "version": "3.1.12",
4
4
  "description": "Common library for AUX projects",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -32,7 +32,7 @@
32
32
  "access": "public"
33
33
  },
34
34
  "dependencies": {
35
- "@casual-simulation/aux-records": "^3.1.11",
35
+ "@casual-simulation/aux-records": "^3.1.12",
36
36
  "@casual-simulation/causal-trees": "^3.1.11",
37
37
  "@casual-simulation/crypto": "^3.1.11",
38
38
  "@casual-simulation/engine262": "0.0.1-6fadd673dfc837c2717737a2729a1baf022566a2",
@@ -74,5 +74,5 @@
74
74
  "**/*.d.ts",
75
75
  "**/*.def"
76
76
  ],
77
- "gitHead": "dcf16dcf252a7d7ff7fee3c297a184c1f56cf5c7"
77
+ "gitHead": "1f60da8b2c3916df7491d3f234736572453b7ec1"
78
78
  }
@@ -3150,7 +3150,15 @@ export interface CreatePublicRecordKeyFailure {
3150
3150
  /**
3151
3151
  * The type of error that occurred.
3152
3152
  */
3153
- errorCode: UnauthorizedToCreateRecordKeyError | GeneralRecordError | NotSupportedError;
3153
+ errorCode:
3154
+ | UnauthorizedToCreateRecordKeyError
3155
+ | NotLoggedInError
3156
+ | 'unacceptable_session_key'
3157
+ | 'invalid_key'
3158
+ | 'session_expired'
3159
+ | 'invalid_policy'
3160
+ | ServerError
3161
+ | 'not_supported';
3154
3162
 
3155
3163
  /**
3156
3164
  * The error message.
@@ -3176,11 +3184,6 @@ export interface CreatePublicRecordKeyFailure {
3176
3184
  export type UnauthorizedToCreateRecordKeyError =
3177
3185
  'unauthorized_to_create_record_key';
3178
3186
 
3179
- /**
3180
- * Defines an error that occurs when an unspecified error occurs while creating a public record key.
3181
- */
3182
- export type GeneralRecordError = 'general_record_error';
3183
-
3184
3187
  /**
3185
3188
  * Defines an error that occurs when an unspecified error occurs while creating a public record key.
3186
3189
  */