@abtnode/schema 1.16.13 → 1.16.14-beta-a898bfcb

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.
Files changed (3) hide show
  1. package/lib/index.js +1045 -1044
  2. package/lib/schema.graphqls +1045 -1043
  3. package/package.json +2 -2
@@ -16,1853 +16,1854 @@ scalar Uint32
16
16
  scalar Uint64
17
17
 
18
18
  input BlockletStoreInput {
19
- name: String
20
- description: String
21
- url: String
22
- logoUrl: String
23
- maintainer: String
24
- cdnUrl: String
25
- protected: Boolean
26
- id: String
19
+ name: String
20
+ description: String
21
+ url: String
22
+ logoUrl: String
23
+ maintainer: String
24
+ cdnUrl: String
25
+ protected: Boolean
26
+ id: String
27
27
  }
28
28
 
29
29
  input ConfigEntryInput {
30
- key: String
31
- value: String
32
- required: Boolean
33
- description: String
34
- validation: String
35
- secure: Boolean
36
- custom: Boolean
37
- shared: Boolean
30
+ key: String
31
+ value: String
32
+ required: Boolean
33
+ description: String
34
+ validation: String
35
+ secure: Boolean
36
+ custom: Boolean
37
+ shared: Boolean
38
38
  }
39
39
 
40
40
  input ConfigNavigationInput {
41
- id: String
42
- title: String
43
- link: String
44
- icon: String
45
- section: String
46
- component: String
47
- parent: String
48
- role: String
49
- visible: Boolean
50
- from: String
41
+ id: String
42
+ title: String
43
+ link: String
44
+ icon: String
45
+ section: String
46
+ component: String
47
+ parent: String
48
+ role: String
49
+ visible: Boolean
50
+ from: String
51
51
  }
52
52
 
53
53
  input ConnectedAccountInput {
54
- provider: String
55
- did: String
56
- pk: String
57
- id: String
58
- lastLoginAt: Uint32
54
+ provider: String
55
+ did: String
56
+ pk: String
57
+ id: String
58
+ lastLoginAt: Uint32
59
59
  }
60
60
 
61
61
  input DownloadTokenInput {
62
- did: String
63
- token: String
62
+ did: String
63
+ token: String
64
64
  }
65
65
 
66
66
  input HashFileInput {
67
- file: String
68
- hash: String
67
+ file: String
68
+ hash: String
69
69
  }
70
70
 
71
71
  input IssuerInput {
72
- id: String
73
- name: String
74
- pk: String
72
+ id: String
73
+ name: String
74
+ pk: String
75
75
  }
76
76
 
77
77
  input NodeInfoInput {
78
- name: String
79
- description: String
80
- autoUpgrade: Boolean
81
- enableWelcomePage: Boolean
82
- registerUrl: String
83
- webWalletUrl: String
84
- blockletRegistryList: [BlockletStoreInput!]
85
- diskAlertThreshold: Uint32
86
- enableBetaRelease: Boolean
78
+ name: String
79
+ description: String
80
+ autoUpgrade: Boolean
81
+ enableWelcomePage: Boolean
82
+ registerUrl: String
83
+ webWalletUrl: String
84
+ blockletRegistryList: [BlockletStoreInput!]
85
+ diskAlertThreshold: Uint32
86
+ enableBetaRelease: Boolean
87
87
  }
88
88
 
89
89
  input PagingInput {
90
- total: Uint32
91
- pageSize: Uint32
92
- pageCount: Uint32
93
- page: Uint32
90
+ total: Uint32
91
+ pageSize: Uint32
92
+ pageCount: Uint32
93
+ page: Uint32
94
94
  }
95
95
 
96
96
  input PassportInput {
97
- id: String
98
- name: String
99
- title: String
100
- issuer: IssuerInput
101
- type: [String!]
102
- issuanceDate: Uint32
103
- expirationDate: Uint32
104
- status: String
105
- role: String
106
- lastLoginAt: Uint32
97
+ id: String
98
+ name: String
99
+ title: String
100
+ issuer: IssuerInput
101
+ type: [String!]
102
+ issuanceDate: Uint32
103
+ expirationDate: Uint32
104
+ status: String
105
+ role: String
106
+ lastLoginAt: Uint32
107
107
  }
108
108
 
109
109
  input PermissionInput {
110
- name: String
111
- description: String
112
- isProtected: Boolean
110
+ name: String
111
+ description: String
112
+ isProtected: Boolean
113
113
  }
114
114
 
115
115
  input RequestAddBlockletSpaceGatewayInput {
116
- did: String
117
- spaceGateway: SpaceGatewayInput
116
+ did: String
117
+ spaceGateway: SpaceGatewayInput
118
118
  }
119
119
 
120
120
  input RequestAddDomainAliasInput {
121
- id: String
122
- domainAlias: String
123
- force: Boolean
124
- teamDid: String
121
+ id: String
122
+ domainAlias: String
123
+ force: Boolean
124
+ teamDid: String
125
125
  }
126
126
 
127
127
  input RequestAddLetsEncryptCertInput {
128
- domain: String
129
- did: String
128
+ domain: String
129
+ did: String
130
130
  }
131
131
 
132
132
  input RequestAddNginxHttpsCertInput {
133
- name: String
134
- privateKey: String
135
- certificate: String
133
+ name: String
134
+ privateKey: String
135
+ certificate: String
136
136
  }
137
137
 
138
138
  input RequestAddRoutingRuleInput {
139
- id: String
140
- rule: RoutingRuleInput
141
- teamDid: String
139
+ id: String
140
+ rule: RoutingRuleInput
141
+ teamDid: String
142
142
  }
143
143
 
144
144
  input RequestAddRoutingSiteInput {
145
- domain: String
146
- type: String
147
- rules: [RoutingRuleInput!]
145
+ domain: String
146
+ type: String
147
+ rules: [RoutingRuleInput!]
148
148
  }
149
149
 
150
150
  input RequestBackupBlockletInput {
151
- appDid: String
152
- to: BackupTo
151
+ appDid: String
152
+ to: BackupTo
153
153
  }
154
154
 
155
155
  input RequestBlockletInput {
156
- did: String
156
+ did: String
157
157
  }
158
158
 
159
159
  input RequestBlockletDetailInput {
160
- did: String
161
- attachRuntimeInfo: Boolean
160
+ did: String
161
+ attachRuntimeInfo: Boolean
162
162
  }
163
163
 
164
164
  input RequestBlockletDiffInput {
165
- did: String
166
- hashFiles: [HashFileInput!]
167
- rootDid: String
165
+ did: String
166
+ hashFiles: [HashFileInput!]
167
+ rootDid: String
168
168
  }
169
169
 
170
170
  input RequestBlockletForLauncherInput {
171
- did: String
171
+ did: String
172
172
  }
173
173
 
174
174
  input RequestBlockletMetaInput {
175
- did: String
176
- storeUrl: String
175
+ did: String
176
+ storeUrl: String
177
177
  }
178
178
 
179
179
  input RequestBlockletMetaFromUrlInput {
180
- url: String
181
- checkPrice: Boolean
180
+ url: String
181
+ checkPrice: Boolean
182
182
  }
183
183
 
184
184
  input RequestBlockletRuntimeHistoryInput {
185
- did: String
186
- hours: Uint32
185
+ did: String
186
+ hours: Uint32
187
187
  }
188
188
 
189
189
  input RequestChangeBlockletStoreInput {
190
- teamDid: String
191
- url: String
190
+ teamDid: String
191
+ url: String
192
192
  }
193
193
 
194
194
  input RequestCheckDomainsInput {
195
- domains: [String!]
196
- did: String
195
+ domains: [String!]
196
+ did: String
197
197
  }
198
198
 
199
199
  input RequestComponentsInput {
200
- did: String
201
- componentDids: [String!]
200
+ did: String
201
+ componentDids: [String!]
202
202
  }
203
203
 
204
204
  input RequestConfigBlockletInput {
205
- did: [String!]
206
- configs: [ConfigEntryInput!]
205
+ did: [String!]
206
+ configs: [ConfigEntryInput!]
207
207
  }
208
208
 
209
209
  input RequestConfigNavigationsInput {
210
- did: String
211
- navigations: [ConfigNavigationInput!]
210
+ did: String
211
+ navigations: [ConfigNavigationInput!]
212
212
  }
213
213
 
214
214
  input RequestConfigNotificationInput {
215
- did: String
216
- notification: String
215
+ did: String
216
+ notification: String
217
217
  }
218
218
 
219
219
  input RequestConfigOAuthInput {
220
- did: String
221
- oauth: String
220
+ did: String
221
+ oauth: String
222
222
  }
223
223
 
224
224
  input RequestConfigPassportIssuanceInput {
225
- teamDid: String
226
- enable: Boolean
225
+ teamDid: String
226
+ enable: Boolean
227
227
  }
228
228
 
229
229
  input RequestConfigPublicToStoreInput {
230
- did: String
231
- publicToStore: Boolean
230
+ did: String
231
+ publicToStore: Boolean
232
232
  }
233
233
 
234
234
  input RequestConfigTrustedFactoriesInput {
235
- teamDid: String
236
- trustedFactories: [TrustedFactoryInput!]
235
+ teamDid: String
236
+ trustedFactories: [TrustedFactoryInput!]
237
237
  }
238
238
 
239
239
  input RequestConfigTrustedPassportsInput {
240
- teamDid: String
241
- trustedPassports: [TrustedPassportInput!]
240
+ teamDid: String
241
+ trustedPassports: [TrustedPassportInput!]
242
242
  }
243
243
 
244
244
  input RequestCreateAccessKeyInput {
245
- remark: String
246
- passport: String
245
+ remark: String
246
+ passport: String
247
247
  }
248
248
 
249
249
  input RequestCreateInvitationInput {
250
- teamDid: String
251
- role: String
252
- remark: String
250
+ teamDid: String
251
+ role: String
252
+ remark: String
253
253
  }
254
254
 
255
255
  input RequestCreatePassportIssuanceInput {
256
- teamDid: String
257
- ownerDid: String
258
- name: String
256
+ teamDid: String
257
+ ownerDid: String
258
+ name: String
259
259
  }
260
260
 
261
261
  input RequestCreatePermissionInput {
262
- teamDid: String
263
- name: String
264
- description: String
262
+ teamDid: String
263
+ name: String
264
+ description: String
265
265
  }
266
266
 
267
267
  input RequestCreateRoleInput {
268
- teamDid: String
269
- name: String
270
- title: String
271
- description: String
272
- childName: String
273
- permissions: [String!]
268
+ teamDid: String
269
+ name: String
270
+ title: String
271
+ description: String
272
+ childName: String
273
+ permissions: [String!]
274
274
  }
