@abtnode/schema 1.16.42-beta-20250413-121549-22e9a196 → 1.16.42-beta-20250415-222652-04c5d2fe

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/lib/index.js CHANGED
@@ -314,6 +314,20 @@ input RequestAbortBlockletBackupInput {
314
314
  appPid: String
315
315
  }
316
316
 
317
+ input RequestAccessKeyInput {
318
+ teamDid: String
319
+ accessKeyId: String
320
+ }
321
+
322
+ input RequestAccessKeysInput {
323
+ teamDid: String
324
+ paging: PagingInput
325
+ remark: String
326
+ componentDid: String
327
+ resourceType: String
328
+ resourceId: String
329
+ }
330
+
317
331
  input RequestAddBlockletAccessPolicyInput {
318
332
  did: String
319
333
  data: BlockletAccessPolicyInput
@@ -506,8 +520,15 @@ input RequestConnectToStoreInput {
506
520
  }
507
521
 
508
522
  input RequestCreateAccessKeyInput {
523
+ teamDid: String
509
524
  remark: String
510
525
  passport: String
526
+ authType: String
527
+ componentDid: String
528
+ resourceType: String
529
+ resourceId: String
530
+ createdVia: String
531
+ expireAt: Uint32
511
532
  }
512
533
 
513
534
  input RequestCreateInvitationInput {
@@ -595,6 +616,7 @@ input RequestCreateWebhookEndpointInput {
595
616
  }
596
617
 
597
618
  input RequestDeleteAccessKeyInput {
619
+ teamDid: String
598
620
  accessKeyId: String
599
621
  }
600
622
 
@@ -1132,9 +1154,11 @@ input RequestTeamUserOptionsInput {
1132
1154
  }
1133
1155
 
1134
1156
  input RequestUpdateAccessKeyInput {
1157
+ teamDid: String
1135
1158
  accessKeyId: String
1136
1159
  remark: String
1137
1160
  passport: String
1161
+ expireAt: Uint32
1138
1162
  }
1139
1163
 
1140
1164
  input RequestUpdateAppSessionConfigInput {
@@ -1302,6 +1326,14 @@ input RequestUsersInput {
1302
1326
  dids: [String!]
1303
1327
  }
1304
1328
 
1329
+ input RequestVerifyAccessKeyInput {
1330
+ teamDid: String
1331
+ accessKeyId: String
1332
+ resourceType: String
1333
+ resourceId: String
1334
+ componentDid: String
1335
+ }
1336
+
1305
1337
  input RequestVersionedBlockletInput {
1306
1338
  type: String
1307
1339
  did: String
@@ -1577,9 +1609,16 @@ type AccessKey {
1577
1609
  remark: String
1578
1610
  passport: String
1579
1611
  createdAt: Uint32
1612
+ updatedAt: Uint32
1580
1613
  lastUsedAt: Uint32
1581
1614
  createdBy: String
1582
1615
  updatedBy: String
1616
+ authType: String
1617
+ componentDid: String
1618
+ resourceType: String
1619
+ resourceId: String
1620
+ createdVia: String
1621
+ expireAt: Uint32
1583
1622
  }
1584
1623
 
1585
1624
  type AuditLog {
@@ -2138,11 +2177,18 @@ type ConnectedStore {
2138
2177
 
2139
2178
  type CreateAccessKey {
2140
2179
  accessKeyId: String
2180
+ accessKeyPublic: String
2141
2181
  accessKeySecret: String
2142
2182
  remark: String
2143
2183
  passport: String
2144
2184
  createdAt: Uint32
2145
2185
  lastUsedAt: Uint32
2186
+ authType: String
2187
+ componentDid: String
2188
+ resourceType: String
2189
+ resourceId: String
2190
+ createdVia: String
2191
+ expireAt: Uint32
2146
2192
  }
2147
2193
 
2148
2194
  type DelegationState {
@@ -2651,9 +2697,15 @@ type Requirement {
2651
2697
  fuels: [Fuel!]
2652
2698
  }
2653
2699
 
2700
+ type ResponseAccessKey {
2701
+ code: StatusCode
2702
+ data: AccessKey
2703
+ }
2704
+
2654
2705
  type ResponseAccessKeys {
2655
2706
  code: StatusCode
2656
2707
  list: [AccessKey!]
2708
+ paging: Paging
2657
2709
  }
2658
2710
 
2659
2711
  type ResponseAddLetsEncryptCert {
@@ -3167,6 +3219,10 @@ type ResponseUsers {
3167
3219
  paging: Paging
3168
3220
  }
3169
3221
 
3222
+ type ResponseVerifyAccessKey {
3223
+ code: StatusCode
3224
+ }
3225
+
3170
3226
  type ResponseWebHooks {
3171
3227
  code: StatusCode
3172
3228
  webhooks: [WebHook!]
@@ -3768,6 +3824,7 @@ type Mutation {
3768
3824
  createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
3769
3825
  updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
3770
3826
  deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
3827
+ verifyAccessKey(input: RequestVerifyAccessKeyInput): ResponseVerifyAccessKey
3771
3828
  createWebHook(input: RequestCreateWebHookInput): ResponseCreateWebHook
3772
3829
  deleteWebHook(input: RequestDeleteWebHookInput): ResponseDeleteWebHook
3773
3830
  createProject(input: RequestCreateProjectInput): ResponseProject
@@ -3824,7 +3881,8 @@ type Query {
3824
3881
  getCertificates: ResponseGetCertificates
3825
3882
  checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
3826
3883
  findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
3827
- getAccessKeys: ResponseAccessKeys
3884
+ getAccessKeys(input: RequestAccessKeysInput): ResponseAccessKeys
3885
+ getAccessKey(input: RequestAccessKeyInput): ResponseAccessKey
3828
3886
  getWebHooks: ResponseWebHooks
3829
3887
  getWebhookSenders: ResponseSenderList
3830
3888
  sendTestMessage(input: RequestSendMsgInput): ResponseSendMsg
@@ -314,6 +314,20 @@ input RequestAbortBlockletBackupInput {
314
314
  appPid: String
315
315
  }
316
316
 
317
+ input RequestAccessKeyInput {
318
+ teamDid: String
319
+ accessKeyId: String
320
+ }
321
+
322
+ input RequestAccessKeysInput {
323
+ teamDid: String
324
+ paging: PagingInput
325
+ remark: String
326
+ componentDid: String
327
+ resourceType: String
328
+ resourceId: String
329
+ }
330
+
317
331
  input RequestAddBlockletAccessPolicyInput {
318
332
  did: String
319
333
  data: BlockletAccessPolicyInput
@@ -506,8 +520,15 @@ input RequestConnectToStoreInput {
506
520
  }
507
521
 
508
522
  input RequestCreateAccessKeyInput {
523
+ teamDid: String
509
524
  remark: String
510
525
  passport: String
526
+ authType: String
527
+ componentDid: String
528
+ resourceType: String
529
+ resourceId: String
530
+ createdVia: String
531
+ expireAt: Uint32
511
532
  }
512
533
 
513
534
  input RequestCreateInvitationInput {
@@ -595,6 +616,7 @@ input RequestCreateWebhookEndpointInput {
595
616
  }
596
617
 
597
618
  input RequestDeleteAccessKeyInput {
619
+ teamDid: String
598
620
  accessKeyId: String
599
621
  }
600
622
 
@@ -1132,9 +1154,11 @@ input RequestTeamUserOptionsInput {
1132
1154
  }
1133
1155
 
1134
1156
  input RequestUpdateAccessKeyInput {
1157
+ teamDid: String
1135
1158
  accessKeyId: String
1136
1159
  remark: String
1137
1160
  passport: String
1161
+ expireAt: Uint32
1138
1162
  }
1139
1163
 
1140
1164
  input RequestUpdateAppSessionConfigInput {
@@ -1302,6 +1326,14 @@ input RequestUsersInput {
1302
1326
  dids: [String!]
1303
1327
  }
1304
1328
 
1329
+ input RequestVerifyAccessKeyInput {
1330
+ teamDid: String
1331
+ accessKeyId: String
1332
+ resourceType: String
1333
+ resourceId: String
1334
+ componentDid: String
1335
+ }
1336
+
1305
1337
  input RequestVersionedBlockletInput {
1306
1338
  type: String
1307
1339
  did: String
@@ -1577,9 +1609,16 @@ type AccessKey {
1577
1609
  remark: String
1578
1610
  passport: String
1579
1611
  createdAt: Uint32
1612
+ updatedAt: Uint32
1580
1613
  lastUsedAt: Uint32
1581
1614
  createdBy: String
1582
1615
  updatedBy: String
1616
+ authType: String
1617
+ componentDid: String
1618
+ resourceType: String
1619
+ resourceId: String
1620
+ createdVia: String
1621
+ expireAt: Uint32
1583
1622
  }
1584
1623
 
1585
1624
  type AuditLog {
@@ -2138,11 +2177,18 @@ type ConnectedStore {
2138
2177
 
2139
2178
  type CreateAccessKey {
2140
2179
  accessKeyId: String
2180
+ accessKeyPublic: String
2141
2181
  accessKeySecret: String
2142
2182
  remark: String
2143
2183
  passport: String
2144
2184
  createdAt: Uint32
2145
2185
  lastUsedAt: Uint32
2186
+ authType: String
2187
+ componentDid: String
2188
+ resourceType: String
2189
+ resourceId: String
2190
+ createdVia: String
2191
+ expireAt: Uint32
2146
2192
  }
2147
2193
 
2148
2194
  type DelegationState {
@@ -2651,9 +2697,15 @@ type Requirement {
2651
2697
  fuels: [Fuel!]
2652
2698
  }
2653
2699
 
2700
+ type ResponseAccessKey {
2701
+ code: StatusCode
2702
+ data: AccessKey
2703
+ }
2704
+
2654
2705
  type ResponseAccessKeys {
2655
2706
  code: StatusCode
2656
2707
  list: [AccessKey!]
2708
+ paging: Paging
2657
2709
  }
2658
2710
 
2659
2711
  type ResponseAddLetsEncryptCert {
@@ -3167,6 +3219,10 @@ type ResponseUsers {
3167
3219
  paging: Paging
3168
3220
  }
3169
3221
 
3222
+ type ResponseVerifyAccessKey {
3223
+ code: StatusCode
3224
+ }
3225
+
3170
3226
  type ResponseWebHooks {
3171
3227
  code: StatusCode
3172
3228
  webhooks: [WebHook!]
@@ -3770,6 +3826,7 @@ type Mutation {
3770
3826
  createAccessKey(input: RequestCreateAccessKeyInput): ResponseCreateAccessKey
3771
3827
  updateAccessKey(input: RequestUpdateAccessKeyInput): ResponseUpdateAccessKey
3772
3828
  deleteAccessKey(input: RequestDeleteAccessKeyInput): ResponseDeleteAccessKey
3829
+ verifyAccessKey(input: RequestVerifyAccessKeyInput): ResponseVerifyAccessKey
3773
3830
  createWebHook(input: RequestCreateWebHookInput): ResponseCreateWebHook
3774
3831
  deleteWebHook(input: RequestDeleteWebHookInput): ResponseDeleteWebHook
3775
3832
  createProject(input: RequestCreateProjectInput): ResponseProject
@@ -3826,7 +3883,8 @@ type Query {
3826
3883
  getCertificates: ResponseGetCertificates
3827
3884
  checkDomains(input: RequestCheckDomainsInput): ResponseCheckDomains
3828
3885
  findCertificateByDomain(input: RequestFindCertificateByDomainInput): ResponseFindCertificateByDomain
3829
- getAccessKeys: ResponseAccessKeys
3886
+ getAccessKeys(input: RequestAccessKeysInput): ResponseAccessKeys
3887
+ getAccessKey(input: RequestAccessKeyInput): ResponseAccessKey
3830
3888
  getWebHooks: ResponseWebHooks
3831
3889
  getWebhookSenders: ResponseSenderList
3832
3890
  sendTestMessage(input: RequestSendMsgInput): ResponseSendMsg
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.42-beta-20250413-121549-22e9a196",
6
+ "version": "1.16.42-beta-20250415-222652-04c5d2fe",
7
7
  "description": "",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -13,7 +13,7 @@
13
13
  "keywords": [],
14
14
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
15
15
  "license": "Apache-2.0",
16
- "gitHead": "00ff6ee0d86ea1938965c69a973fd08ec1769f08",
16
+ "gitHead": "4458b1e7e92d62d93c70de7f636a0f6ae9a59f26",
17
17
  "devDependencies": {
18
18
  "@wangshijun/ts-protoc-gen": "^0.16.2"
19
19
  }