zigap-utils 2.0.5 → 2.0.6

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/README.md CHANGED
@@ -112,6 +112,7 @@ interface LoginResultType {
112
112
  issuedDateTime: string;
113
113
  expire: LoginExpireType;
114
114
  isVerified: boolean;
115
+ signature: string;
115
116
  }
116
117
  ```
117
118
 
@@ -189,6 +190,7 @@ interface SignatureResultType {
189
190
  issuedDateTime: string;
190
191
  expire: SignatureLoginExpireType;
191
192
  isVerified: boolean;
193
+ signature: string;
192
194
  }
193
195
  ```
194
196
 
@@ -34,6 +34,7 @@ export type LoginResultType = {
34
34
  issuedDateTime: string;
35
35
  expire: LoginExpireType;
36
36
  isVerified: boolean;
37
+ signature: string;
37
38
  };
38
39
  export type ProcessingMarkType = {
39
40
  type: 'DEFAULT';
@@ -34,6 +34,7 @@ export type SignatureResultType = {
34
34
  issuedDateTime: string;
35
35
  expire: SignatureLoginExpireType;
36
36
  isVerified: boolean;
37
+ signature: string;
37
38
  };
38
39
  export type SignatureProcessingMarkType = {
39
40
  type: 'DEFAULT';