275
275
 
276
276
  input RequestCreateTransferNodeInvitationInput {
277
- teamDid: String
278
- remark: String
277
+ teamDid: String
278
+ remark: String
279
279
  }
280
280
 
281
281
  input RequestCreateWebHookInput {
282
- type: SenderType
283
- title: String
284
- description: String
285
- params: [WebHookParamInput!]
282
+ type: SenderType
283
+ title: String
284
+ description: String
285
+ params: [WebHookParamInput!]
286
286
  }
287
287
 
288
288
  input RequestDeleteAccessKeyInput {
289
- accessKeyId: String
289
+ accessKeyId: String
290
290
  }
291
291
 
292
292
  input RequestDeleteBlockletInput {
293
- did: String
294
- keepData: Boolean
293
+ did: String
294
+ keepData: Boolean
295
295
  }
296
296
 
297
297
  input RequestDeleteBlockletSpaceGatewayInput {
298
- did: String
299
- spaceGatewayDid: String
298
+ did: String
299
+ spaceGatewayDid: String
300
300
  }
301
301
 
302
302
  input RequestDeleteComponentInput {
303
- did: String
304
- rootDid: String
305
- keepData: Boolean
303
+ did: String
304
+ rootDid: String
305
+ keepData: Boolean
306
306
  }
307
307
 
308
308
  input RequestDeleteDomainAliasInput {
309
- id: String
310
- domainAlias: String
311
- teamDid: String
309
+ id: String
310
+ domainAlias: String
311
+ teamDid: String
312
312
  }
313
313
 
314
314
  input RequestDeleteInvitationInput {
315
- teamDid: String
316
- inviteId: String
315
+ teamDid: String
316
+ inviteId: String
317
317
  }
318
318
 
319
319
  input RequestDeleteNginxHttpsCertInput {
320
- id: String
320
+ id: String
321
321
  }
322
322
 
323
323
  input RequestDeletePermissionInput {
324
- teamDid: String
325
- name: String
324
+ teamDid: String
325
+ name: String
326
326
  }
327
327
 
328
328
  input RequestDeleteRoleInput {
329
- teamDid: String
330
- name: String
329
+ teamDid: String
330
+ name: String
331
331
  }
332
332
 
333
333
  input RequestDeleteRoutingRuleInput {
334
- id: String
335
- ruleId: String
336
- teamDid: String
334
+ id: String
335
+ ruleId: String
336
+ teamDid: String
337
337
  }
338
338
 
339
339
  input RequestDeleteRoutingSiteInput {
340
- id: String
340
+ id: String
341
341
  }
342
342
 
343
343
  input RequestDeleteTeamSessionInput {
344
- teamDid: String
345
- sessionId: String
344
+ teamDid: String
345
+ sessionId: String
346
346
  }
347
347
 
348
348
  input RequestDeleteWebHookInput {
349
- id: String
349
+ id: String
350
350
  }
351
351
 
352
352
  input RequestEndSessionInput {
353
- id: String
353
+ id: String
354
354
  }
355
355
 
356
356
  input RequestFindCertificateByDomainInput {
357
- domain: String
358
- did: String
357
+ domain: String
358
+ did: String
359
359
  }
360
360
 
361
361
  input RequestGatewayInput {
362
- requestLimit: RequestLimitInput
363
- cacheEnabled: Boolean
362
+ requestLimit: RequestLimitInput
363
+ cacheEnabled: Boolean
364
364
  }
365
365
 
366
366
  input RequestGetAuditLogsInput {
367
- paging: PagingInput
368
- scope: String
369
- category: String
367
+ paging: PagingInput
368
+ scope: String
369
+ category: String
370
370
  }
371
371
 
372
372
  input RequestGetBlockletBackupsInput {
373
- did: String
373
+ did: String
374
374
  }
375
375
 
376
376
  input RequestGetBlockletsInput {
377
- useCache: Boolean
377
+ useCache: Boolean
378
378
  }
379
379
 
380
380
  input RequestGetLauncherSessionInput {
381
- launcherSessionId: String
382
- launcherUrl: String
381
+ launcherSessionId: String
382
+ launcherUrl: String
383
383
  }
384
384
 
385
385
  input RequestGetNotificationsInput {
386
- receiver: String
387
- sender: String
388
- read: Boolean
389
- paging: PagingInput
386
+ receiver: String
387
+ sender: String
388
+ read: Boolean
389
+ paging: PagingInput
390
390
  }
391
391
 
392
392
  input RequestGetPassportIssuancesInput {
393
- teamDid: String
394
- ownerDid: String
393
+ teamDid: String
394
+ ownerDid: String
395
395
  }
396
396
 
397
397
  input RequestGetRoutingSitesInput {
398
- snapshotHash: String
398
+ snapshotHash: String
399
399
  }
400
400
 
401
401
  input RequestGetRoutingSnapshotsInput {
402
- limit: Int32
402
+ limit: Int32
403
403
  }
404
404
 
405
405
  input RequestGetSessionInput {
406
- id: String
406
+ id: String
407
407
  }
408
408
 
409
409
  input RequestGetSnapshotSitesInput {
410
- hash: String
410
+ hash: String
411
411
  }
412
412
 
413
413
  input RequestGetTrafficInsightsInput {
414
- did: String
415
- startDate: String
416
- endDate: String
417
- paging: PagingInput
414
+ did: String
415
+ startDate: String
416
+ endDate: String
417
+ paging: PagingInput
418
418
  }
419
419
 
420
420
  input RequestGrantPermissionForRoleInput {
421
- teamDid: String
422
- roleName: String
423
- grantName: String
421
+ teamDid: String
422
+ roleName: String
423
+ grantName: String
424
424
  }
425
425
 
426
426
  input RequestHasPermissionInput {
427
- teamDid: String
428
- role: String
429
- permission: String
427
+ teamDid: String
428
+ role: String
429
+ permission: String
430
430
  }
431
431
 
432
432
  input RequestInstallComponentInput {
433
- rootDid: String
434
- mountPoint: String
435
- url: String
436
- file: Upload
437
- did: String
438
- diffVersion: String
439
- deleteSet: [String!]
440
- name: String
441
- title: String
442
- configs: [ConfigEntryInput!]
443
- downloadTokenList: [DownloadTokenInput!]
444
- skipNavigation: Boolean
433
+ rootDid: String
434
+ mountPoint: String
435
+ url: String
436
+ file: Upload
437
+ did: String
438
+ diffVersion: String
439
+ deleteSet: [String!]
440
+ name: String
441
+ title: String
442
+ configs: [ConfigEntryInput!]
443
+ downloadTokenList: [DownloadTokenInput!]
444
+ skipNavigation: Boolean
445
445
  }
446
446
 
447
447
  input RequestIssuePassportToUserInput {
448
- teamDid: String
449
- userDid: String
450
- role: String
448
+ teamDid: String
449
+ userDid: String
450
+ role: String
451
451
  }
452
452
 
453
453
  input RequestLimitInput {
454
- enabled: Boolean
455
- rate: Uint32
456
- ipHeader: String
454
+ enabled: Boolean
455
+ rate: Uint32
456
+ ipHeader: String
457
457
  }
458
458
 
459
459
  input RequestMigrateApplicationToStructV2Input {
460
- did: String
461
- appSk: String
460
+ did: String
461
+ appSk: String
462
462
  }
463
463
 
464
464
  input RequestNodeRoutingInput {
465
- provider: String
466
- snapshotHash: String
467
- forceRepopulate: Boolean
465
+ provider: String
466
+ snapshotHash: String
467
+ forceRepopulate: Boolean
468
468
  }
469
469
 
470
470
  input RequestNodeRuntimeHistoryInput {
471
- hours: Uint32
471
+ hours: Uint32
472
472
  }
473
473
 
474
474
  input RequestReadNotificationsInput {
475
- id: String
475
+ id: String
476
476
  }
477
477
 
478
478
  input RequestResetNodeInput {
479
- owner: Boolean
480
- blocklets: Boolean
481
- webhooks: Boolean
482
- certificates: Boolean
483
- accessKeys: Boolean
484
- blockletExtras: Boolean
485
- routingRules: Boolean
486
- users: Boolean
487
- invitations: Boolean
479
+ owner: Boolean
480
+ blocklets: Boolean
481
+ webhooks: Boolean
482
+ certificates: Boolean
483
+ accessKeys: Boolean
484
+ blockletExtras: Boolean
485
+ routingRules: Boolean
486
+ users: Boolean
487
+ invitations: Boolean
488
488
  }
489
489
 
490
490
  input RequestRestoreBlockletInput {
491
- endpoint: String
492
- appDid: String
493
- delegation: String
494
- password: Bytes
495
- wallet: Any
496
- from: BackupTo
497
- appPid: String
491
+ endpoint: String
492
+ appDid: String
493
+ delegation: String
494
+ password: Bytes
495
+ wallet: Any
496
+ from: BackupTo
497
+ appPid: String
498
498
  }
499
499
 
500
500
  input RequestRevokePermissionFromRoleInput {
501
- teamDid: String
502
- roleName: String
503
- grantName: String
501
+ teamDid: String
502
+ roleName: String
503
+ grantName: String
504
504
  }
505
505
 
506
506
  input RequestRevokeUserPassportInput {
507
- teamDid: String
508
- userDid: String
509
- passportId: String
507
+ teamDid: String
508
+ userDid: String
509
+ passportId: String
510
510
  }
511
511
 
512
512
  input RequestSendMsgInput {
513
- webhookId: String
514
- message: String
513
+ webhookId: String
514
+ message: String
515
515
  }
516
516
 
517
517
  input RequestStartSessionInput {
518
- data: String
518
+ data: String
519
519
  }
520
520
 
521
521
  input RequestTakeRoutingSnapshotInput {
522
- dryRun: Boolean
523
- message: String
522
+ dryRun: Boolean
523
+ message: String
524
524
  }
525
525
 
526
526
  input RequestTeamPermissionInput {
527
- teamDid: String
528
- permission: PermissionInput
527
+ teamDid: String
528
+ permission: PermissionInput
529
529
  }
530
530
 
531
531
  input RequestTeamRoleInput {
532
- teamDid: String
533
- role: RoleInput
532
+ teamDid: String
533
+ role: RoleInput
534
534
  }
535
535
 
536
536
  input RequestTeamUserInput {
537
- teamDid: String
538
- user: UserInfoInput
539
- options: RequestTeamUserOptionsInput
537
+ teamDid: String
538
+ user: UserInfoInput
539
+ options: RequestTeamUserOptionsInput
540
540
  }
