-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.yaml
4212 lines (4212 loc) · 138 KB
/
index.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: v1
entries:
yatai:
- apiVersion: v2
appVersion: 1.1.13
created: "2025-02-18T02:10:29.510903833Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 08af070860365f809d43e86237046f4c4db9d893ca96b037f9ba002e97234699
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.13.tgz
version: 1.1.13
- apiVersion: v2
appVersion: 1.1.12
created: "2025-02-18T02:10:29.509720879Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 636f43db3a1987dc914e406662191242bfc4035e47b67d579cd01fdf79c6461d
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.12.tgz
version: 1.1.12
- apiVersion: v2
appVersion: 1.1.11
created: "2025-02-18T02:10:29.508571809Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 30015ab831c07da93ad9ab60d3f59beb0246e8d2eeacaaaa1eeee4ea7cba9d67
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.11.tgz
version: 1.1.11
- apiVersion: v2
appVersion: 1.1.10
created: "2025-02-18T02:10:29.507408331Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 3febd82c854cadf4dc020a8362c33af00732655cbf8f5220f231db6b47d9d88f
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.10.tgz
version: 1.1.10
- apiVersion: v2
appVersion: 1.1.9
created: "2025-02-18T02:10:29.521877877Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 397b5d0e66935e1922de4083c01ff58640b1cab647d96e7693e4e2f851259ed8
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.9.tgz
version: 1.1.9
- apiVersion: v2
appVersion: 1.1.8
created: "2025-02-18T02:10:29.520673854Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 637591e2fb498bdb871095ade75669b84c6c1c59eecfbfa6c4fb7d5b8f0372e0
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.8.tgz
version: 1.1.8
- apiVersion: v2
appVersion: 1.1.7
created: "2025-02-18T02:10:29.518774792Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 14243c669f48b8afa69bd48639f360cc8e8df5134a081a54f5d9f4eaf4cfdb28
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.7.tgz
version: 1.1.7
- apiVersion: v2
appVersion: 1.1.6
created: "2025-02-18T02:10:29.51762512Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 5ac68a0d8a73a070674260d9f60dbc73ee793044f0a99d1f0f395141ae56e932
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.6.tgz
version: 1.1.6
- apiVersion: v2
appVersion: 1.1.5
created: "2025-02-18T02:10:29.516448047Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 076645fdbe3315afeab908fa148969571988ab5d203dd08dc2cd96314cc0bbba
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.5.tgz
version: 1.1.5
- apiVersion: v2
appVersion: 1.1.4
created: "2025-02-18T02:10:29.51526848Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 27bdee768c3bbacf97b0b65a08405490352b6084ea7b08fd420f1ba564c4df4d
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.4.tgz
version: 1.1.4
- apiVersion: v2
appVersion: 1.1.3
created: "2025-02-18T02:10:29.514083001Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: eb0d5b5ddbd0e768ae8cb92c80234679b31cdb8940d4392d9cba2cde4d03d99d
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.3.tgz
version: 1.1.3
- apiVersion: v2
appVersion: 1.1.2
created: "2025-02-18T02:10:29.512891011Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: eb286e5a6938051390cc6d1ae99ac1fb9efe12f1eab0be829e6745ea9a4a01f4
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.2.tgz
version: 1.1.2
- apiVersion: v2
appVersion: 1.1.1
created: "2025-02-18T02:10:29.50625893Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: ad8454a9c23d359ac323da21cd7234517fb9365c6131791402556af346963f02
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.1.tgz
version: 1.1.1
- apiVersion: v2
appVersion: 1.1.0
created: "2025-02-18T02:10:29.504823921Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 81235c1b12afc13eba44e5e7e23e018a957b52a0092c75640f06b11a9ed4721e
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.1.0.tgz
version: 1.1.0
- apiVersion: v2
appVersion: 1.0.12
created: "2025-02-18T02:10:29.493488476Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: cfce309f71d10d97628bb2512c441f0517aeb3bf343462f72ffa1310859cb4db
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.12.tgz
version: 1.0.12
- apiVersion: v2
appVersion: 1.0.11
created: "2025-02-18T02:10:29.492349364Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 602b6e9e1c5f3f78a5a0976276c970c08b4c5167c85319f0984b2c1c5155d0fe
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.11.tgz
version: 1.0.11
- apiVersion: v2
appVersion: 1.0.10
created: "2025-02-18T02:10:29.491166149Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: e6bace0f16ec5e35c185c2319dafe81c9a8abb2f55b5cfb65f7b14a33fb1e84e
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.10.tgz
version: 1.0.10
- apiVersion: v2
appVersion: 1.0.9
created: "2025-02-18T02:10:29.503220474Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 636102be87e71fa55271332445fe0e4bcc05a007e65d367ac61da5465f0f273d
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.9.tgz
version: 1.0.9
- apiVersion: v2
appVersion: 1.0.8
created: "2025-02-18T02:10:29.502124482Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 57154193c25514f6c5f7fe2adb2ee519a11475691ed6fec5b721302c674b8ee6
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.8.tgz
version: 1.0.8
- apiVersion: v2
appVersion: 1.0.7
created: "2025-02-18T02:10:29.501034952Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 6660f88478f26a7c19d55243eb34d5b24642f83edc2e18e97c977fc6bd89a7ff
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.7.tgz
version: 1.0.7
- apiVersion: v2
appVersion: 1.0.6
created: "2025-02-18T02:10:29.499838323Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 52489c690bcb43edb3650432fd187c4f43b501b213113eb0961778c07c7950c9
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.6.tgz
version: 1.0.6
- apiVersion: v2
appVersion: 1.0.5
created: "2025-02-18T02:10:29.498718817Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: e87acaa4e67814119eaf43c75c8e1ded1d8b5b47eb499e442b85075a454d5774
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.5.tgz
version: 1.0.5
- apiVersion: v2
appVersion: 1.0.4
created: "2025-02-18T02:10:29.496852292Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 4065679024402f872d72246257968f97d302dbfebb9ca75e61f38fc424283984
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.4.tgz
version: 1.0.4
- apiVersion: v2
appVersion: 1.0.3
created: "2025-02-18T02:10:29.495731144Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 22e60110660ebfd3732f77d3de2a3c75c444cb8f269aa36134313b7caab13ec5
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.3.tgz
version: 1.0.3
- apiVersion: v2
appVersion: 1.0.2
created: "2025-02-18T02:10:29.494593875Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 5d58a6ed23dced0595d90411b84c1b1aaf37712501a2f02a92285ad8be5b2499
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.2.tgz
version: 1.0.2
- apiVersion: v2
appVersion: 1.0.1
created: "2025-02-18T02:10:29.489002233Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 5c296609ab53adc20a376e136f05b8c0a46cf644db5ec5d1f68fe71cb9f1649e
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.1.tgz
version: 1.0.1
- apiVersion: v2
appVersion: 1.0.0
created: "2025-02-18T02:10:29.487864533Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: c80e92ac88e7e3631afd6cdc3d871d5568096bb40639c4946276744fe1f2bc6c
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.0.tgz
version: 1.0.0
- apiVersion: v2
appVersion: 1.0.0-a1
created: "2025-02-18T02:10:29.486708329Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 5a66c808252fc302fe11019a8378858130a18d248b65fd4784d6c3838bb4806e
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.0-a1.tgz
version: 1.0.0-a1
- apiVersion: v2
appVersion: 1.0.0-a0
created: "2025-02-18T02:10:29.485529303Z"
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
tags:
- bitnami-common
version: 1.x.x
description: Yatai Helm chart
digest: 0fbe7a77208ee505da553ca5e38c3e07d6142a76d188f640858bc2fe90d5231c
home: https://github.com/bentoml/yatai
maintainers:
- email: [email protected]
name: BentoML developers
name: yatai
type: application
urls:
- packages/yatai-1.0.0-a0.tgz
version: 1.0.0-a0
yatai-cacher:
- apiVersion: v2
appVersion: 0.0.2
created: "2025-02-18T02:10:29.522216909Z"
description: The cacher component for Yatai
digest: 21b5c843c53a55a2224a62fc90915d8bf976b43f08afd166b62865db8fe0daac
name: yatai-cacher
type: application
urls:
- packages/yatai-cacher-0.0.2.tgz
version: 0.0.2
yatai-cacher-crds:
- apiVersion: v2
appVersion: 0.0.2
created: "2025-02-18T02:10:29.522418304Z"
description: A Helm chart for Kubernetes
digest: 4eb689115f186fad054110b3f11ea46c852f5d62d696405f6ef1ffd84a86cf4d
name: yatai-cacher-crds
type: application
urls:
- packages/yatai-cacher-crds-0.0.2.tgz
version: 0.0.2
yatai-deployment:
- apiVersion: v2
appVersion: 1.1.21
created: "2025-02-18T02:10:29.552059847Z"
description: The deployment component for Yatai
digest: 8b5300e36b0f9fe277bb2b3785c2b5e74db43ee45441b47a287c5ff5fae72f09
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.21.tgz
version: 1.1.21
- apiVersion: v2
appVersion: 1.1.20
created: "2025-02-18T02:10:29.55151932Z"
description: The deployment component for Yatai
digest: d4cd0554ee12c1e8a2ecb91f79111a5182bc8c1e2825d8d3a9be33b3fac18373
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.20.tgz
version: 1.1.20
- apiVersion: v2
appVersion: 1.1.19
created: "2025-02-18T02:10:29.550501113Z"
description: The deployment component for Yatai
digest: 3b24afa57c0a67dcab9eb21d594fc0a1bd42d881db9b7ae1725445822b6b4f96
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.19.tgz
version: 1.1.19
- apiVersion: v2
appVersion: 1.1.18
created: "2025-02-18T02:10:29.54993056Z"
description: The deployment component for Yatai
digest: 302ecac9c7d014a91dfbecc7a4db4df330719c62d8652fac0bcd6c8db701a546
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.18.tgz
version: 1.1.18
- apiVersion: v2
appVersion: 1.1.17
created: "2025-02-18T02:10:29.549390654Z"
description: The deployment component for Yatai
digest: bfb91a48e090eab419c68153c48076761c36c0101777429aeee2af683a6e2cf2
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.17.tgz
version: 1.1.17
- apiVersion: v2
appVersion: 1.1.16
created: "2025-02-18T02:10:29.548130457Z"
description: The deployment component for Yatai
digest: 1f958201251b677c0ee999da78d322fc58ec590ea836841a0d389071b610527b
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.16.tgz
version: 1.1.16
- apiVersion: v2
appVersion: 1.1.15
created: "2025-02-18T02:10:29.547607973Z"
description: The deployment component for Yatai
digest: 11bf130ad2af71bce0f8f2ff4cbda87d31bf8b5d5239c22e5f0a4e1c2caf9a8d
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.15.tgz
version: 1.1.15
- apiVersion: v2
appVersion: 1.1.14
created: "2025-02-18T02:10:29.547086983Z"
description: The deployment component for Yatai
digest: 9c9546e29ea5ab82ff1501a58b94c5a9eb8edd1b1def5b8e4424932697cfeb7c
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.14.tgz
version: 1.1.14
- apiVersion: v2
appVersion: 1.1.13
created: "2025-02-18T02:10:29.546518844Z"
description: The deployment component for Yatai
digest: f1d76b77b3bf0f3c4b6e0374141c6ea9e65e16159ead7e6eaca050f9dcd451ed
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.13.tgz
version: 1.1.13
- apiVersion: v2
appVersion: 1.1.12
created: "2025-02-18T02:10:29.545943663Z"
description: The deployment component for Yatai
digest: 976b3df3102b914dcd794930882852ecd699e6a0050cefffc916b52c6ffb3c6b
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.12.tgz
version: 1.1.12
- apiVersion: v2
appVersion: 1.1.11
created: "2025-02-18T02:10:29.545433032Z"
description: The deployment component for Yatai
digest: 55a8e8b09fb559a5a0cd8d95b06ec78b9982c19618ecc8201abd366622a9ce85
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.11.tgz
version: 1.1.11
- apiVersion: v2
appVersion: 1.1.10
created: "2025-02-18T02:10:29.544893487Z"
description: The deployment component for Yatai
digest: 43b35853366a5090bf9457944dd4ef1fcdd3f5c3d61ad077769f84f79df3a775
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.10.tgz
version: 1.1.10
- apiVersion: v2
appVersion: 1.1.9
created: "2025-02-18T02:10:29.556394714Z"
description: The deployment component for Yatai
digest: d156f50d062dd29fd01adf66e61788ca6377b031f0ca167a38449101bccb5ec8
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.9.tgz
version: 1.1.9
- apiVersion: v2
appVersion: 1.1.8
created: "2025-02-18T02:10:29.555358101Z"
description: The deployment component for Yatai
digest: 1a791cf2753368253f08b32a4526a1b4d4013301bc3e62ab637d6d82da75fab3
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.8.tgz
version: 1.1.8
- apiVersion: v2
appVersion: 1.1.7
created: "2025-02-18T02:10:29.554624014Z"
description: The deployment component for Yatai
digest: 1533fb5db12499bb8b7895a67cdde26da6f18919148e55f0d48fd45fc049478f
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.7.tgz
version: 1.1.7
- apiVersion: v2
appVersion: 1.1.6
created: "2025-02-18T02:10:29.554103484Z"
description: The deployment component for Yatai
digest: d0e7f10ce090e17871202af9bfabb091f2d49f7d8cf5cae8b37149544bd4a1c2
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.6.tgz
version: 1.1.6
- apiVersion: v2
appVersion: 1.1.5
created: "2025-02-18T02:10:29.553597231Z"
description: The deployment component for Yatai
digest: 7ee67c1f2755335280dde9fe79e37c4a282c603f0e7ab408a241e10265a53d31
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.5.tgz
version: 1.1.5
- apiVersion: v2
appVersion: 1.1.4
created: "2025-02-18T02:10:29.553077643Z"
description: The deployment component for Yatai
digest: aedd6d932abf5175a84c208f3696e068ef3744bb99484af8640823609c371c42
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.4.tgz
version: 1.1.4
- apiVersion: v2
appVersion: 1.1.3
created: "2025-02-18T02:10:29.552571961Z"
description: The deployment component for Yatai
digest: 0caaf489751d4dcb3dd7dafb6dc3d13c508e28967a2ea6f67156b2ff3a1899d3
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.3.tgz
version: 1.1.3
- apiVersion: v2
appVersion: 1.1.2
created: "2025-02-18T02:10:29.550987469Z"
description: The deployment component for Yatai
digest: fb201e27afaa8ff1ff925b95dbea7d9873edd86791d67be3918ea65d32e440e8
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.2.tgz
version: 1.1.2
- apiVersion: v2
appVersion: 1.1.1
created: "2025-02-18T02:10:29.544392483Z"
description: The deployment component for Yatai
digest: 956ee1ab251c5c5daa957708b131206fb512157798e9ecdfca0533f7c62ebdb7
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.1.tgz
version: 1.1.1
- apiVersion: v2
appVersion: 1.1.0
created: "2025-02-18T02:10:29.543889025Z"
description: The deployment component for Yatai
digest: 0f1b26bd1fd3a35f6815eac31c7df9f2129d4966b5e89d54aaea5f7a7dd359f3
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.1.0.tgz
version: 1.1.0
- apiVersion: v2
appVersion: 1.0.13
created: "2025-02-18T02:10:29.534416218Z"
description: The deployment component for Yatai
digest: 3794329c23b1ffc0eacce97cf5980c1683764ad04613e0c946d8e3d78cd18b5b
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.13.tgz
version: 1.0.13
- apiVersion: v2
appVersion: 1.0.12
created: "2025-02-18T02:10:29.533465658Z"
description: The deployment component for Yatai
digest: 10c8e4fbfd8b3ac60c4518726508a57d47e903abbf3099b9784cc3112a2bbe11
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.12.tgz
version: 1.0.12
- apiVersion: v2
appVersion: 1.0.11
created: "2025-02-18T02:10:29.532497013Z"
description: The deployment component for Yatai
digest: 6707e19c4b78fe3411d773e37666d774d88da6ab0fcc529e8e65e1f53906b01d
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.11.tgz
version: 1.0.11
- apiVersion: v2
appVersion: 1.0.10
created: "2025-02-18T02:10:29.531504815Z"
description: The deployment component for Yatai
digest: 48e42c92ddcec3c56cdbe85cdcbcb2c7d5547e1dbf4b66fef9cf8d2f15d186ad
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.10.tgz
version: 1.0.10
- apiVersion: v2
appVersion: 1.0.9
created: "2025-02-18T02:10:29.543417046Z"
description: The deployment component for Yatai
digest: 42139c93bfac028ec36c606cbc9938dc56df03132ddf8f2dc4c3aa918e3762ad
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.9.tgz
version: 1.0.9
- apiVersion: v2
appVersion: 1.0.8
created: "2025-02-18T02:10:29.542436029Z"
description: The deployment component for Yatai
digest: 4dd66b0d8498bc0706f43d647761df777f5db43f1244459155089cc2e991b583
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.8.tgz
version: 1.0.8
- apiVersion: v2
appVersion: 1.0.7
created: "2025-02-18T02:10:29.540770392Z"
description: The deployment component for Yatai
digest: 3a7cef4029fbe001f1908d5f539d02ca71290dd4a76baac053e6d146e55e10a3
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.7.tgz
version: 1.0.7
- apiVersion: v2
appVersion: 1.0.6
created: "2025-02-18T02:10:29.539813549Z"
description: The deployment component for Yatai
digest: eb2a43a0d5b82367a4ec7dd3bb2635645f71efd760da8ea0e204fa5303003003
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.6.tgz
version: 1.0.6
- apiVersion: v2
appVersion: 1.0.5
created: "2025-02-18T02:10:29.538861586Z"
description: The deployment component for Yatai
digest: 2f165f85a6727698b3ff7b077595b36b7411a27b3e9004e626a01f4bfb66ca41
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.5.tgz
version: 1.0.5
- apiVersion: v2
appVersion: 1.0.4
created: "2025-02-18T02:10:29.537910113Z"
description: The deployment component for Yatai
digest: 33782cd2dc0976c9b87211a1e3d84d7be6e56c239434a48f133832442830eaa5
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.4.tgz
version: 1.0.4
- apiVersion: v2
appVersion: 1.0.3
created: "2025-02-18T02:10:29.536939034Z"
description: The deployment component for Yatai
digest: 479c5ae7292fdf18bc4cb83a508b626a21ada480e111cc2064d0546f1853284f
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.3.tgz
version: 1.0.3
- apiVersion: v2
appVersion: 1.0.2
created: "2025-02-18T02:10:29.535337114Z"
description: The deployment component for Yatai
digest: 9290eeb2a47a8856613a3fd4a74ace0e31f636b90c9f2cb3facdd59cfd186f3d
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.2.tgz
version: 1.0.2
- apiVersion: v2
appVersion: 1.0.1
created: "2025-02-18T02:10:29.529829616Z"
description: The deployment component for Yatai
digest: af92bae608569a8e0eac42943e583041d70a12dfa1798af5b26c30d31c85d00a
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.1.tgz
version: 1.0.1
- apiVersion: v2
appVersion: 1.0.0
created: "2025-02-18T02:10:29.528873995Z"
description: The deployment component for Yatai
digest: 938dd77232d2b3eedf9582690131f2135551e39e4b19eafa3b8b92b42792b557
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.0.tgz
version: 1.0.0
- apiVersion: v2
appVersion: 1.0.0-a5
created: "2025-02-18T02:10:29.527954282Z"
description: The deployment component for Yatai
digest: 7aad96692cb054fcee5571077ad14168de4b00e8311f6bb8895aea3615ffaa1c
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.0-a5.tgz
version: 1.0.0-a5
- apiVersion: v2
appVersion: 1.0.0-a4
created: "2025-02-18T02:10:29.527036532Z"
description: The deployment component for Yatai
digest: be8d0ced6786f3731a94a3fadf65d5ba74dfc5908087fc8a8889fc151682e71f
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.0-a4.tgz
version: 1.0.0-a4
- apiVersion: v2
appVersion: 1.0.0-a3
created: "2025-02-18T02:10:29.525985835Z"
description: The deployment component for Yatai
digest: 3fd2bdfb3ca23b6234e80519997baf60de1b0d20aadf143ff0766e51e39b742a
name: yatai-deployment
type: application
urls:
- packages/yatai-deployment-1.0.0-a3.tgz
version: 1.0.0-a3
- apiVersion: v2
appVersion: 1.0.0-a2
created: "2025-02-18T02:10:29.524263351Z"
description: The deployment component for Yatai