@meeco/svx-api-sdk 1.0.0-develop.20231125210028.0c6e0cb → 1.0.0-develop.20231127120353.6c91dc5

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.
@@ -46,7 +46,6 @@ export function VCCreatePresentationRequestDtoFromJSONTyped(json, ignoreDiscrimi
46
46
  'client_purpose': !exists(json, 'client_purpose') ? undefined : json['client_purpose'],
47
47
  'state': !exists(json, 'state') ? undefined : json['state'],
48
48
  'expires_at': (new Date(json['expires_at'])),
49
- 'sub_jwk': !exists(json, 'sub_jwk') ? undefined : json['sub_jwk'],
50
49
  'redirect_base_uri': !exists(json, 'redirect_base_uri') ? undefined : json['redirect_base_uri'],
51
50
  'redirect_uri': !exists(json, 'redirect_uri') ? undefined : json['redirect_uri'],
52
51
  'method': json['method'],
@@ -68,7 +67,6 @@ export function VCCreatePresentationRequestDtoToJSON(value) {
68
67
  'client_purpose': value.client_purpose,
69
68
  'state': value.state,
70
69
  'expires_at': (value.expires_at.toISOString()),
71
- 'sub_jwk': value.sub_jwk,
72
70
  'redirect_base_uri': value.redirect_base_uri,
73
71
  'redirect_uri': value.redirect_uri,
74
72
  'method': value.method,
@@ -25,7 +25,6 @@ export function instanceOfVCPresentationRequestTokenPropertiesModelDto(value) {
25
25
  isInstance = isInstance && "nonce" in value;
26
26
  isInstance = isInstance && "scope" in value;
27
27
  isInstance = isInstance && "response_mode" in value;
28
- isInstance = isInstance && "sub_jwk" in value;
29
28
  isInstance = isInstance && "redirect_uri" in value;
30
29
  isInstance = isInstance && "response_type" in value;
31
30
  return isInstance;
@@ -47,7 +46,6 @@ export function VCPresentationRequestTokenPropertiesModelDtoFromJSONTyped(json,
47
46
  'nonce': json['nonce'],
48
47
  'scope': json['scope'],
49
48
  'response_mode': json['response_mode'],
50
- 'sub_jwk': json['sub_jwk'],
51
49
  'redirect_uri': json['redirect_uri'],
52
50
  'response_type': json['response_type'],
53
51
  };
@@ -69,7 +67,6 @@ export function VCPresentationRequestTokenPropertiesModelDtoToJSON(value) {
69
67
  'nonce': value.nonce,
70
68
  'scope': value.scope,
71
69
  'response_mode': value.response_mode,
72
- 'sub_jwk': value.sub_jwk,
73
70
  'redirect_uri': value.redirect_uri,
74
71
  'response_type': value.response_type,
75
72
  };
@@ -57,12 +57,6 @@ export interface VCCreatePresentationRequestDto {
57
57
  * @memberof VCCreatePresentationRequestDto
58
58
  */
59
59
  expires_at: Date;
60
- /**
61
- *
62
- * @type {object}
63
- * @memberof VCCreatePresentationRequestDto
64
- */
65
- sub_jwk?: object;
66
60
  /**
67
61
  *
68
62
  * @type {string}
@@ -69,12 +69,6 @@ export interface VCPresentationRequestTokenPropertiesModelDto {
69
69
  * @memberof VCPresentationRequestTokenPropertiesModelDto
70
70
  */
71
71
  response_mode: string;
72
- /**
73
- *
74
- * @type {object}
75
- * @memberof VCPresentationRequestTokenPropertiesModelDto
76
- */
77
- sub_jwk: object;
78
72
  /**
79
73
  *
80
74
  * @type {string}
@@ -51,7 +51,6 @@ function VCCreatePresentationRequestDtoFromJSONTyped(json, ignoreDiscriminator)
51
51
  'client_purpose': !(0, runtime_1.exists)(json, 'client_purpose') ? undefined : json['client_purpose'],
52
52
  'state': !(0, runtime_1.exists)(json, 'state') ? undefined : json['state'],
53
53
  'expires_at': (new Date(json['expires_at'])),
54
- 'sub_jwk': !(0, runtime_1.exists)(json, 'sub_jwk') ? undefined : json['sub_jwk'],
55
54
  'redirect_base_uri': !(0, runtime_1.exists)(json, 'redirect_base_uri') ? undefined : json['redirect_base_uri'],
56
55
  'redirect_uri': !(0, runtime_1.exists)(json, 'redirect_uri') ? undefined : json['redirect_uri'],
57
56
  'method': json['method'],
@@ -74,7 +73,6 @@ function VCCreatePresentationRequestDtoToJSON(value) {
74
73
  'client_purpose': value.client_purpose,
75
74
  'state': value.state,
76
75
  'expires_at': (value.expires_at.toISOString()),
77
- 'sub_jwk': value.sub_jwk,
78
76
  'redirect_base_uri': value.redirect_base_uri,
79
77
  'redirect_uri': value.redirect_uri,
80
78
  'method': value.method,
@@ -28,7 +28,6 @@ function instanceOfVCPresentationRequestTokenPropertiesModelDto(value) {
28
28
  isInstance = isInstance && "nonce" in value;
29
29
  isInstance = isInstance && "scope" in value;
30
30
  isInstance = isInstance && "response_mode" in value;
31
- isInstance = isInstance && "sub_jwk" in value;
32
31
  isInstance = isInstance && "redirect_uri" in value;
33
32
  isInstance = isInstance && "response_type" in value;
34
33
  return isInstance;
@@ -52,7 +51,6 @@ function VCPresentationRequestTokenPropertiesModelDtoFromJSONTyped(json, ignoreD
52
51
  'nonce': json['nonce'],
53
52
  'scope': json['scope'],
54
53
  'response_mode': json['response_mode'],
55
- 'sub_jwk': json['sub_jwk'],
56
54
  'redirect_uri': json['redirect_uri'],
57
55
  'response_type': json['response_type'],
58
56
  };
@@ -75,7 +73,6 @@ function VCPresentationRequestTokenPropertiesModelDtoToJSON(value) {
75
73
  'nonce': value.nonce,
76
74
  'scope': value.scope,
77
75
  'response_mode': value.response_mode,
78
- 'sub_jwk': value.sub_jwk,
79
76
  'redirect_uri': value.redirect_uri,
80
77
  'response_type': value.response_type,
81
78
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meeco/svx-api-sdk",
3
- "version": "1.0.0-develop.20231125210028.0c6e0cb",
3
+ "version": "1.0.0-develop.20231127120353.6c91dc5",
4
4
  "description": "Meeco SVX API SDK",
5
5
  "types": "./lib/types/index.d.ts",
6
6
  "browser": "./lib/esm/index.js",