541
541
 
542
542
  input RequestTeamUserOptionsInput {
543
- enableConnectedAccount: Boolean
543
+ enableConnectedAccount: Boolean
544
544
  }
545
545
 
546
546
  input RequestUpdateAccessKeyInput {
547
- accessKeyId: String
548
- remark: String
549
- passport: String
547
+ accessKeyId: String
548
+ remark: String
549
+ passport: String
550
550
  }
551
551
 
552
552
  input RequestUpdateAppSessionConfigInput {
553
- did: String
554
- config: SessionConfigInput
553
+ did: String
554
+ config: SessionConfigInput
555
555
  }
556
556
 
557
557
  input RequestUpdateBlockletSpaceGatewayInput {
558
- did: String
559
- where: SpaceGatewayInput
560
- spaceGateway: SpaceGatewayInput
558
+ did: String
559
+ where: SpaceGatewayInput
560
+ spaceGateway: SpaceGatewayInput
561
561
  }
562
562
 
563
563
  input RequestUpdateComponentMountPointInput {
564
- did: String
565
- rootDid: String
566
- mountPoint: String
564
+ did: String
565
+ rootDid: String
566
+ mountPoint: String
567
567
  }
568
568
 
569
569
  input RequestUpdateComponentTitleInput {
570
- did: String
571
- rootDid: String
572
- title: String
570
+ did: String
571
+ rootDid: String
572
+ title: String
573
573
  }
574
574
 
575
575
  input RequestUpdateComponentsInput {
576
- updateId: String
577
- rootDid: String
578
- selectedComponents: [String!]
576
+ updateId: String
577
+ rootDid: String
578
+ selectedComponents: [String!]
579
579
  }
580
580
 
581
581
  input RequestUpdateNginxHttpsCertInput {
582
- id: String
583
- name: String
582
+ id: String
583
+ name: String
584
584
  }
585
585
 
586
586
  input RequestUpdatePermissionsForRoleInput {
587
- teamDid: String
588
- roleName: String
589
- grantNames: [String!]
587
+ teamDid: String
588
+ roleName: String
589
+ grantNames: [String!]
590
590
  }
591
591
 
592
592
  input RequestUpdateRoutingRuleInput {
593
- id: String
594
- rule: RoutingRuleInput
595
- teamDid: String
593
+ id: String
594
+ rule: RoutingRuleInput
595
+ teamDid: String
596
596
  }
597
597
 
598
598
  input RequestUpdateRoutingSiteInput {
599
- id: String
600
- corsAllowedOrigins: [String!]
601
- domain: String
602
- teamDid: String
599
+ id: String
600
+ corsAllowedOrigins: [String!]
601
+ domain: String
602
+ teamDid: String
603
603
  }
604
604
 
605
605
  input RequestUpdateSessionInput {
606
- id: String
607
- data: String
606
+ id: String
607
+ data: String
608
608
  }
609
609
 
610
610
  input RequestUpdateWhoCanAccessInput {
611
- did: [String!]
612
- whoCanAccess: String
611
+ did: [String!]
612
+ whoCanAccess: String
613
613
  }
614
614
 
615
615
  input RequestUsersInput {
616
- teamDid: String
617
- query: UserQueryInput
618
- sort: UserSortInput
619
- paging: PagingInput
620
- dids: [String!]
616
+ teamDid: String
617
+ query: UserQueryInput
618
+ sort: UserSortInput
619
+ paging: PagingInput
620
+ dids: [String!]
621
621
  }
622
622
 
623
623
  input RequestVersionedBlockletInput {
624
- type: String
625
- did: String
626
- storeUrl: String
627
- url: String
628
- file: Upload
629
- diffVersion: String
630
- deleteSet: [String!]
631
- title: String
632
- description: String
633
- startImmediately: Boolean
634
- downloadTokenList: [DownloadTokenInput!]
624
+ type: String
625
+ did: String
626
+ storeUrl: String
627
+ url: String
628
+ file: Upload
629
+ diffVersion: String
630
+ deleteSet: [String!]
631
+ title: String
632
+ description: String
633
+ startImmediately: Boolean
634
+ downloadTokenList: [DownloadTokenInput!]
635
635
  }
636
636
 
637
637
  input RoleInput {
638
- name: String
639
- description: String
640
- grants: [String!]
641
- title: String
642
- isProtected: Boolean
638
+ name: String
639
+ description: String
640
+ grants: [String!]
641
+ title: String
642
+ isProtected: Boolean
643
643
  }
644
644
 
645
645
  input RoutingRuleInput {
646
- id: String
647
- from: RoutingRuleFromInput
648
- to: RoutingRuleToInput
649
- isProtected: Boolean
646
+ id: String
647
+ from: RoutingRuleFromInput
648
+ to: RoutingRuleToInput
649
+ isProtected: Boolean
650
650
  }
651
651
 
652
652
  input RoutingRuleFromInput {
653
- pathPrefix: String
654
- header: [RoutingRuleHeaderInput!]
653
+ pathPrefix: String
654
+ header: [RoutingRuleHeaderInput!]
655
655
  }
656
656
 
657
657
  input RoutingRuleHeaderInput {
658
- key: String
659
- value: String
660
- type: HeaderMatchType
658
+ key: String
659
+ value: String
660
+ type: HeaderMatchType
661
661
  }
662
662
 
663
663
  input RoutingRuleToInput {
664
- port: Uint32
665
- type: BackendServiceType
666
- did: String
667
- url: String
668
- redirectCode: Int32
669
- interfaceName: String
670
- componentId: String
671
- pageGroup: String
664
+ port: Uint32
665
+ type: BackendServiceType
666
+ did: String
667
+ url: String
668
+ redirectCode: Int32
669
+ interfaceName: String
670
+ componentId: String
671
+ pageGroup: String
672
672
  }
673
673
 
674
674
  input SessionConfigInput {
675
- cacheTtl: Uint32
676
- ttl: Uint32
675
+ cacheTtl: Uint32
676
+ ttl: Uint32
677
677
  }
678
678
 
679
679
  input SpaceGatewayInput {
680
- name: String
681
- url: String
682
- protected: String
683
- endpoint: String
684
- did: String
680
+ name: String
681
+ url: String
682
+ protected: String
683
+ endpoint: String
684
+ did: String
685
685
  }
686
686
 
687
687
  input TeamInput {
688
- teamDid: String
688
+ teamDid: String
689
689
  }
690
690
 
691
691
  input TrustedFactoryInput {
692
- holderDid: String
693
- issuerDid: String
694
- factoryAddress: String
695
- remark: String
696
- passport: TrustedPassportMappingToInput
692
+ holderDid: String
693
+ issuerDid: String
694
+ factoryAddress: String
695
+ remark: String
696
+ passport: TrustedPassportMappingToInput
697
697
  }
698
698
 
699
699
  input TrustedPassportInput {
700
- issuerDid: String
701
- remark: String
702
- mappings: [TrustedPassportMappingInput!]
700
+ issuerDid: String
701
+ remark: String
702
+ mappings: [TrustedPassportMappingInput!]
703
703
  }
704
704
 
705
705
  input TrustedPassportMappingInput {
706
- from: TrustedPassportMappingFromInput
707
- to: TrustedPassportMappingToInput
706
+ from: TrustedPassportMappingFromInput
707
+ to: TrustedPassportMappingToInput
708
708
  }
709
709
 
710
710
  input TrustedPassportMappingFromInput {
711
- passport: String
711
+ passport: String
712
712
  }
713
713
 
714
714
  input TrustedPassportMappingToInput {
715
- role: String
716
- ttl: String
717
- ttlPolicy: String
715
+ role: String
716
+ ttl: String
717
+ ttlPolicy: String
718
718
  }
719
719
 
720
720
  input UserInfoInput {
721
- did: String
722
- pk: String
723
- role: String
724
- avatar: String
725
- fullName: String
726
- email: String
727
- approved: Boolean
728
- createdAt: Uint32
729
- updatedAt: Uint32
730
- locale: String
731
- passports: [PassportInput!]
732
- firstLoginAt: Uint32
733
- lastLoginAt: Uint32
734
- remark: String
735
- lastLoginIp: String
736
- sourceProvider: String
737
- connectedAccounts: [ConnectedAccountInput!]
738
- extra: Any
739
- source: String
740
- extraConfigs: Any
721
+ did: String
722
+ pk: String
723
+ role: String
724
+ avatar: String
725
+ fullName: String
726
+ email: String
727
+ approved: Boolean
728
+ createdAt: Uint32
729
+ updatedAt: Uint32
730
+ locale: String
731
+ passports: [PassportInput!]
732
+ firstLoginAt: Uint32
733
+ lastLoginAt: Uint32
734
+ remark: String
735
+ lastLoginIp: String
736
+ sourceProvider: String
737
+ connectedAccounts: [ConnectedAccountInput!]
738
+ extra: Any
739
+ source: String
740
+ extraConfigs: Any
741
741
  }
742
742
 
743
743
  input UserQueryInput {
744
- role: String
745
- approved: Boolean
746
- search: String
747
- connectedDid: String
744
+ role: String
745
+ approved: Boolean
746
+ search: String
747
+ connectedDid: String
748
748
  }
749
749
 
750
750
  input UserSortInput {
751
- updatedAt: Uint32
752
- createdAt: Uint32
753
- lastLoginAt: Uint32
751
+ updatedAt: Uint32
752
+ createdAt: Uint32
753
+ lastLoginAt: Uint32
754
754
  }
755
755
 
756
756
  input WebHookParamInput {
757
- name: String
758
- description: String
759
- required: Boolean
760
- defaultValue: String
761
- value: String
762
- type: String
757
+ name: String
758
+ description: String
759
+ required: Boolean
760
+ defaultValue: String
761
+ value: String
762
+ type: String
763
763
  }
764
764
 
765
765
  type AccessKey {
766
- accessKeyId: String
767
- accessKeyPublic: String
768
- remark: String
769
- passport: String
770
- createdAt: Uint32
771
- lastUsedAt: Uint32
772
- createdBy: String
773
- updatedBy: String
766
+ accessKeyId: String
767
+ accessKeyPublic: String
768
+ remark: String
769
+ passport: String
770
+ createdAt: Uint32
771
+ lastUsedAt: Uint32
772
+ createdBy: String
773
+ updatedBy: String
774
774
  }
775
775
 
776
776
  type AuditLog {
777
- id: String
778
- scope: String
779
- category: String
780
- action: String
781
- content: String
782
- actor: AuditLogActor
783
- env: AuditLogEnv
784
- createdAt: Uint32
785
- ip: String
786
- ua: String
777
+ id: String
778
+ scope: String
779
+ category: String
780
+ action: String
781
+ content: String
782
+ actor: AuditLogActor
783
+ env: AuditLogEnv
784
+ createdAt: Uint32
785
+ ip: String
786
+ ua: String
787
787
  }
