@monarkmarkets/api-client 1.2.14 → 1.2.16

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/Client.d.ts CHANGED
@@ -6178,13 +6178,13 @@ export declare class Type implements IType {
6178
6178
  readonly customAttributes?: CustomAttributeData[] | undefined;
6179
6179
  readonly isCollectible?: boolean;
6180
6180
  readonly metadataToken?: number;
6181
- readonly isInterface?: boolean;
6182
6181
  readonly memberType?: TypeMemberType;
6183
6182
  readonly namespace?: string | undefined;
6184
6183
  readonly assemblyQualifiedName?: string | undefined;
6185
6184
  readonly fullName?: string | undefined;
6186
6185
  readonly assembly?: Assembly | undefined;
6187
6186
  readonly module?: Module | undefined;
6187
+ readonly isInterface?: boolean;
6188
6188
  readonly isNested?: boolean;
6189
6189
  readonly declaringType?: Type | undefined;
6190
6190
  readonly declaringMethod?: MethodBase | undefined;
@@ -6257,13 +6257,13 @@ export interface IType {
6257
6257
  customAttributes?: CustomAttributeData[] | undefined;
6258
6258
  isCollectible?: boolean;
6259
6259
  metadataToken?: number;
6260
- isInterface?: boolean;
6261
6260
  memberType?: TypeMemberType;
6262
6261
  namespace?: string | undefined;
6263
6262
  assemblyQualifiedName?: string | undefined;
6264
6263
  fullName?: string | undefined;
6265
6264
  assembly?: Assembly | undefined;
6266
6265
  module?: Module | undefined;
6266
+ isInterface?: boolean;
6267
6267
  isNested?: boolean;
6268
6268
  declaringType?: Type | undefined;
6269
6269
  declaringMethod?: MethodBase | undefined;
@@ -6332,13 +6332,13 @@ export declare class TypeInfo implements ITypeInfo {
6332
6332
  readonly customAttributes?: CustomAttributeData[] | undefined;
6333
6333
  readonly isCollectible?: boolean;
6334
6334
  readonly metadataToken?: number;
6335
- readonly isInterface?: boolean;
6336
6335
  readonly memberType?: TypeInfoMemberType;
6337
6336
  readonly namespace?: string | undefined;
6338
6337
  readonly assemblyQualifiedName?: string | undefined;
6339
6338
  readonly fullName?: string | undefined;
6340
6339
  readonly assembly?: Assembly | undefined;
6341
6340
  readonly module?: Module | undefined;
6341
+ readonly isInterface?: boolean;
6342
6342
  readonly isNested?: boolean;
6343
6343
  readonly declaringType?: Type | undefined;
6344
6344
  readonly declaringMethod?: MethodBase | undefined;
@@ -6420,13 +6420,13 @@ export interface ITypeInfo {
6420
6420
  customAttributes?: CustomAttributeData[] | undefined;
6421
6421
  isCollectible?: boolean;
6422
6422
  metadataToken?: number;
6423
- isInterface?: boolean;
6424
6423
  memberType?: TypeInfoMemberType;
6425
6424
  namespace?: string | undefined;
6426
6425
  assemblyQualifiedName?: string | undefined;
6427
6426
  fullName?: string | undefined;
6428
6427
  assembly?: Assembly | undefined;
6429
6428
  module?: Module | undefined;
6429
+ isInterface?: boolean;
6430
6430
  isNested?: boolean;
6431
6431
  declaringType?: Type | undefined;
6432
6432
  declaringMethod?: MethodBase | undefined;
@@ -8241,7 +8241,8 @@ export declare enum TypeGenericParameterAttributes {
8241
8241
  ReferenceTypeConstraint = "ReferenceTypeConstraint",
8242
8242
  NotNullableValueTypeConstraint = "NotNullableValueTypeConstraint",
8243
8243
  DefaultConstructorConstraint = "DefaultConstructorConstraint",
8244
- SpecialConstraintMask = "SpecialConstraintMask"
8244
+ SpecialConstraintMask = "SpecialConstraintMask",
8245
+ AllowByRefLike = "AllowByRefLike"
8245
8246
  }
8246
8247
  export declare enum TypeAttributes {
8247
8248
  NotPublic = "NotPublic",
@@ -8290,7 +8291,8 @@ export declare enum TypeInfoGenericParameterAttributes {
8290
8291
  ReferenceTypeConstraint = "ReferenceTypeConstraint",
8291
8292
  NotNullableValueTypeConstraint = "NotNullableValueTypeConstraint",
8292
8293
  DefaultConstructorConstraint = "DefaultConstructorConstraint",
8293
- SpecialConstraintMask = "SpecialConstraintMask"
8294
+ SpecialConstraintMask = "SpecialConstraintMask",
8295
+ AllowByRefLike = "AllowByRefLike"
8294
8296
  }
8295
8297
  export declare enum TypeInfoAttributes {
8296
8298
  NotPublic = "NotPublic",
package/dist/Client.js CHANGED
@@ -12754,13 +12754,13 @@ export class Type {
12754
12754
  }
12755
12755
  this.isCollectible = _data["isCollectible"];
12756
12756
  this.metadataToken = _data["metadataToken"];
12757
- this.isInterface = _data["isInterface"];
12758
12757
  this.memberType = _data["memberType"];
12759
12758
  this.namespace = _data["namespace"];
12760
12759
  this.assemblyQualifiedName = _data["assemblyQualifiedName"];
12761
12760
  this.fullName = _data["fullName"];
12762
12761
  this.assembly = _data["assembly"] ? Assembly.fromJS(_data["assembly"]) : undefined;
12763
12762
  this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
12763
+ this.isInterface = _data["isInterface"];
12764
12764
  this.isNested = _data["isNested"];
12765
12765
  this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
12766
12766
  this.declaringMethod = _data["declaringMethod"] ? MethodBase.fromJS(_data["declaringMethod"]) : undefined;
@@ -12845,13 +12845,13 @@ export class Type {
12845
12845
  }
12846
12846
  data["isCollectible"] = this.isCollectible;
12847
12847
  data["metadataToken"] = this.metadataToken;
12848
- data["isInterface"] = this.isInterface;
12849
12848
  data["memberType"] = this.memberType;
12850
12849
  data["namespace"] = this.namespace;
12851
12850
  data["assemblyQualifiedName"] = this.assemblyQualifiedName;
12852
12851
  data["fullName"] = this.fullName;
12853
12852
  data["assembly"] = this.assembly ? this.assembly.toJSON() : undefined;
12854
12853
  data["module"] = this.module ? this.module.toJSON() : undefined;
12854
+ data["isInterface"] = this.isInterface;
12855
12855
  data["isNested"] = this.isNested;
12856
12856
  data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
12857
12857
  data["declaringMethod"] = this.declaringMethod ? this.declaringMethod.toJSON() : undefined;
@@ -12940,13 +12940,13 @@ export class TypeInfo {
12940
12940
  }
12941
12941
  this.isCollectible = _data["isCollectible"];
12942
12942
  this.metadataToken = _data["metadataToken"];
12943
- this.isInterface = _data["isInterface"];
12944
12943
  this.memberType = _data["memberType"];
12945
12944
  this.namespace = _data["namespace"];
12946
12945
  this.assemblyQualifiedName = _data["assemblyQualifiedName"];
12947
12946
  this.fullName = _data["fullName"];
12948
12947
  this.assembly = _data["assembly"] ? Assembly.fromJS(_data["assembly"]) : undefined;
12949
12948
  this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
12949
+ this.isInterface = _data["isInterface"];
12950
12950
  this.isNested = _data["isNested"];
12951
12951
  this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
12952
12952
  this.declaringMethod = _data["declaringMethod"] ? MethodBase.fromJS(_data["declaringMethod"]) : undefined;
@@ -13076,13 +13076,13 @@ export class TypeInfo {
13076
13076
  }
13077
13077
  data["isCollectible"] = this.isCollectible;
13078
13078
  data["metadataToken"] = this.metadataToken;
13079
- data["isInterface"] = this.isInterface;
13080
13079
  data["memberType"] = this.memberType;
13081
13080
  data["namespace"] = this.namespace;
13082
13081
  data["assemblyQualifiedName"] = this.assemblyQualifiedName;
13083
13082
  data["fullName"] = this.fullName;
13084
13083
  data["assembly"] = this.assembly ? this.assembly.toJSON() : undefined;
13085
13084
  data["module"] = this.module ? this.module.toJSON() : undefined;
13085
+ data["isInterface"] = this.isInterface;
13086
13086
  data["isNested"] = this.isNested;
13087
13087
  data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
13088
13088
  data["declaringMethod"] = this.declaringMethod ? this.declaringMethod.toJSON() : undefined;
@@ -15072,6 +15072,7 @@ export var TypeGenericParameterAttributes;
15072
15072
  TypeGenericParameterAttributes["NotNullableValueTypeConstraint"] = "NotNullableValueTypeConstraint";
15073
15073
  TypeGenericParameterAttributes["DefaultConstructorConstraint"] = "DefaultConstructorConstraint";
15074
15074
  TypeGenericParameterAttributes["SpecialConstraintMask"] = "SpecialConstraintMask";
15075
+ TypeGenericParameterAttributes["AllowByRefLike"] = "AllowByRefLike";
15075
15076
  })(TypeGenericParameterAttributes || (TypeGenericParameterAttributes = {}));
15076
15077
  export var TypeAttributes;
15077
15078
  (function (TypeAttributes) {
@@ -15124,6 +15125,7 @@ export var TypeInfoGenericParameterAttributes;
15124
15125
  TypeInfoGenericParameterAttributes["NotNullableValueTypeConstraint"] = "NotNullableValueTypeConstraint";
15125
15126
  TypeInfoGenericParameterAttributes["DefaultConstructorConstraint"] = "DefaultConstructorConstraint";
15126
15127
  TypeInfoGenericParameterAttributes["SpecialConstraintMask"] = "SpecialConstraintMask";
15128
+ TypeInfoGenericParameterAttributes["AllowByRefLike"] = "AllowByRefLike";
15127
15129
  })(TypeInfoGenericParameterAttributes || (TypeInfoGenericParameterAttributes = {}));
15128
15130
  export var TypeInfoAttributes;
15129
15131
  (function (TypeInfoAttributes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.2.14",
3
+ "version": "1.2.16",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",