788
788
 
789
789
  type AuditLogActor {
790
- did: String
791
- role: String
792
- fullName: String
790
+ did: String
791
+ role: String
792
+ fullName: String
793
793
  }
794
794
 
795
795
  type AuditLogEnv {
796
- browser: AuditLogEnvItem
797
- os: AuditLogEnvItem
796
+ browser: AuditLogEnvItem
797
+ os: AuditLogEnvItem
798
798
  }
799
799
 
800
800
  type AuditLogEnvItem {
801
- name: String
802
- version: String
801
+ name: String
802
+ version: String
803
803
  }
804
804
 
805
805
  type Backup {
806
- appPid: String
807
- userDid: String
808
- strategy: Uint32
809
- sourceUrl: String
810
- target: String
811
- targetName: String
812
- targetUrl: String
813
- createdAt: Uint32
814
- updatedAt: Uint32
815
- status: Uint32
816
- message: String
806
+ appPid: String
807
+ userDid: String
808
+ strategy: Uint32
809
+ sourceUrl: String
810
+ target: String
811
+ targetName: String
812
+ targetUrl: String
813
+ createdAt: Uint32
814
+ updatedAt: Uint32
815
+ status: Uint32
816
+ message: String
817
817
  }
818
818
 
819
819
  type BlockletBackupState {
820
- appDid: String
821
- appPid: String
822
- name: String
823
- createdAt: Uint32
820
+ appDid: String
821
+ appPid: String
822
+ name: String
823
+ createdAt: Uint32
824
824
  }
825
825
 
826
826
  type BlockletCapabilities {
827
- clusterMode: Boolean
828
- component: Boolean
829
- navigation: Boolean
830
- didSpace: String
827
+ clusterMode: Boolean
828
+ component: Boolean
829
+ navigation: Boolean
830
+ didSpace: String
831
831
  }
832
832
 
833
833
  type BlockletController {
834
- id: String
835
- nftId: String
836
- nftOwner: String
837
- chainHost: String
838
- expireDate: Uint32
839
- consumedAt: String
840
- launcherUrl: String
841
- launcherSessionId: String
842
- ownerDid: String
843
- status: BlockletControllerStatus
834
+ id: String
835
+ nftId: String
836
+ nftOwner: String
837
+ chainHost: String
838
+ expireDate: Uint32
839
+ consumedAt: String
840
+ launcherUrl: String
841
+ launcherSessionId: String
842
+ ownerDid: String
843
+ status: BlockletControllerStatus
844
844
  }
845
845
 
846
846
  type BlockletControllerStatus {
847
- value: Uint32
848
- reason: String
847
+ value: Uint32
848
+ reason: String
849
849
  }
850
850
 
851
851
  type BlockletDiff {
852
- hasBlocklet: Boolean
853
- version: String
854
- addSet: [String!]
855
- changeSet: [String!]
856
- deleteSet: [String!]
852
+ hasBlocklet: Boolean
853
+ version: String
854
+ addSet: [String!]
855
+ changeSet: [String!]
856
+ deleteSet: [String!]
857
857
  }
858
858
 
859
859
  type BlockletDist {
860
- tarball: String
861
- integrity: String
860
+ tarball: String
861
+ integrity: String
862
862
  }
863
863
 
864
864
  type BlockletEngine {
865
- name: String
866
- displayName: String
867
- description: String
868
- version: String
869
- available: Boolean
870
- visible: Boolean
865
+ name: String
866
+ displayName: String
867
+ description: String
868
+ version: String
869
+ available: Boolean
870
+ visible: Boolean
871
871
  }
872
872
 
873
873
  type BlockletHistoryItem {
874
- date: Uint64
875
- cpu: Uint64
876
- mem: Uint64
874
+ date: Uint64
875
+ cpu: Uint64
876
+ mem: Uint64
877
877
  }
878
878
 
879
879
  type BlockletMeta {
880
- did: String
881
- name: String
882
- version: String
883
- description: String
884
- interfaces: [BlockletMetaInterface!]
885
- author: BlockletMetaPerson
886
- main: String
887
- stats: BlockletStats
888
- homepage: String
889
- path: String
890
- community: String
891
- documentation: String
892
- support: String
893
- screenshots: [String!]
894
- keywords: [String!]
895
- group: String
896
- logo: String
897
- title: String
898
- dist: BlockletDist
899
- maintainers: [BlockletMetaPerson!]
900
- contributors: [BlockletMetaPerson!]
901
- repository: BlockletRepository
902
- payment: BlockletPayment
903
- nftFactory: String
904
- lastPublishedAt: Uint32
905
- capabilities: BlockletCapabilities
906
- components: [ChildConfig!]
907
- environments: [Environment!]
908
- requirements: Requirement
909
- bundleDid: String
910
- bundleName: String
911
- navigation: [Any!]
880
+ did: String
881
+ name: String
882
+ version: String
883
+ description: String
884
+ interfaces: [BlockletMetaInterface!]
885
+ author: BlockletMetaPerson
886
+ main: String
887
+ stats: BlockletStats
888
+ homepage: String
889
+ path: String
890
+ community: String
891
+ documentation: String
892
+ support: String
893
+ screenshots: [String!]
894
+ keywords: [String!]
895
+ group: String
896
+ logo: String
897
+ title: String
898
+ dist: BlockletDist
899
+ maintainers: [BlockletMetaPerson!]
900
+ contributors: [BlockletMetaPerson!]
901
+ repository: BlockletRepository
902
+ payment: BlockletPayment
903
+ nftFactory: String
904
+ lastPublishedAt: Uint32
905
+ capabilities: BlockletCapabilities
906
+ components: [ChildConfig!]
907
+ environments: [Environment!]
908
+ requirements: Requirement
909
+ bundleDid: String
910
+ bundleName: String
911
+ navigation: [Any!]
912
912
  }
913
913
 
914
914
  type BlockletMetaInterface {
915
- type: String
916
- name: String
917
- path: String
918
- prefix: String
919
- protocol: String
920
- port: Any
921
- services: [BlockletMetaService!]
922
- cacheable: [String!]
923
- pageGroups: [String!]
915
+ type: String
916
+ name: String
917
+ path: String
918
+ prefix: String
919
+ protocol: String
920
+ port: Any
921
+ services: [BlockletMetaService!]
922
+ cacheable: [String!]
923
+ pageGroups: [String!]
924
924
  }
925
925
 
926
926
  type BlockletMetaPerson {
927
- name: String
928
- email: String
929
- url: String
927
+ name: String
928
+ email: String
929
+ url: String
930
930
  }
931
931
 
932
932
  type BlockletMetaService {
933
- name: String
934
- config: Any
933
+ name: String
934
+ config: Any
935
935
  }
936
936
 
937
937
  type BlockletMigrateRecord {
938
- appSk: String
939
- appDid: String
940
- at: String
938
+ appSk: String
939
+ appDid: String
940
+ at: String
941
941
  }
942
942
 
943
943
  type BlockletPayment {
944
- price: [BlockletPaymentPrice!]
945
- share: [BlockletPaymentShare!]
944
+ price: [BlockletPaymentPrice!]
945
+ share: [BlockletPaymentShare!]
946
946
  }
947
947
 
948
948
  type BlockletPaymentPrice {
949
- address: String
950
- value: String
951
- symbol: String
949
+ address: String
950
+ value: String
951
+ symbol: String
952
952
  }
953
953
 
954
954
  type BlockletPaymentShare {
955
- address: String
956
- name: String
957
- value: String
955
+ address: String
956
+ name: String
957
+ value: String
958
958
  }
959
959
 
960
960
  type BlockletPreUpdateInfo {
961
- updateId: String
962
- updateList: [UpdateList!]
961
+ updateId: String
962
+ updateList: [UpdateList!]
963
963
  }
964
964
 
965
965
  type BlockletRepository {
966
- type: String
967
- url: String
966
+ type: String
967
+ url: String
968
968
  }
969
969
 
970
970
  type BlockletSettings {
971
- initialized: Boolean
972
- enablePassportIssuance: Boolean
973
- trustedPassports: [TrustedPassport!]
974
- whoCanAccess: String
975
- owner: WalletInfo
976
- children: [SimpleBlockletState!]
977
- publicToStore: Boolean
978
- storeList: [BlockletStore!]
979
- navigations: [ConfigNavigation!]
980
- oauth: Any
981
- trustedFactories: [TrustedFactory!]
982
- notification: Any
983
- session: SessionConfig
971
+ initialized: Boolean
972
+ enablePassportIssuance: Boolean
973
+ trustedPassports: [TrustedPassport!]
974
+ whoCanAccess: String
975
+ owner: WalletInfo
976
+ children: [SimpleBlockletState!]
977
+ publicToStore: Boolean
978
+ storeList: [BlockletStore!]
979
+ navigations: [ConfigNavigation!]
980
+ oauth: Any
981
+ trustedFactories: [TrustedFactory!]
982
+ notification: Any
983
+ session: SessionConfig
984
984
  }
985
985
 
986
986
  type BlockletState {
987
- meta: BlockletMeta
988
- status: BlockletStatus
989
- createdAt: Uint32
990
- installedAt: Uint32
991
- startedAt: Uint32
992
- pausedAt: Uint32
993
- stoppedAt: Uint32
994
- environments: [ConfigEntry!]
995
- configs: [ConfigEntry!]
996
- diskInfo: DiskInfo
997
- runtimeInfo: RuntimeInfo
998
- appRuntimeInfo: RuntimeInfo
999
- source: BlockletSource
1000
- deployedFrom: String
1001
- bundleSource: Any
1002
- port: Float32
1003
- engine: BlockletEngine
1004
- mode: String
1005
- ports: Any
1006
- children: [ComponentState!]
1007
- trustedPassports: [TrustedPassport!]
1008
- trustedFactories: [TrustedFactory!]
1009
- enablePassportIssuance: Boolean
1010
- dynamic: Boolean
1011
- mountPoint: String
1012
- settings: BlockletSettings
1013
- appDid: String
1014
- site: RoutingSite
1015
- controller: BlockletController
1016
- migratedFrom: [BlockletMigrateRecord!]
1017
- appPid: String
1018
- externalSk: Boolean
1019
- externalSkSource: String
1020
- structVersion: String
987
+ meta: BlockletMeta
988
+ status: BlockletStatus
989
+ createdAt: Uint32
990
+ installedAt: Uint32
991
+ startedAt: Uint32
992
+ pausedAt: Uint32
993
+ stoppedAt: Uint32
994
+ updatedAt: Uint32
995
+ environments: [ConfigEntry!]
996
+ configs: [ConfigEntry!]
997
+ diskInfo: DiskInfo
998
+ runtimeInfo: RuntimeInfo
999
+ appRuntimeInfo: RuntimeInfo
1000
+ source: BlockletSource
1001
+ deployedFrom: String
1002
+ bundleSource: Any
1003
+ port: Float32
1004
+ engine: BlockletEngine
1005
+ mode: String
1006
+ ports: Any
1007
+ children: [ComponentState!]
1008
+ trustedPassports: [TrustedPassport!]
1009
+ trustedFactories: [TrustedFactory!]
1010
+ enablePassportIssuance: Boolean
1011
+ dynamic: Boolean
1012
+ mountPoint: String
1013
+ settings: BlockletSettings
1014
+ appDid: String
1015
+ site: RoutingSite
1016
+ controller: BlockletController
1017
+ migratedFrom: [BlockletMigrateRecord!]
1018
+ appPid: String
1019
+ externalSk: Boolean
1020
+ externalSkSource: String
1021
+ structVersion: String
1021
1022
  }
1022
1023
 
1023
1024
  type BlockletStats {
1024
- downloads: Float32
1025
- star: Float32
1026
- purchases: Float32
1025
+ downloads: Float32
1026
+ star: Float32
1027
+ purchases: Float32
1027
1028
  }
1028
1029
 
1029
1030
  type BlockletStore {
1030
- name: String
1031
- description: String
1032
- url: String
1033
- logoUrl: String
1034
- maintainer: String
1035
- cdnUrl: String
1036
- protected: Boolean
1037
- id: String
1031
+ name: String
1032
+ description: String
1033
+ url: String
1034
+ logoUrl: String
1035
+ maintainer: String
1036
+ cdnUrl: String
1037
+ protected: Boolean
1038
+ id: String
1038
1039
  }
1039
1040
 
1040
1041
  type BooleanResponse {
1041
- code: StatusCode
1042
- result: Boolean
1042
+ code: StatusCode
1043
+ result: Boolean
1043
1044
  }
1044
1045
 
1045
1046
  type Certificate {
1046
- name: String
1047
- domain: String
1048
- id: String
1049
- meta: CertificateMeta
1050
- matchedSites: [MatchedSites!]
1051
- createdAt: Uint32
1052
- updatedAt: Uint32
1053
- isProtected: Boolean
1054
- source: String
1055
- status: String
1047
+ name: String
1048
+ domain: String
1049
+ id: String
1050
+ meta: CertificateMeta
1051
+ matchedSites: [MatchedSites!]
1052
+ createdAt: Uint32
1053
+ updatedAt: Uint32
1054
+ isProtected: Boolean
1055
+ source: String
1056
+ status: String
1056
1057
  }
1057
1058
 
1058
1059
  type CertificateIssuer {
1059
- countryName: String
1060
- organizationName: String
1061
- commonName: String
1060
+ countryName: String
1061
+ organizationName: String
1062
+ commonName: String
1062
1063
  }
1063
1064
 
1064
1065
  type CertificateMeta {
1065
- issuer: CertificateIssuer
1066
- sans: [String!]
1067
- validFrom: Int64
1068
- validTo: Int64
1069
- fingerprintAlg: String
1070
- fingerprint: String
1071
- validityPeriod: Int64
1066
+ issuer: CertificateIssuer
1067
+ sans: [String!]
1068
+ validFrom: Int64
1069
+ validTo: Int64
1070
+ fingerprintAlg: String
1071
+ fingerprint: String
1072
+ validityPeriod: Int64
1072
1073
  }
1073
1074
 
1074
1075
  type ChildConfig {
1075
- name: String
1076
- mountPoint: String
1076
+ name: String
1077
+ mountPoint: String
1077
1078
  }
1078
1079
 
1079
1080
  type ComponentState {
1080
- meta: BlockletMeta
1081
- status: BlockletStatus
1082
- createdAt: Uint32
1083
- installedAt: Uint32
1084
- startedAt: Uint32
1085
- pausedAt: Uint32
1086
- stoppedAt: Uint32
1087
- environments: [ConfigEntry!]
1088
- configs: [ConfigEntry!]
1089
- diskInfo: DiskInfo
1090
- runtimeInfo: RuntimeInfo
1091
- source: BlockletSource
1092
- deployedFrom: String
1093
- bundleSource: Any
1094
- port: Float32
1095
- engine: BlockletEngine
1096
- mode: String
1097
- ports: Any
1098
- children: [ComponentState!]
1099
- dynamic: Boolean
1100
- mountPoint: String
1101
- dependents: [Dependent!]
1081
+ meta: BlockletMeta
1082
+ status: BlockletStatus
1083
+ createdAt: Uint32
1084
+ installedAt: Uint32
1085
+ startedAt: Uint32
1086
+ pausedAt: Uint32
1087
+ stoppedAt: Uint32
1088
+ environments: [ConfigEntry!]
1089
+ configs: [ConfigEntry!]
1090
+ diskInfo: DiskInfo
1091
+ runtimeInfo: RuntimeInfo
1092
+ source: BlockletSource
1093
+ deployedFrom: String
1094
+ bundleSource: Any
1095
+ port: Float32
1096
+ engine: BlockletEngine
1097
+ mode: String
1098
+ ports: Any
1099
+ children: [ComponentState!]
1100
+ dynamic: Boolean
1101
+ mountPoint: String
1102
+ dependents: [Dependent!]
1102
1103
  }
1103
1104
 
1104
1105
  type ConfigEntry {
1105
- key: String
1106
- value: String
1107
- required: Boolean
1108
- description: String
1109
- validation: String
1110
- secure: Boolean
1111
- custom: Boolean
1112
- shared: Boolean
1106
+ key: String
1107
+ value: String
1108
+ required: Boolean
1109
+ description: String
1110
+ validation: String
1111
+ secure: Boolean
1112
+ custom: Boolean
1113
+ shared: Boolean
1113
1114
  }
1114
1115
 
1115
1116
  type ConfigNavigation {
1116
- id: String
1117
- title: String
1118
- link: String
1119
- icon: String
1120
- section: String
1121
- component: String
1122
- parent: String
1123
- role: String
1124
- visible: Boolean
1125
- from: String
1117
+ id: String
1118
+ title: String
1119
+ link: String
1120
+ icon: String
1121
+ section: String
1122
+ component: String
1123
+ parent: String
1124
+ role: String
1125
+ visible: Boolean
1126
+ from: String
1126
1127
  }
1127
1128
 
1128
1129
  type ConnectedAccount {
1129
- provider: String
1130
- did: String
1131
- pk: String
1132
- id: String
1133
- lastLoginAt: Uint32
1130
+ provider: String
1131
+ did: String
1132
+ pk: String
1133
+ id: String
1134
+ lastLoginAt: Uint32
1134
1135
  }
1135
1136
 
1136
1137
  type CreateAccessKey {
1137
- accessKeyId: String
1138
- accessKeySecret: String
1139
- remark: String
1140
- passport: String
1141
- createdAt: Uint32
1142
- lastUsedAt: Uint32
1138
+ accessKeyId: String
1139
+ accessKeySecret: String
1140
+ remark: String
1141
+ passport: String
1142
+ createdAt: Uint32
1143
+ lastUsedAt: Uint32
1143
1144
  }
1144
1145
 
1145
1146
  type DelegationState {
1146
- delegated: Boolean
1147
+ delegated: Boolean
1147
1148
  }
1148
1149
 
1149
1150
  type Dependent {
1150
- id: String
1151
- required: Boolean
1151
+ id: String
1152
+ required: Boolean
1152
1153
  }
1153
1154
 
1154
1155
  type DiskInfo {
1155
- app: Float32
1156
- data: Float32
1157
- log: Float32
1158
- cache: Float32
1159
- blocklets: Float32
1156
+ app: Float32
1157
+ data: Float32
1158
+ log: Float32
1159
+ cache: Float32
1160
+ blocklets: Float32
1160
1161
  }
1161
1162
 
1162
1163
  type Environment {
1163
- name: String
1164
- description: String
1165
- default: String
1166
- required: Boolean
1167
- secure: Boolean
1168
- validation: String
1169
- shared: Boolean
1164
+ name: String
1165
+ description: String
1166
+ default: String
1167
+ required: Boolean
1168
+ secure: Boolean
1169
+ validation: String
1170
+ shared: Boolean
1170
1171
  }
1171
1172
 
1172
1173
  type Fuel {
1173
- endpoint: String
1174
- address: String
1175
- value: String
1176
- reason: String
1174
+ endpoint: String
1175
+ address: String
1176
+ value: String
1177
+ reason: String
1177
1178
  }
1178
1179
 
1179
1180
  type Gateway {
1180
- requestLimit: RequestLimit
1181
- cacheEnabled: Boolean
1181
+ requestLimit: RequestLimit
1182
+ cacheEnabled: Boolean
1182
1183
  }
1183
1184
 
1184
1185
  type GeneralResponse {
1185
- code: StatusCode
1186
+ code: StatusCode
1186
1187
  }
1187
1188
 
1188
1189
  type IPInfo {
1189
- internalV4: String
1190
- externalV4: String
1191
- internalV6: String
1192
- externalV6: String
1190
+ internalV4: String
1191
+ externalV4: String
1192
+ internalV6: String
1193
+ externalV6: String
1193
1194
  }
1194
1195
 
1195
1196
  type InviteInfo {
1196
- inviteId: String
1197
- role: String
1198
- remark: String
1199
- expireDate: String
1200
- inviter: UserInfo
1201
- teamDid: String
1202
- interfaceName: String
1197
+ inviteId: String
1198
+ role: String
1199
+ remark: String
1200
+ expireDate: String
1201
+ inviter: UserInfo
1202
+ teamDid: String
1203
+ interfaceName: String
1203
1204
  }
1204
1205
 
1205
1206
  type Issuer {
1206
- id: String
1207
- name: String
1208
- pk: String
1207
+ id: String
1208
+ name: String
1209
+ pk: String
1209
1210
  }
1210
1211
 
1211
1212
  type KeyValue {
1212
- key: String
1213
- value: Any
1213
+ key: String
1214
+ value: Any
1214
1215
  }
1215
1216
 
1216
1217
  type LauncherInfo {
1217
- did: String
1218
- type: String
1219
- provider: String
1220
- url: String
1221
- tag: String
1222
- chainHost: String
1218
+ did: String
1219
+ type: String
1220
+ provider: String
1221
+ url: String
1222
+ tag: String
1223
+ chainHost: String
1223
1224
  }
1224
1225
 
1225
1226
  type MatchedSites {
1226
- id: String
1227
- domain: String
1227
+ id: String
1228
+ domain: String
1228
1229
  }
1229
1230
 
1230
1231
  type NodeEnvInfo {
1231
- ip: IPInfo
1232
- os: String
1233
- location: String
1234
- docker: Boolean
1235
- image: Boolean
1236
- blockletEngines: [BlockletEngine!]
1237
- gitpod: Boolean
1238
- disk: DiskInfo
1232
+ ip: IPInfo
1233
+ os: String
1234
+ location: String
1235
+ docker: Boolean
1236
+ image: Boolean
1237
+ blockletEngines: [BlockletEngine!]
1238
+ gitpod: Boolean
1239
+ disk: DiskInfo
1239
1240
  }
1240
1241
 
1241
1242
  type NodeHistoryItem {
1242
- date: Uint64
1243
- cpu: Uint64
1244
- mem: Uint64
1245
- daemonMem: Uint64
1246
- serviceMem: Uint64
1247
- hubMem: Uint64
1243
+ date: Uint64
1244
+ cpu: Uint64
1245
+ mem: Uint64
1246
+ daemonMem: Uint64
1247
+ serviceMem: Uint64
1248
+ hubMem: Uint64
1248
1249
  }
1249
1250
 
1250
1251
  type NodeRouting {
1251
- provider: String
1252
- snapshotHash: String
1253
- adminPath: String
1254
- requestLimit: RequestLimit
1255
- cacheEnabled: Boolean
1252
+ provider: String
1253
+ snapshotHash: String
1254
+ adminPath: String
1255
+ requestLimit: RequestLimit
1256
+ cacheEnabled: Boolean
1256
1257
  }
1257
1258
 
1258
1259
  type NodeState {
1259
- did: String
1260
- pk: String
1261
- version: String
1262
- name: String
1263
- description: String
1264
- port: String
1265
- initialized: Boolean
1266
- nodeOwner: WalletInfo
1267
- createdAt: Uint32
1268
- startedAt: Uint32
1269
- initializedAt: Uint32
1270
- mode: String
1271
- routing: NodeRouting
1272
- environments: [ConfigEntry!]
1273
- uptime: Float32
1274
- autoUpgrade: Boolean
1275
- nextVersion: String
1276
- upgradeSessionId: String
1277
- registerUrl: String
1278
- enableWelcomePage: Boolean
1279
- webWalletUrl: String
1280
- blockletRegistryList: [BlockletStore!]
1281
- ownerNft: OwnerNft
1282
- diskAlertThreshold: Uint32
1283
- trustedPassports: [TrustedPassport!]
1284
- launcher: LauncherInfo
1285
- enablePassportIssuance: Boolean
1286
- didRegistry: String
1287
- didDomain: String
1288
- status: Uint32
1289
- trustedFactories: [TrustedFactory!]
1290
- enableBetaRelease: Boolean
1260
+ did: String
1261
+ pk: String
1262
+ version: String
1263
+ name: String
1264
+ description: String
1265
+ port: String
1266
+ initialized: Boolean
1267
+ nodeOwner: WalletInfo
1268
+ createdAt: Uint32
1269
+ startedAt: Uint32
1270
+ initializedAt: Uint32
1271
+ mode: String
1272
+ routing: NodeRouting
1273
+ environments: [ConfigEntry!]
1274
+ uptime: Float32
1275
+ autoUpgrade: Boolean
1276
+ nextVersion: String
1277
+ upgradeSessionId: String
1278
+ registerUrl: String
1279
+ enableWelcomePage: Boolean
1280
+ webWalletUrl: String
1281
+ blockletRegistryList: [BlockletStore!]
1282
+ ownerNft: OwnerNft
1283
+ diskAlertThreshold: Uint32
1284
+ trustedPassports: [TrustedPassport!]
1285
+ launcher: LauncherInfo
1286
+ enablePassportIssuance: Boolean
1287
+ didRegistry: String
1288
+ didDomain: String
1289
+ status: Uint32
1290
+ trustedFactories: [TrustedFactory!]
1291
+ enableBetaRelease: Boolean
1291
1292
  }
1292
1293
 
1293
1294
  type Notification {
1294
- sender: String
1295
- receiver: String
1296
- title: String
1297
- description: String
1298
- action: String
1299
- entityType: String
1300
- entityId: String
1301
- read: Boolean
1302
- createdAt: Uint32
1303
- updatedAt: Uint32
1304
- id: String
1305
- severity: String
1295
+ sender: String
1296
+ receiver: String
1297
+ title: String
1298
+ description: String
1299
+ action: String
1300
+ entityType: String
1301
+ entityId: String
1302
+ read: Boolean
1303
+ createdAt: Uint32
1304
+ updatedAt: Uint32
1305
+ id: String
1306
+ severity: String
1306
1307
  }
1307
1308
 
1308
1309
  type OwnerNft {
1309
- did: String
1310
- holder: String
1311
- issuer: String
1310
+ did: String
1311
+ holder: String
1312
+ issuer: String
1312
1313
  }
1313
1314
 
1314
1315
  type Paging {
1315
- total: Uint32
1316
- pageSize: Uint32
1317
- pageCount: Uint32
1318
- page: Uint32
1316
+ total: Uint32
1317
+ pageSize: Uint32
1318
+ pageCount: Uint32
1319
+ page: Uint32
1319
1320
  }
1320
1321
 
1321
1322
  type Passport {
1322
- id: String
1323
- name: String
1324
- title: String
1325
- issuer: Issuer
1326
- type: [String!]
1327
- issuanceDate: Uint32
1328
- expirationDate: Uint32
1329
- status: String
1330
- role: String
1331
- lastLoginAt: Uint32
1323
+ id: String
1324
+ name: String
1325
+ title: String
1326
+ issuer: Issuer
1327
+ type: [String!]
1328
+ issuanceDate: Uint32
1329
+ expirationDate: Uint32
1330
+ status: String
1331
+ role: String
1332
+ lastLoginAt: Uint32
1332
1333
  }
1333
1334
 
1334
1335
  type PassportIssuanceInfo {
1335
- id: String
1336
- name: String
1337
- title: String
1338
- expireDate: String
1339
- teamDid: String
1340
- ownerDid: String
1336
+ id: String
1337
+ name: String
1338
+ title: String
1339
+ expireDate: String
1340
+ teamDid: String
1341
+ ownerDid: String
1341
1342
  }
1342
1343
 
1343
1344
  type Permission {
1344
- name: String
1345
- description: String
1346
- isProtected: Boolean
1345
+ name: String
1346
+ description: String
1347
+ isProtected: Boolean
1347
1348
  }
1348
1349
 
1349
1350
  type RequestLimit {
1350
- enabled: Boolean
1351
- rate: Uint32
1352
- ipHeader: String
1351
+ enabled: Boolean
1352
+ rate: Uint32
1353
+ ipHeader: String
1353
1354
  }
1354
1355
 
1355
1356
  type Requirement {
1356
- server: String
1357
- os: Any
1358
- cpu: Any
1359
- fuels: [Fuel!]
1357
+ server: String
1358
+ os: Any
1359
+ cpu: Any
1360
+ fuels: [Fuel!]
1360
1361
  }
1361
1362
 
1362
1363
  type ResponseAccessKeys {
1363
- code: StatusCode
1364
- list: [AccessKey!]
1364
+ code: StatusCode
1365
+ list: [AccessKey!]
1365
1366
  }
1366
1367
 
1367
1368
  type ResponseAddLetsEncryptCert {
1368
- code: StatusCode
1369
+ code: StatusCode
1369
1370
  }
1370
1371
 
1371
1372
  type ResponseAddNginxHttpsCert {
1372
- code: StatusCode
1373
+ code: StatusCode
1373
1374
  }
1374
1375
 
1375
1376
  type ResponseBlocklet {
1376
- code: StatusCode
1377
- blocklet: BlockletState
1377
+ code: StatusCode
1378
+ blocklet: BlockletState
1378
1379
  }
1379
1380
 
1380
1381
  type ResponseBlockletDiff {
1381
- code: StatusCode
1382
- blockletDiff: BlockletDiff
1382
+ code: StatusCode
1383
+ blockletDiff: BlockletDiff
1383
1384
  }
1384
1385
 
1385
1386
  type ResponseBlockletForLauncher {
1386
- code: StatusCode
1387
- did: String
1388
- isInstalled: Boolean
1389
- isRunning: Boolean
1387
+ code: StatusCode
1388
+ did: String
1389
+ isInstalled: Boolean
1390
+ isRunning: Boolean
1390
1391
  }
1391
1392
 
1392
1393
  type ResponseBlockletMeta {
1393
- code: StatusCode
1394
- meta: Any
1394
+ code: StatusCode
1395
+ meta: Any
1395
1396
  }
1396
1397
 
1397
1398
  type ResponseBlockletMetaFromUrl {
1398
- code: StatusCode
1399
- meta: BlockletMeta
1400
- isFree: Boolean
1401
- inStore: Boolean
1402
- registryUrl: String
1399
+ code: StatusCode
1400
+ meta: BlockletMeta
1401
+ isFree: Boolean
1402
+ inStore: Boolean
1403
+ registryUrl: String
1403
1404
  }
1404
1405
 
1405
1406
  type ResponseBlockletRuntimeHistory {
1406
- code: StatusCode
1407
- history: [BlockletHistoryItem!]
1407
+ code: StatusCode
1408
+ history: [BlockletHistoryItem!]
1408
1409
  }
1409
1410
 
1410
1411
  type ResponseBlockletsFromBackup {
1411
- code: StatusCode
1412
- backups: [BlockletBackupState!]
1412
+ code: StatusCode
1413
+ backups: [BlockletBackupState!]
1413
1414
  }
1414
1415
 
1415
1416
  type ResponseCheckComponentsForUpdates {
1416
- code: StatusCode
1417
- preUpdateInfo: BlockletPreUpdateInfo
1417
+ code: StatusCode
1418
+ preUpdateInfo: BlockletPreUpdateInfo
1418
1419
  }
1419
1420
 
1420
1421
  type ResponseCheckDomains {
1421
- code: StatusCode
1422
+ code: StatusCode
1422
1423
  }
1423
1424
 
1424
1425
  type ResponseCheckNodeVersion {
1425
- code: StatusCode
1426
- version: String
1426
+ code: StatusCode
1427
+ version: String
1427
1428
  }
1428
1429
 
1429
1430
  type ResponseCreateAccessKey {
1430
- code: StatusCode
1431
- data: CreateAccessKey
1431
+ code: StatusCode
1432
+ data: CreateAccessKey
1432
1433
  }
1433
1434
 
1434
1435
  type ResponseCreateInvitation {
1435
- code: StatusCode
1436
- inviteInfo: InviteInfo
1436
+ code: StatusCode
1437
+ inviteInfo: InviteInfo
1437
1438
  }
1438
1439
 
1439
1440
  type ResponseCreatePassportIssuance {
1440
- code: StatusCode
1441
- info: PassportIssuanceInfo
1441
+ code: StatusCode
1442
+ info: PassportIssuanceInfo
1442
1443
  }
1443
1444
 
1444
1445
  type ResponseCreateTransferNodeInvitation {
1445
- code: StatusCode
1446
- inviteInfo: InviteInfo
1446
+ code: StatusCode
1447
+ inviteInfo: InviteInfo
1447
1448
  }
1448
1449
 
1449
1450
  type ResponseCreateWebHook {
1450
- code: StatusCode
1451
- webhook: WebHookSender
1451
+ code: StatusCode
1452
+ webhook: WebHookSender
1452
1453
  }
1453
1454
 
1454
1455
  type ResponseDelegationState {
1455
- code: StatusCode
1456
- state: DelegationState
1456
+ code: StatusCode
1457
+ state: DelegationState
1457
1458
  }
1458
1459
 
1459
1460
  type ResponseDeleteAccessKey {
1460
- code: StatusCode
1461
+ code: StatusCode
1461
1462
  }
1462
1463
 
1463
1464
  type ResponseDeleteNginxHttpsCert {
1464
- code: StatusCode
1465
+ code: StatusCode
1465
1466
  }
1466
1467
 
1467
1468
  type ResponseDeleteWebHook {
1468
- code: StatusCode
1469
+ code: StatusCode
1469
1470
  }
1470
1471
 
1471
1472
  type ResponseFindCertificateByDomain {
1472
- code: StatusCode
1473
- cert: Certificate
1473
+ code: StatusCode
1474
+ cert: Certificate
1474
1475
  }
1475
1476
 
1476
1477
  type ResponseGateway {
1477
- code: StatusCode
1478
- gateway: Gateway
1479
- cacheEnabled: Boolean
1478
+ code: StatusCode
1479
+ gateway: Gateway
1480
+ cacheEnabled: Boolean
1480
1481
  }
1481
1482
 
1482
1483
  type ResponseGetAuditLogs {
1483
- code: StatusCode
1484
- list: [AuditLog!]
1485
- paging: Paging
1484
+ code: StatusCode
1485
+ list: [AuditLog!]
1486
+ paging: Paging
1486
1487
  }
1487
1488
 
1488
1489
  type ResponseGetBlockletBackups {
1489
- code: StatusCode
1490
- backups: [Backup!]
1490
+ code: StatusCode
1491
+ backups: [Backup!]
1491
1492
  }
1492
1493
 
1493
1494
  type ResponseGetBlockletSpaceGateways {
1494
- code: StatusCode
1495
- spaceGateways: [SpaceGateway!]
1495
+ code: StatusCode
1496
+ spaceGateways: [SpaceGateway!]
1496
1497
  }
1497
1498
 
1498
1499
  type ResponseGetBlocklets {
1499
- code: StatusCode
1500
- blocklets: [BlockletState!]
1500
+ code: StatusCode
1501
+ blocklets: [BlockletState!]
1501
1502
  }
1502
1503
 
1503
1504
  type ResponseGetCertificates {
1504
- code: StatusCode
1505
- certificates: [Certificate!]
1505
+ code: StatusCode
1506
+ certificates: [Certificate!]
1506
1507
  }
1507
1508
 
1508
1509
  type ResponseGetInvitations {
1509
- code: StatusCode
1510
- invitations: [InviteInfo!]
1510
+ code: StatusCode
1511
+ invitations: [InviteInfo!]
1511
1512
  }
1512
1513
 
1513
1514
  type ResponseGetLauncherSession {
1514
- code: StatusCode
1515
- error: String
1516
- launcherSession: Any
1515
+ code: StatusCode
1516
+ error: String
1517
+ launcherSession: Any
1517
1518
  }
1518
1519
 
1519
1520
  type ResponseGetNodeEnv {
1520
- code: StatusCode
1521
- info: NodeEnvInfo
1521
+ code: StatusCode
1522
+ info: NodeEnvInfo
1522
1523
  }
1523
1524
 
1524
1525
  type ResponseGetNodeInfo {
1525
- code: StatusCode
1526
- info: NodeState
1526
+ code: StatusCode
1527
+ info: NodeState
1527
1528
  }
1528
1529
 
1529
1530
  type ResponseGetNotifications {
1530
- code: StatusCode
1531
- list: [Notification!]
1532
- paging: Paging
1531
+ code: StatusCode
1532
+ list: [Notification!]
1533
+ paging: Paging
1533
1534
  }
1534
1535
 
1535
1536
  type ResponseGetPassportIssuances {
1536
- code: StatusCode
1537
- list: [PassportIssuanceInfo!]
1537
+ code: StatusCode
1538
+ list: [PassportIssuanceInfo!]
1538
1539
  }
1539
1540
 
1540
1541
  type ResponseGetRoutingProviders {
1541
- code: StatusCode
1542
- providers: [RoutingProvider!]
1542
+ code: StatusCode
1543
+ providers: [RoutingProvider!]
1543
1544
  }
1544
1545
 
1545
1546
  type ResponseGetRoutingSites {
1546
- code: StatusCode
1547
- sites: [RoutingSite!]
1547
+ code: StatusCode
1548
+ sites: [RoutingSite!]
1548
1549
  }
1549
1550
 
1550
1551
  type ResponseGetRoutingSnapshots {
1551
- code: StatusCode
1552
- snapshots: [RoutingSnapshot!]
1552
+ code: StatusCode
1553
+ snapshots: [RoutingSnapshot!]
1553
1554
  }
1554
1555
 
1555
1556
  type ResponseGetSession {
1556
- code: StatusCode
1557
- session: Any
1557
+ code: StatusCode
1558
+ session: Any
1558
1559
  }
1559
1560
 
1560
1561
  type ResponseGetSnapshotSites {
1561
- code: StatusCode
1562
- sites: [RoutingSite!]
1562
+ code: StatusCode
1563
+ sites: [RoutingSite!]
1563
1564
  }
1564
1565
 
1565
1566
  type ResponseGetTrafficInsights {
1566
- code: StatusCode
1567
- list: [TrafficInsight!]
1568
- paging: Paging
1567
+ code: StatusCode
1568
+ list: [TrafficInsight!]
1569
+ paging: Paging
1569
1570
  }
1570
1571
 
1571
1572
  type ResponseGetUsersCountPerRole {
1572
- code: StatusCode
1573
- counts: [KeyValue!]
1573
+ code: StatusCode
1574
+ counts: [KeyValue!]
1574
1575
  }
1575
1576
 
1576
1577
  type ResponseNodeRuntimeHistory {
1577
- code: StatusCode
1578
- history: [NodeHistoryItem!]
1578
+ code: StatusCode
1579
+ history: [NodeHistoryItem!]
1579
1580
  }
1580
1581
 
1581
1582
  type ResponsePermission {
1582
- code: StatusCode
1583
- permission: Permission
1583
+ code: StatusCode
1584
+ permission: Permission
1584
1585
  }
1585
1586
 
1586
1587
  type ResponsePermissions {
1587
- code: StatusCode
1588
- permissions: [Permission!]
1588
+ code: StatusCode
1589
+ permissions: [Permission!]
1589
1590
  }
1590
1591
 
1591
1592
  type ResponseReadNotifications {
1592
- code: StatusCode
1593
- numAffected: Int32
1593
+ code: StatusCode
1594
+ numAffected: Int32
1594
1595
  }
1595
1596
 
1596
1597
  type ResponseResetNode {
1597
- code: StatusCode
1598
+ code: StatusCode
1598
1599
  }
1599
1600
 
1600
1601
  type ResponseRestartServer {
1601
- code: StatusCode
1602
- sessionId: String
1602
+ code: StatusCode
1603
+ sessionId: String
1603
1604
  }
1604
1605
 
1605
1606
  type ResponseRole {
1606
- code: StatusCode
1607
- role: Role
1607
+ code: StatusCode
1608
+ role: Role
1608
1609
  }
1609
1610
 
1610
1611
  type ResponseRoles {
1611
- code: StatusCode
1612
- roles: [Role!]
1612
+ code: StatusCode
1613
+ roles: [Role!]
1613
1614
  }
1614
1615
 
1615
1616
  type ResponseRoutingSite {
1616
- code: StatusCode
1617
- site: RoutingSite
1617
+ code: StatusCode
1618
+ site: RoutingSite
1618
1619
  }
1619
1620
 
1620
1621
  type ResponseSendMsg {
1621
- code: StatusCode
1622
+ code: StatusCode
1622
1623
  }
1623
1624
 
1624
1625
  type ResponseSenderList {
1625
- code: StatusCode
1626
- senders: [WebHookSender!]
1626
+ code: StatusCode
1627
+ senders: [WebHookSender!]
1627
1628
  }
1628
1629
 
1629
1630
  type ResponseTakeRoutingSnapshot {
1630
- code: StatusCode
1631
- hash: String
1631
+ code: StatusCode
1632
+ hash: String
1632
1633
  }
1633
1634
 
1634
1635
  type ResponseUpdateAccessKey {
1635
- code: StatusCode
1636
- data: AccessKey
1636
+ code: StatusCode
1637
+ data: AccessKey
1637
1638
  }
1638
1639
 
1639
1640
  type ResponseUpdateNginxHttpsCert {
1640
- code: StatusCode
1641
+ code: StatusCode
1641
1642
  }
1642
1643
 
1643
1644
  type ResponseUpgradeNodeVersion {
1644
- code: StatusCode
1645
- sessionId: String
1645
+ code: StatusCode
1646
+ sessionId: String
1646
1647
  }
1647
1648
 
1648
1649
  type ResponseUser {
1649
- code: StatusCode
1650
- user: UserInfo
1650
+ code: StatusCode
1651
+ user: UserInfo
1651
1652
  }
1652
1653
 
1653
1654
  type ResponseUsers {
1654
- code: StatusCode
1655
- users: [UserInfo!]
1656
- paging: Paging
1655
+ code: StatusCode
1656
+ users: [UserInfo!]
1657
+ paging: Paging
1657
1658
  }
1658
1659
 
1659
1660
  type ResponseWebHooks {
1660
- code: StatusCode
1661
- webhooks: [WebHook!]
1661
+ code: StatusCode
1662
+ webhooks: [WebHook!]
1662
1663
  }
1663
1664
 
1664
1665
  type Role {
1665
- name: String
1666
- description: String
1667
- grants: [String!]
1668
- title: String
1669
- isProtected: Boolean
1666
+ name: String
1667
+ description: String
1668
+ grants: [String!]
1669
+ title: String
1670
+ isProtected: Boolean
1670
1671
  }
1671
1672
 
1672
1673
  type RoutingProvider {
1673
- name: String
1674
- description: String
1675
- running: Boolean
1676
- available: Boolean
1677
- error: String
1674
+ name: String
1675
+ description: String
1676
+ running: Boolean
1677
+ available: Boolean
1678
+ error: String
1678
1679
  }
1679
1680
 
1680
1681
  type RoutingRule {
1681
- id: String
1682
- from: RoutingRuleFrom
1683
- to: RoutingRuleTo
1684
- isProtected: Boolean
1682
+ id: String
1683
+ from: RoutingRuleFrom
1684
+ to: RoutingRuleTo
1685
+ isProtected: Boolean
1685
1686
  }
1686
1687
 
1687
1688
  type RoutingRuleFrom {
1688
- pathPrefix: String
1689
- header: [RoutingRuleHeader!]
1689
+ pathPrefix: String
1690
+ header: [RoutingRuleHeader!]
1690
1691
  }
1691
1692
 
1692
1693
  type RoutingRuleHeader {
1693
- key: String
1694
- value: String
1695
- type: HeaderMatchType
1694
+ key: String
1695
+ value: String
1696
+ type: HeaderMatchType
1696
1697
  }
1697
1698
 
1698
1699
  type RoutingRuleTo {
1699
- port: Uint32
1700
- type: BackendServiceType
1701
- did: String
1702
- url: String
1703
- redirectCode: Int32
1704
- interfaceName: String
1705
- componentId: String
1706
- pageGroup: String
1700
+ port: Uint32
1701
+ type: BackendServiceType
1702
+ did: String
1703
+ url: String
1704
+ redirectCode: Int32
1705
+ interfaceName: String
1706
+ componentId: String
1707
+ pageGroup: String
1707
1708
  }
1708
1709
 
1709
1710
  type RoutingSite {
1710
- id: String
1711
- domain: String
1712
- domainAliases: [Any!]
1713
- rules: [RoutingRule!]
1714
- isProtected: Boolean
1715
- corsAllowedOrigins: [String!]
1711
+ id: String
1712
+ domain: String
1713
+ domainAliases: [Any!]
1714
+ rules: [RoutingRule!]
1715
+ isProtected: Boolean
1716
+ corsAllowedOrigins: [String!]
1716
1717
  }
1717
1718
 
1718
1719
  type RoutingSnapshot {
1719
- hash: String
1720
- tree: String
1721
- message: String
1722
- author: String
1723
- createdAt: Uint32
1720
+ hash: String
1721
+ tree: String
1722
+ message: String
1723
+ author: String
1724
+ createdAt: Uint32
1724
1725
  }
1725
1726
 
1726
1727
  type RuntimeInfo {
1727
- pid: String
1728
- port: String
1729
- uptime: String
1730
- memoryUsage: Float32
1731
- cpuUsage: Float32
1728
+ pid: String
1729
+ port: String
1730
+ uptime: String
1731
+ memoryUsage: Float32
1732
+ cpuUsage: Float32
1732
1733
  }
1733
1734
 
1734
1735
  type SessionConfig {
1735
- cacheTtl: Uint32
1736
- ttl: Uint32
1736
+ cacheTtl: Uint32
1737
+ ttl: Uint32
1737
1738
  }
1738
1739
 
1739
1740
  type SimpleBlockletMeta {
1740
- did: String
1741
- name: String
1742
- version: String
1743
- description: String
1744
- title: String
1745
- bundleDid: String
1746
- bundleName: String
1741
+ did: String
1742
+ name: String
1743
+ version: String
1744
+ description: String
1745
+ title: String
1746
+ bundleDid: String
1747
+ bundleName: String
1747
1748
  }
1748
1749
 
1749
1750
  type SimpleBlockletState {
1750
- meta: SimpleBlockletMeta
1751
- status: BlockletStatus
1752
- deployedFrom: String
1753
- mountPoint: String
1754
- deletedAt: Uint32
1751
+ meta: SimpleBlockletMeta
1752
+ status: BlockletStatus
1753
+ deployedFrom: String
1754
+ mountPoint: String
1755
+ deletedAt: Uint32
1755
1756
  }
1756
1757
 
1757
1758
  type SpaceGateway {
1758
- name: String
1759
- url: String
1760
- protected: String
1761
- endpoint: String
1762
- did: String
1759
+ name: String
1760
+ url: String
1761
+ protected: String
1762
+ endpoint: String
1763
+ did: String
1763
1764
  }
1764
1765
 
1765
1766
  type TrafficInsight {
1766
- did: String
1767
- date: String
1768
- totalRequests: Uint32
1769
- validRequests: Uint32
1770
- failedRequests: Uint32
1771
- generationTime: Uint32
1772
- uniqueVisitors: Uint32
1773
- uniqueFiles: Uint32
1774
- excludedHits: Uint32
1775
- uniqueReferrers: Uint32
1776
- uniqueNotFound: Uint32
1777
- uniqueStaticFiles: Uint32
1778
- logSize: Uint32
1779
- bandwidth: Uint32
1767
+ did: String
1768
+ date: String
1769
+ totalRequests: Uint32
1770
+ validRequests: Uint32
1771
+ failedRequests: Uint32
1772
+ generationTime: Uint32
1773
+ uniqueVisitors: Uint32
1774
+ uniqueFiles: Uint32
1775
+ excludedHits: Uint32
1776
+ uniqueReferrers: Uint32
1777
+ uniqueNotFound: Uint32
1778
+ uniqueStaticFiles: Uint32
1779
+ logSize: Uint32
1780
+ bandwidth: Uint32
1780
1781
  }
1781
1782
 
1782
1783
  type TrustedFactory {
1783
- holderDid: String
1784
- issuerDid: String
1785
- factoryAddress: String
1786
- remark: String
1787
- passport: TrustedPassportMappingTo
1784
+ holderDid: String
1785
+ issuerDid: String
1786
+ factoryAddress: String
1787
+ remark: String
1788
+ passport: TrustedPassportMappingTo
1788
1789
  }
1789
1790
 
1790
1791
  type TrustedPassport {
1791
- issuerDid: String
1792
- remark: String
1793
- mappings: [TrustedPassportMapping!]
1792
+ issuerDid: String
1793
+ remark: String
1794
+ mappings: [TrustedPassportMapping!]
1794
1795
  }
1795
1796
 
1796
1797
  type TrustedPassportMapping {
1797
- from: TrustedPassportMappingFrom
1798
- to: TrustedPassportMappingTo
1798
+ from: TrustedPassportMappingFrom
1799
+ to: TrustedPassportMappingTo
1799
1800
  }
1800
1801
 
1801
1802
  type TrustedPassportMappingFrom {
1802
- passport: String
1803
+ passport: String
1803
1804
  }
1804
1805
 
1805
1806
  type TrustedPassportMappingTo {
1806
- role: String
1807
- ttl: String
1808
- ttlPolicy: String
1807
+ role: String
1808
+ ttl: String
1809
+ ttlPolicy: String
1809
1810
  }
1810
1811
 
1811
1812
  type UpdateList {
1812
- id: String
1813
- meta: BlockletMeta
1813
+ id: String
1814
+ meta: BlockletMeta
1814
1815
  }
1815
1816
 
1816
1817
  type UserInfo {
1817
- did: String
1818
- pk: String
1819
- role: String
1820
- avatar: String
1821
- fullName: String
1822
- email: String
1823
- approved: Boolean
1824
- createdAt: Uint32
1825
- updatedAt: Uint32
1826
- locale: String
1827
- passports: [Passport!]
1828
- firstLoginAt: Uint32
1829
- lastLoginAt: Uint32
1830
- remark: String
1831
- lastLoginIp: String
1832
- sourceProvider: String
1833
- connectedAccounts: [ConnectedAccount!]
1834
- extra: Any
1835
- source: String
1836
- extraConfigs: Any
1818
+ did: String
1819
+ pk: String
1820
+ role: String
1821
+ avatar: String
1822
+ fullName: String
1823
+ email: String
1824
+ approved: Boolean
1825
+ createdAt: Uint32
1826
+ updatedAt: Uint32
1827
+ locale: String
1828
+ passports: [Passport!]
1829
+ firstLoginAt: Uint32
1830
+ lastLoginAt: Uint32
1831
+ remark: String
1832
+ lastLoginIp: String
1833
+ sourceProvider: String
1834
+ connectedAccounts: [ConnectedAccount!]
1835
+ extra: Any
1836
+ source: String
1837
+ extraConfigs: Any
1837
1838
  }
1838
1839
 
1839
1840
  type WalletInfo {
1840
- did: String
1841
- pk: String
1841
+ did: String
1842
+ pk: String
1842
1843
  }
1843
1844
 
1844
1845
  type WebHook {
1845
- type: SenderType
1846
- id: String
1847
- params: [WebHookParam!]
1848
- createdAt: Uint32
1849
- updatedAt: Uint32
1846
+ type: SenderType
1847
+ id: String
1848
+ params: [WebHookParam!]
1849
+ createdAt: Uint32
1850
+ updatedAt: Uint32
1850
1851
  }
1851
1852
 
1852
1853
  type WebHookParam {
1853
- name: String
1854
- description: String
1855
- required: Boolean
1856
- defaultValue: String
1857
- value: String
1858
- type: String
1854
+ name: String
1855
+ description: String
1856
+ required: Boolean
1857
+ defaultValue: String
1858
+ value: String
1859
+ type: String
1859
1860
  }
1860
1861
 
1861
1862
  type WebHookSender {
1862
- type: SenderType
1863
- title: String
1864
- description: String
1865
- params: [WebHookParam!]
1863
+ type: SenderType
1864
+ title: String
1865
+ description: String
1866
+ params: [WebHookParam!]
1866
1867
  }
1867
1868
 
1868
1869
  enum BackendServiceType {
@@ -2059,3 +2060,4 @@ type Query {
2059
2060
  getBlockletSpaceGateways(input: RequestBlockletInput): ResponseGetBlockletSpaceGateways
2060
2061
  getTrafficInsights(input: RequestGetTrafficInsightsInput): ResponseGetTrafficInsights
2061
2062
  }
2063
+